-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathedit.php
117 lines (93 loc) · 3.45 KB
/
edit.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<?php
require_once(__DIR__ . '/global.php');
require_once(__DIR__ . '/classes/User.php');
UserConfig::$IGNORE_REQUIRED_EMAIL_VERIFICATION = true;
$user = User::require_login();
UserTools::preventCSRF();
$template_info = StartupAPI::getTemplateInfo();
$current_module = null;
if (array_key_exists('module', $_GET)) {
foreach (UserConfig::$authentication_modules as $current_module) {
if ($current_module->getID() == $_GET['module']) {
break;
}
}
}
if (is_null($current_module)) {
$template_info['PAGE']['SECTION'] = 'profile_info';
$compact_page = false;
} else {
$compact_page = $current_module->isCompact();
$template_info['PAGE']['SECTION'] = 'login_' . $current_module->getID();
$template_info['current_module']['id'] = $current_module->getID();
}
$template_info['compact_page'] = $compact_page;
$data = array();
$errors = array();
if (array_key_exists('save', $_POST)) {
if (array_key_exists('module', $_GET)) {
try {
if ($current_module->processEditUser($user, $_POST)) {
header('Location: ' . UserConfig::$USERSROOTURL . '/edit.php?module=' . $_GET['module'] . '#message=saved');
} else {
header('Location: ' . UserConfig::$USERSROOTURL . '/edit.php?module=' . $_GET['module'] . '&error=failed');
}
exit;
} catch (InputValidationException $ex) {
$errors[$current_module->getID()] = $ex->getErrors();
} catch (ExistingUserException $ex) {
$user_exists = true;
$errors[$current_module->getID()] = $ex->getErrors();
}
} else {
$data = $_POST;
if (array_key_exists('name', $data)) {
$name = trim(mb_convert_encoding($data['name'], 'UTF-8'));
if ($name == '') {
$errors['profile-info']['name'][] = "Name can't be empty";
}
} else {
$errors['profile-info']['name'][] = 'No name specified';
}
if (array_key_exists('email', $data)) {
$email = trim(mb_convert_encoding($data['email'], 'UTF-8'));
if (filter_var($email, FILTER_VALIDATE_EMAIL) === FALSE) {
$errors['profile-info']['email'][] = 'Invalid email address';
}
} else {
$errors['profile-info']['email'][] = 'No email specified';
}
$existing_users = User::getUsersByEmailOrUsername($email);
if ((!array_key_exists('profile-info', $errors) || !array_key_exists('email', $errors['profile-info'])) &&
(count($existing_users) > 0 && !$existing_users[0]->isTheSameAs($user))
) {
$errors['profile-info']['email'][] = "This email is already used by another user, please enter a different email address.";
}
if (!array_key_exists('profile-info', $errors) || count($errors['profile-info']) == 0) {
$user->setName($name);
$user->setEmail($email);
$user->save();
$user->recordActivity(USERBASE_ACTIVITY_UPDATEUSERINFO);
header('Location: ' . UserConfig::$USERSROOTURL . '/edit.php');
exit;
}
}
}
if (array_key_exists('error', $_GET) && $_GET['error'] == 'failed') {
$errors[$current_module->getID()]['login']['error'] = 'Login failed';
}
$template_info['errors'] = $errors;
if (!is_null($current_module)) {
foreach (UserConfig::$authentication_modules as $module) {
$id = $module->getID();
if (($compact_page && !$module->isCompact()) || (!$compact_page && $current_module->getID() != $id)) {
continue;
}
$template_info['module']['id'] = $id;
$template_info['module']['title'] = $module->getTitle();
$template_info['module_forms'][$id] = $module->renderEditUserForm(
$template_info, "?module=$id", $errors, $user, $_POST
);
}
}
StartupAPI::$template->display('@startupapi/edit.html.twig', $template_info);