Addons.php
18.8 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
<?php
namespace AIOSEO\Plugin\Common\Utils;
// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
use AIOSEO\Plugin\Common\Utils;
/**
* Contains helper methods specific to the addons.
*
* @since 4.0.0
*/
class Addons {
/**
* Holds our list of loaded addons.
*
* @since 4.1.0
*
* @var array
*/
protected $loadedAddons = [];
/**
* The licensing URL.
*
* @since 4.0.13
*
* @var string
*/
protected $licensingUrl = 'https://licensing-cdn.aioseo.com/keys/lite/all-in-one-seo-pack-pro.json';
/**
* Returns our addons.
*
* @since 4.0.0
*
* @param boolean $flushCache Whether or not to flush the cache.
* @return array An array of addon data.
*/
public function getAddons( $flushCache = false ) {
require_once ABSPATH . 'wp-admin/includes/plugin.php';
$addons = aioseo()->cache->get( 'addons' );
if ( null === $addons || $flushCache ) {
$response = wp_remote_get( $this->getLicensingUrl() );
if ( 200 === wp_remote_retrieve_response_code( $response ) ) {
$addons = json_decode( wp_remote_retrieve_body( $response ) );
}
}
if ( ! $addons || ! empty( $addons->error ) ) {
$addons = $this->getDefaultAddons();
}
aioseo()->cache->update( 'addons', $addons );
// The API request will tell us if we can activate a plugin, but let's check if its already active.
$installedPlugins = array_keys( get_plugins() );
foreach ( $addons as $key => $addon ) {
$addons[ $key ]->basename = $this->getAddonBasename( $addon->sku );
$addons[ $key ]->installed = in_array( $this->getAddonBasename( $addon->sku ), $installedPlugins, true );
$addons[ $key ]->isActive = is_plugin_active( $addons[ $key ]->basename );
$addons[ $key ]->canInstall = $this->canInstall();
$addons[ $key ]->canActivate = $this->canActivate();
$addons[ $key ]->canUpdate = $this->canUpdate();
$addons[ $key ]->capability = $this->getManageCapability( $addon->sku );
$addons[ $key ]->minimumVersion = '0.0.0';
$addons[ $key ]->hasMinimumVersion = false;
}
return $addons;
}
/**
* Returns the required capability to manage the addon.
*
* @since 4.1.3
*
* @param string $sku The addon sku.
* @return string The required capability.
*/
protected function getManageCapability( $sku ) {
$capability = apply_filters( 'aioseo_manage_seo', 'aioseo_manage_seo' );
switch ( $sku ) {
case 'aioseo-image-seo':
$capability = 'aioseo_search_appearance_settings';
break;
case 'aioseo-video-sitemap':
case 'aioseo-news-sitemap':
$capability = 'aioseo_sitemap_settings';
break;
case 'aioseo-redirects':
$capability = 'aioseo_redirects_settings';
break;
case 'aioseo-local-business':
$capability = 'aioseo_local_seo_settings';
break;
}
return $capability;
}
/**
* Check to see if there are unlicensed addons installed and activated.
*
* @since 4.1.3
*
* @return boolean True if there are unlicensed addons, false if not.
*/
public function unlicensedAddons() {
$unlicensed = [
'addons' => [],
// Translators: 1 - Opening bold tag, 2 - Plugin short name ("AIOSEO"), 3 - "Pro", 4 - Closing bold tag.
'message' => sprintf(
__( 'The following addons cannot be used, because they require %1$s%2$s %3$s%4$s to work:', 'all-in-one-seo-pack' ),
'<strong>',
AIOSEO_PLUGIN_SHORT_NAME,
'Pro',
'</strong>'
)
];
$addons = $this->getAddons();
foreach ( $addons as $addon ) {
if ( $addon->isActive ) {
$unlicensed['addons'][] = $addon;
}
}
return $unlicensed;
}
/**
* Get the data for a specific addon.
*
* We need this function to refresh the data of a given addon because installation links expire after one hour.
*
* @since 4.0.0
*
* @param string $sku The addon sku.
* @param boolean $flushCache Whether or not to flush the cache.
* @return object The addon.
*/
public function getAddon( $sku, $flushCache = false ) {
require_once ABSPATH . 'wp-admin/includes/plugin.php';
$addon = aioseo()->cache->get( 'addon_' . $sku );
if ( null === $addon || $flushCache ) {
$addon = aioseo()->helpers->sendRequest( $this->getLicensingUrl() . 'addons/', $this->getAddonPayload( $sku ) );
aioseo()->cache->update( 'addon_' . $sku, $addon, DAY_IN_SECONDS );
}
if ( ! $addon || ! empty( $addon->error ) ) {
$addon = $this->getDefaultAddon( $sku );
aioseo()->cache->update( 'addon_' . $sku, $addon, 10 * MINUTE_IN_SECONDS );
}
// The API request will tell us if we can activate a plugin, but let's check if its already active.
$installedPlugins = array_keys( get_plugins() );
$addon->basename = $this->getAddonBasename( $addon->sku );
$addon->installed = in_array( $this->getAddonBasename( $addon->sku ), $installedPlugins, true );
$addon->isActive = is_plugin_active( $addon->basename );
$addon->canInstall = $this->canInstall();
return $addon;
}
/**
* Gets the payload to send in the request.
*
* @since 4.0.0
*
* @param string $sku The sku to use in the request.
* @return array A payload array.
*/
protected function getAddonPayload( $sku = 'all-in-one-seo-pack-pro' ) {
$payload = [
'license' => aioseo()->options->has( 'general' ) && aioseo()->options->general->has( 'licenseKey' )
? aioseo()->options->general->licenseKey
: '',
'domain' => aioseo()->helpers->getSiteDomain(),
'sku' => defined( 'AIOSEO_ADDON_SKU' ) ? AIOSEO_ADDON_SKU : $sku,
'version' => AIOSEO_VERSION,
'php_version' => PHP_VERSION,
'wp_version' => get_bloginfo( 'version' )
];
if ( defined( 'AIOSEO_INTERNAL_ADDONS' ) && AIOSEO_INTERNAL_ADDONS ) {
$payload['internal'] = true;
}
return $payload;
}
/**
* Checks if the specified addon is activated.
*
* @since 4.0.0
*
* @param string $sku The sku to check.
* @return string The addon basename.
*/
public function getAddonBasename( $sku ) {
require_once ABSPATH . 'wp-admin/includes/plugin.php';
$plugins = get_plugins();
$keys = array_keys( $plugins );
foreach ( $keys as $key ) {
if ( preg_match( '|^' . $sku . '|', $key ) ) {
return $key;
}
}
return $sku;
}
/**
* Returns an array of levels connected to an addon.
*
* @since 4.0.0
*
* @param string $addonName The addon name.
* @return array The array of levels.
*/
public function getAddonLevels( $addonName ) {
$addons = $this->getAddons();
foreach ( $addons as $addon ) {
if ( $addonName !== $addon->sku ) {
continue;
}
if ( ! isset( $addon->levels ) ) {
return [];
}
return $addon->levels;
}
return [];
}
/**
* Get the URL to check licenses.
*
* @since 4.0.0
*
* @return string The URL.
*/
protected function getLicensingUrl() {
if ( defined( 'AIOSEO_LICENSING_URL' ) ) {
return AIOSEO_LICENSING_URL;
}
return $this->licensingUrl;
}
/**
* Installs and activates a given addon or plugin.
*
* @since 4.0.0
*
* @return boolean Whether or not the installation was succesful.
*/
public function installAddon( $name ) {
if ( ! $this->canInstall() ) {
return false;
}
require_once ABSPATH . 'wp-admin/includes/file.php';
require_once ABSPATH . 'wp-admin/includes/template.php';
require_once ABSPATH . 'wp-admin/includes/class-wp-screen.php';
require_once ABSPATH . 'wp-admin/includes/screen.php';
// Set the current screen to avoid undefined notices.
set_current_screen( 'toplevel_page_aioseo' );
// Prepare variables.
$url = esc_url_raw(
add_query_arg(
[
'page' => 'aioseo-settings',
],
admin_url( 'admin.php' )
)
);
// Do not allow WordPress to search/download translations, as this will break JS output.
remove_action( 'upgrader_process_complete', [ 'Language_Pack_Upgrader', 'async_upgrade' ], 20 );
// Create the plugin upgrader with our custom skin.
$installer = new Utils\PluginUpgraderSilentAjax( new Utils\PluginUpgraderSkin() );
// Activate the plugin silently.
$pluginUrl = ! empty( $installer->pluginSlugs[ $name ] ) ? $installer->pluginSlugs[ $name ] : $name;
$activated = activate_plugin( $pluginUrl );
if ( ! is_wp_error( $activated ) ) {
return $name;
}
// Using output buffering to prevent the FTP form from being displayed in the screen.
ob_start();
$creds = request_filesystem_credentials( $url, '', false, false, null );
ob_end_clean();
// Check for file system permissions.
if ( false === $creds || ! aioseo()->helpers->wpfs( $creds ) ) {
return false;
}
// Error check.
if ( ! method_exists( $installer, 'install' ) ) {
return false;
}
$installLink = ! empty( $installer->pluginLinks[ $name ] ) ? $installer->pluginLinks[ $name ] : null;
// Check if this is an addon and if we have a download link.
if ( empty( $installLink ) ) {
$addon = aioseo()->addons->getAddon( $name, true );
if ( empty( $addon->downloadUrl ) ) {
return false;
}
$installLink = $addon->downloadUrl;
}
$installer->install( $installLink );
// Flush the cache and return the newly installed plugin basename.
wp_cache_flush();
$pluginBasename = $installer->plugin_info();
if ( ! $pluginBasename ) {
return false;
}
// Activate the plugin silently.
$activated = activate_plugin( $pluginBasename );
if ( is_wp_error( $activated ) ) {
return false;
}
return $pluginBasename;
}
/**
* Determine if addons/plugins can be installed.
*
* @since 4.0.0
*
* @return bool True if yes, false if not.
*/
public function canInstall() {
if ( ! current_user_can( 'install_plugins' ) ) {
return false;
}
// Determine whether file modifications are allowed.
if ( ! wp_is_file_mod_allowed( 'aioseo_can_install' ) ) {
return false;
}
return true;
}
/**
* Determine if addons/plugins can be updates.
*
* @since 4.0.0
*
* @return bool True if yes, false if not.
*/
public function canUpdate() {
if ( ! current_user_can( 'update_plugins' ) ) {
return false;
}
// Determine whether file modifications are allowed.
if ( ! wp_is_file_mod_allowed( 'aioseo_can_update' ) ) {
return false;
}
return true;
}
/**
* Determine if addons/plugins can be activated.
*
* @since 4.1.3
*
* @return bool True if yes, false if not.
*/
public function canActivate() {
if ( ! current_user_can( 'activate_plugins' ) ) {
return false;
}
return true;
}
/**
* Load an addon into aioseo
*
* @since 4.1.0
*
* @param string $slug
* @param object $addon Addon class instance
*
* @return void
*/
public function loadAddon( $slug, $addon ) {
$this->{$slug} = $addon;
$this->loadedAddons[] = $slug;
}
/**
* Return a loaded addon
*
* @since 4.1.0
*
* @param string $slug
*
* @return object|null
*/
public function getLoadedAddon( $slug ) {
return isset( $this->{$slug} ) ? $this->{$slug} : null;
}
/**
* Returns loaded addons
*
* @since 4.1.0
*
* @return array
*/
public function getLoadedAddons() {
$loadedAddonsList = [];
if ( ! empty( $this->loadedAddons ) ) {
foreach ( $this->loadedAddons as $addonSlug ) {
$loadedAddonsList[ $addonSlug ] = $this->{$addonSlug};
}
}
return $loadedAddonsList;
}
/**
* Retrieves a default addon with whatever information is needed if the API cannot be reached.
*
* @since 4.0.0
*
* @param string $sku The sku of the addon.
* @return array An array of addon data.
*/
public function getDefaultAddon( $sku ) {
$addons = $this->getDefaultAddons();
$addon = [];
foreach ( $addons as $a ) {
if ( $a->sku === $sku ) {
$addon = $a;
}
}
return $addon;
}
/**
* Retrieves a default list of addons if the API cannot be reached.
*
* @since 4.0.0
*
* @return array An array of addons.
*/
protected function getDefaultAddons() {
return json_decode( wp_json_encode( [
[
'sku' => 'aioseo-image-seo',
'name' => 'Image SEO',
'version' => '1.0.0',
'image' => null,
'icon' => 'svg-image-seo',
'levels' => [
'business',
'agency',
'plus',
'pro',
'elite',
],
'currentLevels' => [
'plus',
'pro',
'elite'
],
'requiresUpgrade' => false,
'description' => '<p>Globally control the Title attribute and Alt text for images in your content. These attributes are essential for both accessibility and SEO.</p>',
'descriptionVersion' => 0,
'downloadUrl' => '',
'productUrl' => 'https://aioseo.com/image-seo',
'learnMoreUrl' => 'https://aioseo.com/image-seo',
'manageUrl' => 'https://route#aioseo-search-appearance:media',
'basename' => 'aioseo-image-seo/aioseo-image-seo.php',
'installed' => false,
'isActive' => false,
'canInstall' => false
],
[
'sku' => 'aioseo-video-sitemap',
'name' => 'Video Sitemap',
'version' => '1.0.0',
'image' => null,
'icon' => 'svg-sitemaps-pro',
'levels' => [
'individual',
'business',
'agency',
'pro',
'elite'
],
'currentLevels' => [
'pro',
'elite'
],
'requiresUpgrade' => false,
'description' => '<p>The Video Sitemap works in much the same way as the XML Sitemap module, it generates an XML Sitemap specifically for video content on your site. Search engines use this information to display rich snippet information in search results.</p>', // phpcs:ignore Generic.Files.LineLength.MaxExceeded
'descriptionVersion' => 0,
'downloadUrl' => '',
'productUrl' => 'https://aioseo.com/video-sitemap',
'learnMoreUrl' => 'https://aioseo.com/video-sitemap',
'manageUrl' => 'https://route#aioseo-sitemaps:video-sitemap',
'basename' => 'aioseo-video-sitemap/aioseo-video-sitemap.php',
'installed' => false,
'isActive' => false,
'canInstall' => false
],
[
'sku' => 'aioseo-local-business',
'name' => 'Local Business SEO',
'version' => '1.0.0',
'image' => null,
'icon' => 'svg-local-business',
'levels' => [
'business',
'agency',
'plus',
'pro',
'elite'
],
'currentLevels' => [
'plus',
'pro',
'elite'
],
'requiresUpgrade' => false,
'description' => '<p>Local Business schema markup enables you to tell Google about your business, including your business name, address and phone number, opening hours and price range. This information may be displayed as a Knowledge Graph card or business carousel.</p>', // phpcs:ignore Generic.Files.LineLength.MaxExceeded
'descriptionVersion' => 0,
'downloadUrl' => '',
'productUrl' => 'https://aioseo.com/local-business',
'learnMoreUrl' => 'https://aioseo.com/local-business',
'manageUrl' => 'https://route#aioseo-local-seo:locations',
'basename' => 'aioseo-local-business/aioseo-local-business.php',
'installed' => false,
'isActive' => false,
'canInstall' => false
],
[
'sku' => 'aioseo-news-sitemap',
'name' => 'News Sitemap',
'version' => '1.0.0',
'image' => null,
'icon' => 'svg-sitemaps-pro',
'levels' => [
'business',
'agency',
'pro',
'elite'
],
'currentLevels' => [
'pro',
'elite'
],
'requiresUpgrade' => false,
'description' => '<p>Our Google News Sitemap lets you control which content you submit to Google News and only contains articles that were published in the last 48 hours. In order to submit a News Sitemap to Google, you must have added your site to Google’s Publisher Center and had it approved.</p>', // phpcs:ignore Generic.Files.LineLength.MaxExceeded
'descriptionVersion' => 0,
'downloadUrl' => '',
'productUrl' => 'https://aioseo.com/news-sitemap',
'learnMoreUrl' => 'https://aioseo.com/news-sitemap',
'manageUrl' => 'https://route#aioseo-sitemaps:news-sitemap',
'basename' => 'aioseo-news-sitemap/aioseo-news-sitemap.php',
'installed' => false,
'isActive' => false,
'canInstall' => false
],
[
'sku' => 'aioseo-redirects',
'name' => 'Redirection Manager',
'version' => '1.0.0',
'image' => null,
'icon' => 'svg-redirect',
'levels' => [
'agency',
'basic',
'plus',
'pro',
'elite'
],
'currentLevels' => [
'basic',
'plus',
'pro',
'elite'
],
'requiresUpgrade' => false,
'description' => '<p>Our Redirection Manager allows you to easily create and manage redirects for your broken links to avoid confusing search engines and users, as well as losing valuable backlinks. It even automatically sends users and search engines from your old URLs to your new ones.</p>', // phpcs:ignore Generic.Files.LineLength.MaxExceeded
'descriptionVersion' => 0,
'downloadUrl' => '',
'productUrl' => 'https://aioseo.com/redirection-manager',
'learnMoreUrl' => 'https://aioseo.com/redirection-manager',
'manageUrl' => 'https://route#aioseo-redirects',
'basename' => 'aioseo-redirects/aioseo-redirects.php',
'installed' => false,
'isActive' => false,
'canInstall' => false
],
[
'sku' => 'aioseo-link-assistant',
'name' => 'Link Assistant',
'version' => '1.0.0',
'image' => null,
'icon' => 'svg-link-assistant',
'levels' => [
'agency',
'basic',
'plus',
'pro',
'elite'
],
'currentLevels' => [
'basic',
'plus',
'pro',
'elite'
],
'requiresUpgrade' => false,
'description' => '<p>Super-charge your SEO with Link Assistant! Get relevant suggestions for adding internal links to older content as well as finding any orphaned posts that have no internal links. Use our reporting feature to see all link suggestions or add them directly from any page or post.</p>', // phpcs:ignore Generic.Files.LineLength.MaxExceeded
'descriptionVersion' => 0,
'downloadUrl' => '',
'productUrl' => 'https://aioseo.com/link-assistant',
'learnMoreUrl' => 'https://aioseo.com/link-assistant',
'manageUrl' => 'https://route#aioseo-link-assistant',
'basename' => 'aioseo-link-assistant/aioseo-link-assistant.php',
'installed' => false,
'isActive' => false,
'canInstall' => false
]
] ) );
}
}