info.php
4.41 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
<?php
if (!defined('ABSPATH')) exit;
if (!class_exists('PTNInfo')) :
class PTNInfo {
public $settings;
public $config;
public $plugname = 'pantheon';
public $brandname = 'Pantheon Migrate';
public $badgeinfo = 'ptnbadge';
public $ip_header_option = 'ptnipheader';
public $brand_option = 'ptnbrand';
public $version = '5.25';
public $webpage = 'https://pantheon.io';
public $appurl = 'https://migrate.blogvault.net';
public $slug = 'bv-pantheon-migration/pantheon.php';
public $plug_redirect = 'ptnredirect';
public $logo = '../img/logo.png';
public $brand_icon = '/img/icon.png';
public $services_option_name = 'BVSERVICESOPTIONNAME';
public $author = 'Pantheon';
public $title = 'Pantheon Migration';
const DB_VERSION = '4';
public function __construct($settings) {
$this->settings = $settings;
$this->config = $this->settings->getOption($this->services_option_name);
}
public function getCurrentDBVersion() {
$bvconfig = $this->config;
if ($bvconfig && array_key_exists('db_version', $bvconfig)) {
return $bvconfig['db_version'];
}
return false;
}
public function hasValidDBVersion() {
return PTNInfo::DB_VERSION === $this->getCurrentDBVersion();
}
public static function getRequestID() {
if (!defined("BV_REQUEST_ID")) {
define("BV_REQUEST_ID", uniqid(mt_rand()));
}
return BV_REQUEST_ID;
}
public function canSetCWBranding() {
if (PTNWPSiteInfo::isCWServer()) {
$bot_protect_accounts = PTNAccount::accountsByType($this->settings, 'botprotect');
if (sizeof($bot_protect_accounts) >= 1)
return true;
$bot_protect_accounts = PTNAccount::accountsByPattern($this->settings, 'email', '/@cw_user\.com$/');
if (sizeof($bot_protect_accounts) >= 1)
return true;
}
return false;
}
public function getBrandInfo() {
return $this->settings->getOption($this->brand_option);
}
public function getBrandName() {
$brand = $this->getBrandInfo();
if (is_array($brand) && array_key_exists('menuname', $brand)) {
return $brand['menuname'];
}
return $this->brandname;
}
public function getBrandIcon() {
$brand = $this->getBrandInfo();
if (is_array($brand) && array_key_exists('brand_icon', $brand)) {
return $brand['brand_icon'];
}
return $this->brand_icon;
}
public function getWatchTime() {
$time = $this->settings->getOption('bvwatchtime');
return ($time ? $time : 0);
}
public function appUrl() {
if (defined('BV_APP_URL')) {
return BV_APP_URL;
} else {
$brand = $this->getBrandInfo();
if (is_array($brand) && array_key_exists('appurl', $brand)) {
return $brand['appurl'];
}
return $this->appurl;
}
}
public function isActivePlugin() {
$expiry_time = time() - (3 * 24 * 3600);
return ($this->getWatchTime() > $expiry_time);
}
public function isValidEnvironment(){
$bvsiteinfo = new PTNWPSiteInfo();
$bvconfig = $this->config;
if (is_multisite()) {
return true;
} elseif ($bvconfig && array_key_exists("siteurl_scheme", $bvconfig)) {
$siteurl = $bvsiteinfo->siteurl('', $bvconfig["siteurl_scheme"]);
if (array_key_exists("abspath", $bvconfig) &&
array_key_exists("siteurl", $bvconfig) && !empty($siteurl)) {
return ($bvconfig["abspath"] == ABSPATH && $bvconfig["siteurl"] == $siteurl);
}
}
return true;
}
public function isProtectModuleEnabled() {
return $this->isServiceActive("protect") && $this->isValidEnvironment();
}
public function isDynSyncModuleEnabled() {
if ($this->isServiceActive("dynsync")) {
$dynconfig = $this->config['dynsync'];
if (array_key_exists('dynplug', $dynconfig) && ($dynconfig['dynplug'] === $this->plugname)) {
return true;
}
}
return false;
}
public function isServiceActive($service) {
$bvconfig = $this->config;
if ($bvconfig && array_key_exists('services', $bvconfig)) {
return in_array($service, $bvconfig['services']) && $this->isActivePlugin();
}
return false;
}
public function isActivateRedirectSet() {
return ($this->settings->getOption($this->plug_redirect) === 'yes') ? true : false;
}
public function isMalcare() {
return $this->getBrandName() === 'MalCare';
}
public function isBlogvault() {
return $this->getBrandName() === 'BlogVault';
}
public function info() {
return array(
"bvversion" => $this->version,
"sha1" => "true",
"plugname" => $this->plugname
);
}
}
endif;