-
Notifications
You must be signed in to change notification settings - Fork 1
/
WP_Logging.php
443 lines (345 loc) · 11 KB
/
WP_Logging.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
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
<?php
/**
* Class for logging events and errors
*
* @package WP Logging Class
* @copyright Copyright (c) 2012, Pippin Williamson
* @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
*/
class WP_Logging {
/**
* Class constructor.
*
* @since 1.0
*
* @access public
* @return void
*/
function __construct() {
// create the log post type
add_action( 'init', array( $this, 'register_post_type' ) );
// create types taxonomy and default types
add_action( 'init', array( $this, 'register_taxonomy' ) );
// make a cron job for this hook to start pruning
add_action( 'wp_logging_prune_routine', array( $this, 'prune_logs' ) );
}
/**
* Allows you to tie in a cron job and prune old logs.
*
* @since 1.1
* @access public
*
* @uses $this->get_logs_to_prune() Returns array of posts via get_posts of logs to prune
* @uses $this->prune_old_logs() Deletes the logs that we don't want anymore
*/
public function prune_logs(){
$should_we_prune = apply_filters( 'wp_logging_should_we_prune', false );
if ( $should_we_prune === false ){
return;
}
$logs_to_prune = $this->get_logs_to_prune();
if ( isset( $logs_to_prune ) && ! empty( $logs_to_prune ) ){
$this->prune_old_logs( $logs_to_prune );
}
} // prune_logs
/**
* Deletes the old logs that we don't want
*
* @since 1.1
* @access private
*
* @param array/obj $logs required The array of logs we want to prune
*
* @uses wp_delete_post() Deletes the post from WordPress
*
* @filter wp_logging_force_delete_log Allows user to override the force delete setting which bypasses the trash
*/
private function prune_old_logs( $logs ){
$force = apply_filters( 'wp_logging_force_delete_log', true );
foreach( $logs as $l ){
wp_delete_post( $l->ID, $force );
}
} // prune_old_logs
/**
* Returns an array of posts that are prune candidates.
*
* @since 1.1
* @access private
*
* @return array $old_logs The array of posts that were returned from get_posts
*
* @uses apply_filters() Allows users to change given args
* @uses get_posts() Returns an array of posts from given args
*
* @filter wp_logging_prune_when Users can change how long ago we are looking for logs to prune
* @filter wp_logging_prune_query_args Gives users access to change any query args for pruning
*/
private function get_logs_to_prune(){
$how_old = apply_filters( 'wp_logging_prune_when', '2 weeks ago' );
$args = array(
'post_type' => 'wp_log',
'date_query' => array(
array(
'column' => 'post_date_gmt',
'before' => (string) $how_old,
)
)
);
$old_logs = get_posts( apply_filters( 'wp_logging_prune_query_args', $args ) );
return $old_logs;
} // get_logs_to_prune
/**
* Log types
*
* Sets up the default log types and allows for new ones to be created
*
* @access private
* @since 1.0
*
* @return array
*/
private static function log_types() {
$terms = array(
'error', 'event'
);
return apply_filters( 'wp_log_types', $terms );
}
/**
* Registers the wp_log Post Type
*
* @access public
* @since 1.0
*
* @uses register_post_type()
*
* @return void
*/
public function register_post_type() {
/* logs post type */
$log_args = array(
'labels' => array( 'name' => __( 'Logs', 'wp-logging' ) ),
'public' => false,
'query_var' => false,
'rewrite' => false,
'capability_type' => 'post',
'supports' => array( 'title', 'editor' ),
'can_export' => false
);
register_post_type( 'wp_log', apply_filters( 'wp_logging_post_type_args', $log_args ) );
}
/**
* Registers the Type Taxonomy
*
* The Type taxonomy is used to determine the type of log entry
*
* @access public
* @since 1.0
*
* @uses register_taxonomy()
* @uses term_exists()
* @uses wp_insert_term()
*
* @return void
*/
public function register_taxonomy() {
register_taxonomy( 'wp_log_type', 'wp_log' );
$types = self::log_types();
foreach ( $types as $type ) {
if( ! term_exists( $type, 'wp_log_type' ) ) {
wp_insert_term( $type, 'wp_log_type' );
}
}
}
/**
* Check if a log type is valid
*
* Checks to see if the specified type is in the registered list of types
*
* @access private
* @since 1.0
*
*
* @return array
*/
private static function valid_type( $type ) {
return in_array( $type, self::log_types() );
}
/**
* Create new log entry
*
* This is just a simple and fast way to log something. Use self::insert_log()
* if you need to store custom meta data
*
* @access private
* @since 1.0
*
* @uses self::insert_log()
*
* @return int The ID of the new log entry
*/
public static function add( $title = '', $message = '', $parent = 0, $type = null ) {
$log_data = array(
'post_title' => $title,
'post_content' => $message,
'post_parent' => $parent,
'log_type' => $type
);
return self::insert_log( $log_data );
}
/**
* Stores a log entry
*
* @access private
* @since 1.0
*
* @uses wp_parse_args()
* @uses wp_insert_post()
* @uses update_post_meta()
* @uses wp_set_object_terms()
* @uses sanitize_key()
*
* @return int The ID of the newly created log item
*/
public static function insert_log( $log_data = array(), $log_meta = array() ) {
$defaults = array(
'post_type' => 'wp_log',
'post_status' => 'publish',
'post_parent' => 0,
'post_content' => '',
'log_type' => false
);
$args = wp_parse_args( $log_data, $defaults );
do_action( 'wp_pre_insert_log' );
// store the log entry
$log_id = wp_insert_post( $args );
// set the log type, if any
if( $log_data['log_type'] && self::valid_type( $log_data['log_type'] ) ) {
wp_set_object_terms( $log_id, $log_data['log_type'], 'wp_log_type', false );
}
// set log meta, if any
if( $log_id && ! empty( $log_meta ) ) {
foreach( (array) $log_meta as $key => $meta ) {
update_post_meta( $log_id, '_wp_log_' . sanitize_key( $key ), $meta );
}
}
do_action( 'wp_post_insert_log', $log_id );
return $log_id;
}
/**
* Update and existing log item
*
* @access private
* @since 1.0
*
* @uses wp_parse_args()
* @uses wp_update_post()
* @uses update_post_meta()
*
* @return bool True if successful, false otherwise
*/
public static function update_log( $log_data = array(), $log_meta = array() ) {
do_action( 'wp_pre_update_log', $log_id );
$defaults = array(
'post_type' => 'wp_log',
'post_status' => 'publish',
'post_parent' => 0
);
$args = wp_parse_args( $log_data, $defaults );
// store the log entry
$log_id = wp_update_post( $args );
if( $log_id && ! empty( $log_meta ) ) {
foreach( (array) $log_meta as $key => $meta ) {
if( ! empty( $meta ) )
update_post_meta( $log_id, '_wp_log_' . sanitize_key( $key ), $meta );
}
}
do_action( 'wp_post_update_log', $log_id );
}
/**
* Easily retrieves log items for a particular object ID
*
* @access private
* @since 1.0
*
* @uses self::get_connected_logs()
*
* @return array
*/
public static function get_logs( $object_id = 0, $type = null, $paged = null ) {
return self::get_connected_logs( array( 'post_parent' => $object_id, 'paged' => $paged, 'log_type' => $type ) );
}
/**
* Retrieve all connected logs
*
* Used for retrieving logs related to particular items, such as a specific purchase.
*
* @access private
* @since 1.0
*
* @uses wp_parse_args()
* @uses get_posts()
* @uses get_query_var()
* @uses self::valid_type()
*
* @return array / false
*/
public static function get_connected_logs( $args = array() ) {
$defaults = array(
'post_parent' => 0,
'post_type' => 'wp_log',
'posts_per_page' => 10,
'post_status' => 'publish',
'paged' => get_query_var( 'paged' ),
'log_type' => false
);
$query_args = wp_parse_args( $args, $defaults );
if( $query_args['log_type'] && self::valid_type( $query_args['log_type'] ) ) {
$query_args['tax_query'] = array(
array(
'taxonomy' => 'wp_log_type',
'field' => 'slug',
'terms' => $query_args['log_type']
)
);
}
$logs = get_posts( $query_args );
if( $logs )
return $logs;
// no logs found
return false;
}
/**
* Retrieves number of log entries connected to particular object ID
*
* @access private
* @since 1.0
*
* @uses WP_Query()
* @uses self::valid_type()
*
* @return int
*/
public static function get_log_count( $object_id = 0, $type = null, $meta_query = null ) {
$query_args = array(
'post_parent' => $object_id,
'post_type' => 'wp_log',
'posts_per_page' => -1,
'post_status' => 'publish'
);
if( ! empty( $type ) && self::valid_type( $type ) ) {
$query_args['tax_query'] = array(
array(
'taxonomy' => 'wp_log_type',
'field' => 'slug',
'terms' => $type
)
);
}
if( ! empty( $meta_query ) ) {
$query_args['meta_query'] = $meta_query;
}
$logs = new WP_Query( $query_args );
return (int) $logs->post_count;
}
}
$GLOBALS['wp_logs'] = new WP_Logging();