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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
|
<?php
/**
* BusinessAdmin: administrative software for small companies
* Copyright (C) 2015 Camil Staps (ViviSoft)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
require_once(__DIR__ . '/../index.php');
require_once(__DIR__ . '/../login.php');
require('./header.php');
?>
<div id="wrapper">
<?php require('nav.php'); ?>
<!-- Page Content -->
<div id="page-wrapper">
<div class="row">
<div class="col-lg-12">
<h1 class="page-header">Settings</h1>
</div>
<!-- /.col-lg-12 -->
</div>
<?php
if (isset($_GET['delete_user']) && $_user->isAdmin()) {
try {
$user = new User($_pdo, $_GET['delete_user']);
if ($user->delete()) {
echo "<div class='alert alert-success alert-dismissable'><button type='button' class='close fa fa-times' data-dismiss='alert' aria-hidden='true'></button>The user with username <i>{$user->username}</i> has been removed.</div>";
} else {
echo "<div class='alert alert-danger alert-dismissable'><button type='button' class='close fa fa-times' data-dismiss='alert' aria-hidden='true'></button>The user with username <i>{$user->username}</i> could not be removed.</div>";
}
} catch (PDOException $e) {
echo "<div class='alert alert-danger alert-dismissable'><button type='button' class='close fa fa-times' data-dismiss='alert' aria-hidden='true'></button>The user with username <i>{$user->username}</i> could not be removed due to a PDO error.</div>";
} catch (Exception $e) {
echo "<div class='alert alert-danger alert-dismissable'><button type='button' class='close fa fa-times' data-dismiss='alert' aria-hidden='true'></button>The user with id {$_GET['delete_user']} could not be found.</div>";
}
}
?>
<div class="row">
<div class="col-md-4">
<div class="panel panel-default">
<div class="panel-heading">Password</div>
<div class="panel-body">
<?php
if (isset($_POST['password_update'])) {
if ($_POST['password_update'] != $_POST['password_update2']) {
echo '<div class="alert alert-danger">The passwords don\'t match.</div>';
} else if (!$_user->verifyPassword($_POST['password_current'])) {
echo '<div class="alert alert-danger">The current password was incorrect.</div>';
} else {
try {
$_user->password = $_POST['password_update'];
echo '<div class="alert alert-success">Password successfully changed.</div>';
} catch (PDOException $e) {
echo '<div class="alert alert-danger">An unknown error occurred.</div>';
}
}
}
?>
<form action="" method="post">
<div class="form-group">
<input class="form-control" type="password" name="password_current" id="password-current" placeholder="Current password"/>
</div>
<div class="form-group">
<input class="form-control" type="password" name="password_update" placeholder="New password"/>
</div>
<div class="form-group">
<input class="form-control" type="password" name="password_update2" placeholder="New password (verification)"/>
</div>
<input class="btn btn-primary" type="submit" value="Change password"/>
</form>
</div>
</div>
</div>
<div class="col-md-4">
<div class="panel panel-default">
<div class="panel-heading">Users</div>
<div class="panel-body table-responsive">
<table class="table table-bordered table-striped mixitup dataTable" id="overview-clients">
<thead>
<tr>
<th class="mixitup-sort sorting" data-sort="mixerOrderId:desc">#</th>
<th class="mixitup-sort sorting" data-sort="mixerOrderUsername:desc">Username</th>
<?php if ($_user->isAdmin()) echo '<th>Tools</th>'; ?>
</tr>
</thead>
<tbody>
<?php
$users = User::search($_pdo);
foreach ($users as $user) {
echo "<tr class='mix'
data-mixer-order-id='{$user->id}'
data-mixer-order-username='{$user->username}'>
<td class='col-min-width'>{$user->id}</td>
<td class='col-max-width'>{$user->username}</td>";
if ($_user->isAdmin()) {
if ($user->id == $_user->id) {
echo "<td class='col-min-width'>
<a title='Change password' href='#' onclick='$(\"#password-current\").focus();' class='btn btn-warning btn-circle fa fa-key'></a>
</td>";
} else {
echo "<td class='col-min-width'>
<a title='Delete' href='?delete_user={$user->id}' class='btn btn-danger btn-circle fa fa-times'></a>
</td>";
}
}
echo "</tr>";
}
?>
</tbody>
</table>
</div>
</div>
</div>
<?php if ($_user->isAdmin()) : ?>
<div class="col-md-4">
<div class="panel panel-default">
<div class="panel-heading">Create new</div>
<div class="panel-body">
<form role="form" id="newUser" action='<?=Constants::url_external?>users/new' method="post" class="bootstrapValidator ajaxify"
data-ajaxify-options='{"success":"newUserSuccess","error":"newUserError","beforeSubmit":"newUserBeforeSubmit","clearForm":true}'>
<div class="ajaxify-response alert alert-dismissable"><button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button><span class="ajaxify-response-text"></span></div>
<div class="form-group">
<label>Username:</label>
<input
type="text" name="username" class="form-control" placeholder="Username"
data-bv-notempty="true" data-bv-notempty-message="You have to provide a username"/>
</div>
<button type="submit" class="btn btn-default">Go</button>
</form>
<script type="text/javascript">
// Callback for before the form is submitted
function newUserBeforeSubmit() {
$('#newUser input').prop('disabled', true);
$('#newUser .ajaxify-response').hide().removeClass('alert-success alert-danger').find('.ajaxify-response-text').html('');
}
// Callback for when the form is successfully submitted
function newUserSuccess(data) {
if (data.success == true) {
$('#newUser .ajaxify-response')
.addClass('alert-success')
.show()
.find('.ajaxify-response-text')
.html(data.message);
$('#newUser input, #newUser button').prop('disabled', false);
$('#newUser').data('bootstrapValidator').resetForm();
} else {
$('#newUser .ajaxify-response')
.addClass('alert-danger')
.show()
.find('.ajaxify-response-text')
.html(data.message);
$('#newUser input, #newUser button').prop('disabled', false);
$('#newUser').data('bootstrapValidator').resetForm();
}
}
// Callback for when form submission encountered an error
function newUserError() {
$('#newUser .ajaxify-response')
.addClass('alert-danger')
.show()
.find('.ajaxify-response-text')
.html('An unknown error occurred. Please contact support.');
$('#newUser input, #newUser button').prop('disabled', false);
$('#newUser').data('bootstrapValidator').resetForm();
}
</script>
</div>
</div>
</div>
<?php endif; ?>
</div>
<!-- /.row -->
</div>
<!-- /#page-wrapper -->
</div>
<!-- /#wrapper -->
<?php
require('./footer.php');
?>
|