| 1 |
<?php |
| 2 |
|
| 3 |
// phpcs:disable Generic.Files.LineLength.TooLong |
| 4 |
/** |
| 5 |
* Plugin Name: Extendify WordPress Onboarding and AI Assistant |
| 6 |
* Description: AI-powered WordPress assistant for onboarding and ongoing editing offered exclusively through select WordPress hosting providers. |
| 7 |
* Plugin URI: https://extendify.com/?utm_source=wp-plugins&utm_campaign=plugin-uri&utm_medium=wp-dash |
| 8 |
* Author: Extendify |
| 9 |
* Author URI: https://extendify.com/?utm_source=wp-plugins&utm_campaign=author-uri&utm_medium=wp-dash |
| 10 |
* Version: 3.1.6 |
| 11 |
* Requires at least: 6.5 |
| 12 |
* Requires PHP: 7.0 |
| 13 |
* License: GPL-2.0-or-later |
| 14 |
* License URI: https://www.gnu.org/licenses/gpl-2.0.html |
| 15 |
* Text Domain: extendify-local |
| 16 |
* Domain Path: /languages |
| 17 |
* |
| 18 |
* Extendify is free software: you can redistribute it and/or modify |
| 19 |
* it under the terms of the GNU General Public License as published by |
| 20 |
* the Free Software Foundation, either version 2 of the License, or |
| 21 |
* any later version. |
| 22 |
* |
| 23 |
* Extendify is distributed in the hope that it will be useful, |
| 24 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 25 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 26 |
* GNU General Public License for more details. |
| 27 |
*/ |
| 28 |
// phpcs:enable Generic.Files.LineLength.TooLong |
| 29 |
|
| 30 |
defined('ABSPATH') || exit; |
| 31 |
|
| 32 |
/** ExtendifySdk is the previous class name used */ |
| 33 |
if (!class_exists('ExtendifySdk') && !class_exists('Extendify')) : |
| 34 |
|
| 35 |
/** |
| 36 |
* The Extendify Library |
| 37 |
*/ |
| 38 |
// phpcs:ignore PSR1.Classes.ClassDeclaration.MissingNamespace |
| 39 |
final class Extendify |
| 40 |
{ |
| 41 |
/** |
| 42 |
* Var to make sure we only load once |
| 43 |
* |
| 44 |
* @var boolean $loaded |
| 45 |
*/ |
| 46 |
public static $loaded = false; |
| 47 |
|
| 48 |
/** |
| 49 |
* Set up the Library |
| 50 |
* |
| 51 |
* @return void |
| 52 |
*/ |
| 53 |
public function __invoke() |
| 54 |
{ |
| 55 |
// Allow users to disable the library. The latter is left in for historical reasons. |
| 56 |
if (!apply_filters('extendify_load_library', true) || !apply_filters('extendifysdk_load_library', true)) { |
| 57 |
return; |
| 58 |
} |
| 59 |
|
| 60 |
if (version_compare(PHP_VERSION, '7.0', '<') || version_compare($GLOBALS['wp_version'], '6.5', '<')) { |
| 61 |
return; |
| 62 |
} |
| 63 |
|
| 64 |
if (!self::$loaded) { |
| 65 |
self::$loaded = true; |
| 66 |
if (!defined('EXTENDIFY_PLUGIN_BASENAME')) { |
| 67 |
define('EXTENDIFY_PLUGIN_BASENAME', plugin_basename(__FILE__)); |
| 68 |
} |
| 69 |
require dirname(__FILE__) . '/bootstrap.php'; |
| 70 |
if (!defined('EXTENDIFY_BASE_URL')) { |
| 71 |
define('EXTENDIFY_BASE_URL', plugin_dir_url(__FILE__)); |
| 72 |
} |
| 73 |
} |
| 74 |
} |
| 75 |
} |
| 76 |
|
| 77 |
add_action('plugins_loaded', function () { |
| 78 |
$extendify = new Extendify(); |
| 79 |
$extendify(); |
| 80 |
}); |
| 81 |
|
| 82 |
// phpcs:ignore Generic.CodeAnalysis.UnusedFunctionParameter.FoundBeforeLastUsed |
| 83 |
add_action('upgrader_process_complete', function ($upgrader, $options) { |
| 84 |
$updatedExtendify = isset($options['plugins']) && array_filter($options['plugins'], function ($plugin) { |
| 85 |
return strpos($plugin, 'extendify') !== false; |
| 86 |
}); |
| 87 |
|
| 88 |
if (!$updatedExtendify) { |
| 89 |
return; |
| 90 |
} |
| 91 |
|
| 92 |
\delete_transient('extendify_recommendations'); |
| 93 |
\delete_transient('extendify_domains'); |
| 94 |
\delete_transient('extendify_supportArticles'); |
| 95 |
}, 10, 2); |
| 96 |
|
| 97 |
// Redirect logins to the Extendify Assist dashboard if they are an admin. |
| 98 |
// phpcs:ignore Generic.CodeAnalysis.UnusedFunctionParameter.FoundBeforeLastUsed |
| 99 |
\add_filter('login_redirect', function ($redirectTo, $requestedRedirectTo, $user) { |
| 100 |
// Only redirect if going to the admin page. |
| 101 |
if ($redirectTo !== \admin_url()) { |
| 102 |
return $redirectTo; |
| 103 |
} |
| 104 |
|
| 105 |
if (!$user || !is_a($user, 'WP_User') || !defined('EXTENDIFY_PARTNER_ID')) { |
| 106 |
return $redirectTo; |
| 107 |
} |
| 108 |
|
| 109 |
$partnerData = get_option('extendify_partner_data_v2', []); |
| 110 |
if (!$user->has_cap('manage_options') || empty($partnerData)) { |
| 111 |
return $redirectTo; |
| 112 |
} |
| 113 |
|
| 114 |
return \admin_url() . 'admin.php?page=extendify-assist'; |
| 115 |
}, 10, 3); |
| 116 |
|
| 117 |
// Redirect to a safe place if the user doesn't have access. |
| 118 |
add_action('admin_page_access_denied', function () { |
| 119 |
// phpcs:ignore WordPress.Security.NonceVerification.Recommended |
| 120 |
if (isset($_GET['page']) && strpos(sanitize_text_field(wp_unslash($_GET['page'])), 'extendify') !== false) { |
| 121 |
wp_safe_redirect(admin_url()); |
| 122 |
exit; |
| 123 |
} |
| 124 |
}); |
| 125 |
|
| 126 |
// Clean up the site profile if being accessed |
| 127 |
add_filter('option_extendify_site_profile', function ($value) { |
| 128 |
$profile = is_string($value) ? json_decode($value, true) : $value; |
| 129 |
$profile = is_array($profile) ? $profile : []; |
| 130 |
|
| 131 |
$map = [ |
| 132 |
'aiSiteType' => 'type', |
| 133 |
'aiTitle' => 'title', |
| 134 |
'aiDescription' => 'description', |
| 135 |
'aiObjective' => 'objective', |
| 136 |
'aiSiteCategory' => 'category', |
| 137 |
'aiStructure' => 'structure', |
| 138 |
'aiKeywords' => 'imageSearchTerms', |
| 139 |
'logoObjectName' => 'logoObjectName', |
| 140 |
]; |
| 141 |
|
| 142 |
foreach ($map as $old => $new) { |
| 143 |
if (!array_key_exists($new, $profile)) { |
| 144 |
$profile[$new] = $profile[$old] ?? null; |
| 145 |
} |
| 146 |
} |
| 147 |
|
| 148 |
// if tone is set and is not array (and ensure lowercase) |
| 149 |
if (isset($profile['tone']) && !is_array($profile['tone'])) { |
| 150 |
$profile['tone'] = array_map(function ($v) { |
| 151 |
return strtolower((string) $v); |
| 152 |
}, (array) ($profile['tone'] ?? [])); |
| 153 |
} |
| 154 |
|
| 155 |
return $profile; |
| 156 |
}); |
| 157 |
endif; |
| 158 |
|