forked from projectsend/projectsend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgroups.php
353 lines (312 loc) · 12.2 KB
/
groups.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
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
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
<?php
/**
* Show the list of current groups.
*/
$allowed_levels = array(9, 8);
require_once 'bootstrap.php';
$active_nav = 'groups';
$page_title = __('Groups administration', 'cftp_admin');
$current_url = get_form_action_with_existing_parameters(basename(__FILE__));
// Used when viewing groups a certain client belongs to
if (!empty($_GET['member'])) {
$member = get_client_by_id($_GET['member']);
// Add the name of the client to the page's title
if ($member != false) {
$page_title = __('Groups where', 'cftp_admin') . ' ' . html_entity_decode($member['name']) . ' ' . __('is member', 'cftp_admin');
$member_exists = 1;
// Get groups where this client is member
$get_groups = new \ProjectSend\Classes\GroupsMemberships();
$get_arguments = array(
'client_id' => $member['id'],
'return' => 'list',
);
$found_groups = $get_groups->getGroupsByClient($get_arguments);
if (empty($found_groups)) {
$found_groups = '';
}
} else {
exit_with_error_code(403);
}
}
// Apply the corresponding action to the selected groups.
if (isset($_POST['action']) && $_POST['action'] != 'none') {
if (!empty($_POST['batch'])) {
$selected_groups = $_POST['batch'];
switch ($_POST['action']) {
case 'delete':
$deleted_groups = 0;
foreach ($selected_groups as $group) {
$this_group = new \ProjectSend\Classes\Groups;
if ($this_group->get($group)) {
$delete_user = $this_group->delete();
$deleted_groups++;
}
}
if ($deleted_groups > 0) {
$flash->success(__('The selected groups were deleted.', 'cftp_admin'));
}
break;
}
} else {
$flash->error(__('Please select at least one group.', 'cftp_admin'));
}
ps_redirect($current_url);
}
// Check if there are public groups but page is disabled
$public_groups = get_groups([
'public' => true,
]);
if (count($public_groups) > 0) {
if (get_option('public_listing_page_enable') != 1) {
$msg = '<i class="fa fa-exclamation-triangle" aria-hidden="true"></i> ' . __('There are public groups, but the public page is disabled.');
$msg .= ' <a href="' . BASE_URI . 'options.php?section=privacy" class="underline">' . __('Go to privacy options', 'cftp_admin') . '</a>';
$flash->info($msg);
}
}
// Query groups
$params = [];
$cq = "SELECT id FROM " . TABLE_GROUPS;
// Add the search terms
if (isset($_GET['search']) && !empty($_GET['search'])) {
$cq .= " WHERE (name LIKE :name OR description LIKE :description)";
$next_clause = ' AND';
$no_results_error = 'search';
$search_terms = '%' . $_GET['search'] . '%';
$params[':name'] = $search_terms;
$params[':description'] = $search_terms;
} else {
$next_clause = ' WHERE';
}
// Add the member
if (isset($found_groups)) {
if ($found_groups != '') {
$cq .= $next_clause . " FIND_IN_SET(id, :groups)";
$params[':groups'] = $found_groups;
} else {
$cq .= $next_clause . " id = NULL";
}
$no_results_error = 'is_not_member';
}
// Add the active filter
if (isset($_GET['public']) && $_GET['public'] != '2') {
$cq .= $next_clause . " public = :public";
$no_results_error = 'filter';
$params[':public'] = (int)$_GET['public'];
}
// Add the order
$cq .= sql_add_order(TABLE_GROUPS, 'id', 'desc');
// Pre-query to count the total results
$count_sql = $dbh->prepare($cq);
$count_sql->execute($params);
$count_for_pagination = $count_sql->rowCount();
// Repeat the query but this time, limited by pagination
$cq .= " LIMIT :limit_start, :limit_number";
$sql = $dbh->prepare($cq);
$pagination_page = (isset($_GET["page"])) ? $_GET["page"] : 1;
$pagination_start = ($pagination_page - 1) * get_option('pagination_results_per_page');
$params[':limit_start'] = $pagination_start;
$params[':limit_number'] = get_option('pagination_results_per_page');
$sql->execute($params);
$count = $sql->rowCount();
// Flash errors
if (!$count) {
if (isset($no_results_error)) {
switch ($no_results_error) {
case 'search':
$flash->error(__('Your search keywords returned no results.', 'cftp_admin'));
break;
case 'filter':
$flash->error(__('The filters you selected returned no results.', 'cftp_admin'));
break;
case 'is_not_member':
$flash->error(__('There are no groups where this client is member.', 'cftp_admin'));
break;
}
} else {
$flash->warning(__('There are no groups created yet.', 'cftp_admin'));
}
}
// Header buttons
$header_action_buttons = [
[
'url' => 'groups-add.php',
'label' => __('Create new', 'cftp_admin'),
],
];
// Search + filters bar data
$search_form_action = 'groups.php';
$filters_form = [
'action' => $current_url,
'items' => [
'public' => [
'current' => (isset($_GET['public'])) ? $_GET['public'] : null,
'placeholder' => [
'value' => '2',
'label' => __('Visibility', 'cftp_admin')
],
'options' => [
'1' => __('Public', 'cftp_admin'),
'0' => __('Private', 'cftp_admin'),
],
]
]
];
// Results count and form actions
$elements_found_count = $count_for_pagination;
$bulk_actions_items = [
'none' => __('Select action', 'cftp_admin'),
'delete' => __('Delete', 'cftp_admin'),
];
// Include layout files
include_once ADMIN_VIEWS_DIR . DS . 'header.php';
include_once LAYOUT_DIR . DS . 'search-filters-bar.php';
?>
<form action="<?php echo $current_url; ?>" name="groups_list" method="post" class="form-inline batch_actions">
<div class="row">
<div class="col-12">
<?php addCsrf(); ?>
<?php include_once LAYOUT_DIR . DS . 'form-counts-actions.php'; ?>
<?php
if ($count > 0) {
// Generate the table using the class.
$table = new \ProjectSend\Classes\Layout\Table([
'id' => 'groups_tbl',
'class' => 'footable table',
'origin' => basename(__FILE__),
]);
$thead_columns = array(
array(
'select_all' => true,
'attributes' => array(
'class' => array('td_checkbox'),
),
),
array(
'sortable' => true,
'sort_url' => 'timestamp',
'content' => __('Created', 'cftp_admin'),
'sort_default' => true,
'hide' => 'phone',
),
array(
'sortable' => true,
'sort_url' => 'name',
'content' => __('Group name', 'cftp_admin'),
),
array(
'sortable' => true,
'sort_url' => 'description',
'content' => __('Description', 'cftp_admin'),
'hide' => 'phone',
),
array(
'content' => __('Members', 'cftp_admin'),
),
array(
'content' => __('Files', 'cftp_admin'),
'hide' => 'phone',
),
array(
'sortable' => true,
'sort_url' => 'active',
'content' => __('Public', 'cftp_admin'),
),
array(
'sortable' => true,
'sort_url' => 'created_by',
'content' => __('Created by', 'cftp_admin'),
'hide' => 'phone',
),
array(
'content' => __('View', 'cftp_admin'),
'hide' => 'phone',
),
array(
'content' => __('Actions', 'cftp_admin'),
'hide' => 'phone',
),
);
$table->thead($thead_columns);
$sql->setFetchMode(PDO::FETCH_ASSOC);
while ($row = $sql->fetch()) {
$table->addRow();
$group = new \ProjectSend\Classes\Groups($row["id"]);
// Button class for the manage files link
if (!empty($group->files)) {
$files_link = 'manage-files.php?group=' . $group->id;
$files_btn = 'btn-primary';
} else {
$files_link = '#';
$files_btn = 'btn-pslight disabled';
}
// Visibility
if ($group->public == '1') {
$pre = (get_option('public_listing_page_enable') != 1) ? '<i class="fa fa-exclamation-triangle" aria-hidden="true"></i>' : null;
$visibility_link = '<a href="javascript:void(0);" class="btn btn-primary btn-sm public_link" data-title="' . $group->name . '" data-type="group" data-public-url="' . $group->public_url . '">'
. $pre . ' ' . __('Public', 'cftp_admin') . '
</a>';
} else {
$visibility_link = '<a href="javascript:void(0);" class="btn btn-pslight btn-sm disabled" title="">'
. __('Private', 'cftp_admin') . '
</a>';
}
// Add the cells to the row
$tbody_cells = array(
array(
'checkbox' => true,
'value' => $group->id,
),
array(
'content' => format_date($group->created_date),
),
array(
'content' => $group->name,
),
array(
'content' => $group->description,
),
array(
'content' => (!empty($group->members)) ? count($group->members) : '0',
),
array(
'content' => (!empty($group->files)) ? count($group->files) : '0',
),
array(
'content' => $visibility_link,
),
array(
'content' => $group->created_by,
),
array(
'actions' => true,
'content' => '<a href="' . $files_link . '" class="btn ' . $files_btn . ' btn-sm">' . __('Files', 'cftp_admin') . '</a>',
),
array(
'actions' => true,
'content' => '<a href="groups-edit.php?id=' . $group->id . '" class="btn btn-primary btn-sm"><i class="fa fa-pencil"></i><span class="button_label">' . __('Edit', 'cftp_admin') . '</span></a>' . "\n"
),
);
foreach ($tbody_cells as $cell) {
$table->addCell($cell);
}
$table->end_row();
}
echo $table->render();
}
?>
</div>
</div>
</form>
<?php
if (!empty($table)) {
// PAGINATION
$pagination = new \ProjectSend\Classes\Layout\Pagination;
echo $pagination->make([
'link' => 'groups.php',
'current' => $pagination_page,
'item_count' => $count_for_pagination,
]);
}
?>
<?php
include_once ADMIN_VIEWS_DIR . DS . 'footer.php';