-
Notifications
You must be signed in to change notification settings - Fork 205
Expand file tree
/
Copy pathinstall.php
More file actions
553 lines (472 loc) · 17.1 KB
/
Copy pathinstall.php
File metadata and controls
553 lines (472 loc) · 17.1 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
<?php
use Give\Form\Migrations\MoveOptionsToVisualAppearanceSection;
use Give\Framework\Migrations\Exceptions\DatabaseMigrationException;
use Give\Log\Migrations\MigrateExistingLogs;
use Give\MigrationLog\Migrations\CreateMigrationsTable;
use Give\Revenue\Migrations\AddPastDonationsToRevenueTable;
/**
* Install Function
*
* @package Give
* @since 1.0
* @copyright Copyright (c) 2016, GiveWP
* @license https://opensource.org/licenses/gpl-license GNU Public License
* @subpackage Functions/Install
*/
// Exit if accessed directly.
if (!defined('ABSPATH')) {
exit;
}
/**
* Install
*
* Runs on plugin install by setting up the post types, custom taxonomies, flushing rewrite rules to initiate the new
* 'donations' slug and also creates the plugin and populates the settings fields for those plugin pages. After
* successful install, the user is redirected to the Give Onboarding Wizard.
*
* @since 1.0
*
* @param bool $network_wide
*
* @return void
* @global $wpdb
*/
function give_install($network_wide = false)
{
global $wpdb;
if (is_multisite() && $network_wide) {
foreach ($wpdb->get_col("SELECT blog_id FROM $wpdb->blogs LIMIT 100") as $blog_id) {
switch_to_blog($blog_id);
give_run_install();
restore_current_blog();
}
} else {
give_run_install();
}
}
/**
* Run the Give Install process.
*
* @since 1.5
* @return void
*/
function give_run_install()
{
$give_options = give_get_settings();
// Setup the Give Custom Post Types.
give_setup_post_types();
// Add Upgraded From Option.
$current_version = get_option('give_version');
if ($current_version) {
update_option('give_version_upgraded_from', $current_version, false);
}
// Setup some default options.
$options = [];
// Fresh Install? Setup Test Mode, Base Country (US), Test Gateway, Currency.
if (empty($current_version)) {
$options = array_merge($options, give_get_default_settings());
} else {
// Otherwise, disable the Onboarding experience
$options = [
'setup_page_enabled' => 'disabled',
];
}
// Populate the default values.
update_option('give_settings', array_merge($give_options, $options), false);
// Create Give roles.
$roles = new Give_Roles();
$roles->add_roles();
$roles->add_caps();
// Set api version, end point and refresh permalink.
$api = new Give_API();
$api->add_endpoint();
update_option('give_default_api_version', 'v' . $api->get_version(), false);
// Create databases.
give_register_tables();
// Add a temporary option to note that Give pages have been created.
Give_Cache::set('_give_installed', $options, 30, true);
/**
* Run plugin upgrades.
*
* @since 1.8
*/
do_action('give_upgrades');
if (GIVE_VERSION !== get_option('give_version')) {
update_option('give_version', GIVE_VERSION, false);
}
if (!$current_version) {
require_once GIVE_PLUGIN_DIR . 'includes/admin/upgrades/upgrade-functions.php';
// When new upgrade routines are added, mark them as complete on fresh install.
$upgrade_routines = [
'upgrade_give_user_caps_cleanup',
'upgrade_give_payment_customer_id',
'upgrade_give_offline_status',
'v18_upgrades_core_setting',
'v18_upgrades_form_metadata',
'v189_upgrades_levels_post_meta',
'v1812_update_amount_values',
'v1812_update_donor_purchase_values',
'v1813_update_user_roles',
'v1813_update_donor_user_roles',
'v1817_update_donation_iranian_currency_code',
'v1817_cleanup_user_roles',
'v1818_assign_custom_amount_set_donation',
'v1818_give_worker_role_cleanup',
'v20_upgrades_form_metadata',
'v20_logs_upgrades',
'v20_move_metadata_into_new_table',
'v20_rename_donor_tables',
'v20_upgrades_donor_name',
'v20_upgrades_user_address',
'v20_upgrades_payment_metadata',
'v201_upgrades_payment_metadata',
'v201_add_missing_donors',
'v201_move_metadata_into_new_table',
'v201_logs_upgrades',
'v210_verify_form_status_upgrades',
'v213_delete_donation_meta',
'v215_update_donor_user_roles',
'v220_rename_donation_meta_type',
'v224_update_donor_meta',
'v224_update_donor_meta_forms_id',
'v230_move_donor_note',
'v230_move_donation_note',
'v230_delete_donor_wall_related_donor_data',
'v230_delete_donor_wall_related_comment_data',
'v240_update_form_goal_progress',
'v241_remove_sale_logs',
'v270_store_stripe_account_for_donation',
AddPastDonationsToRevenueTable::id(),
MigrateExistingLogs::id()
];
foreach ($upgrade_routines as $upgrade) {
give_set_upgrade_complete($upgrade);
}
}
// Bail if activating from network, or bulk.
if (is_network_admin() || isset($_GET['activate-multi'])) {
return;
}
// Setup embed form route on fresh install or plugin activation.
Give()->routeForm->setBasePrefix();
Give()->routeForm->addRule();
// Flush rewrite rules.
flush_rewrite_rules();
// Add the transient to redirect.
Give_Cache::set('_give_activation_redirect', true, 30, true);
}
/**
* Network Activated New Site Setup.
*
* When a new site is created when Give is network activated this function runs the appropriate install function to set
* up the site for Give.
*
* @since 1.3.5
*
* @param int $blog_id The Blog ID created.
* @param int $user_id The User ID set as the admin.
* @param string $domain The URL.
* @param string $path Site Path.
* @param int $site_id The Site ID.
* @param array $meta Blog Meta.
*/
function give_on_create_blog($blog_id, $user_id, $domain, $path, $site_id, $meta)
{
if (is_plugin_active_for_network(GIVE_PLUGIN_BASENAME)) {
switch_to_blog($blog_id);
give_install();
restore_current_blog();
}
}
add_action('wpmu_new_blog', 'give_on_create_blog', 10, 6);
/**
* Drop Give's custom tables when a mu site is deleted.
*
* @since 3.4.0 updated implementation to query all give_* tables
* @since 1.4.3
*
* @param array $tables The tables to drop.
* @param int $blog_id The Blog ID being deleted.
*
* @return array The tables to drop.
*/
function give_wpmu_drop_tables($tables, $blog_id)
{
global $wpdb;
switch_to_blog($blog_id);
$prefix = $wpdb->prefix . 'give_%';
$giveTables = $wpdb->get_col("SHOW TABLES LIKE '{$prefix}'");
foreach ($giveTables as $table) {
$tables[] = $table;
}
restore_current_blog();
return array_unique($tables);
}
add_filter('wpmu_drop_tables', 'give_wpmu_drop_tables', 10, 2);
/**
* Post-installation
*
* Runs just after plugin installation and exposes the give_after_install hook.
*
* @since 1.0
* @return void
*/
function give_after_install()
{
if (!is_admin()) {
return;
}
$give_options = Give_Cache::get('_give_installed', true);
$give_table_check = get_option('_give_table_check', false);
if (false === $give_table_check || current_time('timestamp') > $give_table_check) {
if (!@Give()->donor_meta->installed()) {
// Create the donor meta database.
// (this ensures it creates it on multisite instances where it is network activated).
@Give()->donor_meta->create_table();
}
if (!@Give()->donors->installed()) {
// Create the donor database.
// (this ensures it creates it on multisite instances where it is network activated).
@Give()->donors->create_table();
}
/**
* Fires after plugin installation.
*
* @since 1.0
*
* @param array $give_options Give plugin options.
*/
do_action('give_after_install', $give_options);
update_option('_give_table_check', (current_time('timestamp') + WEEK_IN_SECONDS), false);
}
// Delete the transient
if (false !== $give_options) {
Give_Cache::delete(Give_Cache::get_key('_give_installed'));
}
}
add_action('admin_init', 'give_after_install');
/**
* Install user roles on sub-sites of a network
*
* Roles do not get created when Give is network activation so we need to create them during admin_init
*
* @since 1.0
* @return void
*/
function give_install_roles_on_network()
{
global $wp_roles;
if (!is_object($wp_roles)) {
return;
}
if (!array_key_exists('give_manager', $wp_roles->roles)) {
// Create Give plugin roles
$roles = new Give_Roles();
$roles->add_roles();
$roles->add_caps();
}
}
add_action('admin_init', 'give_install_roles_on_network');
/**
* Default core setting values.
*
* @since 1.8
* @return array
*/
function give_get_default_settings()
{
$options = [
// General.
'base_country' => 'US',
'test_mode' => 'enabled',
'currency' => 'USD',
'currency_position' => 'before',
'session_lifetime' => '604800',
'email_access' => 'enabled',
'thousands_separator' => ',',
'decimal_separator' => '.',
'number_decimals' => 2,
'sequential-ordering_status' => 'enabled',
// Display options.
'css' => 'enabled',
'floatlabels' => 'disabled',
'company_field' => 'disabled',
'name_title_prefix' => 'disabled',
'forms_singular' => 'enabled',
'forms_archives' => 'enabled',
'forms_excerpt' => 'enabled',
'form_featured_img' => 'enabled',
'form_sidebar' => 'enabled',
'categories' => 'disabled',
'tags' => 'disabled',
'terms' => 'disabled',
'admin_notices' => 'enabled',
'cache' => 'enabled',
'uninstall_on_delete' => 'disabled',
'the_content_filter' => 'enabled',
'scripts_footer' => 'disabled',
'agree_to_terms_label' => __('Agree to Terms?', 'give'),
'agreement_text' => give_get_default_agreement_text(),
'babel_polyfill_script' => 'enabled',
// Default is manual gateway.
'gateways' => [
'manual' => 1,
'offline' => 1,
],
'gateways_v3' => [
'manual' => 1,
'offline' => 1,
],
'default_gateway' => 'manual',
'default_gateway_v3' => 'manual',
// Offline gateway setup.
'global_offline_donation_content' => give_get_default_offline_donation_content(),
'global_offline_donation_email' => give_get_default_offline_donation_content(),
// Billing address.
'give_offline_donation_enable_billing_fields' => 'disabled',
// Default donation notification email.
'donation_notification' => give_get_default_donation_notification_email(),
// Default email receipt message.
'donation_receipt' => give_get_default_donation_receipt_email(),
'donor_default_user_role' => 'give_donor',
Give()->routeForm->getOptionName() => 'give',
// Stripe accounts.
'_give_stripe_get_all_accounts' => [],
// Onboarding
'setup_page_enabled' => 'enabled',
// Advanced settings
'usage_tracking' => 'disabled',
];
return $options;
}
/**
* Default terms and conditions.
*/
function give_get_default_agreement_text()
{
$org_name = get_bloginfo('name');
$agreement = sprintf(
'<p>Acceptance of any contribution, gift or grant is at the discretion of the %1$s. The %1$s will not accept any gift unless it can be used or expended consistently with the purpose and mission of the %1$s.</p>
<p>No irrevocable gift, whether outright or life-income in character, will be accepted if under any reasonable set of circumstances the gift would jeopardize the donor’s financial security.</p>
<p>The %1$s will refrain from providing advice about the tax or other treatment of gifts and will encourage donors to seek guidance from their own professional advisers to assist them in the process of making their donation.</p>
<p>The %1$s will accept donations of cash or publicly traded securities. Gifts of in-kind services will be accepted at the discretion of the %1$s.</p>
<p>Certain other gifts, real property, personal property, in-kind gifts, non-liquid securities, and contributions whose sources are not transparent or whose use is restricted in some manner, must be reviewed prior to acceptance due to the special obligations raised or liabilities they may pose for %1$s.</p>
<p>The %1$s will provide acknowledgments to donors meeting tax requirements for property received by the charity as a gift. However, except for gifts of cash and publicly traded securities, no value shall be ascribed to any receipt or other form of substantiation of a gift received by %1$s.</p>
<p>The %1$s will respect the intent of the donor relating to gifts for restricted purposes and those relating to the desire to remain anonymous. With respect to anonymous gifts, the %1$s will restrict information about the donor to only those staff members with a need to know.</p>
<p>The %1$s will not compensate, whether through commissions, finders\' fees, or other means, any third party for directing a gift or a donor to the %1$s.</p>',
$org_name
);
return apply_filters('give_get_default_agreement_text', $agreement, $org_name);
}
/**
* This function will install give related page which is not created already.
*
* @since 1.8.11
*
* @return void
*/
function give_create_pages()
{
// Bailout if pages already created.
if (Give_Cache_Setting::get_option('give_install_pages_created')) {
return;
}
$options = [];
// Checks if the Success Page option exists AND that the page exists.
if (!get_post(give_get_option('success_page'))) {
// Donation Confirmation (Success) Page
$success = wp_insert_post(
[
'post_title' => esc_html__('Donation Confirmation', 'give'),
'post_content' => '[give_receipt]',
'post_status' => 'publish',
'post_author' => 1,
'post_type' => 'page',
'comment_status' => 'closed',
]
);
// Store our page IDs
$options['success_page'] = $success;
}
// Checks if the Failure Page option exists AND that the page exists.
if (!get_post(give_get_option('failure_page'))) {
// Failed Donation Page
$failed = wp_insert_post(
[
'post_title' => esc_html__('Donation Failed', 'give'),
'post_content' => esc_html__(
'We\'re sorry, your donation failed to process. Please try again or contact site support.',
'give'
),
'post_status' => 'publish',
'post_author' => 1,
'post_type' => 'page',
'comment_status' => 'closed',
]
);
$options['failure_page'] = $failed;
}
if (!empty($options)) {
update_option('give_settings', array_merge(give_get_settings(), $options), false);
}
add_option('give_install_pages_created', 1, '', false);
}
// @TODO we can add this hook only when plugin activate instead of every admin page load.
// @see known issue https://github.com/impress-org/give/issues/1848
add_action('admin_init', 'give_create_pages', -1);
/**
* Install tables on plugin update if missing
* Note: only for internal use
*
* @since 2.4.1
*
* @param string $old_version
*/
function give_install_tables_on_plugin_update($old_version)
{
update_option('give_version_upgraded_from', $old_version, false);
give_register_tables();
}
add_action('update_option_give_version', 'give_install_tables_on_plugin_update', 0, 2);
/**
* Get array of table class objects
*
* Note: only for internal purpose use
*
* @since 4.9.0 rename function - PHP 8 compatibility
* @sice 2.3.1
*/
function give_get_tables()
{
$tables = [
'donors_db' => new Give_DB_Donors(),
'donor_meta_db' => new Give_DB_Donor_Meta(),
'comment_db' => new Give_DB_Comments(),
'comment_db_meta' => new Give_DB_Comment_Meta(),
'give_session' => new Give_DB_Sessions(),
'formmeta_db' => new Give_DB_Form_Meta(),
'sequential_db' => new Give_DB_Sequential_Ordering(),
'donation_meta' => new Give_DB_Payment_Meta(),
];
return $tables;
}
/**
* Register classes
* Note: only for internal purpose use
*
* @since 4.9.0 rename function - PHP 8 compatibility
* @since 2.21.0 Install migration table on fresh install because this table is required to run migrations.
* @since 2.3.1
* @throws DatabaseMigrationException
*/
function give_register_tables()
{
$tables = give_get_tables();
/* @var Give_DB $table */
foreach ($tables as $table) {
if (!$table->installed()) {
$table->register_table();
}
}
give(CreateMigrationsTable::class)->run();
}