forked from Freemius/wordpress-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.php
391 lines (334 loc) · 14.3 KB
/
config.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
<?php
/**
* @package Freemius
* @copyright Copyright (c) 2015, Freemius, Inc.
* @license https://www.gnu.org/licenses/gpl-3.0.html GNU General Public License Version 3
* @since 1.0.4
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
if ( ! defined( 'WP_FS__SLUG' ) ) {
define( 'WP_FS__SLUG', 'freemius' );
}
if ( ! defined( 'WP_FS__DEV_MODE' ) ) {
define( 'WP_FS__DEV_MODE', false );
}
#--------------------------------------------------------------------------------
#region API Connectivity Issues Simulation
#--------------------------------------------------------------------------------
if ( ! defined( 'WP_FS__SIMULATE_NO_API_CONNECTIVITY' ) ) {
define( 'WP_FS__SIMULATE_NO_API_CONNECTIVITY', false );
}
if ( ! defined( 'WP_FS__SIMULATE_NO_CURL' ) ) {
define( 'WP_FS__SIMULATE_NO_CURL', false );
}
if ( ! defined( 'WP_FS__SIMULATE_NO_API_CONNECTIVITY_CLOUDFLARE' ) ) {
define( 'WP_FS__SIMULATE_NO_API_CONNECTIVITY_CLOUDFLARE', false );
}
if ( ! defined( 'WP_FS__SIMULATE_NO_API_CONNECTIVITY_SQUID_ACL' ) ) {
define( 'WP_FS__SIMULATE_NO_API_CONNECTIVITY_SQUID_ACL', false );
}
if ( WP_FS__SIMULATE_NO_CURL ) {
define( 'FS_SDK__SIMULATE_NO_CURL', true );
}
if ( WP_FS__SIMULATE_NO_API_CONNECTIVITY_CLOUDFLARE ) {
define( 'FS_SDK__SIMULATE_NO_API_CONNECTIVITY_CLOUDFLARE', true );
}
if ( WP_FS__SIMULATE_NO_API_CONNECTIVITY_SQUID_ACL ) {
define( 'FS_SDK__SIMULATE_NO_API_CONNECTIVITY_SQUID_ACL', true );
}
#endregion
if ( ! defined( 'WP_FS__SIMULATE_FREEMIUS_OFF' ) ) {
define( 'WP_FS__SIMULATE_FREEMIUS_OFF', false );
}
if ( ! defined( 'WP_FS__PING_API_ON_IP_OR_HOST_CHANGES' ) ) {
/**
* @since 1.1.7.3
* @author Vova Feldman (@svovaf)
*
* I'm not sure if shared servers periodically change IP, or the subdomain of the
* admin dashboard. Also, I've seen sites that have strange loop of switching
* between domains on a daily basis. Therefore, to eliminate the risk of
* multiple unwanted connectivity test pings, temporary ignore domain or
* server IP changes.
*/
define( 'WP_FS__PING_API_ON_IP_OR_HOST_CHANGES', false );
}
/**
* If your dev environment supports custom public network IP setup
* like VVV, please update WP_FS__LOCALHOST_IP with your public IP
* and uncomment it during dev.
*/
if ( ! defined( 'WP_FS__LOCALHOST_IP' ) ) {
// VVV default public network IP.
define( 'WP_FS__VVV_DEFAULT_PUBLIC_IP', '192.168.50.4' );
// define( 'WP_FS__LOCALHOST_IP', WP_FS__VVV_DEFAULT_PUBLIC_IP );
}
/**
* If true and running with secret key, the opt-in process
* will skip the email activation process which is invoked
* when the email of the context user already exist in Freemius
* database (as a security precaution, to prevent sharing user
* secret with unauthorized entity).
*
* IMPORTANT:
* AS A SECURITY PRECAUTION, WE VALIDATE THE TIMESTAMP OF THE OPT-IN REQUEST.
* THEREFORE, MAKE SURE THAT WHEN USING THIS PARAMETER,YOUR TESTING ENVIRONMENT'S
* CLOCK IS SYNCED.
*/
if ( ! defined( 'WP_FS__SKIP_EMAIL_ACTIVATION' ) ) {
define( 'WP_FS__SKIP_EMAIL_ACTIVATION', false );
}
#--------------------------------------------------------------------------------
#region Directories
#--------------------------------------------------------------------------------
if ( ! defined( 'WP_FS__DIR' ) ) {
define( 'WP_FS__DIR', dirname( __FILE__ ) );
}
if ( ! defined( 'WP_FS__DIR_INCLUDES' ) ) {
define( 'WP_FS__DIR_INCLUDES', WP_FS__DIR . '/includes' );
}
if ( ! defined( 'WP_FS__DIR_TEMPLATES' ) ) {
define( 'WP_FS__DIR_TEMPLATES', WP_FS__DIR . '/templates' );
}
if ( ! defined( 'WP_FS__DIR_ASSETS' ) ) {
define( 'WP_FS__DIR_ASSETS', WP_FS__DIR . '/assets' );
}
if ( ! defined( 'WP_FS__DIR_CSS' ) ) {
define( 'WP_FS__DIR_CSS', WP_FS__DIR_ASSETS . '/css' );
}
if ( ! defined( 'WP_FS__DIR_JS' ) ) {
define( 'WP_FS__DIR_JS', WP_FS__DIR_ASSETS . '/js' );
}
if ( ! defined( 'WP_FS__DIR_IMG' ) ) {
define( 'WP_FS__DIR_IMG', WP_FS__DIR_ASSETS . '/img' );
}
if ( ! defined( 'WP_FS__DIR_SDK' ) ) {
define( 'WP_FS__DIR_SDK', WP_FS__DIR_INCLUDES . '/sdk' );
}
#endregion
/**
* Domain / URL / Address
*/
define( 'WP_FS__ROOT_DOMAIN_PRODUCTION', 'freemius.com' );
define( 'WP_FS__DOMAIN_PRODUCTION', 'wp.freemius.com' );
define( 'WP_FS__ADDRESS_PRODUCTION', 'https://' . WP_FS__DOMAIN_PRODUCTION );
if ( ! defined( 'WP_FS__DOMAIN_LOCALHOST' ) ) {
define( 'WP_FS__DOMAIN_LOCALHOST', 'wp.freemius' );
}
if ( ! defined( 'WP_FS__ADDRESS_LOCALHOST' ) ) {
define( 'WP_FS__ADDRESS_LOCALHOST', 'http://' . WP_FS__DOMAIN_LOCALHOST . ':8080' );
}
if ( ! defined( 'WP_FS__TESTING_DOMAIN' ) ) {
define( 'WP_FS__TESTING_DOMAIN', 'fswp' );
}
#--------------------------------------------------------------------------------
#region HTTP
#--------------------------------------------------------------------------------
if ( ! defined( 'WP_FS__IS_HTTP_REQUEST' ) ) {
define( 'WP_FS__IS_HTTP_REQUEST', isset( $_SERVER['HTTP_HOST'] ) );
}
if ( ! defined( 'WP_FS__IS_HTTPS' ) ) {
define( 'WP_FS__IS_HTTPS', ( WP_FS__IS_HTTP_REQUEST &&
// Checks if CloudFlare's HTTPS (Flexible SSL support).
isset( $_SERVER['HTTP_X_FORWARDED_PROTO'] ) &&
'https' === strtolower( $_SERVER['HTTP_X_FORWARDED_PROTO'] )
) ||
// Check if HTTPS request.
( isset( $_SERVER['HTTPS'] ) && 'on' == $_SERVER['HTTPS'] ) ||
( isset( $_SERVER['SERVER_PORT'] ) && 443 == $_SERVER['SERVER_PORT'] )
);
}
if ( ! defined( 'WP_FS__IS_POST_REQUEST' ) ) {
define( 'WP_FS__IS_POST_REQUEST', ( WP_FS__IS_HTTP_REQUEST &&
strtoupper( $_SERVER['REQUEST_METHOD'] ) == 'POST' ) );
}
if ( ! defined( 'WP_FS__REMOTE_ADDR' ) ) {
define( 'WP_FS__REMOTE_ADDR', fs_get_ip() );
}
if ( ! defined( 'WP_FS__IS_LOCALHOST' ) ) {
if ( defined( 'WP_FS__LOCALHOST_IP' ) ) {
define( 'WP_FS__IS_LOCALHOST', ( WP_FS__LOCALHOST_IP === WP_FS__REMOTE_ADDR ) );
} else {
define( 'WP_FS__IS_LOCALHOST', WP_FS__IS_HTTP_REQUEST &&
is_string( WP_FS__REMOTE_ADDR ) &&
( substr( WP_FS__REMOTE_ADDR, 0, 4 ) === '127.' ||
WP_FS__REMOTE_ADDR === '::1' )
);
}
}
if ( ! defined( 'WP_FS__IS_LOCALHOST_FOR_SERVER' ) ) {
define( 'WP_FS__IS_LOCALHOST_FOR_SERVER', ( ! WP_FS__IS_HTTP_REQUEST ||
false !== strpos( $_SERVER['HTTP_HOST'], 'localhost' ) ) );
}
#endregion
if ( ! defined( 'WP_FS__IS_PRODUCTION_MODE' ) ) {
// By default, run with Freemius production servers.
define( 'WP_FS__IS_PRODUCTION_MODE', true );
}
if ( ! defined( 'WP_FS__ADDRESS' ) ) {
define( 'WP_FS__ADDRESS', ( WP_FS__IS_PRODUCTION_MODE ? WP_FS__ADDRESS_PRODUCTION : WP_FS__ADDRESS_LOCALHOST ) );
}
#--------------------------------------------------------------------------------
#region API
#--------------------------------------------------------------------------------
if ( ! defined( 'WP_FS__API_ADDRESS_LOCALHOST' ) ) {
define( 'WP_FS__API_ADDRESS_LOCALHOST', 'http://api.freemius-local.com:8080' );
}
if ( ! defined( 'WP_FS__API_SANDBOX_ADDRESS_LOCALHOST' ) ) {
define( 'WP_FS__API_SANDBOX_ADDRESS_LOCALHOST', 'http://sandbox-api.freemius:8080' );
}
// Set API address for local testing.
if ( ! WP_FS__IS_PRODUCTION_MODE ) {
if ( ! defined( 'FS_API__ADDRESS' ) ) {
define( 'FS_API__ADDRESS', WP_FS__API_ADDRESS_LOCALHOST );
}
if ( ! defined( 'FS_API__SANDBOX_ADDRESS' ) ) {
define( 'FS_API__SANDBOX_ADDRESS', WP_FS__API_SANDBOX_ADDRESS_LOCALHOST );
}
}
#endregion
#--------------------------------------------------------------------------------
#region Checkout
#--------------------------------------------------------------------------------
if ( ! defined( 'FS_CHECKOUT__ADDRESS_PRODUCTION' ) ) {
define( 'FS_CHECKOUT__ADDRESS_PRODUCTION', 'https://checkout.freemius.com' );
}
if ( ! defined( 'FS_CHECKOUT__ADDRESS_LOCALHOST' ) ) {
define( 'FS_CHECKOUT__ADDRESS_LOCALHOST', 'http://checkout.freemius-local.com:8080' );
}
if ( ! defined( 'FS_CHECKOUT__ADDRESS' ) ) {
define( 'FS_CHECKOUT__ADDRESS', ( WP_FS__IS_PRODUCTION_MODE ? FS_CHECKOUT__ADDRESS_PRODUCTION : FS_CHECKOUT__ADDRESS_LOCALHOST ) );
}
#endregion
define( 'WP_FS___OPTION_PREFIX', 'fs' . ( WP_FS__IS_PRODUCTION_MODE ? '' : '_dbg' ) . '_' );
if ( ! defined( 'WP_FS__ACCOUNTS_OPTION_NAME' ) ) {
define( 'WP_FS__ACCOUNTS_OPTION_NAME', WP_FS___OPTION_PREFIX . 'accounts' );
}
if ( ! defined( 'WP_FS__API_CACHE_OPTION_NAME' ) ) {
define( 'WP_FS__API_CACHE_OPTION_NAME', WP_FS___OPTION_PREFIX . 'api_cache' );
}
if ( ! defined( 'WP_FS__GDPR_OPTION_NAME' ) ) {
define( 'WP_FS__GDPR_OPTION_NAME', WP_FS___OPTION_PREFIX . 'gdpr' );
}
define( 'WP_FS__OPTIONS_OPTION_NAME', WP_FS___OPTION_PREFIX . 'options' );
/**
* Module types
*
* @since 1.2.2
*/
define( 'WP_FS__MODULE_TYPE_PLUGIN', 'plugin' );
define( 'WP_FS__MODULE_TYPE_THEME', 'theme' );
/**
* Billing Frequencies
*/
define( 'WP_FS__PERIOD_ANNUALLY', 'annual' );
define( 'WP_FS__PERIOD_MONTHLY', 'monthly' );
define( 'WP_FS__PERIOD_LIFETIME', 'lifetime' );
/**
* Plans
*/
define( 'WP_FS__PLAN_DEFAULT_PAID', false );
define( 'WP_FS__PLAN_FREE', 'free' );
define( 'WP_FS__PLAN_TRIAL', 'trial' );
/**
* Times in seconds
*/
if ( ! defined( 'WP_FS__TIME_5_MIN_IN_SEC' ) ) {
define( 'WP_FS__TIME_5_MIN_IN_SEC', 300 );
}
if ( ! defined( 'WP_FS__TIME_10_MIN_IN_SEC' ) ) {
define( 'WP_FS__TIME_10_MIN_IN_SEC', 600 );
}
// define( 'WP_FS__TIME_15_MIN_IN_SEC', 900 );
if ( ! defined( 'WP_FS__TIME_12_HOURS_IN_SEC' ) ) {
define( 'WP_FS__TIME_12_HOURS_IN_SEC', 43200 );
}
if ( ! defined( 'WP_FS__TIME_24_HOURS_IN_SEC' ) ) {
define( 'WP_FS__TIME_24_HOURS_IN_SEC', WP_FS__TIME_12_HOURS_IN_SEC * 2 );
}
if ( ! defined( 'WP_FS__TIME_WEEK_IN_SEC' ) ) {
define( 'WP_FS__TIME_WEEK_IN_SEC', 7 * WP_FS__TIME_24_HOURS_IN_SEC );
}
#--------------------------------------------------------------------------------
#region Debugging
#--------------------------------------------------------------------------------
if ( ! defined( 'WP_FS__DEBUG_SDK' ) ) {
$debug_mode = get_option( 'fs_debug_mode', null );
if ( $debug_mode === null ) {
$debug_mode = false;
add_option( 'fs_debug_mode', $debug_mode );
}
define( 'WP_FS__DEBUG_SDK', is_numeric( $debug_mode ) ? ( 0 < $debug_mode ) : WP_FS__DEV_MODE );
}
if ( ! defined( 'WP_FS__ECHO_DEBUG_SDK' ) ) {
define( 'WP_FS__ECHO_DEBUG_SDK', WP_FS__DEV_MODE && ! empty( $_GET['fs_dbg_echo'] ) );
}
if ( ! defined( 'WP_FS__LOG_DATETIME_FORMAT' ) ) {
define( 'WP_FS__LOG_DATETIME_FORMAT', 'Y-m-d H:i:s' );
}
if ( ! defined( 'FS_API__LOGGER_ON' ) ) {
define( 'FS_API__LOGGER_ON', WP_FS__DEBUG_SDK );
}
if ( WP_FS__ECHO_DEBUG_SDK ) {
error_reporting( E_ALL );
}
#endregion
if ( ! defined( 'WP_FS__SCRIPT_START_TIME' ) ) {
define( 'WP_FS__SCRIPT_START_TIME', time() );
}
if ( ! defined( 'WP_FS__DEFAULT_PRIORITY' ) ) {
define( 'WP_FS__DEFAULT_PRIORITY', 10 );
}
if ( ! defined( 'WP_FS__LOWEST_PRIORITY' ) ) {
define( 'WP_FS__LOWEST_PRIORITY', 999999999 );
}
#--------------------------------------------------------------------------------
#region Multisite Network
#--------------------------------------------------------------------------------
/**
* Do not use this define directly, it will have the wrong value
* during plugin uninstall/deletion when the inclusion of the plugin
* is triggered due to registration with register_uninstall_hook().
*
* Instead, use fs_is_network_admin().
*
* @author Vova Feldman (@svovaf)
*/
if ( ! defined( 'WP_FS__IS_NETWORK_ADMIN' ) ) {
define( 'WP_FS__IS_NETWORK_ADMIN',
is_multisite() &&
( is_network_admin() ||
( ( defined( 'DOING_AJAX' ) && DOING_AJAX &&
( isset( $_REQUEST['_fs_network_admin'] ) /*||
( ! empty( $_REQUEST['action'] ) && 'delete-plugin' === $_REQUEST['action'] )*/ )
) ||
// Plugin uninstall.
defined( 'WP_UNINSTALL_PLUGIN' ) )
)
);
}
/**
* Do not use this define directly, it will have the wrong value
* during plugin uninstall/deletion when the inclusion of the plugin
* is triggered due to registration with register_uninstall_hook().
*
* Instead, use fs_is_blog_admin().
*
* @author Vova Feldman (@svovaf)
*/
if ( ! defined( 'WP_FS__IS_BLOG_ADMIN' ) ) {
define( 'WP_FS__IS_BLOG_ADMIN', is_blog_admin() || ( defined( 'DOING_AJAX' ) && DOING_AJAX && isset( $_REQUEST['_fs_blog_admin'] ) ) );
}
if ( ! defined( 'WP_FS__SHOW_NETWORK_EVEN_WHEN_DELEGATED' ) ) {
// Set to true to show network level settings even if delegated to site admins.
define( 'WP_FS__SHOW_NETWORK_EVEN_WHEN_DELEGATED', false );
}
#endregion
if ( ! defined( 'WP_FS__DEMO_MODE' ) ) {
define( 'WP_FS__DEMO_MODE', false );
}
if ( ! defined( 'FS_SDK__SSLVERIFY' ) ) {
define( 'FS_SDK__SSLVERIFY', false );
}