You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
204 lines
7.1 KiB
204 lines
7.1 KiB
<?php
|
|
|
|
/* For licensing terms, see /license.txt */
|
|
|
|
/**
|
|
* Responses to AJAX calls.
|
|
*/
|
|
require_once __DIR__.'/../global.inc.php';
|
|
|
|
$action = $_GET['a'];
|
|
|
|
// Access restrictions.
|
|
$is_allowedToTrack = api_is_platform_admin(true, true) ||
|
|
api_is_allowed_to_create_course() || api_is_course_tutor();
|
|
|
|
if (!$is_allowedToTrack) {
|
|
exit;
|
|
}
|
|
|
|
switch ($action) {
|
|
case 'lp_global_report':
|
|
$userId = (int) $_REQUEST['user_id'];
|
|
if (empty($userId)) {
|
|
exit;
|
|
}
|
|
$cacheAvailable = api_get_configuration_value('apc');
|
|
$table = null;
|
|
$variable = 'lp_global_report_'.$userId;
|
|
if ($cacheAvailable) {
|
|
if (apcu_exists($variable)) {
|
|
$table = apcu_fetch($variable);
|
|
}
|
|
}
|
|
|
|
if (!empty($table)) {
|
|
echo $table;
|
|
exit;
|
|
}
|
|
|
|
$sessionCategoryList = UserManager::get_sessions_by_category($userId, false);
|
|
$total = 0;
|
|
$totalAverage = 0;
|
|
$table = new HTML_Table(['class' => 'table table-hover table-striped data_table']);
|
|
$row = 0;
|
|
$col = 0;
|
|
foreach ($sessionCategoryList as $category) {
|
|
$sessionList = $category['sessions'];
|
|
foreach ($sessionList as $session) {
|
|
$courses = $session['courses'];
|
|
$sessionId = $session['session_id'];
|
|
$session['session_name'];
|
|
$totalCourse = 0;
|
|
$totalSessionAverage = 0;
|
|
foreach ($courses as &$course) {
|
|
$average = Tracking::get_avg_student_progress($userId, $course['course_code'], [], $sessionId);
|
|
$totalSessionAverage += $average;
|
|
$totalCourse++;
|
|
if (false !== $average) {
|
|
$average = $average.' %';
|
|
}
|
|
$course['average'] = $average;
|
|
}
|
|
|
|
$total++;
|
|
$totalSessionAverage = round($totalSessionAverage / count($courses), 2);
|
|
$totalAverage += $totalSessionAverage;
|
|
|
|
$row++;
|
|
$table->setCellContents($row, 0, $session['session_name']);
|
|
$table->setCellContents($row, 1, $totalSessionAverage.' %');
|
|
$table->setCellContents($row, 2, '');
|
|
$row++;
|
|
foreach ($courses as &$course) {
|
|
$table->setCellContents($row, 0, $session['session_name']);
|
|
$table->setCellContents($row, 1, $course['title']);
|
|
$table->setCellContents($row, 2, $course['average']);
|
|
$row++;
|
|
}
|
|
}
|
|
}
|
|
|
|
$table->setCellContents(0, 0, get_lang('Global'));
|
|
$table->setCellContents(0, 1, round($totalAverage / $total, 2).' %');
|
|
$result = $table->toHtml();
|
|
|
|
if ($cacheAvailable) {
|
|
apcu_store($variable, $result, 60);
|
|
}
|
|
|
|
echo $result;
|
|
|
|
break;
|
|
case 'access_detail':
|
|
// At this date : 23/02/2017, a minor review can't determine where is used this case 'access_detail'.
|
|
$user_id = (int) $_REQUEST['student'];
|
|
$course_code = Security::remove_XSS($_REQUEST['course']);
|
|
$type = Security::remove_XSS($_REQUEST['type']);
|
|
$range = Security::remove_XSS($_REQUEST['range']);
|
|
$sessionId = isset($_REQUEST['session_id']) ? $_REQUEST['session_id'] : 0;
|
|
$courseInfo = api_get_course_info($course_code);
|
|
|
|
if (1 == $range) {
|
|
$start_date = Security::remove_XSS($_REQUEST['sd']);
|
|
$end_date = Security::remove_XSS($_REQUEST['ed']);
|
|
$sql_result = MySpace::get_connections_to_course_by_date(
|
|
$user_id,
|
|
$courseInfo,
|
|
$sessionId,
|
|
$start_date,
|
|
$end_date
|
|
);
|
|
} else {
|
|
$sql_result = MySpace::get_connections_to_course(
|
|
$user_id,
|
|
$courseInfo,
|
|
$sessionId
|
|
);
|
|
}
|
|
$foo_print = MySpace::grapher($sql_result, $start_date, $end_date, $type);
|
|
echo $foo_print;
|
|
|
|
break;
|
|
case 'access_detail_by_date':
|
|
$export = isset($_REQUEST['export']) ? $_REQUEST['export'] : false;
|
|
|
|
$result = ['is_empty' => true];
|
|
$start_date = isset($_REQUEST['startDate']) ? $_REQUEST['startDate'] : '';
|
|
$end_date = isset($_REQUEST['endDate']) ? $_REQUEST['endDate'] : '';
|
|
$user_id = isset($_REQUEST['student']) ? $_REQUEST['student'] : '';
|
|
$course_code = isset($_REQUEST['course']) ? $_REQUEST['course'] : '';
|
|
$type = isset($_REQUEST['type']) ? $_REQUEST['type'] : '';
|
|
$sessionId = isset($_REQUEST['session_id']) ? $_REQUEST['session_id'] : 0;
|
|
$courseInfo = api_get_course_info($course_code);
|
|
|
|
$connections = MySpace::get_connections_to_course_by_date(
|
|
$user_id,
|
|
$courseInfo,
|
|
$sessionId,
|
|
$start_date,
|
|
$end_date,
|
|
true
|
|
);
|
|
|
|
if (is_array($connections) && count($connections) > 0) {
|
|
$result['is_empty'] = false;
|
|
$tableData = [];
|
|
foreach ($connections as $data) {
|
|
$item = [
|
|
api_get_local_time($data['login']),
|
|
api_time_to_hms(api_strtotime($data['logout']) - api_strtotime($data['login'])),
|
|
$data['user_ip'],
|
|
];
|
|
$tableData[] = $item;
|
|
}
|
|
|
|
$table = new SortableTableFromArray(
|
|
$tableData,
|
|
0,
|
|
500,
|
|
'stat_table',
|
|
null,
|
|
'stat_table'
|
|
);
|
|
$table->set_header(1, get_lang('LoginDate'), false);
|
|
$table->set_header(2, get_lang('Duration'), false);
|
|
$table->set_header(3, get_lang('IP'), false);
|
|
$result['result'] = $table->return_table();
|
|
|
|
if ($export) {
|
|
Export::arrayToXls($table->toArray());
|
|
exit;
|
|
}
|
|
|
|
$rst = MySpace::getStats(
|
|
$user_id,
|
|
$courseInfo,
|
|
$sessionId,
|
|
$start_date,
|
|
$end_date
|
|
);
|
|
$stats = '<strong>'.get_lang('Total').': </strong>'.$rst['total'].'<br />';
|
|
$stats .= '<strong>'.get_lang('Average').': </strong>'.$rst['avg'].'<br />';
|
|
$stats .= '<strong>'.get_lang('Quantity').' : </strong>'.$rst['times'].'<br />';
|
|
$result['stats'] = $stats;
|
|
$result['graph_result'] = MySpace::grapher($connections, $start_date, $end_date, $type);
|
|
} else {
|
|
$result['result'] = Display::return_message(
|
|
get_lang('NoDataAvailable'),
|
|
'warning'
|
|
);
|
|
$result['graph_result'] = Display::return_message(
|
|
get_lang('NoDataAvailable'),
|
|
'warning'
|
|
);
|
|
$result['stats'] = Display::return_message(
|
|
get_lang('NoDataAvailable'),
|
|
'warning'
|
|
);
|
|
}
|
|
header('Cache-Control: no-cache');
|
|
echo json_encode($result);
|
|
break;
|
|
}
|
|
exit;
|
|
|