PluginProbe
The WP Remote WordPress Plugin / 4.66
The WP Remote WordPress Plugin v4.66
6.72 6.69 6.65 6.62 6.48 6.47 4.87 4.97 5.05 5.09 5.16 5.22 5.24 5.25 5.38 5.41 5.42 5.45 5.47 5.53 5.56 5.65 5.68 5.72 5.73 All 53 releases
wpremote / plugin.php

plugin.php in The WP Remote WordPress Plugin 4.66, at plugin.php

182 lines 6.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /*
3 Plugin Name: WP Remote
4 Plugin URI: https://wpremote.com
5 Description: Manage your WordPress site with <a href="https://wpremote.com/">WP Remote</a>.
6 Author: WP Remote
7 Author URI: https://wpremote.com
8 Version: 4.66
9 Network: True
10 */
11
12 /* Copyright 2017 WP Remote (email : support@wpremote.com)
13
14 This program is free software; you can redistribute it and/or modify
15 it under the terms of the GNU General Public License, version 2, as
16 published by the Free Software Foundation.
17
18 This program is distributed in the hope that it will be useful,
19 but WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 GNU General Public License for more details.
22
23 You should have received a copy of the GNU General Public License
24 along with this program; if not, write to the Free Software
25 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
26 */
27
28 /* Global response array */
29
30 if (!defined('ABSPATH')) exit;
31 ##OLDWPR##
32
33 require_once dirname( __FILE__ ) . '/wp_settings.php';
34 require_once dirname( __FILE__ ) . '/wp_site_info.php';
35 require_once dirname( __FILE__ ) . '/wp_db.php';
36 require_once dirname( __FILE__ ) . '/wp_api.php';
37 require_once dirname( __FILE__ ) . '/wp_actions.php';
38 require_once dirname( __FILE__ ) . '/info.php';
39 require_once dirname( __FILE__ ) . '/account.php';
40
41
42 $bvsettings = new WPRWPSettings();
43 $bvsiteinfo = new WPRWPSiteInfo();
44 $bvdb = new WPRWPDb();
45
46
47 $bvapi = new WPRWPAPI($bvsettings);
48 $bvinfo = new WPRInfo($bvsettings);
49 $wp_action = new WPRWPAction($bvsettings, $bvsiteinfo, $bvapi);
50
51 register_uninstall_hook(__FILE__, array('WPRWPAction', 'uninstall'));
52 register_activation_hook(__FILE__, array($wp_action, 'activate'));
53 register_deactivation_hook(__FILE__, array($wp_action, 'deactivate'));
54
55 add_action('wp_footer', array($wp_action, 'footerHandler'), 100);
56 add_action('clear_bv_services_config', array($wp_action, 'clear_bv_services_config'));
57
58 ##WPCLIMODULE##
59 if (is_admin()) {
60 require_once dirname( __FILE__ ) . '/wp_admin.php';
61 $wpadmin = new WPRWPAdmin($bvsettings, $bvsiteinfo);
62 add_action('admin_init', array($wpadmin, 'initHandler'));
63 add_filter('all_plugins', array($wpadmin, 'initBranding'));
64 add_filter('plugin_row_meta', array($wpadmin, 'hidePluginDetails'), 10, 2);
65 if ($bvsiteinfo->isMultisite()) {
66 add_action('network_admin_menu', array($wpadmin, 'menu'));
67 } else {
68 add_action('admin_menu', array($wpadmin, 'menu'));
69 }
70 add_filter('plugin_action_links', array($wpadmin, 'settingsLink'), 10, 2);
71 add_action('admin_head', array($wpadmin, 'removeAdminNotices'), 3);
72 add_action('admin_notices', array($wpadmin, 'activateWarning'));
73 add_action('admin_enqueue_scripts', array($wpadmin, 'wprsecAdminMenu'));
74 }
75
76
77 if ((array_key_exists('bvreqmerge', $_POST)) || (array_key_exists('bvreqmerge', $_GET))) {
78 $_REQUEST = array_merge($_GET, $_POST);
79 }
80
81 if ((array_key_exists('bvplugname', $_REQUEST)) && ($_REQUEST['bvplugname'] == "wpremote")) {
82 require_once dirname( __FILE__ ) . '/callback/base.php';
83 require_once dirname( __FILE__ ) . '/callback/response.php';
84 require_once dirname( __FILE__ ) . '/callback/request.php';
85 require_once dirname( __FILE__ ) . '/recover.php';
86
87 $pubkey = WPRAccount::sanitizeKey($_REQUEST['pubkey']);
88
89 if (array_key_exists('rcvracc', $_REQUEST)) {
90 $account = WPRRecover::find($bvsettings, $pubkey);
91 } else {
92 $account = WPRAccount::find($bvsettings, $pubkey);
93 }
94
95 $request = new BVCallbackRequest($account, $_REQUEST);
96 $response = new BVCallbackResponse($request->bvb64cksize);
97
98 if ($account && (1 === $account->authenticate($request))) {
99 define('WPRBASEPATH', plugin_dir_path(__FILE__));
100
101
102 require_once dirname( __FILE__ ) . '/callback/handler.php';
103
104 $params = $request->processParams($_REQUEST);
105 if ($params === false) {
106 $resp = array(
107 "account_info" => $account->info(),
108 "request_info" => $request->info(),
109 "bvinfo" => $bvinfo->info(),
110 "statusmsg" => "BVPRMS_CORRUPTED"
111 );
112 $response->terminate($resp);
113 }
114 $request->params = $params;
115 $callback_handler = new BVCallbackHandler($bvdb, $bvsettings, $bvsiteinfo, $request, $account, $response);
116 if ($request->is_afterload) {
117 add_action('wp_loaded', array($callback_handler, 'execute'));
118 } else if ($request->is_admin_ajax) {
119 add_action('wp_ajax_bvadm', array($callback_handler, 'bvAdmExecuteWithUser'));
120 add_action('wp_ajax_nopriv_bvadm', array($callback_handler, 'bvAdmExecuteWithoutUser'));
121 } else {
122 $callback_handler->execute();
123 }
124 } else {
125 $resp = array(
126 "account_info" => $account ? $account->info() : array("error" => "ACCOUNT_NOT_FOUND"),
127 "request_info" => $request->info(),
128 "bvinfo" => $bvinfo->info(),
129 "statusmsg" => "FAILED_AUTH",
130 "api_pubkey" => substr(WPRAccount::getApiPublicKey($bvsettings), 0, 8),
131 "def_sigmatch" => substr(WPRAccount::getSigMatch($request, WPRRecover::getDefaultSecret($bvsettings)), 0, 8)
132 );
133 $response->terminate($resp);
134 }
135 } else {
136 if ($bvinfo->hasValidDBVersion()) {
137 if ($bvinfo->isProtectModuleEnabled()) {
138 require_once dirname( __FILE__ ) . '/protect/wp/protect.php';
139 $bvprotect = new BVProtect($bvdb, $bvsettings);
140 $bvprotect->init();
141 if ($bvinfo->isActivePlugin() && !(defined( 'WP_CLI' ) && WP_CLI)) {
142 $bvprotect->run();
143 }
144 }
145
146 if ($bvinfo->isDynSyncModuleEnabled()) {
147 require_once dirname( __FILE__ ) . '/wp_dynsync.php';
148 $bvconfig = $bvinfo->config;
149 $dynsync = new BVWPDynSync($bvdb, $bvsettings, $bvconfig['dynsync']);
150 $dynsync->init();
151 }
152
153 if ($bvinfo->isServiceActive('activity_log')) {
154 require_once dirname( __FILE__ ) . '/wp_actlog.php';
155 $bvconfig = $bvinfo->config;
156 $actlog = new BVWPActLog($bvdb, $bvsettings, $bvinfo, $bvconfig['activity_log']);
157 $actlog->init();
158 }
159
160 }
161 $bv_site_settings = $bvsettings->getOption('bv_site_settings');
162 if (isset($bv_site_settings)) {
163 if (isset($bv_site_settings['wp_auto_updates'])) {
164 $wp_auto_updates = $bv_site_settings['wp_auto_updates'];
165 if (array_key_exists('block_auto_update_core', $wp_auto_updates)) {
166 add_filter('auto_update_core', '__return_false' );
167 }
168 if (array_key_exists('block_auto_update_theme', $wp_auto_updates)) {
169 add_filter('auto_update_theme', '__return_false' );
170 add_filter('themes_auto_update_enabled', '__return_false' );
171 }
172 if (array_key_exists('block_auto_update_plugin', $wp_auto_updates)) {
173 add_filter('auto_update_plugin', '__return_false' );
174 add_filter('plugins_auto_update_enabled', '__return_false' );
175 }
176 if (array_key_exists('block_auto_update_translation', $wp_auto_updates)) {
177 add_filter('auto_update_translation', '__return_false' );
178 }
179 }
180 }
181
182 }