123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592 |
- <?php
- /* For licensing terms, see /license.txt */
- /**
- * Script showing information about a user (name, e-mail, courses and sessions)
- * @author Bart Mollet
- * @package chamilo.admin
- */
- $cidReset = true;
- require_once __DIR__.'/../inc/global.inc.php';
- $this_section = SECTION_PLATFORM_ADMIN;
- require_once api_get_path(SYS_CODE_PATH).'forum/forumfunction.inc.php';
- require_once api_get_path(SYS_CODE_PATH).'work/work.lib.php';
- if (!isset($_GET['user_id'])) {
- api_not_allowed(true);
- }
- $user = api_get_user_info($_GET['user_id'], true);
- if (empty($user)) {
- api_not_allowed(true);
- }
- $myUserId = api_get_user_id();
- if (!api_is_student_boss()) {
- api_protect_admin_script();
- } else {
- $isBoss = UserManager::userIsBossOfStudent($myUserId, $user['user_id']);
- if (!$isBoss) {
- api_not_allowed(true);
- }
- }
- $interbreadcrumb[] = array("url" => 'index.php', "name" => get_lang('PlatformAdmin'));
- $interbreadcrumb[] = array("url" => 'user_list.php', "name" => get_lang('UserList'));
- $userId = $user['user_id'];
- $tool_name = $user['complete_name'].(empty($user['official_code']) ? '' : ' ('.$user['official_code'].')');
- $table_course_user = Database::get_main_table(TABLE_MAIN_COURSE_USER);
- $table_course = Database::get_main_table(TABLE_MAIN_COURSE);
- // only allow platform admins to login_as, or session admins only for students (not teachers nor other admins)
- $login_as_icon = '';
- $editUser = '';
- $exportLink = '';
- $vCardExportLink = '';
- if (api_is_platform_admin()) {
- $login_as_icon =
- '<a href="'.api_get_path(WEB_CODE_PATH).'admin/user_list.php'
- .'?action=login_as&user_id='.$userId.'&'
- .'sec_token='.$_SESSION['sec_token'].'">'
- .Display::return_icon(
- 'login_as.png',
- get_lang('LoginAs'),
- array(),
- ICON_SIZE_MEDIUM
- ).'</a>';
- $editUser = Display::url(
- Display::return_icon(
- 'edit.png',
- get_lang('Edit'),
- array(),
- ICON_SIZE_MEDIUM
- ),
- api_get_path(WEB_CODE_PATH).'admin/user_edit.php?user_id='.$userId
- );
- $exportLink = Display::url(
- Display::return_icon(
- 'export_csv.png',
- get_lang('ExportAsCSV'),
- '',
- ICON_SIZE_MEDIUM
- ),
- api_get_self().'?user_id='.$userId.'&action=export'
- );
- $vCardExportLink = Display::url(
- Display::return_icon(
- 'vcard.png',
- get_lang('UserInfo'),
- '',
- ICON_SIZE_MEDIUM
- ),
- api_get_path(WEB_PATH).'main/social/vcard_export.php?userId='.$userId
- );
- }
- $studentBossList = UserManager::getStudentBossList($userId);
- $studentBossListToString = '';
- if ($studentBossList) {
- $table = new HTML_Table(array('class' => 'data_table'));
- $table->setHeaderContents(0, 0, get_lang('User'));
- $csvContent[] = [get_lang('StudentBoss')];
- $row = 1;
- foreach ($studentBossList as $studentBossId) {
- $studentBoss = api_get_user_info($studentBossId['boss_id']);
- $table->setCellContents($row, 0, $studentBoss['complete_name_with_username']);
- $csvContent[] = array($studentBoss['complete_name_with_username']);
- $row++;
- }
- $studentBossListToString = $table->toHtml();
- }
- if (isset($_GET['action'])) {
- switch ($_GET['action']) {
- case 'send_legal':
- LegalManager::sendLegal($userId);
- break;
- case 'delete_legal':
- LegalManager::deleteLegal($userId);
- break;
- case 'unsubscribe':
- $courseCode = empty($_GET['course_code']) ? '' : intval($_GET['course_code']);
- $sessionId = empty($_GET['id_session']) ? 0 : intval($_GET['id_session']);
- $courseInfo = api_get_course_info($courseCode);
- if (empty($courseInfo)) {
- break;
- }
- if (CourseManager::getUserInCourseStatus($userId, $courseInfo['real_id']) == STUDENT) {
- CourseManager::unsubscribe_user($userId, $courseCode, $sessionId);
- Display::addFlash(Display::return_message(get_lang('UserUnsubscribed')));
- } else {
- Display::addFlash(Display::return_message(
- get_lang('CannotUnsubscribeUserFromCourse'),
- 'error',
- false
- ));
- }
- break;
- case 'unsubscribeSessionCourse':
- $userId = empty($_GET['user_id']) ? 0 : intval($_GET['user_id']);
- $courseCode = empty($_GET['course_code']) ? '' : intval($_GET['course_code']);
- $sessionId = empty($_GET['id_session']) ? 0 : intval($_GET['id_session']);
- SessionManager::removeUsersFromCourseSession(
- array($userId),
- $sessionId,
- api_get_course_info($courseCode)
- );
- Display::addFlash(Display::return_message(get_lang('UserUnsubscribed')));
- break;
- case 'export':
- Export :: arrayToCsv($csvContent, 'user_information_'.$user);
- exit;
- break;
- }
- }
- // Show info about who created this user and when
- $creatorId = $user['creator_id'];
- $creatorInfo = api_get_user_info($creatorId);
- $registrationDate = $user['registration_date'];
- $table = new HTML_Table(array('class' => 'data_table'));
- $table->setHeaderContents(0, 0, get_lang('Information'));
- $csvContent[] = [get_lang('Information')];
- $data = array(
- get_lang('Name') => $user['complete_name'],
- get_lang('Email') => $user['email'],
- get_lang('Phone') => $user['phone'],
- get_lang('OfficialCode') => $user['official_code'],
- get_lang('Online') => !empty($user['user_is_online']) ?
- Display::return_icon('online.png') : Display::return_icon(
- 'offline.png'
- ),
- get_lang('Status') => $user['status'] == 1 ? get_lang('Teacher') : get_lang(
- 'Student'
- ),
- null => sprintf(
- get_lang('CreatedByXYOnZ'),
- 'user_information.php?user_id='
- .$creatorId,
- $creatorInfo['username'],
- api_get_utc_datetime($registrationDate)
- )
- );
- $row = 1;
- foreach ($data as $label => $item) {
- if (!empty($label)) {
- $label = $label.': ';
- }
- $table->setCellContents($row, 0, $label.$item);
- $csvContent[] = array($label, strip_tags($item));
- $row++;
- }
- $userInformation = $table->toHtml();
- $table = new HTML_Table(array('class' => 'data_table'));
- $table->setHeaderContents(0, 0, get_lang('Tracking'));
- $csvContent[] = [get_lang('Tracking')];
- $data = array(
- get_lang('FirstLogin') => Tracking :: get_first_connection_date($userId),
- get_lang('LatestLogin') => Tracking :: get_last_connection_date($userId, true)
- );
- if (api_get_setting('allow_terms_conditions') === 'true') {
- $extraFieldValue = new ExtraFieldValue('user');
- $value = $extraFieldValue->get_values_by_handler_and_field_variable(
- $userId,
- 'legal_accept'
- );
- $icon = Display::return_icon('accept_na.png');
- if (isset($value['value'])) {
- list($legalId, $legalLanguageId, $legalTime) = explode(':', $value['value']);
- $icon = Display::return_icon('accept.png').' '.api_get_local_time($legalTime);
- $icon .= ' '.Display::url(
- get_lang('DeleteLegal'),
- api_get_self().'?action=delete_legal&user_id='.$userId,
- ['class' => 'btn btn-danger btn-xs']
- );
- } else {
- $icon .= ' '.Display::url(
- get_lang('SendLegal'),
- api_get_self().'?action=send_legal&user_id='.$userId,
- ['class' => 'btn btn-primary btn-xs']
- );
- }
- $data[get_lang('LegalAccepted')] = $icon;
- }
- $row = 1;
- foreach ($data as $label => $item) {
- if (!empty($label)) {
- $label = $label.': ';
- }
- $table->setCellContents($row, 0, $label.$item);
- $csvContent[] = array($label, strip_tags($item));
- $row++;
- }
- $trackingInformation = $table->toHtml();
- $socialInformation = '';
- /**
- * Show social activity
- */
- if (api_get_setting('allow_social_tool') === 'true') {
- $em = Database::getManager();
- $userObject = $em->find('ChamiloUserBundle:User', $user['user_id']);
- $data = [];
- // Calculate values
- if (api_get_setting('allow_message_tool') === 'true') {
- $messagesSent = SocialManager::getCountMessagesSent($user['user_id']);
- $data[] = [get_lang('MessagesSent'), $messagesSent];
- $messagesReceived = SocialManager::getCountMessagesReceived($user['user_id']);
- $data[] = [get_lang('MessagesReceived'), $messagesReceived];
- }
- $wallMessagesPosted = SocialManager::getCountWallPostedMessages($user['user_id']);
- $data[] = [get_lang('WallMessagesPosted'), $wallMessagesPosted];
- $friends = SocialManager::getCountFriends($user['user_id']);
- $data[] = [get_lang('Friends'), $friends];
- $count = SocialManager::getCountInvitationSent($user['user_id']);
- $data[] = [get_lang('InvitationSent'), $count];
- $count = SocialManager::get_message_number_invitation_by_user_id($user['user_id']);
- $data[] = [get_lang('InvitationReceived'), $count];
- $socialInformation = Display::return_sortable_table(
- '',
- $data
- );
- }
- /**
- * Show the sessions in which this user is subscribed
- */
- $sessions = SessionManager::get_sessions_by_user($userId, true);
- $personal_course_list = array();
- $courseToolInformationTotal = null;
- if (count($sessions) > 0) {
- $sessionInformation = null;
- $header = array(
- array(get_lang('Code'), true),
- array(get_lang('Title'), true),
- array(get_lang('Status'), true),
- array(get_lang('TimeSpentInTheCourse'), true),
- array(get_lang('TotalPostsInAllForums'), true),
- array('', false)
- );
- $headerList = array();
- foreach ($header as $item) {
- $headerList[] = $item[0];
- }
- $csvContent[] = array();
- $csvContent[] = array(get_lang('Sessions'));
- foreach ($sessions as $session_item) {
- $data = array();
- $personal_course_list = array();
- $id_session = $session_item['session_id'];
- $csvContent[] = array($session_item['session_name']);
- $csvContent[] = $headerList;
- foreach ($session_item['courses'] as $my_course) {
- $courseInfo = api_get_course_info_by_id($my_course['real_id']);
- $sessionStatus = SessionManager::get_user_status_in_session(
- $userId,
- $courseInfo['real_id'],
- $id_session
- );
- $status = null;
- switch ($sessionStatus) {
- case 0:
- case STUDENT:
- $status = get_lang('Student');
- break;
- case 2:
- $status = get_lang('CourseCoach');
- break;
- }
- $tools = '<a href="course_information.php?code='.$courseInfo['code'].'&id_session='.$id_session.'">'.
- Display::return_icon('synthese_view.gif', get_lang('Overview')).'</a>'.
- '<a href="'.$courseInfo['course_public_url'].'?id_session='.$id_session.'">'.
- Display::return_icon('course_home.gif', get_lang('CourseHomepage')).'</a>';
- if ($my_course['status'] == STUDENT) {
- $tools .= '<a href="user_information.php?action=unsubscribeSessionCourse&course_code='.$courseInfo['code'].'&user_id='.$userId.'&id_session='.$id_session.'">'.
- Display::return_icon('delete.png', get_lang('Delete')).'</a>';
- }
- $timeSpent = api_time_to_hms(
- Tracking :: get_time_spent_on_the_course(
- $userId,
- $courseInfo['real_id'],
- $id_session
- )
- );
- $totalForumMessages = CourseManager::getCountPostInForumPerUser(
- $userId,
- $courseInfo['real_id'],
- $id_session
- );
- $row = array(
- Display::url(
- $courseInfo['code'],
- $courseInfo['course_public_url'].'?id_session='.$id_session
- ),
- $courseInfo['title'],
- $status,
- $timeSpent,
- $totalForumMessages,
- $tools
- );
- $csvContent[] = array_map('strip_tags', $row);
- $data[] = $row;
- $result = TrackingUserLogCSV::getToolInformation(
- $userId,
- $courseInfo,
- $id_session
- );
- if (!empty($result['html'])) {
- $courseToolInformationTotal .= $result['html'];
- $csvContent = array_merge($csvContent, $result['array']);
- }
- }
- $dates = array_filter(
- array($session_item['access_start_date'], $session_item['access_end_date'])
- );
- $sessionInformation .= Display::page_subheader(
- '<a href="'.api_get_path(WEB_CODE_PATH).'session/resume_session.php?id_session='.$id_session.'">'.
- $session_item['session_name'].'</a>',
- ' '.implode(' - ', $dates)
- );
- $sessionInformation .= Display::return_sortable_table(
- $header,
- $data,
- array(),
- array(),
- array('user_id' => intval($_GET['user_id']))
- );
- $sessionInformation .= $courseToolInformationTotal;
- }
- } else {
- $sessionInformation = '<p>'.get_lang('NoSessionsForThisUser').'</p>';
- }
- $courseToolInformationTotal = null;
- /**
- * Show the courses in which this user is subscribed
- */
- $sql = 'SELECT * FROM '.$table_course_user.' cu, '.$table_course.' c
- WHERE
- cu.user_id = '.$userId.' AND
- cu.c_id = c.id AND
- cu.relation_type <> '.COURSE_RELATION_TYPE_RRHH.' ';
- $res = Database::query($sql);
- if (Database::num_rows($res) > 0) {
- $header = array(
- array(get_lang('Code')),
- array(get_lang('Title')),
- array(get_lang('Status')),
- array(get_lang('TimeSpentInTheCourse')),
- array(get_lang('TotalPostsInAllForums')),
- array('')
- );
- $headerList = array();
- foreach ($header as $item) {
- $headerList[] = $item[0];
- }
- $csvContent[] = array();
- $csvContent[] = array(get_lang('Courses'));
- $csvContent[] = $headerList;
- $data = array();
- $courseToolInformationTotal = null;
- while ($course = Database::fetch_object($res)) {
- $courseInfo = api_get_course_info_by_id($course->c_id);
- $courseCode = $courseInfo['code'];
- $courseToolInformation = null;
- $tools = '<a href="course_information.php?code='.$courseCode.'">'.
- Display::return_icon('synthese_view.gif', get_lang('Overview')).'</a>'.
- '<a href="'.$courseInfo['course_public_url'].'">'.
- Display::return_icon('course_home.gif', get_lang('CourseHomepage')).'</a>'.
- '<a href="course_edit.php?id='.$course->c_id.'">'.
- Display::return_icon('edit.gif', get_lang('Edit')).'</a>';
- if ($course->status == STUDENT) {
- $tools .= '<a href="user_information.php?action=unsubscribe&course_code='.$courseCode.'&user_id='.$userId.'">'.
- Display::return_icon('delete.png', get_lang('Delete')).'</a>';
- }
- $timeSpent = api_time_to_hms(
- Tracking :: get_time_spent_on_the_course(
- $userId,
- $courseInfo['real_id'],
- 0
- )
- );
- $totalForumMessages = CourseManager::getCountPostInForumPerUser(
- $userId,
- $course->id,
- 0
- );
- $row = array(
- Display::url($courseCode, $courseInfo['course_public_url']),
- $course->title,
- $course->status == STUDENT ? get_lang('Student') : get_lang('Teacher'),
- $timeSpent,
- $totalForumMessages,
- $tools,
- );
- $csvContent[] = array_map('strip_tags', $row);
- $data[] = $row;
- $result = TrackingUserLogCSV::getToolInformation(
- $userId,
- $courseInfo,
- 0
- );
- $courseToolInformationTotal .= $result['html'];
- $csvContent = array_merge($csvContent, $result['array']);
- }
- $courseInformation = Display::page_subheader(get_lang('Courses'));
- $courseInformation .= Display::return_sortable_table(
- $header,
- $data,
- array(),
- array(),
- array('user_id' => intval($_GET['user_id']))
- );
- $courseInformation .= $courseToolInformationTotal;
- } else {
- $courseInformation = '<p>'.get_lang('NoCoursesForThisUser').'</p>';
- }
- /**
- * Show the URL in which this user is subscribed
- */
- $urlInformation = '';
- if (api_is_multiple_url_enabled()) {
- $urlList = UrlManager::get_access_url_from_user($userId);
- if (count($urlList) > 0) {
- $header = array();
- $header[] = array('URL', true);
- $data = array();
- $csvContent[] = array();
- $csvContent[] = array('Url');
- foreach ($urlList as $url) {
- $row = array();
- $row[] = Display::url($url['url'], $url['url']);
- $csvContent[] = array_map('strip_tags', $row);
- $data[] = $row;
- }
- $urlInformation = Display::page_subheader(get_lang('URLList'));
- $urlInformation .= Display::return_sortable_table(
- $header,
- $data,
- array(),
- array(),
- array('user_id' => intval($_GET['user_id']))
- );
- } else {
- $urlInformation = '<p>'.get_lang('NoUrlForThisUser').'</p>';
- }
- }
- if (isset($_GET['action'])) {
- switch ($_GET['action']) {
- case 'export':
- Export :: arrayToCsv($csvContent, 'user_information_'.$user);
- exit;
- break;
- }
- }
- Display::display_header($tool_name);
- echo '<div class="actions">
- <a href="'.api_get_path(WEB_CODE_PATH).'mySpace/myStudents.php?student='.intval($_GET['user_id']).'" title="'.get_lang('Reporting').'">'.
- Display::return_icon('statistics.png', get_lang('Reporting'), '', ICON_SIZE_MEDIUM).'
- </a>
- '.$login_as_icon.'
- '.$editUser.'
- '.$exportLink.'
- '.$vCardExportLink.'
- </div>';
- echo Display::page_header($tool_name);
- $fullUrlBig = UserManager::getUserPicture(
- $userId,
- USER_IMAGE_SIZE_BIG
- );
- $fullUrl = UserManager::getUserPicture(
- $userId,
- USER_IMAGE_SIZE_ORIGINAL
- );
- echo '<div class="row">';
- echo '<div class="col-md-2">';
- echo '<a class="expand-image" href="'.$fullUrlBig.'">'
- .'<img src="'.$fullUrl.'" /></a><br />';
- echo '</div>';
- echo '<div class="col-md-5">';
- echo $userInformation;
- echo '</div>';
- echo '<div class="col-md-5">';
- echo $trackingInformation;
- echo '</div>';
- echo '</div>';
- if ($studentBossList) {
- echo Display::page_subheader(get_lang('StudentBossList'));
- echo $studentBossListToString;
- }
- if (api_get_setting('allow_social_tool') === 'true') {
- echo Display::page_subheader(get_lang('SocialData'));
- echo $socialInformation;
- }
- echo Display::page_subheader(get_lang('SessionList'));
- echo $sessionInformation;
- echo Display::page_subheader(get_lang('CourseList'));
- echo $courseInformation;
- echo $urlInformation;
- Display::display_footer();
|