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
|
<?php
class SubPage
{
public static function doPreprocess()
{
$action = Request::post('action', '', 'string');
if ($action === 'delete') {
User::assertPermission('networkshares.save');
$shareid = Request::post('shareid', false, 'int');
if ($shareid !== false) {
$res = Database::exec('DELETE FROM sat.presetnetworkshare WHERE shareid = :shareid', ['shareid' => $shareid]);
if ($res !== false) {
Message::addSuccess('networkshare-deleted');
}
}
} else if ($action === 'save') {
User::assertPermission('networkshares.save');
$shareid = Request::post('shareid', 0, 'int');
$sharename = Request::post('sharename', '', 'string');
$path = Request::post('path', false, 'string');
$target = Request::post('target', '', 'string');
$authType = Request::post('auth', '', 'string');
$username = Request::post('username', '', 'string');
$password = Request::post('password', '', 'string');
if (!in_array($authType, ['LOGIN_USER', 'OTHER_USER'], true)) {
Message::addError('networkshare-invalid-auth-type', $authType);
} elseif (empty($path)) {
Message::addError('networkshare-missing-path');
} else {
$data = json_encode([
'auth' => $authType,
'path' => $path,
'displayname' => $sharename,
'mountpoint' => $target,
'username' => $username,
'password' => $password,
]);
if ($shareid !== 0) {
Database::exec('UPDATE sat.presetnetworkshare SET sharename = :sharename, sharedata = :data'
.' WHERE shareid = :shareid', compact('shareid', 'sharename', 'data'));
} else {
Database::exec('INSERT INTO sat.presetnetworkshare (sharename, sharedata, active)'
.' VALUES (:sharename, :data, 1)', compact('sharename', 'data'));
}
Message::addSuccess('networkshare-saved');
}
} else if ($action === 'activate' || $action === 'deactivate') {
User::assertPermission('networkshares.save');
$shareid = Request::post('shareid', false, 'int');
$active = ($action === 'activate' ? 1 : 0);
Database::exec('UPDATE sat.presetnetworkshare SET active = :active WHERE shareid = :shareid', compact('active', 'shareid'));
}
if (Request::isPost()) {
Util::redirect('?do=dozmod§ion=networkshares');
}
User::assertPermission('networkshares.view');
}
public static function doRender()
{
$show = Request::get('show', 'list', 'string');
if ($show === 'list') {
$res = Database::simpleQuery('SELECT shareid, sharename, sharedata, active
FROM sat.presetnetworkshare ORDER BY sharename ASC');
$rows = array();
while ($row = $res->fetch(PDO::FETCH_ASSOC)) {
$dec = json_decode($row['sharedata'], true);
if (!is_array($dec)) {
$dec = [];
}
if ($dec['auth'] === 'LOGIN_USER') {
$row['loginAsUser'] = true;
}
$rows[] = $row + $dec;
}
Render::addTemplate('networkshares', [
'networkshares' => $rows,
'hasEditPermissions' => User::hasPermission('networkshares.save')
]);
} else if ($show === 'edit') {
$shareid = Request::get('shareid', 0, 'int');
if ($shareid === 0) {
$data = [];
} else {
$data = Database::queryFirst('SELECT shareid, sharename, sharedata
FROM sat.presetnetworkshare WHERE shareid = :shareid', ['shareid' => $shareid]);
if ($data === false) {
Message::addError('networkshare-invalid-shareid', $shareid);
Util::redirect('?do=dozmod§ion=networkshares');
}
$dec = json_decode($data['sharedata'], true);
if (is_array($dec)) {
$data += $dec;
}
if ($data['auth'] === 'LOGIN_USER') {
$data['loggedInUser_selected'] = 'selected';
} else {
$data['specificUser_selected'] = 'selected';
}
}
Render::addTemplate('networkshares-edit', $data);
}
}
}
|