Activity_Helper()

Description #

Class which has helper methods for AnsPress activities.

Changelog #

VersionDescription
4.2.0Fixed: CS bugs.
4.1.2Introduced.

Source #

File: includes/class/class-activity-helper.php

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
class Activity_Helper {
 
    /**
     * Refers to a single instance of this class.
     *
     * @var null|object
     */
    private static $instance = null;
 
    /**
     * The current table name
     *
     * @var boolean|string
     */
    private $table = false;
 
    /**
     * The activity actions.
     *
     * @var array
     * @since 4.1.2
     */
    private $actions = array();
 
    /**
     * Creates or returns an instance of this class.
     *
     * @return Activity A single instance of this class.
     */
    public static function get_instance() {
        if ( null === self::$instance ) {
            self::$instance = new self();
            self::hooks();
        }
 
        return self::$instance;
    }
 
    /**
     * Constructor for the database class to inject the table name
     */
    private function __construct() {
        global $wpdb;
        $this->table = $wpdb->ap_activity;
 
        $this->prepare_actions();
    }
 
    /**
     * Register all hooks of activities.
     *
     * @return void
     * @since 4.1.2
     */
    private static function hooks() {
        anspress()->add_action( 'before_delete_post', __CLASS__, '_before_delete' );
        anspress()->add_action( 'delete_comment', __CLASS__, '_delete_comment' );
        anspress()->add_action( 'delete_user', __CLASS__, '_delete_user' );
        anspress()->add_action( 'ap_ajax_more_activities', __CLASS__, '_ajax_more_activities' );
    }
 
    /**
     * Callback for `before_delete_post`.
     *
     * Deletes activities related to a post.
     *
     * @param integer $post_id Post id.
     * @return void
     * @since 4.1.2
     */
    public static function _before_delete( $post_id ) { // phpcs:ignore PSR2.Methods.MethodDeclaration.Underscore
        $_post = ap_get_post( $post_id );
 
        // Return if not AnsPress cpt.
        if ( ! ap_is_cpt( $_post ) ) {
            return;
        }
 
        ap_delete_post_activity( $post_id );
    }
 
    /**
     * Callback for `delete_comment`.
     *
     * Deletes activities related to a comment.
     *
     * @param integer $comment_id Comment id.
     * @return void
     * @since 4.1.2
     */
    public static function _delete_comment( $comment_id ) { // phpcs:ignore PSR2.Methods.MethodDeclaration.Underscore
        ap_delete_comment_activity( $comment_id );
    }
 
    /**
     * Callback for loading more activities.
     *
     * @return void
     */
    public static function _ajax_more_activities() { // phpcs:ignore PSR2.Methods.MethodDeclaration.Underscore
        // Check ajax referer.
        if ( ! check_ajax_referer( 'load_activities', '__nonce', false ) ) {
            ap_ajax_json( 'something_wrong' );
        }
 
        $activities = new \AnsPress\Activity(
            array(
                'paged' => max( 1, ap_isset_post_value( 'paged', 1 ) ),
            )
        );
 
        ob_start();
        include ap_get_theme_location( 'activities/activities.php' );
        $html = ob_get_clean();
 
        ap_ajax_json(
            array(
                'success' => true,
                'html'    => $html,
                'cb'      => 'loadedMoreActivities',
            )
        );
    }
 
    /**
     * Callback for `delete_user`.
     *
     * Deletes activities related to a user.
     *
     * @param integer $user_id User id.
     * @return void
     * @since 4.1.2
     */
    public static function _delete_user( $user_id ) { // phpcs:ignore PSR2.Methods.MethodDeclaration.Underscore
        ap_delete_user_activity( $user_id );
    }
 
    /**
     * Prepare all actions of activity. Numeric keys are used here so that we can save
     * space while saving in database.
     *
     * @return void
     * @since 4.1.2
     */
    public function prepare_actions() {
        $defaults = array(
            'new_q'               => array(
                'ref_type' => 'question',
                'verb'     => __( 'Asked question', 'anspress-question-answer' ),
                'icon'     => 'apicon-question',
            ),
            'edit_q'              => array(
                'ref_type' => 'question',
                'verb'     => __( 'Edited question', 'anspress-question-answer' ),
                'icon'     => 'apicon-pencil',
            ),
            'new_a'               => array(
                'ref_type' => 'answer',
                'verb'     => __( 'Answered question', 'anspress-question-answer' ),
                'icon'     => 'apicon-answer',
            ),
            'edit_a'              => array(
                'ref_type' => 'answer',
                'verb'     => __( 'Edited answer', 'anspress-question-answer' ),
                'icon'     => 'apicon-answer',
            ),
            'status_publish'      => array(
                'ref_type' => 'post',
                'verb'     => __( 'Changed status to publish', 'anspress-question-answer' ),
                'icon'     => 'apicon-flag',
            ),
            'status_future'       => array(
                'ref_type' => 'post',
                'verb'     => __( 'Changed publish date to future', 'anspress-question-answer' ),
                'icon'     => 'apicon-flag',
            ),
            'status_moderate'     => array(
                'ref_type' => 'post',
                'verb'     => __( 'Changed status to moderate', 'anspress-question-answer' ),
                'icon'     => 'apicon-flag',
            ),
            'status_private_post' => array(
                'ref_type' => 'post',
                'verb'     => __( 'Changed visibility to private', 'anspress-question-answer' ),
                'icon'     => 'apicon-flag',
            ),
            'status_trash'        => array(
                'ref_type' => 'post',
                'verb'     => __( 'Trashed', 'anspress-question-answer' ),
                'icon'     => 'apicon-trashcan',
            ),
            'featured'            => array(
                'ref_type' => 'question',
                'verb'     => __( 'Marked as featured question', 'anspress-question-answer' ),
                'icon'     => 'apicon-star',
            ),
            'unfeatured'          => array(
                'ref_type' => 'question',
                'verb'     => __( 'Unfeatured the question', 'anspress-question-answer' ),
                'icon'     => 'apicon-question',
            ),
            'closed_q'            => array(
                'ref_type' => 'question',
                'verb'     => __( 'Marked as closed', 'anspress-question-answer' ),
                'icon'     => 'apicon-alert',
            ),
            'open_q'              => array(
                'ref_type' => 'question',
                'verb'     => __( 'Re-opened the question', 'anspress-question-answer' ),
                'icon'     => 'apicon-question',
            ),
            'new_c'               => array(
                'ref_type' => 'comment',
                'verb'     => __( 'Posted new comment', 'anspress-question-answer' ),
                'icon'     => 'apicon-comments',
            ),
            'edit_c'              => array(
                'ref_type' => 'comment',
                'verb'     => __( 'Edited comment', 'anspress-question-answer' ),
                'icon'     => 'apicon-comments',
            ),
            'selected'            => array(
                'ref_type' => 'answer',
                'verb'     => __( 'Selected answer as best', 'anspress-question-answer' ),
                'icon'     => 'apicon-check',
            ),
            'unselected'          => array(
                'ref_type' => 'answer',
                'verb'     => __( 'Unselected an answer', 'anspress-question-answer' ),
                'icon'     => 'apicon-check',
            ),
        );
 
        /**
         * Filter allows adding new activity actions. This hook is only called once
         * while class initiate. Hence, later filters will not work. Also make sure
         * to keep array key length less then 20 characters.
         *
         * @param array $actions Originally registered actions.
         * @since 4.1.2
         */
        $actions = apply_filters( 'ap_activity_actions', $defaults );
 
        // We have to check for array key length and must keep it below 20 characters.
        foreach ( $actions as $key => $action ) {
            $this->actions[ $key ] = $action;
        }
    }
 
    /**
     * Return all registered actions of AnsPress.
     *
     * @return array
     * @since 4.1.2
     */
    public function get_actions() {
        return $this->actions;
    }
 
    /**
     * Return a single registered action of AnsPress.
     *
     * @param string $key Action name.
     * @return array
     * @since 4.1.2
     */
    public function get_action( $key ) {
        if ( $this->action_exists( $key ) ) {
            return $this->actions[ $key ];
        }
 
        return array();
    }
 
    /**
     * Check if activity action exists.
     *
     * @param string $action Action key, must be below 20 characters.
     * @return boolean
     * @since 4.1.2
     */
    public function action_exists( $action ) {
        // Get only actions key.
        $action_keys = array_keys( $this->actions );
        return in_array( $action, $action_keys, true );
    }
 
    /**
     * Insert activity data into the database. `$q_id` argument cannot be
     * left blank as it is required.
     *
     * @param array $args {
     *      Arguments for insert query.
     *
     *      @type string  $action  Registered action key.
     *      @type integer $q_id    Question id. This is a required argument.
     *      @type integer $a_id    Answer id. This argument is optional.
     *      @type integer $c_id    Comment id. This argument is optional.
     *      @type integer $user_id User id. This is optional.
     *      @type string  $date    Date of activity. Current time is used by default.
     * }
     * @since 4.1.2
     * @since 4.1.8 Add GMT offset in `current_time`.
     */
    public function insert( $args = array() ) {
        global $wpdb;
 
        $args = wp_parse_args(
            $args,
            array(
                'action'  => '',
                'q_id'    => 0,
                'a_id'    => 0,
                'c_id'    => 0,
                'user_id' => get_current_user_id(),
                'date'    => current_time( 'mysql', true ),
            )
        );
 
        // Check if question id exists.
        if ( empty( $args['q_id'] ) ) {
            return new WP_Error( 'question_id_empty', __( 'Question id is required.', 'anspress-question-answer' ) );
        }
 
        // Check if valid action.
        if ( ! $this->action_exists( $args['action'] ) ) {
            return new WP_Error( 'not_valid_action', __( 'Not a valid action', 'anspress-question-answer' ) );
        }
 
        // split date for validation.
        $mm         = substr( $args['date'], 5, 2 );
        $jj         = substr( $args['date'], 8, 2 );
        $aa         = substr( $args['date'], 0, 4 );
        $valid_date = wp_checkdate( $mm, $jj, $aa, $args['date'] );
 
        // Validate date.
        if ( ! $valid_date ) {
            return new WP_Error( 'invalid_date', __( 'Invalid date', 'anspress-question-answer' ) );
        }
 
        // Insert.
        $inserted = $wpdb->insert( // phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery
            $this->table,
            array(
                'activity_action'  => $args['action'],
                'activity_q_id'    => $args['q_id'],
                'activity_a_id'    => $args['a_id'],
                'activity_c_id'    => $args['c_id'],
                'activity_user_id' => $args['user_id'],
                'activity_date'    => $args['date'],
            ),
            array(
                '%s',
                '%d',
                '%d',
                '%d',
                '%d',
                '%s',
            )
        );
 
        if ( ! $inserted ) {
            return new WP_Error( 'insert_activity_failed', __( 'Failed to insert activity', 'anspress-question-answer' ) );
        }
 
        /**
         * Hook called right after an activity get inserted to database.
         *
         * @param array $args  Insert arguments.
         * @since 4.1.2
         */
        do_action( 'ap_activity_inserted', $args );
 
        return $wpdb->insert_id;
    }
 
    /**
     * Get activity by activity_id.
     *
     * @param integer $activity_id Activity id.
     * @return boolean|object
     * @since 4.1.2
     */
    public function get_activity( $activity_id ) {
        global $wpdb;
 
        if ( empty( $activity_id ) ) {
            return false;
        }
 
        return $wpdb->get_row( $wpdb->prepare( "SELECT * FROM $wpdb->ap_activity WHERE activity_id = %d", $activity_id ) ); // phpcs:ignore WordPress.DB.DirectDatabaseQuery
    }
 
    /**
     * Delete single and multiple activity from database.
     *
     * @param array $where {
     *      Where clause for delete query.
     *
     *      @type string  $action  Activity action name.
     *      @type integer $q_id    Question id. This is a required argument.
     *      @type integer $a_id    Answer id. This is optional.
     *      @type integer $c_id    Comment id. This is optional.
     *      @type integer $user_id Activity user id. This is optional.
     *      @type string  $date    Activity date. This is optional.
     * }
     * @return WP_Error|integer Return numbers of rows deleted on success.
     * @since 4.1.2
     */
    public function delete( $where ) {
        global $wpdb;
 
        $where = wp_array_slice_assoc( $where, array( 'action', 'a_id', 'c_id', 'q_id', 'user_id', 'date' ) );
        $types = array();
        $cols  = array();
 
        foreach ( $where as $key => $value ) {
            if ( in_array( $key, array( 'action', 'date' ), true ) ) {
                $types[] = '%s';
            } else {
                $types[] = '%d';
            }
 
            $cols[ 'activity_' . $key ] = $value;
        }
 
        // Check if there are columns.
        if ( empty( $cols ) ) {
            return new WP_Error( 'no_cols', __( 'No columns found in where clue', 'anspress-question-answer' ) );
        }
 
        $deleted = $wpdb->delete( $this->table, $cols, $types ); // phpcs:ignore WordPress.DB
 
        if ( false === $deleted ) {
            return new WP_Error( 'failed_to_delete', __( 'Failed to delete activity rows.', 'anspress-question-answer' ) );
        }
 
        /**
         * Hook triggered right after an AnsPress activity is deleted from database.
         *
         * @param array $where Where clauses.
         * @since 4.1.2
         */
        do_action( 'ap_activity_deleted', $where );
 
        return $deleted;
    }
}

Leave a Reply

Your email address will not be published.

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Add your comment