This repository has been archived by the owner on Dec 27, 2023. It is now read-only.
forked from projectsend/projectsend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathusers-add.php
99 lines (87 loc) · 3.17 KB
/
users-add.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
<?php
/**
* Show the form to add a new system user.
*/
$allowed_levels = array(9);
require_once 'bootstrap.php';
log_in_required($allowed_levels);
$active_nav = 'users';
$page_title = __('Add system user', 'cftp_admin');
$page_id = 'user_form';
$new_user = new \ProjectSend\Classes\Users();
include_once ADMIN_VIEWS_DIR . DS . 'header.php';
// Set checkboxes as 1 to default them to checked when first entering the form
$user_arguments = array(
'active' => 1,
'notify_account' => 1,
'require_password_change' => 1,
);
if ($_POST) {
/**
* Clean the posted form values to be used on the user actions,
* and again on the form if validation failed.
*/
$user_arguments = array(
'username' => $_POST['username'],
'password' => $_POST['password'],
'name' => $_POST['name'],
'email' => $_POST['email'],
'role' => $_POST['level'],
'max_file_size' => (isset($_POST["max_file_size"])) ? $_POST['max_file_size'] : '',
'notify_account' => (isset($_POST["notify_account"])) ? 1 : 0,
'active' => (isset($_POST["active"])) ? 1 : 0,
'require_password_change' => (isset($_POST["require_password_change"])) ? true : false,
'limit_upload_to' => (isset($_POST["limit_upload_to"])) ? $_POST["limit_upload_to"] : null,
'type' => 'new_user',
);
// Validate the information from the posted form
// Create the user if validation is correct
$new_user->setType('new_user');
$new_user->set($user_arguments);
$create = $new_user->create();
if (!empty($create['id'])) {
$logger = new \ProjectSend\Classes\ActionsLog;
$record = $logger->addEntry([
'action' => 2,
'owner_user' => CURRENT_USER_USERNAME,
'owner_id' => CURRENT_USER_ID,
'affected_account' => $new_user->id,
'affected_account_name' => $new_user->name
]);
$flash->success(__('User created successfully'));
$redirect_to = BASE_URI . 'users-edit.php?id=' . $create['id'];
} else {
$flash->error($new_user->getValidationErrors());
$redirect_to = BASE_URI . 'users-add.php';
}
if (isset($create['email'])) {
switch ($create['email']) {
case 2:
$flash->success(__('A welcome message was not sent to the new account owner.', 'cftp_admin'));
break;
case 1:
$flash->success(__('A welcome message with login information was sent to the new account owner.', 'cftp_admin'));
break;
case 0:
$flash->error(__("E-mail notification couldn't be sent.", 'cftp_admin'));
break;
}
}
ps_redirect($redirect_to);
}
?>
<div class="row">
<div class="col-12 col-sm-12 col-lg-6">
<div class="white-box">
<div class="white-box-interior">
<?php
// If the form was submitted with errors, show them here.
$user_form_type = 'new_user';
include_once FORMS_DIR . DS . 'users.php';
?>
</div>
</div>
</div>
</div>
<?php
include_once ADMIN_VIEWS_DIR . DS . 'footer.php';