-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathclass-convertkit-settings.php
More file actions
720 lines (566 loc) · 15.7 KB
/
class-convertkit-settings.php
File metadata and controls
720 lines (566 loc) · 15.7 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
<?php
/**
* ConvertKit Plugin Settings class.
*
* @package ConvertKit
* @author ConvertKit
*/
/**
* Class to read ConvertKit Plugin Settings.
*
* @since 1.9.6
*/
class ConvertKit_Settings {
/**
* Holds the Settings Key that stores site wide ConvertKit settings
*
* @var string
*/
const SETTINGS_NAME = '_wp_convertkit_settings';
/**
* Holds the Settings
*
* @var array
*/
private $settings = array();
/**
* Constructor. Reads settings from options table, falling back to defaults
* if no settings exist.
*
* @since 1.9.6
*/
public function __construct() {
// Get Settings.
$settings = get_option( self::SETTINGS_NAME );
// If no Settings exist, falback to default settings.
if ( ! $settings ) {
$this->settings = $this->get_defaults();
} else {
$this->settings = array_merge( $this->get_defaults(), $settings );
}
}
/**
* Returns Plugin settings.
*
* @since 1.9.6
*
* @return array
*/
public function get() {
return $this->settings;
}
/**
* Returns the API Key Plugin setting.
*
* @since 1.9.6
*
* @return string
*/
public function get_api_key() {
// Return API Key from constant, if defined.
if ( defined( 'CONVERTKIT_API_KEY' ) ) {
return CONVERTKIT_API_KEY;
}
// Return API Key from settings.
return $this->settings['api_key'];
}
/**
* Returns whether the API Key has been set in the Plugin settings.
*
* @since 1.9.6
*
* @return bool
*/
public function has_api_key() {
return ( ! empty( $this->get_api_key() ) ? true : false );
}
/**
* Returns whether the API Key is stored as a constant in the wp-config.php file.
*
* @since 1.9.6
*
* @return bool
*/
public function is_api_key_a_constant() {
return defined( 'CONVERTKIT_API_KEY' );
}
/**
* Returns the API Secret Plugin setting.
*
* @since 1.9.6
*
* @return string
*/
public function get_api_secret() {
// Return API Secret from constant, if defined.
if ( defined( 'CONVERTKIT_API_SECRET' ) ) {
return CONVERTKIT_API_SECRET;
}
// Return API Secret from settings.
return $this->settings['api_secret'];
}
/**
* Returns whether the API Secret has been set in the Plugin settings.
*
* @since 1.9.6
*
* @return bool
*/
public function has_api_secret() {
return ( ! empty( $this->get_api_secret() ) ? true : false );
}
/**
* Returns whether the API Secret is stored as a constant in the wp-config.php file.
*
* @since 1.9.6
*
* @return bool
*/
public function is_api_secret_a_constant() {
return defined( 'CONVERTKIT_API_SECRET' );
}
/**
* Returns whether the API Key and Secret have been set in the Plugin settings.
*
* @since 1.9.6
*
* @return bool
*/
public function has_api_key_and_secret() {
_deprecated_function( __FUNCTION__, '2.6.3', 'has_access_and_refresh_token()' );
// Use check for access and refresh token.
return $this->has_access_and_refresh_token();
}
/**
* Returns the Access Token Plugin setting.
*
* @since 2.5.0
*
* @return string
*/
public function get_access_token() {
// Reload settings from options table, to ensure we have the latest tokens.
$this->refresh_settings();
// Return Access Token from settings.
return $this->settings['access_token'];
}
/**
* Returns whether the Access Token has been set in the Plugin settings.
*
* @since 2.5.0
*
* @return bool
*/
public function has_access_token() {
return ( ! empty( $this->get_access_token() ) ? true : false );
}
/**
* Returns the Refresh Token Plugin setting.
*
* @since 2.5.0
*
* @return string
*/
public function get_refresh_token() {
// Reload settings from options table, to ensure we have the latest tokens.
$this->refresh_settings();
// Return Refresh Token from settings.
return $this->settings['refresh_token'];
}
/**
* Returns whether the Refresh Token has been set in the Plugin settings.
*
* @since 2.5.0
*
* @return bool
*/
public function has_refresh_token() {
return ( ! empty( $this->get_refresh_token() ) ? true : false );
}
/**
* Returns whether to use Access and Refresh Tokens for API requests,
* based on whether an Access Token and Refresh Token have been saved
* in the Plugin settings.
*
* @since 2.5.0
*
* @return bool
*/
public function has_access_and_refresh_token() {
return $this->has_access_token() && $this->has_refresh_token();
}
/**
* Returns the Access Token expiry timestamp.
*
* @since 2.5.0
*
* @return int
*/
public function get_token_expiry() {
// Return Token Expiry from settings.
return $this->settings['token_expires'];
}
/**
* Returns the Default Form Plugin setting.
*
* @since 1.9.6
*
* @param string $post_type Post Type.
* @return string|int Default Form (default|form id)
*/
public function get_default_form( $post_type ) {
// Return default if this Post Type doesn't exist as a setting.
if ( ! array_key_exists( $post_type . '_form', $this->settings ) ) {
return 'default';
}
// Backward compat. where older Plugin versions would store API errors in the option value
// with id = -2 and name = 'Error contacting API'.
if ( is_array( $this->settings[ $post_type . '_form' ] ) ) {
return 'default';
}
return $this->settings[ $post_type . '_form' ];
}
/**
* Returns whether the Default Form has been set in the Plugin settings.
*
* @since 1.9.6
*
* @param string $post_type Post Type.
* @return bool Post Type has a Default Form setting specified in Plugin Settings.
*/
public function has_default_form( $post_type ) {
return ( ! empty( $this->settings[ $post_type . '_form' ] ) ? true : false );
}
/**
* Returns the Default Form Position Plugin setting.
*
* @since 2.5.8
*
* @param string $post_type Post Type.
* @return string|int Default Form (default|form id)
*/
public function get_default_form_position( $post_type ) {
// Return after_content if this Post Type's position doesn't exist as a setting.
if ( ! array_key_exists( $post_type . '_form_position', $this->settings ) ) {
return 'after_content';
}
return $this->settings[ $post_type . '_form_position' ];
}
/**
* Returns the Default Form Position Element Plugin setting.
*
* @since 2.6.1
*
* @param string $post_type Post Type.
* @return string Element to insert form after
*/
public function get_default_form_position_element( $post_type ) {
// Return after_content if this Post Type's position doesn't exist as a setting.
if ( ! array_key_exists( $post_type . '_form_position_element', $this->settings ) ) {
return 'p';
}
return $this->settings[ $post_type . '_form_position_element' ];
}
/**
* Returns the Default Form Position Index Plugin setting.
*
* @since 2.6.1
*
* @param string $post_type Post Type.
* @return int Number of elements before inserting form
*/
public function get_default_form_position_element_index( $post_type ) {
// Return 1 if this Post Type's position index doesn't exist as a setting.
if ( ! array_key_exists( $post_type . '_form_position_element_index', $this->settings ) ) {
return 1;
}
return (int) $this->settings[ $post_type . '_form_position_element_index' ];
}
/**
* Returns the Global non-inline Form Plugin setting.
*
* @since 2.3.3
*
* @return array
*/
public function get_non_inline_form() {
// Return blank array if no inline form is specified.
if ( ! $this->has_non_inline_form() ) {
return array();
}
// 2.6.8 and earlier stored a single Form ID in a string.
if ( is_string( $this->settings['non_inline_form'] ) ) {
return array( (int) $this->settings['non_inline_form'] );
}
// Cast values to integers and return.
return array_map( 'intval', $this->settings['non_inline_form'] );
}
/**
* Returns whether the Global non-inline Form has been set in the Plugin settings.
*
* @since 2.3.3
*
* @return bool Global non-inline Form setting specified in Plugin Settings.
*/
public function has_non_inline_form() {
// 2.6.8 and earlier stored a single Form ID in a string.
if ( is_string( $this->settings['non_inline_form'] ) ) {
if ( ! empty( $this->settings['non_inline_form'] ) ) {
return true;
}
return false;
}
return ( count( $this->settings['non_inline_form'] ) > 0 ? true : false );
}
/**
* Returns whether the Global non-inline Form setting should honor the Page / Post
* None setting.
*
* @since 2.7.3
*
* @return bool
*/
public function non_inline_form_honor_none_setting() {
return ( $this->settings['non_inline_form_honor_none_setting'] === 'on' ? true : false );
}
/**
* Returns whether the Non-inline Form Limit per Session setting has been set in the Plugin settings.
*
* @since 3.0.0
*
* @return bool
*/
public function non_inline_form_limit_per_session() {
return ( $this->settings['non_inline_form_limit_per_session'] === 'on' ? true : false );
}
/**
* Returns the reCAPTCHA Site Key Plugin setting.
*
* @since 3.0.0
*
* @return string
*/
public function recaptcha_site_key() {
return $this->settings['recaptcha_site_key'];
}
/**
* Returns whether the reCAPTCHA Site Key has been set in the Plugin settings.
*
* @since 3.0.0
*
* @return bool
*/
public function has_recaptcha_site_key() {
return ! empty( $this->recaptcha_site_key() );
}
/**
* Returns the reCAPTCHA Secret Key Plugin setting.
*
* @since 3.0.0
*
* @return string
*/
public function recaptcha_secret_key() {
return $this->settings['recaptcha_secret_key'];
}
/**
* Returns whether the reCAPTCHA Secret Key has been set in the Plugin settings.
*
* @since 3.0.0
*
* @return bool
*/
public function has_recaptcha_secret_key() {
return ! empty( $this->recaptcha_secret_key() );
}
/**
* Returns whether the reCAPTCH Site Key and Secret Key are defined
* in the Plugin settings.
*
* @since 3.0.0
*
* @return bool
*/
public function has_recaptcha_site_and_secret_keys() {
return $this->has_recaptcha_site_key() && $this->has_recaptcha_secret_key();
}
/**
* Returns the reCAPTCHA minimum score Plugin setting.
*
* @since 3.0.0
*
* @return float
*/
public function recaptcha_minimum_score() {
return (float) $this->settings['recaptcha_minimum_score'];
}
/**
* Returns whether debugging is enabled in the Plugin settings.
*
* @since 1.9.6
*
* @return bool
*/
public function debug_enabled() {
return ( $this->settings['debug'] === 'on' ? true : false );
}
/**
* Returns whether scripts are disabled in the Plugin settings.
*
* @since 1.9.6
*
* @return bool
*/
public function scripts_disabled() {
return ( $this->settings['no_scripts'] === 'on' ? true : false );
}
/**
* Returns whether stylesheets are disabled in the Plugin settings.
*
* @since 1.9.6.9
*
* @return bool
*/
public function css_disabled() {
return ( $this->settings['no_css'] === 'on' ? true : false );
}
/**
* Returns whether the Add New Landing Page / Member Content button is disabled in the Plugin settings.
*
* @since 3.2.0
*
* @return bool
*/
public function add_new_button_disabled() {
return ( $this->settings['no_add_new_button'] === 'on' ? true : false );
}
/**
* Returns whether usage tracking is enabled in the Plugin settings.
*
* @since 3.0.4
*
* @return bool
*/
public function usage_tracking() {
return ( $this->settings['usage_tracking'] === 'on' ? true : false );
}
/**
* The default settings, used when the ConvertKit Plugin Settings haven't been saved
* e.g. on a new installation.
*
* @since 1.9.6
*
* @return array
*/
public function get_defaults() {
$defaults = array(
// OAuth.
'access_token' => '', // string.
'refresh_token' => '', // string.
'token_expires' => '', // integer.
// API Key. Retained if needed for backward compat.
'api_key' => '', // string.
'api_secret' => '', // string.
// Site Wide.
'non_inline_form' => array(), // array.
'non_inline_form_honor_none_setting' => '', // blank|on.
'non_inline_form_limit_per_session' => '', // blank|on.
// reCAPTCHA.
'recaptcha_site_key' => '', // string.
'recaptcha_secret_key' => '', // string.
'recaptcha_minimum_score' => 0.5, // float.
// Advanced.
'debug' => '', // blank|on.
'no_scripts' => '', // blank|on.
'no_css' => '', // blank|on.
'no_add_new_button' => '', // blank|on.
'usage_tracking' => '', // blank|on.
);
// Add Post Type Default Forms.
foreach ( convertkit_get_supported_post_types() as $post_type ) {
$defaults[ $post_type . '_form' ] = 0; // -1, 0 or Form ID.
$defaults[ $post_type . '_form_position' ] = 'after_content'; // before_content,after_content,before_after_content,element.
$defaults[ $post_type . '_form_position_element' ] = 'p';
$defaults[ $post_type . '_form_position_element_index' ] = 1;
}
/**
* The default settings, used when the ConvertKit Plugin Settings haven't been saved
* e.g. on a new installation.
*
* @since 1.9.6
*
* @param array $defaults Default Settings.
*/
$defaults = apply_filters( 'convertkit_settings_get_defaults', $defaults );
return $defaults;
}
/**
* Saves the new access token, refresh token and its expiry, and schedules
* a WordPress Cron event to refresh the token on expiry.
*
* @since 2.8.3
*
* @param array $result New Access Token, Refresh Token and Expiry.
*/
public function update_credentials( $result ) {
// Remove any existing persistent notice.
WP_ConvertKit()->get_class( 'admin_notices' )->delete( 'authorization_failed' );
$this->save(
array(
'access_token' => $result['access_token'],
'refresh_token' => $result['refresh_token'],
'token_expires' => ( time() + $result['expires_in'] ),
)
);
// Clear any existing scheduled WordPress Cron event.
wp_clear_scheduled_hook( 'convertkit_refresh_token' );
// Schedule a WordPress Cron event to refresh the token on expiry.
wp_schedule_single_event( ( time() + $result['expires_in'] ), 'convertkit_refresh_token' );
}
/**
* Deletes any existing access token, refresh token and its expiry from the Plugin settings,
* and clears any existing scheduled WordPress Cron event to refresh the token on expiry.
*
* @since 2.5.0
*/
public function delete_credentials() {
$this->save(
array(
// OAuth.
'access_token' => '',
'refresh_token' => '',
'token_expires' => '',
// API Key.
'api_key' => '',
'api_secret' => '',
)
);
// Clear any existing scheduled WordPress Cron event.
wp_clear_scheduled_hook( 'convertkit_refresh_token' );
}
/**
* Saves the given array of settings to the WordPress options table.
*
* @since 1.9.8.4
*
* @param array $settings Settings.
*/
public function save( $settings ) {
update_option( self::SETTINGS_NAME, array_merge( $this->get(), $settings ) );
// Reload settings in class, to reflect changes.
$this->refresh_settings();
}
/**
* Reloads settings from the options table so this instance has the latest values.
*
* @since 3.1.1
*/
private function refresh_settings() {
$settings = get_option( self::SETTINGS_NAME );
if ( ! $settings ) {
$this->settings = $this->get_defaults();
return;
}
$this->settings = array_merge( $this->get_defaults(), $settings );
}
}