This repository was archived by the owner on Dec 23, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathexpired.php
More file actions
1957 lines (939 loc) · 35.5 KB
/
Copy pathexpired.php
File metadata and controls
1957 lines (939 loc) · 35.5 KB
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
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
/**
* Allows to hide, show or delete the files assigend to the
* selected client.
*
* @package ProjectSend
*/
$load_scripts = array(
'footable',
);
$allowed_levels = array(9,8,7,0);
require_once('sys.includes.php');
$active_nav = 'files';
$cc_active_page = 'Expired Files';
$page_title = __('Expired Files','cftp_admin');
$current_level = get_current_user_level();
/*
* Get the total downloads count here. The results are then
* referenced on the results table.
*/
$downloads_information = generate_downloads_count();
/**
* Used to distinguish the current page results.
* Global means all files.
* Client or group is only when looking into files
* assigned to any of them.
*/
$results_type = 'global';
/**
* The client's id is passed on the URI.
* Then get_client_by_id() gets all the other account values.
*/
if (isset($_GET['client_id'])) {
$this_id = $_GET['client_id'];
$this_client = get_client_by_id($this_id);
/** Add the name of the client to the page's title. */
if(!empty($this_client)) {
$page_title .= ' '.__('for client','cftp_admin').' '.html_entity_decode($this_client['name']);
$search_on = 'client_id';
$name_for_actions = $this_client['username'];
$results_type = 'client';
}
}
/**
* The group's id is passed on the URI also.
*/
if (isset($_GET['group_id'])) {
$this_id = $_GET['group_id'];
$sql_name = $dbh->prepare("SELECT name from " . TABLE_GROUPS . " WHERE id=:id");
$sql_name->bindParam(':id', $this_id, PDO::PARAM_INT);
$sql_name->execute();
if ( $sql_name->rowCount() > 0) {
$sql_name->setFetchMode(PDO::FETCH_ASSOC);
while( $row_group = $sql_name->fetch() ) {
$group_name = $row_group["name"];
}
/** Add the name of the client to the page's title. */
if(!empty($group_name)) {
$page_title .= ' '.__('for group','cftp_admin').' '.html_entity_decode($group_name);
$search_on = 'group_id';
$name_for_actions = html_entity_decode($group_name);
$results_type = 'group';
}
}
}
/**
Fetch all categories
*/
$statement = $dbh->prepare("SELECT * FROM " . TABLE_CATEGORIES);
$statement->execute();
$statement->setFetchMode(PDO::FETCH_ASSOC);
$categories = $statement->fetchAll();
/**
* Filtering by category
*/
if (isset($_GET['category'])) {
$this_id = $_GET['category'];
$this_category = get_category($this_id);
/** Add the name of the client to the page's title. */
if(!empty($this_category)) {
$page_title .= ' '.__('on category','cftp_admin').' '.html_entity_decode($this_category['name']);
$name_for_actions = $this_category['name'];
$results_type = 'category';
}
}
include('header.php');
// var_dump($this_category);die();
// var_dump($this_category);die();
?>
<script type="text/javascript">
$(document).ready(function() {
$("#do_action").click(function() {
var checks = $("td input:checkbox").serializeArray();
if (checks.length == 0) {
alert('<?php _e('Please select at least one file to proceed.','cftp_admin'); ?>');
return false;
}
else {
var action = $('#files_actions').val();
if (action == 'delete') {
var msg_1 = '<?php _e("You are about to delete",'cftp_admin'); ?>';
var msg_2 = '<?php _e("files permanently and for every client/group. Are you sure you want to continue?",'cftp_admin'); ?>';
if (confirm(msg_1+' '+checks.length+' '+msg_2)) {
return true;
} else {
return false;
}
}
else if (action == 'unassign') {
var msg_1 = '<?php _e("You are about to unassign",'cftp_admin'); ?>';
var msg_2 = '<?php _e("files from this account. Are you sure you want to continue?",'cftp_admin'); ?>';
if (confirm(msg_1+' '+checks.length+' '+msg_2)) {
return true;
} else {
return false;
}
}
}
});
<?php
// var_dump($results_type);die();
if ($results_type != 'client') {
/*
?>
$(".downloaders").click(function() {
$(document).psendmodal();
$('.modal_content').html('<p class="loading-img">'+
'<img src="<?php echo BASE_URI; ?>img/ajax-loader.gif" alt="Loading" /></p>'+
'<p class="lead text-center text-info"><?php _e('Please wait while the system gets the required information.','cftp_admin'); ?></p>'
);
var file_name = $(this).attr('title');
var file_id = $(this).attr('rel');
$.get('<?php echo BASE_URI; ?>process.php', { do:"get_downloaders", sys_user:"<?php echo $global_id; ?>", file_id:file_id },
function(data) {
$('.modal_content').html('<h4><?php _e('Downloaders of file:','cftp_admin'); ?> <strong>'+file_name+'</strong></h4>');
$('.modal_content').append('<ul class="downloaders_list"></ul>');
var obj = $.parseJSON(data);
for (i = 0; i < obj.length; i++) {
$('.modal_content .downloaders_list').append('<li><img src="<?php echo BASE_URI; ?>img/downloader-' + obj[i].type + '.png" alt="" /><div class="downloader_count">' + obj[i].count + ' <?php _e('times','cftp_admin'); ?></div><p class="downloader_name">' + obj[i].name + '</p><p class="downloader_email">' + obj[i].email + '</p></li>');
}
}
);
return false;
});
<?php
*/
}
?>
$('.public_link').popover({
html : true,
content: function() {
var id = $(this).data('id');
var token = $(this).data('token');
return '<strong><?php _e('Click to select','cftp_admin'); ?></strong><textarea class="input-large public_link_copy" rows="4"><?php echo BASE_URI; ?>download.php?id=' + id + '&token=' + token + '</textarea><small><?php _e('Send this URL to someone to download the file without registering or logging in.','cftp_admin'); ?></small><div class="close-popover"><button type="button" class="btn btn-inverse btn-sm"><?php _e('Close','cftp_admin'); ?></button></div>';
}
});
$(".col_visibility").on('click', '.close-popover button', function(e) {
var popped = $(this).parents('.col_visibility').find('.public_link');
popped.popover('hide');
});
$(".col_visibility").on('click', '.public_link_copy', function(e) {
$(this).select();
$(this).mouseup(function() {
$(this).unbind("mouseup");
return false;
});
});
});
</script>
<div id="main">
<div id="content">
<!-- Added by B) -------------------->
<div class="container-fluid">
<div class="row">
<div class="col-md-12">
<h2 class="page-title txt-color-blueDark"><?php echo $page_title; ?></h2>
<?php
/**
* Apply the corresponding action to the selected files.
*/
if(isset($_POST['do_action'])) {
/** Continue only if 1 or more files were selected. */
if(!empty($_POST['files'])) {
$selected_files = array_map('intval',array_unique($_POST['files']));
$files_to_get = implode(',',$selected_files);
/**
* Make a list of files to avoid individual queries.
* First, get all the different files under this account.
*/
/*$sql_distinct_files = $dbh->prepare("SELECT file_id FROM " . TABLE_FILES_RELATIONS . " WHERE FIND_IN_SET(id, :files)");
$sql_distinct_files->bindParam(':files', $files_to_get);
$sql_distinct_files->execute();
$sql_distinct_files->setFetchMode(PDO::FETCH_ASSOC);
while( $data_file_relations = $sql_distinct_files->fetch() ) {
$all_files_relations[] = $data_file_relations['file_id'];
$files_to_get = implode(',',$all_files_relations);
}*/
/**
* Then get the files names to add to the log action.
*/
$sql_file = $dbh->prepare("SELECT id, filename FROM " . TABLE_FILES . " WHERE FIND_IN_SET(id, :files)");
$sql_file->bindParam(':files', $files_to_get);
$sql_file->execute();
$sql_file->setFetchMode(PDO::FETCH_ASSOC);
while( $data_file = $sql_file->fetch() ) {
$all_files[$data_file['id']] = $data_file['filename'];
}
switch($_POST['files_actions']) {
case 'hide':
/**
* Changes the value on the "hidden" column value on the database.
* This files are not shown on the client's file list. They are
* also not counted on the home.php files count when the logged in
* account is the client.
*/
foreach ($selected_files as $work_file) {
$this_file = new FilesActions();
$hide_file = $this_file->change_files_hide_status($work_file, '1', $_POST['modify_type'], $_POST['modify_id']);
}
$msg = __('The selected files were marked as hidden.','cftp_admin');
echo system_message('ok',$msg);
$log_action_number = 21;
break;
case 'show':
/**
* Reverse of the previous action. Setting the value to 0 means
* that the file is visible.
*/
foreach ($selected_files as $work_file) {
$this_file = new FilesActions();
$show_file = $this_file->change_files_hide_status($work_file, '0', $_POST['modify_type'], $_POST['modify_id']);
}
$msg = __('The selected files were marked as visible.','cftp_admin');
echo system_message('ok',$msg);
$log_action_number = 22;
break;
case 'unassign':
/**
* Remove the file from this client or group only.
*/
foreach ($selected_files as $work_file) {
$this_file = new FilesActions();
$unassign_file = $this_file->unassign_file($work_file, $_POST['modify_type'], $_POST['modify_id']);
}
$msg = __('The selected files were unassigned from this client.','cftp_admin');
echo system_message('ok',$msg);
if ($search_on == 'group_id') {
$log_action_number = 11;
}
elseif ($search_on == 'client_id') {
$log_action_number = 10;
}
break;
case 'delete':
$delete_results = array(
'ok' => 0,
'errors' => 0,
);
foreach ($selected_files as $index => $file_id) {
$this_file = new FilesActions();
$delete_status = $this_file->delete_files($file_id);
if ( $delete_status == true ) {
$delete_results['ok']++;
}
else {
$delete_results['errors']++;
unset($all_files[$file_id]);
}
}
if ( $delete_results['ok'] > 0 ) {
$msg = __('The selected files were deleted.','cftp_admin');
echo system_message('ok',$msg);
$log_action_number = 12;
}
if ( $delete_results['errors'] > 0 ) {
$msg = __('Some files could not be deleted.','cftp_admin');
echo system_message('error',$msg);
}
break;
}
/** Record the action log */
foreach ($all_files as $work_file_id => $work_file) {
$new_log_action = new LogActions();
$log_action_args = array(
'action' => $log_action_number,
'owner_id' => $global_id,
'affected_file' => $work_file_id,
'affected_file_name' => $work_file
);
if (!empty($name_for_actions)) {
$log_action_args['affected_account_name'] = $name_for_actions;
$log_action_args['get_user_real_name'] = true;
}
$new_record_action = $new_log_action->log_action_save($log_action_args);
}
}
else {
$msg = __('Please select at least one file.','cftp_admin');
echo system_message('error',$msg);
}
}
/**
* Global form action
*/
$form_action_url = 'expired.php';
$query_table_files = true;
if (isset($search_on)) {
$params = array();
$cq = "SELECT * FROM " . TABLE_FILES_RELATIONS . " WHERE $search_on = :id";
$params[':id'] = $this_id;
$form_action_url .= '?'.$search_on.'='.$this_id;
/** Add the status filter */
if (isset($_POST['status']) && $_POST['status'] != 'all') {
$set_and = true;
$cq .= " AND hidden = :hidden";
$no_results_error = 'filter';
$params[':hidden'] = $_POST['status'];
}
/**
* Count the files assigned to this client. If there is none, show
* an error message.
*/
$sql = $dbh->prepare($cq);
$sql->execute( $params );
if ( $sql->rowCount() > 0) {
/**
* Get the IDs of files that match the previous query.
*/
$sql->setFetchMode(PDO::FETCH_ASSOC);
while( $row_files = $sql->fetch() ) {
$files_ids[] = $row_files['file_id'];
$gotten_files = implode(',',$files_ids);
}
}
else {
$count = 0;
$no_results_error = 'filter';
$query_table_files = false;
}
}
if ( $query_table_files === true ) {
/**
* Get the files
*/
$params = array();
$fq = "SELECT * FROM " . TABLE_FILES;
if ( isset($search_on) && !empty($gotten_files) ) {
$conditions[] = "FIND_IN_SET(id, :files)";
$params[':files'] = $gotten_files;
}
/** Add the search terms */
if(isset($_GET['search']) && !empty($_GET['search'])) {
$conditions[] = "(filename LIKE :name OR description LIKE :description)";
$no_results_error = 'search';
$search_terms = '%'.$_GET['search'].'%';
$params[':name'] = $search_terms;
$params[':description'] = $search_terms;
}
/**
* If the user is an uploader, or a client is editing his files
* only show files uploaded by that account.
*/
$current_level = get_current_user_level();
if ($current_level == '7' || $current_level == '0') {
$conditions[] = "uploader = :uploader";
$no_results_error = 'account_level';
$params[':uploader'] = $global_user;
}
/**
* Add the category filter
*/
if ( isset( $results_type ) && $results_type == 'category' ) {
$files_id_by_cat = array();
$statement = $dbh->prepare("SELECT file_id FROM " . TABLE_CATEGORIES_RELATIONS . " WHERE cat_id = :cat_id");
$statement->bindParam(':cat_id', $this_category['id'], PDO::PARAM_INT);
$statement->execute();
$statement->setFetchMode(PDO::FETCH_ASSOC);
while ( $file_data = $statement->fetch() ) {
$files_id_by_cat[] = $file_data['file_id'];
}
$files_id_by_cat = implode(',',$files_id_by_cat);
/** Overwrite the parameter set previously */
$conditions[] = "FIND_IN_SET(id, :files)";
$params[':files'] = $files_id_by_cat;
$no_results_error = 'category';
}
/**
* Build the final query
*/
if ( !empty( $conditions ) ) {
foreach ( $conditions as $index => $condition ) {
$fq .= ( $index == 0 ) ? ' WHERE ' : ' AND ';
$fq .= $condition;
}
}
$fq .= "ORDER BY id DESC";
/** Debug query */
//echo $fq;
//print_r( $conditions );
//$sql_files = $dbh->prepare($fq);
//$sql_files->execute( $params );
//echo date('Y-m-d H:i:s'); exit;
$q_sent_file = "SELECT tbl_files.* FROM tbl_files where expires = 1 and expiry_date < '" . date('Y-m-d H:i:s')."' and uploader = '".CURRENT_USER_USERNAME."' ";
$q_sent_file .= " ORDER BY tbl_files.timestamp DESC";
$sql_files = $dbh->prepare($q_sent_file);
$sql_files->execute();
//echo "<pre>";
//var_dump($sql_files);
//exit;
//var_dump(); exit;
$count = $sql_files->rowCount();
}
?>
<!--<div class="form_actions_left">
<div class="form_actions_limit_results">
<form action="<?php echo html_output($form_action_url); ?>" name="files_search" method="GET" class="form-inline">
<div class="form-group group_float">
<input type="text" name="search" id="search" value="<?php if(isset($_GET['search']) && !empty($search_terms)) { echo html_output($_GET['search']); } ?>" class="txtfield form_actions_search_box form-control" />
</div>
<div class="form-group group_float">
<select name="status" id="status" class="txtfield form-control">
<?php
$options_status = array(
'all' => __('All statuses','cftp_admin'),
'1' => __('Read','cftp_admin'),
'2' => __('Unread','cftp_admin'),
'3' => __('Downloaded','cftp_admin'),
'4' => __('Not Downloaded','cftp_admin'),
);
foreach ( $options_status as $value => $text ) {
?>
<option value="<?php echo $value; ?>"><?php echo $text; ?></option>
<?php
}
?>
</select>
</div>
<div class="form-group group_float">
<select name="category" id="category" class="txtfield form-control">
<option value="0">All categories</option>
<?php
if(!empty($categories)){
foreach ( $categories as $cat ) {