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
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
|
<?php
namespace Automattic\WooCommerce\Admin\RemoteSpecs;
/** * Specs data source poller class. * This handles polling specs from JSON endpoints, and * stores the specs in to the database as an option. */ abstract class DataSourcePoller {
/** * Get class instance. */ abstract public static function get_instance();
/** * Name of data sources filter. */ const FILTER_NAME = 'data_source_poller_data_sources';
/** * Name of data source specs filter. */ const FILTER_NAME_SPECS = 'data_source_poller_specs';
/** * Id of DataSourcePoller. * * @var string */ protected $id = array();
/** * Default data sources array. * * @var array */ protected $data_sources = array();
/** * Default args. * * @var array */ protected $args = array();
/** * The logger instance. * * @var WC_Logger|null */ protected static $logger = null;
/** * Constructor. * * @param string $id id of DataSourcePoller. * @param array $data_sources urls for data sources. * @param array $args Options for DataSourcePoller. */ public function __construct( $id, $data_sources = array(), $args = array() ) { $this->data_sources = $data_sources; $this->id = $id;
$arg_defaults = array( 'spec_key' => 'id', 'transient_name' => 'woocommerce_admin_' . $id . '_specs', 'transient_expiry' => 7 * DAY_IN_SECONDS, ); $this->args = wp_parse_args( $args, $arg_defaults ); }
/** * Get the logger instance. * * @return WC_Logger */ protected static function get_logger() { if ( is_null( self::$logger ) ) { self::$logger = wc_get_logger(); }
return self::$logger; }
/** * Returns the key identifier of spec, this can easily be overwritten. Defaults to id. * * @param mixed $spec a JSON parsed spec coming from the JSON feed. * @return string|boolean */ protected function get_spec_key( $spec ) { $key = $this->args['spec_key']; if ( isset( $spec->$key ) ) { return $spec->$key; } return false; }
/** * Reads the data sources for specs and persists those specs. * * @return array list of specs. */ public function get_specs_from_data_sources() { $locale = get_user_locale(); $specs_group = get_transient( $this->args['transient_name'] ) ?? array(); $specs = isset( $specs_group[ $locale ] ) ? $specs_group[ $locale ] : null;
if ( ! is_array( $specs ) ) { $this->read_specs_from_data_sources(); $specs_group = get_transient( $this->args['transient_name'] ); $specs = isset( $specs_group[ $locale ] ) ? $specs_group[ $locale ] : array(); }
/** * Filter specs. * * @param array $specs List of specs. * @param string $this->id Spec identifier. * * @since 8.8.0 */ $specs = apply_filters( self::FILTER_NAME_SPECS, $specs, $this->id ); return false !== $specs ? $specs : array(); }
/** * Gets specs from cache if it exists. * * @return array list of specs. */ public function get_cached_specs() { $locale = get_user_locale(); $specs_group = get_transient( $this->args['transient_name'] ) ?? array(); $specs = isset( $specs_group[ $locale ] ) ? $specs_group[ $locale ] : null;
/** * Filter specs. * * @param array $specs List of specs. * @param string $this->id Spec identifier. * * @since 8.8.0 */ $specs = apply_filters( self::FILTER_NAME_SPECS, $specs, $this->id );
return false !== $specs ? $specs : array(); }
/** * Reads the data sources for specs and persists those specs. * * @return bool Whether any specs were read. */ public function read_specs_from_data_sources() { $specs = array();
/** * Filter data sources. * * @param array $this->data_sources List of data sources. * @param string $this->id Spec identifier. * * @since 8.8.0 */ $data_sources = apply_filters( self::FILTER_NAME, $this->data_sources, $this->id );
// Note that this merges the specs from the data sources based on the // id - last one wins. foreach ( $data_sources as $url ) { $specs_from_data_source = self::read_data_source( $url ); $this->merge_specs( $specs_from_data_source, $specs, $url ); }
$specs_group = get_transient( $this->args['transient_name'] ); $specs_group = is_array( $specs_group ) ? $specs_group : array(); $locale = get_user_locale(); $specs_group[ $locale ] = $specs; // Persist the specs as a transient. $this->set_specs_transient( $specs_group, $this->args['transient_expiry'] ); return count( $specs ) !== 0; }
/** * Delete the specs transient. * * @return bool success of failure of transient deletion. */ public function delete_specs_transient() { return delete_transient( $this->args['transient_name'] ); }
/** * Set the specs transient. * * @param array $specs The specs to set in the transient. * @param int $expiration The expiration time for the transient. */ public function set_specs_transient( $specs, $expiration = 0 ) { set_transient( $this->args['transient_name'], $specs, $expiration, ); }
/** * Read a single data source and return the read specs * * @param string $url The URL to read the specs from. * * @return array The specs that have been read from the data source. */ protected static function read_data_source( $url ) { $logger_context = array( 'source' => $url ); $logger = self::get_logger(); $response = wp_remote_get( add_query_arg( 'locale', get_user_locale(), $url ), array( 'user-agent' => 'WooCommerce/' . WC_VERSION . '; ' . home_url( '/' ), ) );
if ( is_wp_error( $response ) || ! isset( $response['body'] ) ) { $logger->error( 'Error getting data feed', $logger_context ); // phpcs:ignore $logger->error( print_r( $response, true ), $logger_context );
return array(); }
$body = $response['body']; $specs = json_decode( $body );
if ( null === $specs ) { $logger->error( 'Empty response in data feed', $logger_context );
return array(); }
if ( ! is_array( $specs ) ) { $logger->error( 'Data feed is not an array', $logger_context );
return array(); }
return $specs; }
/** * Merge the specs. * * @param Array $specs_to_merge_in The specs to merge in to $specs. * @param Array $specs The list of specs being merged into. * @param string $url The url of the feed being merged in (for error reporting). */ protected function merge_specs( $specs_to_merge_in, &$specs, $url ) { foreach ( $specs_to_merge_in as $spec ) { if ( ! $this->validate_spec( $spec, $url ) ) { continue; }
$id = $this->get_spec_key( $spec ); $specs[ $id ] = $spec; } }
/** * Validate the spec. * * @param object $spec The spec to validate. * @param string $url The url of the feed that provided the spec. * * @return bool The result of the validation. */ protected function validate_spec( $spec, $url ) { $logger = self::get_logger(); $logger_context = array( 'source' => $url );
if ( ! $this->get_spec_key( $spec ) ) { $logger->error( 'Spec is invalid because the id is missing in feed', $logger_context ); // phpcs:ignore $logger->error( print_r( $spec, true ), $logger_context );
return false; }
return true; } }
|