forked from projectsend/projectsend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcron-log.php
205 lines (173 loc) · 6.42 KB
/
cron-log.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
<?php
/**
* Show the list of activities logged.
*/
$allowed_levels = array(9);
require_once 'bootstrap.php';
$active_nav = 'tools';
$page_title = __('Cron execution log', 'cftp_admin');
$current_url = get_form_action_with_existing_parameters(basename(__FILE__));
// Apply the corresponding action to the selected items.
if (isset($_POST['action']) && $_POST['action'] != 'none') {
switch ($_POST['action']) {
case 'delete':
$selected_actions = $_POST['batch'];
$delete_ids = implode(',', $selected_actions);
if (!empty($_POST['batch'])) {
$statement = $dbh->prepare("DELETE FROM " . TABLE_CRON_LOG . " WHERE FIND_IN_SET(id, :delete)");
$params = array(
':delete' => $delete_ids,
);
$statement->execute($params);
$flash->success(__('The selected entries were deleted.', 'cftp_admin'));
} else {
$flash->error(__('Please select at least one entries.', 'cftp_admin'));
}
break;
case 'log_clear':
$keep = '5,6,7,8,37';
$statement = $dbh->prepare("DELETE FROM " . TABLE_CRON_LOG);
$statement->execute($params);
$flash->success(__('The log was cleared.', 'cftp_admin'));
break;
}
ps_redirect($current_url);
}
$params = [];
/**
* Get the actually requested items
*/
$cq = "SELECT * FROM " . TABLE_CRON_LOG;
/** Add the search terms */
if (isset($_GET['search']) && !empty($_GET['search'])) {
$cq .= " WHERE (sapi LIKE :sapi OR results LIKE :results)";
$next_clause = ' AND';
$no_results_error = 'search';
$search_terms = '%' . $_GET['search'] . '%';
$params[':sapi'] = $search_terms;
$params[':results'] = $search_terms;
} else {
$next_clause = ' WHERE';
}
/**
* Add the order.
* Defaults to order by: id, order: DESC
*/
$cq .= sql_add_order(TABLE_LOG, '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();
if (!$count) {
$flash->warning(__('There are no executions recorded.', 'cftp_admin'));
}
// Search + filters bar data
$search_form_action = 'cron-log.php';
$filters_form = [];
// Results count and form actions
$elements_found_count = $count_for_pagination;
$bulk_actions_items = [
'none' => __('Select action', 'cftp_admin'),
'cron_log_download' => __('Download as csv', 'cftp_admin'),
'delete' => __('Delete selected', 'cftp_admin'),
'log_clear' => __('Clear entire log', '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="actions_list" method="post" class="form-inline batch_actions">
<?php addCsrf(); ?>
<?php include_once LAYOUT_DIR . DS . 'form-counts-actions.php'; ?>
<div class="row">
<div class="col-12">
<?php
if ($count > 0) {
// Generate the table using the class.
$table = new \ProjectSend\Classes\Layout\Table([
'id' => 'activities_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',
'sort_default' => true,
'content' => __('Date', 'cftp_admin'),
),
array(
'sortable' => true,
'sort_url' => 'sapi',
'content' => __('SAPI', 'cftp_admin'),
),
array(
'sortable' => true,
'sort_url' => 'results',
'content' => __('Results', 'cftp_admin'),
'hide' => 'phone',
),
);
$table->thead($thead_columns);
$sql->setFetchMode(PDO::FETCH_ASSOC);
while ($log = $sql->fetch()) {
$date = format_date($log['timestamp']);
$table->addRow();
$tbody_cells = array(
array(
'checkbox' => true,
'value' => $log["id"],
),
array(
'content' => $date,
),
array(
'content' => html_output($log["sapi"]),
),
array(
'content' => html_output($log["results"]),
),
);
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' => 'cron-log.php',
'current' => $pagination_page,
'item_count' => $count_for_pagination,
]);
}
?>
<?php
include_once ADMIN_VIEWS_DIR . DS . 'footer.php';