PluginProbe
Extendify / 3.1.0
Extendify v3.1.0
3.1.6 3.1.5 3.1.4 3.1.3 3.1.2 3.1.1 3.1.0 3.0.6 3.0.5 3.0.4 trunk 0.1.0 0.10.0 0.10.1 0.10.2 0.11.0 0.11.1 0.2.0 0.3.0 0.3.1 0.4.0 0.5.0 0.6.0 0.7.0 0.8.0 All 125 releases
extendify / extendify.php

extendify.php in Extendify 3.1.0, at extendify.php

192 lines 7.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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.0
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 use Extendify\PartnerData;
33
34 /** ExtendifySdk is the previous class name used */
35 if (!class_exists('ExtendifySdk') && !class_exists('Extendify')) :
36
37 /**
38 * The Extendify Library
39 */
40 // phpcs:ignore PSR1.Classes.ClassDeclaration.MissingNamespace
41 final class Extendify
42 {
43 /**
44 * Var to make sure we only load once
45 *
46 * @var boolean $loaded
47 */
48 public static $loaded = false;
49
50 /**
51 * Set up the Library
52 *
53 * @return void
54 */
55 public function __invoke()
56 {
57 // Allow users to disable the library. The latter is left in for historical reasons.
58 if (!apply_filters('extendify_load_library', true) || !apply_filters('extendifysdk_load_library', true)) {
59 return;
60 }
61
62 if (version_compare(PHP_VERSION, '7.0', '<') || version_compare($GLOBALS['wp_version'], '6.5', '<')) {
63 return;
64 }
65
66 if (!self::$loaded) {
67 self::$loaded = true;
68 if (!defined('EXTENDIFY_PLUGIN_BASENAME')) {
69 define('EXTENDIFY_PLUGIN_BASENAME', plugin_basename(__FILE__));
70 }
71 require dirname(__FILE__) . '/bootstrap.php';
72 if (!defined('EXTENDIFY_BASE_URL')) {
73 define('EXTENDIFY_BASE_URL', plugin_dir_url(__FILE__));
74 }
75 }
76 }
77 }
78
79 add_action('plugins_loaded', function () {
80 $extendify = new Extendify();
81 $extendify();
82 });
83
84 add_action('update_option', function ($option) {
85 if (in_array($option, ['WPLANG', 'blogname'], true)) {
86 \delete_transient('extendify_recommendations');
87 \delete_transient('extendify_domains');
88 \delete_transient('extendify_supportArticles');
89 }
90
91 // Delete the partner transient so we can fetch new data when the locale is switched.
92 if (($option === 'WPLANG') && get_transient('extendify_partner_data_cache_check')) {
93 delete_transient('extendify_partner_data_cache_check');
94 PartnerData::getPartnerData();
95 }
96 });
97
98 // Delete the partner transient so we can fetch new data when the locale is switched via WP-CLI.
99 add_action('cli_init', function () {
100 $command = sanitize_text_field(wp_unslash(($_SERVER['argv'][1] ?? '')));
101 if ($command === 'language' && get_transient('extendify_partner_data_cache_check')) {
102 delete_transient('extendify_partner_data_cache_check');
103 PartnerData::getPartnerData();
104 }
105 });
106
107 // phpcs:ignore Generic.CodeAnalysis.UnusedFunctionParameter.FoundBeforeLastUsed
108 add_action('upgrader_process_complete', function ($upgrader, $options) {
109 $updatedExtendify = isset($options['plugins']) && array_filter($options['plugins'], function ($plugin) {
110 return strpos($plugin, 'extendify') !== false;
111 });
112
113 if (!$updatedExtendify) {
114 return;
115 }
116
117 \delete_transient('extendify_recommendations');
118 \delete_transient('extendify_domains');
119 \delete_transient('extendify_supportArticles');
120 }, 10, 2);
121
122 // Redirect logins to the Extendify Assist dashboard if they are an admin.
123 // phpcs:ignore Generic.CodeAnalysis.UnusedFunctionParameter.FoundBeforeLastUsed
124 \add_filter('login_redirect', function ($redirectTo, $requestedRedirectTo, $user) {
125 // Only redirect if going to the admin page.
126 if ($redirectTo !== \admin_url()) {
127 return $redirectTo;
128 }
129
130 if (!$user || !is_a($user, 'WP_User') || !defined('EXTENDIFY_PARTNER_ID')) {
131 return $redirectTo;
132 }
133
134 $partnerData = get_option('extendify_partner_data_v2', []);
135 if (!$user->has_cap('manage_options') || empty($partnerData)) {
136 return $redirectTo;
137 }
138
139 return \admin_url() . 'admin.php?page=extendify-assist';
140 }, 10, 3);
141
142 // Redirect to a safe place if the user doesn't have access.
143 add_action('admin_page_access_denied', function () {
144 // phpcs:ignore WordPress.Security.NonceVerification.Recommended
145 if (isset($_GET['page']) && strpos(sanitize_text_field(wp_unslash($_GET['page'])), 'extendify') !== false) {
146 wp_safe_redirect(admin_url());
147 exit;
148 }
149 });
150
151 // Allow Extendify requests to have a longer timeout.
152 add_filter('http_request_args', function ($args, $url) {
153 if (strpos($url, 'extendify') !== false) {
154 $args['timeout'] = 45;
155 }
156
157 return $args;
158 }, 100, 2);
159
160 // Clean up the site profile if being accessed
161 add_filter('option_extendify_site_profile', function ($value) {
162 $profile = is_string($value) ? json_decode($value, true) : $value;
163 $profile = is_array($profile) ? $profile : [];
164
165 $map = [
166 'aiSiteType' => 'type',
167 'aiTitle' => 'title',
168 'aiDescription' => 'description',
169 'aiObjective' => 'objective',
170 'aiSiteCategory' => 'category',
171 'aiStructure' => 'structure',
172 'aiKeywords' => 'imageSearchTerms',
173 'logoObjectName' => 'logoObjectName',
174 ];
175
176 foreach ($map as $old => $new) {
177 if (!array_key_exists($new, $profile)) {
178 $profile[$new] = $profile[$old] ?? null;
179 }
180 }
181
182 // if tone is set and is not array (and ensure lowercase)
183 if (isset($profile['tone']) && !is_array($profile['tone'])) {
184 $profile['tone'] = array_map(function ($v) {
185 return strtolower((string) $v);
186 }, (array) ($profile['tone'] ?? []));
187 }
188
189 return $profile;
190 });
191 endif;
192