-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathclass-plugin-theme-review-request.php
More file actions
541 lines (461 loc) · 13.9 KB
/
class-plugin-theme-review-request.php
File metadata and controls
541 lines (461 loc) · 13.9 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
<?php
/**
* This class can be customized to quickly add a review request system.
*
* It includes:
* - Multiple trigger groups which can be ordered by priority.
* - Multiple triggers per group.
* - Customizable messaging per trigger.
* - Link to review page.
* - Request reviews on a per user basis rather than per site.
* - Allows each user to dismiss it until later or permanently seamlessly via AJAX.
* - Integrates with attached tracking server to keep anonymous records of each triggers effectiveness.
* - Tracking Server API: https://gist.github.com/danieliser/0d997532e023c46d38e1bdfd50f38801
*
* To use this please include the following credit block as well as completing the following TODOS.
*
* Original Author: danieliser
* Original Author URL: https://danieliser.com
*
* TODO Search & Replace prefix_ with your prefix
* TODO Search & Replace Prefix_ with your prefix
* TODO Search & Replace 'text-domain' with your 'text-domain'
* TODO Change the $api_url if your using the accompanying tracking server. Leave it blank to disable this feature.
* TODO Modify the ::triggers function array with your custom triggers & text.
* TODO Keep in mind highest priority group/code combination that has all passing conditions will be chosen.
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* Class Prefix_Modules_Reviews
*
* This class adds a review request system for your plugin or theme to the WP dashboard.
*/
class Prefix_Modules_Reviews {
/**
* Tracking API Endpoint.
*
* @var string
*/
public static $api_url = '';
/**
*
*/
public static function init() {
add_action( 'init', array( __CLASS__, 'hooks' ) );
add_action( 'wp_ajax_prefix_review_action', array( __CLASS__, 'ajax_handler' ) );
}
/**
* Hook into relevant WP actions.
*/
public static function hooks() {
if ( is_admin() && current_user_can( 'edit_posts' ) ) {
self::installed_on();
add_action( 'admin_notices', array( __CLASS__, 'admin_notices' ) );
add_action( 'network_admin_notices', array( __CLASS__, 'admin_notices' ) );
add_action( 'user_admin_notices', array( __CLASS__, 'admin_notices' ) );
}
}
/**
* Get the install date for comparisons. Sets the date to now if none is found.
*
* @return false|string
*/
public static function installed_on() {
$installed_on = get_option( 'prefix_reviews_installed_on', false );
if ( ! $installed_on ) {
$installed_on = current_time( 'mysql' );
update_option( 'prefix_reviews_installed_on', $installed_on );
}
return $installed_on;
}
/**
*
*/
public static function ajax_handler() {
$args = wp_parse_args( $_REQUEST, array(
'group' => self::get_trigger_group(),
'code' => self::get_trigger_code(),
'pri' => self::get_current_trigger( 'pri' ),
'reason' => 'maybe_later',
) );
if ( ! wp_verify_nonce( $_REQUEST['nonce'], 'prefix_review_action' ) ) {
wp_send_json_error();
}
try {
$user_id = get_current_user_id();
$dismissed_triggers = self::dismissed_triggers();
$dismissed_triggers[ $args['group'] ] = $args['pri'];
update_user_meta( $user_id, '_prefix_reviews_dismissed_triggers', $dismissed_triggers );
update_user_meta( $user_id, '_prefix_reviews_last_dismissed', current_time( 'mysql' ) );
switch ( $args['reason'] ) {
case 'maybe_later':
update_user_meta( $user_id, '_prefix_reviews_last_dismissed', current_time( 'mysql' ) );
break;
case 'am_now':
case 'already_did':
self::already_did( true );
break;
}
wp_send_json_success();
} catch ( Exception $e ) {
wp_send_json_error( $e );
}
}
/**
* @return int|string
*/
public static function get_trigger_group() {
static $selected;
if ( ! isset( $selected ) ) {
$dismissed_triggers = self::dismissed_triggers();
$triggers = self::triggers();
foreach ( $triggers as $g => $group ) {
foreach ( $group['triggers'] as $t => $trigger ) {
if ( ! in_array( false, $trigger['conditions'] ) && ( empty( $dismissed_triggers[ $g ] ) || $dismissed_triggers[ $g ] < $trigger['pri'] ) ) {
$selected = $g;
break;
}
}
if ( isset( $selected ) ) {
break;
}
}
}
return $selected;
}
/**
* @return int|string
*/
public static function get_trigger_code() {
static $selected;
if ( ! isset( $selected ) ) {
$dismissed_triggers = self::dismissed_triggers();
foreach ( self::triggers() as $g => $group ) {
foreach ( $group['triggers'] as $t => $trigger ) {
if ( ! in_array( false, $trigger['conditions'] ) && ( empty( $dismissed_triggers[ $g ] ) || $dismissed_triggers[ $g ] < $trigger['pri'] ) ) {
$selected = $t;
break;
}
}
if ( isset( $selected ) ) {
break;
}
}
}
return $selected;
}
/**
* @param null $key
*
* @return bool|mixed|void
*/
public static function get_current_trigger( $key = null ) {
$group = self::get_trigger_group();
$code = self::get_trigger_code();
if ( ! $group || ! $code ) {
return false;
}
$trigger = self::triggers( $group, $code );
if( empty( $key ) ) {
$return = $trigger;
} elseif ( isset( $trigger[ $key ] ) ){
$return = $trigger[ $key ];
} else {
$return = false;
}
return $return;
}
/**
* Returns an array of dismissed trigger groups.
*
* Array contains the group key and highest priority trigger that has been shown previously for each group.
*
* $return = array(
* 'group1' => 20
* );
*
* @return array|mixed
*/
public static function dismissed_triggers() {
$user_id = get_current_user_id();
$dismissed_triggers = get_user_meta( $user_id, '_prefix_reviews_dismissed_triggers', true );
if ( ! $dismissed_triggers ) {
$dismissed_triggers = array();
}
return $dismissed_triggers;
}
/**
* Returns true if the user has opted to never see this again. Or sets the option.
*
* @param bool $set If set this will mark the user as having opted to never see this again.
*
* @return bool
*/
public static function already_did( $set = false ) {
$user_id = get_current_user_id();
if ( $set ) {
update_user_meta( $user_id, '_prefix_reviews_already_did', true );
return true;
}
return (bool) get_user_meta( $user_id, '_prefix_reviews_already_did', true );
}
/**
* Gets a list of triggers.
*
* @param null $group
* @param null $code
*
* @return bool|mixed|void
*/
public static function triggers( $group = null, $code = null ) {
static $triggers;
if ( ! isset( $triggers ) ) {
$open_message = __( 'Hey, I noticed you recently hit %d popup views on your site – that’s awesome!. I would very much appreciate if you could quickly give it a 5-star rating on WordPress, just to help us spread the word.', 'text-domain' );
$time_message = __( "Hey, you've been using Popup Maker for %s on your site - I hope that its been helpful. I would very much appreciate if you could quickly give it a 5-star rating on WordPress, just to help us spread the word.", 'text-domain' );
$triggers = apply_filters( 'prefix_reviews_triggers', array(
'time_installed' => array(
'triggers' => array(
'one_week' => array(
'message' => sprintf( $time_message, __( '1 week', 'text-domain' ) ),
'conditions' => array(
strtotime( self::installed_on() . ' +1 week' ) < time(),
),
'link' => 'https://wordpress.org/support/plugin/popup-maker/reviews/?rate=5#rate-response',
'pri' => 10,
),
'one_month' => array(
'message' => sprintf( $time_message, __( '1 month', 'text-domain' ) ),
'conditions' => array(
strtotime( self::installed_on() . ' +1 month' ) < time(),
),
'link' => 'https://wordpress.org/support/plugin/popup-maker/reviews/?rate=5#rate-response',
'pri' => 20,
),
'three_months' => array(
'message' => sprintf( $time_message, __( '3 months', 'text-domain' ) ),
'conditions' => array(
strtotime( self::installed_on() . ' +3 months' ) < time(),
),
'link' => 'https://wordpress.org/support/plugin/popup-maker/reviews/?rate=5#rate-response',
'pri' => 30,
),
),
'pri' => 10,
),
'open_count' => array(
'triggers' => array(
'50_opens' => array(
'message' => sprintf( $open_message, 50 ),
'conditions' => array(
get_option( 'prefix_total_open_count', 0 ) > 50,
),
'link' => 'https://wordpress.org/support/plugin/popup-maker/reviews/?rate=5#rate-response',
'pri' => 10,
),
'100_opens' => array(
'message' => sprintf( $open_message, 100 ),
'conditions' => array(
get_option( 'prefix_total_open_count', 0 ) > 100,
),
'link' => 'https://wordpress.org/support/plugin/popup-maker/reviews/?rate=5#rate-response',
'pri' => 20,
),
'500_opens' => array(
'message' => sprintf( $open_message, 500 ),
'conditions' => array(
get_option( 'prefix_total_open_count', 0 ) > 500,
),
'link' => 'https://wordpress.org/support/plugin/popup-maker/reviews/?rate=5#rate-response',
'pri' => 30,
),
),
'pri' => 50,
),
) );
// Sort Groups
uasort( $triggers, array( __CLASS__, 'rsort_by_priority' ) );
// Sort each groups triggers.
foreach ( $triggers as $k => $v ) {
uasort( $triggers[ $k ]['triggers'], array( __CLASS__, 'rsort_by_priority' ) );
}
}
if ( isset( $group ) ) {
if ( ! isset( $triggers[ $group ] ) ) {
return false;
}
if ( ! isset( $code ) ) {
$return = $triggers[ $group ];
} elseif ( isset( $triggers[ $group ]['triggers'][ $code ] ) ) {
$return = $triggers[ $group ]['triggers'][ $code ];
} else {
$return = false;
}
return $return;
}
return $triggers;
}
/**
* Render admin notices if available.
*/
public static function admin_notices() {
if ( self::hide_notices() ) {
return;
}
$group = self::get_trigger_group();
$code = self::get_trigger_code();
$pri = self::get_current_trigger( 'pri' );
$tigger = self::get_current_trigger();
// Used to anonymously distinguish unique site+user combinations in terms of effectiveness of each trigger.
$uuid = wp_hash( home_url() . '-' . get_current_user_id() );
?>
<script type="text/javascript">
(function ($) {
var trigger = {
group: '<?php echo $group; ?>',
code: '<?php echo $code; ?>',
pri: '<?php echo $pri; ?>'
};
function dismiss(reason) {
$.ajax({
method: "POST",
dataType: "json",
url: ajaxurl,
data: {
action: 'prefix_review_action',
nonce: '<?php echo wp_create_nonce( 'prefix_review_action' ); ?>',
group: trigger.group,
code: trigger.code,
pri: trigger.pri,
reason: reason
}
});
<?php if ( ! empty( self::$api_url ) ) : ?>
$.ajax({
method: "POST",
dataType: "json",
url: '<?php echo self::$api_url; ?>',
data: {
trigger_group: trigger.group,
trigger_code: trigger.code,
reason: reason,
uuid: '<?php echo $uuid; ?>'
}
});
<?php endif; ?>
}
$(document)
.on('click', '.prefix-notice .prefix-dismiss', function (event) {
var $this = $(this),
reason = $this.data('reason'),
notice = $this.parents('.prefix-notice');
notice.fadeTo(100, 0, function () {
notice.slideUp(100, function () {
notice.remove();
});
});
dismiss(reason);
})
.ready(function () {
setTimeout(function () {
$('.prefix-notice button.notice-dismiss').click(function (event) {
dismiss('maybe_later');
});
}, 1000);
});
}(jQuery));
</script>
<style>
.prefix-notice p {
margin-bottom: 0;
}
.prefix-notice img.logo {
float: right;
margin-left: 10px;
width: 75px;
padding: 0.25em;
border: 1px solid #ccc;
}
</style>
<div class="notice notice-success is-dismissible prefix-notice">
<p>
<img class="logo" src="<?php echo POPMAKE_URL; ?>/includes/libs/freemius/assets/img/plugin-icon.png" />
<strong>
<?php echo $tigger['message']; ?>
<br />
~ danieliser
</strong>
</p>
<ul>
<li>
<a class="prefix-dismiss" target="_blank" href="https://wordpress.org/support/plugin/popup-maker/reviews/?rate=5#rate-response" data-reason="am_now">
<strong><?php _e( 'Ok, you deserve it', 'text-domain' ); ?></strong>
</a>
</li>
<li>
<a href="#" class="prefix-dismiss" data-reason="maybe_later">
<?php _e( 'Nope, maybe later', 'text-domain' ); ?>
</a>
</li>
<li>
<a href="#" class="prefix-dismiss" data-reason="already_did">
<?php _e( 'I already did', 'text-domain' ); ?>
</a>
</li>
</ul>
</div>
<?php
}
/**
* Checks if notices should be shown.
*
* @return bool
*/
public static function hide_notices() {
$conditions = array(
self::already_did(),
self::last_dismissed() && strtotime( self::last_dismissed() . ' +2 weeks' ) > time(),
empty( self::get_trigger_code() ),
);
return in_array( true, $conditions );
}
/**
* Gets the last dismissed date.
*
* @return false|string
*/
public static function last_dismissed() {
$user_id = get_current_user_id();
return get_user_meta( $user_id, '_prefix_reviews_last_dismissed', true );
}
/**
* Sort array by priority value
*
* @param $a
* @param $b
*
* @return int
*/
public static function sort_by_priority( $a, $b ) {
if ( ! isset( $a['pri'] ) || ! isset( $b['pri'] ) || $a['pri'] === $b['pri'] ) {
return 0;
}
return ( $a['pri'] < $b['pri'] ) ? - 1 : 1;
}
/**
* Sort array in reverse by priority value
*
* @param $a
* @param $b
*
* @return int
*/
public static function rsort_by_priority( $a, $b ) {
if ( ! isset( $a['pri'] ) || ! isset( $b['pri'] ) || $a['pri'] === $b['pri'] ) {
return 0;
}
return ( $a['pri'] < $b['pri'] ) ? 1 : - 1;
}
}
Prefix_Modules_Reviews::init();