-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy pathPlugin_Context.php
244 lines (214 loc) · 5.63 KB
/
Plugin_Context.php
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
<?php
/**
* Class WordPress\Plugin_Check\Plugin_Context
*
* @package plugin-check
*/
namespace WordPress\Plugin_Check;
use Exception;
use WordPress\Plugin_Check\Traits\Find_Readme;
use WordPressdotorg\Plugin_Directory\Readme\Parser;
use function WP_CLI\Utils\normalize_path;
/**
* Class representing the context in which the plugin is running.
*
* @since 1.0.0
*/
class Plugin_Context {
use Find_Readme;
/**
* Absolute path of the plugin main file.
*
* @since 1.0.0
* @var string
*/
protected $main_file;
/**
* Plugin slug.
*
* @since 1.2.0
* @var string
*/
protected $slug;
/**
* The minimum supported WordPress version of the plugin.
*
* @since 1.0.0
* @var string
*/
protected $minimum_supported_wp;
/**
* Constructor.
*
* @since 1.0.0
* @since 1.2.0 Second argument $slug was introduced.
*
* @param string $main_file The absolute path to the plugin main file.
* @param string $slug The plugin slug.
*
* @throws Exception Throws exception if not called via regular WP-CLI or WordPress bootstrap order.
*/
public function __construct( $main_file, $slug = '' ) {
if ( function_exists( 'wp_normalize_path' ) ) {
$this->main_file = wp_normalize_path( $main_file );
} elseif ( function_exists( '\WP_CLI\Utils\normalize_path' ) ) {
$this->main_file = normalize_path( $main_file );
} else {
throw new Exception(
__( 'Unknown environment, normalize_path function not found', 'plugin-check' )
);
}
if ( false === strpos( $this->main_file, '.php' ) ) {
$files = glob( $this->main_file . '/*.php' );
foreach ( $files as $file ) {
$plugin_data = get_plugin_data( $file );
if ( ! empty( $plugin_data['Name'] ) ) {
$this->main_file = $file;
break;
}
}
}
if ( ! empty( $slug ) ) {
$this->slug = $slug;
} else {
$this->slug = basename( dirname( $this->main_file ) );
}
}
/**
* Returns the plugin basename.
*
* @since 1.0.0
*
* @return string Plugin basename.
*/
public function basename() {
return plugin_basename( $this->main_file );
}
/**
* Returns the plugin main file.
*
* @since 1.0.2
*
* @return string Plugin main file.
*/
public function main_file() {
return $this->main_file;
}
/**
* Returns the plugin slug.
*
* @since 1.2.0
*
* @return string Plugin slug.
*/
public function slug() {
return $this->slug;
}
/**
* Returns the absolute path for a relative path to the plugin directory.
*
* @since 1.0.0
*
* @param string $relative_path Optional. Relative path. Default '/'.
* @return string Absolute path.
*/
public function path( $relative_path = '/' ) {
if ( is_dir( $this->main_file ) ) {
return trailingslashit( $this->main_file ) . ltrim( $relative_path, '/' );
} else {
return plugin_dir_path( $this->main_file ) . ltrim( $relative_path, '/' );
}
}
/**
* Returns the full URL for a path relative to the plugin directory.
*
* @since 1.0.0
*
* @param string $relative_path Optional. Relative path. Default '/'.
* @return string Full URL.
*/
public function url( $relative_path = '/' ) {
return plugin_dir_url( $this->main_file ) . ltrim( $relative_path, '/' );
}
/**
* Returns the plugin location.
*
* @since 1.0.0
*
* @return string The plugin file if single file plugin. Or the plugin folder.
*/
public function location() {
$path = $this->path();
// Return the plugin path and basename if the path matches the plugin directory.
if ( WP_PLUGIN_DIR . '/' === $path ) {
return $path . $this->basename();
}
return $path;
}
/**
* Checks if the plugin is a single file plugin without a dedicated directory.
*
* This is the case when the single file is directly placed within `wp-content/plugins`.
*
* @since 1.0.0
*
* @return bool true if the single file plugin, otherwise false.
*/
public function is_single_file_plugin() {
return $this->path() !== $this->location();
}
/**
* Determine the minimum supported WordPress version of the plugin.
*
* @since 1.0.0
*
* @return string The minimum version supported, or empty string if unknown.
*/
public function minimum_supported_wp() {
if ( ! is_null( $this->minimum_supported_wp ) ) {
return $this->minimum_supported_wp;
}
$this->minimum_supported_wp = '';
$headers = get_plugin_data( $this->main_file );
if ( ! empty( $headers['RequiresWP'] ) ) {
$this->minimum_supported_wp = $headers['RequiresWP'];
} elseif ( ! $this->is_single_file_plugin() ) {
// Look for the readme.
$readme_files = glob( $this->path() . '*' );
$readme_files = $this->filter_files_for_readme( $readme_files, $this->path() );
$readme_file = reset( $readme_files );
if ( $readme_file ) {
$parser = new Parser( $readme_file );
if ( ! empty( $parser->requires ) ) {
$this->minimum_supported_wp = $parser->requires;
}
}
}
return $this->minimum_supported_wp;
}
/**
* Checks if the file is editable.
*
* @since 1.1.0
*
* @param string $file Filename.
* @return bool true if the file is editable, otherwise false.
*/
public function is_file_editable( $file ) {
$editable = false;
$editable_extensions = wp_get_plugin_file_editable_extensions( $this->basename() );
$info = pathinfo( $file );
$filename = $info['filename'];
$dirname = $info['dirname'];
$extension = isset( $info['extension'] ) ? strtolower( $info['extension'] ) : '';
if (
in_array( $extension, $editable_extensions, true )
&& file_exists( dirname( $this->main_file() ) . '/' . $file )
&& ( ! empty( $filename ) && ( '.' !== $filename[0] ) )
&& ! ( '.' === $dirname[0] && strlen( $dirname ) > 1 )
) {
$editable = true;
}
return $editable;
}
}