user_edit.php 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530
  1. <?php
  2. /* For licensing terms, see /license.txt */
  3. /**
  4. * @package chamilo.admin
  5. */
  6. $cidReset = true;
  7. require_once '../inc/global.inc.php';
  8. $this_section = SECTION_PLATFORM_ADMIN;
  9. api_protect_admin_script(true);
  10. $user_id = isset($_GET['user_id']) ? intval($_GET['user_id']) : intval($_POST['user_id']);
  11. api_protect_super_admin($user_id, null, true);
  12. $is_platform_admin = api_is_platform_admin() ? 1 : 0;
  13. $userInfo = api_get_user_info($user_id);
  14. $htmlHeadXtra[] = '
  15. <script>
  16. var is_platform_id = "'.$is_platform_admin.'";
  17. function enable_expiration_date() {
  18. document.user_edit.radio_expiration_date[0].checked=false;
  19. document.user_edit.radio_expiration_date[1].checked=true;
  20. }
  21. function password_switch_radio_button(){
  22. var input_elements = document.getElementsByTagName("input");
  23. for (var i = 0; i < input_elements.length; i++) {
  24. if(input_elements.item(i).name == "reset_password" && input_elements.item(i).value == "2") {
  25. input_elements.item(i).checked = true;
  26. }
  27. }
  28. }
  29. function display_drh_list(){
  30. var $radios = $("input:radio[name=platform_admin]");
  31. if (document.getElementById("status_select").value=='.COURSEMANAGER.') {
  32. if (is_platform_id == 1)
  33. document.getElementById("id_platform_admin").style.display="block";
  34. } else if (document.getElementById("status_select").value=='.STUDENT.') {
  35. if (is_platform_id == 1)
  36. document.getElementById("id_platform_admin").style.display="none";
  37. $radios.filter("[value=0]").attr("checked", true);
  38. } else {
  39. if (is_platform_id == 1)
  40. document.getElementById("id_platform_admin").style.display="none";
  41. $radios.filter("[value=0]").attr("checked", true);
  42. }
  43. }
  44. function show_image(image,width,height) {
  45. width = parseInt(width) + 20;
  46. height = parseInt(height) + 20;
  47. window_x = window.open(image,\'windowX\',\'width=\'+ width + \', height=\'+ height + \' , resizable=0\');
  48. }
  49. function confirmation(name) {
  50. if (confirm("'.get_lang('AreYouSureToDeleteJS', '').' " + name + " ?")) {
  51. document.forms["profile"].submit();
  52. } else {
  53. return false;
  54. }
  55. }
  56. </script>';
  57. $htmlHeadXtra[] = '<link href="'. api_get_path(WEB_PATH) .'web/assets/cropper/dist/cropper.min.css" rel="stylesheet">';
  58. $htmlHeadXtra[] = '<script src="'. api_get_path(WEB_PATH) .'web/assets/cropper/dist/cropper.min.js"></script>';
  59. $htmlHeadXtra[] = '<script>
  60. $(document).ready(function() {
  61. var $image = $("#previewImage");
  62. var $input = $("[name=\'cropResult\']");
  63. var $cropButton = $("#cropButton");
  64. var canvas = "";
  65. var imageWidth = "";
  66. var imageHeight = "";
  67. $("input:file").change(function() {
  68. var oFReader = new FileReader();
  69. oFReader.readAsDataURL(document.getElementById("picture").files[0]);
  70. oFReader.onload = function (oFREvent) {
  71. $image.attr("src", this.result);
  72. $("#labelCropImage").html("'.get_lang('Preview').'");
  73. $("#cropImage").addClass("thumbnail");
  74. $cropButton.removeClass("hidden");
  75. // Destroy cropper
  76. $image.cropper("destroy");
  77. $image.cropper({
  78. aspectRatio: 1 / 1,
  79. responsive : true,
  80. center : false,
  81. guides : false,
  82. movable: false,
  83. zoomable: false,
  84. rotatable: false,
  85. scalable: false,
  86. crop: function(e) {
  87. // Output the result data for cropping image.
  88. $input.val(e.x+","+e.y+","+e.width+","+e.height);
  89. }
  90. });
  91. };
  92. });
  93. $("#cropButton").on("click", function() {
  94. var canvas = $image.cropper("getCroppedCanvas");
  95. var dataUrl = canvas.toDataURL();
  96. $image.attr("src", dataUrl);
  97. $image.cropper("destroy");
  98. $cropButton.addClass("hidden");
  99. return false;
  100. });
  101. });
  102. </script>';
  103. $libpath = api_get_path(LIBRARY_PATH);
  104. $noPHP_SELF = true;
  105. $tool_name = get_lang('ModifyUserInfo');
  106. $interbreadcrumb[] = array('url' => 'index.php', "name" => get_lang('PlatformAdmin'));
  107. $interbreadcrumb[] = array('url' => "user_list.php", "name" => get_lang('UserList'));
  108. $table_user = Database::get_main_table(TABLE_MAIN_USER);
  109. $table_admin = Database::get_main_table(TABLE_MAIN_ADMIN);
  110. $sql = "SELECT u.*, a.user_id AS is_admin FROM $table_user u
  111. LEFT JOIN $table_admin a ON a.user_id = u.id
  112. WHERE u.id = '".$user_id."'";
  113. $res = Database::query($sql);
  114. if (Database::num_rows($res) != 1) {
  115. header('Location: user_list.php');
  116. exit;
  117. }
  118. $user_data = Database::fetch_array($res, 'ASSOC');
  119. $user_data['platform_admin'] = is_null($user_data['is_admin']) ? 0 : 1;
  120. $user_data['send_mail'] = 0;
  121. $user_data['old_password'] = $user_data['password'];
  122. //Convert the registration date of the user
  123. $user_data['registration_date'] = api_get_local_time($user_data['registration_date']);
  124. unset($user_data['password']);
  125. // Create the form
  126. $form = new FormValidator(
  127. 'user_edit',
  128. 'post',
  129. api_get_self().'?user_id='.$user_id,
  130. ''
  131. );
  132. $form->addElement('header', $tool_name);
  133. $form->addElement('hidden', 'user_id', $user_id);
  134. if (api_is_western_name_order()) {
  135. // Firstname
  136. $form->addElement('text', 'firstname', get_lang('FirstName'));
  137. $form->applyFilter('firstname', 'html_filter');
  138. $form->applyFilter('firstname', 'trim');
  139. $form->addRule('firstname', get_lang('ThisFieldIsRequired'), 'required');
  140. // Lastname
  141. $form->addElement('text', 'lastname', get_lang('LastName'));
  142. $form->applyFilter('lastname', 'html_filter');
  143. $form->applyFilter('lastname', 'trim');
  144. $form->addRule('lastname', get_lang('ThisFieldIsRequired'), 'required');
  145. } else {
  146. // Lastname
  147. $form->addElement('text', 'lastname', get_lang('LastName'));
  148. $form->applyFilter('lastname', 'html_filter');
  149. $form->applyFilter('lastname', 'trim');
  150. $form->addRule('lastname', get_lang('ThisFieldIsRequired'), 'required');
  151. // Firstname
  152. $form->addElement('text', 'firstname', get_lang('FirstName'));
  153. $form->applyFilter('firstname', 'html_filter');
  154. $form->applyFilter('firstname', 'trim');
  155. $form->addRule('firstname', get_lang('ThisFieldIsRequired'), 'required');
  156. }
  157. // Official code
  158. $form->addElement('text', 'official_code', get_lang('OfficialCode'), array('size' => '40'));
  159. $form->applyFilter('official_code', 'html_filter');
  160. $form->applyFilter('official_code', 'trim');
  161. // Email
  162. $form->addElement('text', 'email', get_lang('Email'));
  163. $form->addRule('email', get_lang('EmailWrong'), 'email');
  164. if (api_get_setting('registration', 'email') == 'true') {
  165. $form->addRule('email', get_lang('EmailWrong'), 'required');
  166. }
  167. if (api_get_setting('login_is_email') == 'true') {
  168. $form->addRule('email', sprintf(get_lang('UsernameMaxXCharacters'), (string)USERNAME_MAX_LENGTH), 'maxlength', USERNAME_MAX_LENGTH);
  169. $form->addRule('email', get_lang('UserTaken'), 'username_available', $user_data['username']);
  170. }
  171. // OpenID
  172. if (api_get_setting('openid_authentication') == 'true') {
  173. $form->addElement('text', 'openid', get_lang('OpenIDURL'));
  174. }
  175. // Phone
  176. $form->addElement('text', 'phone', get_lang('PhoneNumber'));
  177. // Picture
  178. $form->addElement('file', 'picture', get_lang('AddPicture'), array('id' => 'picture', 'class' => 'picture-form'));
  179. $allowed_picture_types = array ('jpg', 'jpeg', 'png', 'gif');
  180. $form->addHtml('<div class="form-group">
  181. <label for="cropImage" id="labelCropImage" class="col-sm-2 control-label"></label>
  182. <div class="col-sm-8">
  183. <div id="cropImage" class="cropCanvas">
  184. <img id="previewImage" >
  185. </div>
  186. <div>
  187. <button class="btn btn-primary hidden" name="cropButton" id="cropButton">
  188. <em class="fa fa-crop"></em> '.get_lang('CropYourPicture').'</button>
  189. </div>
  190. </div>
  191. </div>');
  192. $form->addHidden('cropResult', '');
  193. $form->addRule(
  194. 'picture',
  195. get_lang('OnlyImagesAllowed').' ('.implode(',', $allowed_picture_types).')',
  196. 'filetype',
  197. $allowed_picture_types
  198. );
  199. if (strlen($user_data['picture_uri']) > 0) {
  200. $form->addElement('checkbox', 'delete_picture', '', get_lang('DelImage'));
  201. }
  202. // Username
  203. if (api_get_setting('login_is_email') != 'true') {
  204. $form->addElement('text', 'username', get_lang('LoginName'), array('maxlength' => USERNAME_MAX_LENGTH));
  205. $form->addRule('username', get_lang('ThisFieldIsRequired'), 'required');
  206. $form->addRule('username', sprintf(get_lang('UsernameMaxXCharacters'), (string)USERNAME_MAX_LENGTH), 'maxlength', USERNAME_MAX_LENGTH);
  207. $form->addRule('username', get_lang('OnlyLettersAndNumbersAllowed'), 'username');
  208. $form->addRule('username', get_lang('UserTaken'), 'username_available', $user_data['username']);
  209. }
  210. if (isset($extAuthSource) && !empty($extAuthSource) && count($extAuthSource) > 0) {
  211. $form->addLabel(
  212. get_lang('ExternalAuthentication'),
  213. $userInfo['auth_source']
  214. );
  215. }
  216. // Password
  217. $form->addElement('radio', 'reset_password', get_lang('Password'), get_lang('DontResetPassword'), 0);
  218. $nb_ext_auth_source_added = 0;
  219. if (isset($extAuthSource) && !empty($extAuthSource) && count($extAuthSource) > 0) {
  220. $auth_sources = array();
  221. foreach ($extAuthSource as $key => $info) {
  222. // @todo : make uniform external authentication configuration (ex : cas and external_login ldap)
  223. // Special case for CAS. CAS is activated from Chamilo > Administration > Configuration > CAS
  224. // extAuthSource always on for CAS even if not activated
  225. // same action for file user_add.php
  226. if (($key == CAS_AUTH_SOURCE && api_get_setting('cas_activate') === 'true') || ($key != CAS_AUTH_SOURCE)) {
  227. $auth_sources[$key] = $key;
  228. $nb_ext_auth_source_added++;
  229. }
  230. }
  231. if ($nb_ext_auth_source_added > 0) {
  232. // @todo check the radio button for external authentification and select the external authentication in the menu
  233. $group[] = $form->createElement('radio', 'reset_password', null, get_lang('ExternalAuthentication').' ', 3);
  234. $group[] = $form->createElement('select', 'auth_source', null, $auth_sources);
  235. $group[] = $form->createElement('static', '', '', '<br />');
  236. $form->addGroup($group, 'password', null, '', false);
  237. }
  238. }
  239. $form->addElement('radio', 'reset_password', null, get_lang('AutoGeneratePassword'), 1);
  240. $group = array();
  241. $group[] =$form->createElement('radio', 'reset_password', null, get_lang('EnterPassword'), 2);
  242. $group[] = $form->createElement(
  243. 'password',
  244. 'password',
  245. null,
  246. array('onkeydown' => 'javascript: password_switch_radio_button();')
  247. );
  248. $form->addGroup($group, 'password', null, '', false);
  249. // Status
  250. $status = array();
  251. $status[COURSEMANAGER] = get_lang('Teacher');
  252. $status[STUDENT] = get_lang('Learner');
  253. $status[DRH] = get_lang('Drh');
  254. $status[SESSIONADMIN] = get_lang('SessionsAdmin');
  255. $status[STUDENT_BOSS] = get_lang('RoleStudentBoss');
  256. $status[INVITEE] = get_lang('Invitee');
  257. $form->addElement(
  258. 'select',
  259. 'status',
  260. get_lang('Profile'),
  261. $status,
  262. array(
  263. 'id' => 'status_select',
  264. 'onchange' => 'javascript: display_drh_list();'
  265. )
  266. );
  267. $display = isset($user_data['status']) && ($user_data['status'] == STUDENT || (isset($_POST['status']) && $_POST['status'] == STUDENT)) ? 'block' : 'none';
  268. // Platform admin
  269. if (api_is_platform_admin()) {
  270. $group = array();
  271. $group[] =$form->createElement('radio', 'platform_admin', null, get_lang('Yes'), 1);
  272. $group[] =$form->createElement('radio', 'platform_admin', null, get_lang('No'), 0);
  273. $user_data['status'] == 1 ? $display = 'block':$display = 'none';
  274. $form->addElement('html', '<div id="id_platform_admin" style="display:'.$display.'">');
  275. $form->addGroup($group, 'admin', get_lang('PlatformAdmin'), null, false);
  276. $form->addElement('html', '</div>');
  277. }
  278. //Language
  279. $form->addElement('select_language', 'language', get_lang('Language'));
  280. // Send email
  281. $group = array();
  282. $group[] = $form->createElement('radio', 'send_mail', null, get_lang('Yes'), 1);
  283. $group[] = $form->createElement('radio', 'send_mail', null, get_lang('No'), 0);
  284. $form->addGroup($group, 'mail', get_lang('SendMailToNewUser'), '&nbsp;', false);
  285. // Registration User and Date
  286. $creatorInfo = api_get_user_info($user_data['creator_id']);
  287. $date = sprintf(get_lang('CreatedByXYOnZ'), 'user_information.php?user_id='.$user_data['creator_id'], $creatorInfo['username'], $user_data['registration_date']);
  288. $form->addElement('label', get_lang('RegistrationDate'), $date);
  289. if (!$user_data['platform_admin']) {
  290. // Expiration Date
  291. $form->addElement('radio', 'radio_expiration_date', get_lang('ExpirationDate'), get_lang('NeverExpires'), 0);
  292. $group = array ();
  293. $group[] = $form->createElement('radio', 'radio_expiration_date', null, get_lang('Enabled'), 1);
  294. $group[] = $form->createElement('DateTimePicker', 'expiration_date', null, array('onchange' => 'javascript: enable_expiration_date();'));
  295. $form->addGroup($group, 'max_member_group', null, '', false);
  296. // Active account or inactive account
  297. $form->addElement('radio', 'active', get_lang('ActiveAccount'), get_lang('Active'), 1);
  298. $form->addElement('radio', 'active', '', get_lang('Inactive'), 0);
  299. }
  300. $studentBossList = UserManager::getStudentBossList($user_data['user_id']);
  301. $conditions = ['status' => STUDENT_BOSS];
  302. $studentBoss = UserManager::get_user_list($conditions);
  303. $studentBossToSelect = [];
  304. if ($studentBoss) {
  305. foreach ($studentBoss as $bossId => $userData) {
  306. $bossInfo = api_get_user_info($userData['user_id']);
  307. $studentBossToSelect[$bossInfo['user_id']] = $bossInfo['complete_name_with_username'];
  308. }
  309. }
  310. if ($studentBossList) {
  311. $studentBossList = array_column($studentBossList, 'boss_id');
  312. }
  313. $user_data['student_boss'] = array_values($studentBossList);
  314. $form->addElement('advmultiselect', 'student_boss', get_lang('StudentBoss'), $studentBossToSelect);
  315. // EXTRA FIELDS
  316. $extraField = new ExtraField('user');
  317. $returnParams = $extraField->addElements($form, $user_data['user_id']);
  318. $jquery_ready_content = $returnParams['jquery_ready_content'];
  319. // the $jquery_ready_content variable collects all functions that will be load in the $(document).ready javascript function
  320. $htmlHeadXtra[] ='<script>
  321. $(document).ready(function(){
  322. '.$jquery_ready_content.'
  323. });
  324. </script>';
  325. // Submit button
  326. $form->addButtonSave(get_lang('Save'));
  327. // Set default values
  328. $user_data['reset_password'] = 0;
  329. $expiration_date = $user_data['expiration_date'];
  330. if (empty($expiration_date)) {
  331. $user_data['radio_expiration_date'] = 0;
  332. $user_data['expiration_date'] = api_get_local_time();
  333. } else {
  334. $user_data['radio_expiration_date'] = 1;
  335. $user_data['expiration_date'] = api_get_local_time($expiration_date);
  336. }
  337. $form->setDefaults($user_data);
  338. $error_drh = false;
  339. // Validate form
  340. if ($form->validate()) {
  341. $user = $form->getSubmitValues(1);
  342. $reset_password = intval($user['reset_password']);
  343. if ($reset_password == 2 && empty($user['password'])) {
  344. Display::addFlash(Display::return_message(get_lang('PasswordIsTooShort')));
  345. header('Location: '.api_get_self().'?user_id='.$user_id);
  346. exit();
  347. }
  348. $is_user_subscribed_in_course = CourseManager::is_user_subscribed_in_course($user['user_id']);
  349. if ($user['status'] == DRH && $is_user_subscribed_in_course) {
  350. $error_drh = true;
  351. } else {
  352. $picture_element = $form->getElement('picture');
  353. $picture = $picture_element->getValue();
  354. $picture_uri = $user_data['picture_uri'];
  355. if (isset($user['delete_picture']) && $user['delete_picture']) {
  356. $picture_uri = UserManager::delete_user_picture($user_id);
  357. } elseif (!empty($picture['name'])) {
  358. $picture_uri = UserManager::update_user_picture(
  359. $user_id,
  360. $_FILES['picture']['name'],
  361. $_FILES['picture']['tmp_name'],
  362. $user['cropResult']
  363. );
  364. }
  365. $lastname = $user['lastname'];
  366. $firstname = $user['firstname'];
  367. $password = $user['password'];
  368. $auth_source = isset($user['auth_source']) ? $user['auth_source'] : $userInfo['auth_source'];
  369. $official_code = $user['official_code'];
  370. $email = $user['email'];
  371. $phone = $user['phone'];
  372. $username = isset($user['username']) ? $user['username'] : $userInfo['username'];
  373. $status = intval($user['status']);
  374. $platform_admin = intval($user['platform_admin']);
  375. $send_mail = intval($user['send_mail']);
  376. $reset_password = intval($user['reset_password']);
  377. $hr_dept_id = isset($user['hr_dept_id']) ? intval($user['hr_dept_id']) : null;
  378. $language = $user['language'];
  379. if ($user['radio_expiration_date'] == '1' && !$user_data['platform_admin']) {
  380. $expiration_date = $user['expiration_date'];
  381. } else {
  382. $expiration_date = null;
  383. }
  384. $active = $user_data['platform_admin'] ? 1 : intval($user['active']);
  385. //If the user is set to admin the status will be overwrite by COURSEMANAGER = 1
  386. if ($platform_admin == 1) {
  387. $status = COURSEMANAGER;
  388. }
  389. if (api_get_setting('login_is_email') == 'true') {
  390. $username = $email;
  391. }
  392. UserManager::update_user(
  393. $user_id,
  394. $firstname,
  395. $lastname,
  396. $username,
  397. $password,
  398. $auth_source,
  399. $email,
  400. $status,
  401. $official_code,
  402. $phone,
  403. $picture_uri,
  404. $expiration_date,
  405. $active,
  406. null,
  407. $hr_dept_id,
  408. null,
  409. $language,
  410. null,
  411. $send_mail,
  412. $reset_password
  413. );
  414. if (isset($user['student_boss'])) {
  415. UserManager::subscribeUserToBossList($user_id, $user['student_boss']);
  416. }
  417. if (api_get_setting('openid_authentication') == 'true' && !empty($user['openid'])) {
  418. $up = UserManager::update_openid($user_id, $user['openid']);
  419. }
  420. $currentUserId = api_get_user_id();
  421. if ($user_id != $currentUserId) {
  422. if ($platform_admin == 1) {
  423. UserManager::add_user_as_admin($user_id);
  424. } else {
  425. UserManager::remove_user_admin($user_id);
  426. }
  427. }
  428. $extraFieldValue = new ExtraFieldValue('user');
  429. $extraFieldValue->saveFieldValues($user);
  430. $tok = Security::get_token();
  431. header('Location: user_list.php?action=show_message&message='.urlencode(get_lang('UserUpdated')).'&sec_token='.$tok);
  432. exit();
  433. }
  434. }
  435. $message = null;
  436. if ($error_drh) {
  437. $err_msg = get_lang('StatusCanNotBeChangedToHumanResourcesManager');
  438. $message = Display::return_message($err_msg, 'error');
  439. }
  440. $content = null;
  441. $bigImage = UserManager::getUserPicture($user_id, USER_IMAGE_SIZE_BIG);
  442. $normalImage = UserManager::getUserPicture($user_id, USER_IMAGE_SIZE_ORIGINAL);
  443. $content .= '<div class="row">';
  444. $content .= '<div class="col-md-10">';
  445. // Display form
  446. $content .= $form->returnForm();
  447. $content .= '</div>';
  448. $content .= '<div class="col-md-2">';
  449. $content .= '<a class="thumbnail expand-image" href="'.$bigImage.'" /><img src="'.$normalImage.'"></a>';
  450. $content .= '</div>';
  451. $tpl = new Template($tool_name);
  452. $tpl->assign('message', $message);
  453. $tpl->assign('content', $content);
  454. $tpl->display_one_col_template();