issue #1378 add Activity tab in user manager

This commit is contained in:
MatthieuLP 2021-04-09 09:34:01 +02:00 committed by plegall
parent d784822664
commit ec4d677cf7
11 changed files with 1394 additions and 8 deletions

View file

@ -341,4 +341,143 @@ function ws_session_getStatus($params, &$service)
return $res;
}
/**
* API method
* Returns lines of users activity
*/
function ws_getActivityList($param, &$service) {
/* Test Lantency */
// sleep(1);
$output_lines = array();
$current_key = '';
$query = '
SELECT
activity_id,
performed_by,
object, action,
session_idx,
ip_address,
occured_on,
details,
username
FROM piwigo_activity,
piwigo_users
WHERE piwigo_activity.performed_by = piwigo_users.id
ORDER BY activity_id DESC;
';
$line_id = 0;
$result = pwg_query($query);
while ($row = pwg_db_fetch_assoc($result))
{
$row['details'] = str_replace('`groups`', 'groups', $row['details']);
$row['details'] = str_replace('`rank`', 'rank', $row['details']);
$details = unserialize($row['details']);
if (isset($details['method']))
{
$detailsType = 'method';
}
if (isset($details['script']))
{
$detailsType = 'script';
}
$line_key = $row['session_idx'].'~'.$row['object'].'~'.$row['action'].'~'; // idx~photo~add
if ($line_key === $current_key)
{
// j'incrémente le counter de la ligne précédente
$output_lines[count($output_lines)-1]['counter']++;
}
else
{
list($date, $hour) = explode(' ', $row['occured_on']);
// New line
$output_lines[] = array(
'id' => $line_id,
'object' => $row['object'],
'action' => $row['action'],
'ip_address' => $row['ip_address'],
'date' => format_date($date),
'hour' => $hour,
'username' => $row['username'],
'user_id' => $row['performed_by'],
'detailsType' => $detailsType,
'details' => $details,
'counter' => 1,
);
$current_key = $line_key;
$line_id++;
}
}
return $output_lines;
}
/**
* API method
* Returns lines of users activity
*/
function ws_activity_downloadLog($param, &$service) {
$output_lines = array();
$query = '
SELECT
activity_id,
performed_by,
object,
object_id,
action,
ip_address,
occured_on,
details,
username
FROM piwigo_activity,
piwigo_users
WHERE piwigo_activity.performed_by = piwigo_users.id
ORDER BY activity_id DESC;
';
$result = pwg_query($query);
array_push($output_lines, ['User', 'ID_User', 'Object', 'Object_ID', 'Action', 'Date', 'Hour', 'IP_Address', 'Details']);
while ($row = pwg_db_fetch_assoc($result))
{
$row['details'] = str_replace('`groups`', 'groups', $row['details']);
$row['details'] = str_replace('`rank`', 'rank', $row['details']);
list($date, $hour) = explode(' ', $row['occured_on']);
$output_lines[] = array(
'username' => $row['username'],
'user_id' => $row['performed_by'],
'object' => $row['object'],
'object_id' => $row['object_id'],
'action' => $row['action'],
'date' => $date,
'hour' => $hour,
'ip_address' => $row['ip_address'],
'details' => $row['details'],
);
$line_id++;
}
header('Content-type: application/csv');
header('Content-Disposition: attachment; filename='.date('YmdGis').'piwigo_activity_log.csv');
header("Content-Transfer-Encoding: UTF-8");
$f = fopen('php://output', 'w');
foreach ($output_lines as $line) {
fputcsv($f, $line, ";");
}
fclose($f);
}
?>