-
Notifications
You must be signed in to change notification settings - Fork 3
/
class-contextlywpkit.php
407 lines (345 loc) · 8.95 KB
/
class-contextlywpkit.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
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
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
<?php
/**
* WordPress Kit implementation.
*
* @package Contextly Related Links
* @link https://contextly.com
*/
/**
* Contextly Kit overrides.
*
* @method ContextlyWpApiTransport newApiTransport()
* @method ContextlyWpSharedSession newApiSession()
* @method ContextlyWpWidgetsEditor newWidgetsEditor()
* @method ContextlyWpOverlayPage newWpOverlayPage()
*/
class ContextlyWpKit extends ContextlyKit {
/**
* Get Kit instance.
*
* @return ContextlyWpKit
*/
public static function getInstance() {
static $instance;
if ( ! isset( $instance ) ) {
$config = self::getDefaultSettings();
$instance = new self( $config );
}
return $instance;
}
/**
* Get default Kit settings.
*
* @return ContextlyKitSettings Kit settings object.
*/
public static function getDefaultSettings() {
$config = new ContextlyKitSettings();
$config->urlPrefix = plugins_url( 'kit', __FILE__ );
if ( CONTEXTLY_MODE !== Urls::MODE_LIVE ) {
$config->mode = CONTEXTLY_MODE;
}
$options = Contextly::get_api_client_options();
$config->appID = $options['appID'];
$config->appSecret = $options['appSecret'];
$config->cdn = CONTEXTLY_CDN_VERSION;
return $config;
}
/**
* Check if this is HTTPS mode.
*
* @return bool true or false.
*/
public function isHttps() {
return CONTEXTLY_HTTPS;
}
/**
* Get Kit classes map.
*
* @return array classes map.
*/
protected function getClassesMap() {
$map = parent::getClassesMap();
$map['ApiTransport'] = 'ContextlyWpApiTransport';
$map['ApiSession'] = 'ContextlyWpSharedSession';
$map['AssetsPackage'] = 'ContextlyWpAssetsPackage';
$map['WidgetsEditor'] = 'ContextlyWpWidgetsEditor';
$map['WpOverlayPage'] = 'ContextlyWpOverlayPage';
return $map;
}
/**
* Get Kit loader.
*
* @return string loader name.
*/
public function getLoaderName() {
// We only override the loader name in dev mode.
// See ContextlyWpAssetsPackage::getJs() for live mode.
if ( $this->isDevMode() && CONTEXTLY_MOD !== false ) {
return 'mods/' . CONTEXTLY_MOD;
} else {
return 'loader';
}
}
}
/**
* Assets package.
*
* Class ContextlyWpAssetsPackage
*/
class ContextlyWpAssetsPackage extends ContextlyKitAssetsPackage {
/**
* Get JS files.
*
* @return array array of files.
*/
public function getJs() {
$js = parent::getJs();
// Since we don't ship aggregated mod configs and can't use the modified loader
// package, have to replace the asset itself.
if ( $this->kit->isLiveMode() && CONTEXTLY_MOD !== false ) {
foreach ( $js as &$name ) {
if ( 'loader' === $name ) {
$name = 'mods--' . CONTEXTLY_MOD;
}
}
unset( $name );
}
return $js;
}
}
/**
* API implementation in WordPress.
*
* Class ContextlyWpApiTransport
*/
class ContextlyWpApiTransport implements ContextlyKitApiTransportInterface {
/**
* Performs the HTTP request.
*
* @param string $method "GET" or "POST".
* @param string $url Request URL.
* @param array $query GET query parameters.
* @param array $data POST data.
* @param array $headers List of headers.
*
* @return ContextlyKitApiResponse response object.
*/
public function request( $method, $url, $query = array(), $data = array(), $headers = array() ) {
// Add query to the URL.
if ( ! empty( $query ) ) {
$url = add_query_arg( $query, $url );
}
$result = wp_remote_request(
$url, array(
'timeout' => 40,
'method' => $method,
'body' => $data,
'headers' => $headers,
'sslverify' => FALSE
)
);
// Build the response for the kit.
$response = new ContextlyKitApiResponse();
if ( is_wp_error( $result ) ) {
$response->code = -1;
$response->error = $result->get_error_message();
} else {
$response->code = $result['response']['code'];
$response->body = wp_remote_retrieve_body( $result );
}
return $response;
}
}
/**
* Session implementation.
*
* Class ContextlyWpSharedSession
*/
class ContextlyWpSharedSession extends ContextlyKitBase implements ContextlyKitApiSessionInterface {
const TOKEN_OPTION_NAME = 'contextly_access_token';
/**
* Token.
*
* @var ContextlyKitApiTokenEmpty|mixed|void
*/
protected $token;
/**
* Default constructor.
*
* ContextlyWpSharedSession constructor.
*
* @param ContextlyWpKit $kit Kit instance.
*/
public function __construct( $kit ) {
parent::__construct( $kit );
$this->token = $this->loadSharedToken();
}
/**
* Load API token.
*
* @return ContextlyKitApiTokenEmpty|mixed|void
*/
public function loadSharedToken() {
$cached = get_option( self::TOKEN_OPTION_NAME );
if ( ! $cached ) {
return $this->kit->newApiTokenEmpty();
} else {
return $cached;
}
}
/**
* Save token implementation.
*
* @param ContextlyKitApiTokenInterface $token token.
*/
public function saveSharedToken( $token ) {
update_option( self::TOKEN_OPTION_NAME, $token );
}
/**
* Remove token.
*/
public function removeSharedToken() {
delete_option( self::TOKEN_OPTION_NAME );
}
/**
* Clear token.
*/
public function cleanupToken() {
$this->token = $this->kit->newApiTokenEmpty();
$this->removeSharedToken();
}
/**
* Set token
*
* @param ContextlyKitApiTokenInterface $token token.
*/
public function setToken( $token ) {
$this->token = $token;
$this->saveSharedToken( $token );
}
/**
* Get token.
*
* @return ContextlyKitApiTokenEmpty|ContextlyKitApiTokenInterface|mixed|void
*/
public function getToken() {
return $this->token;
}
}
/**
* Handles the page required for the overlay dialogs.
*
* @property ContextlyWpKit $kit
*/
class ContextlyWpOverlayPage extends ContextlyKitBase {
const MENU_KEY = 'contextly_overlay_dialog';
/**
* Add menu stuff.
*/
public function addMenuAction() {
add_action( 'admin_menu', array( $this, 'registerPage' ) );
}
/**
* Register page.
*/
public function registerPage() {
// Register back-end callback without adding it to the menu.
add_submenu_page( '', '', '', 'edit_posts', self::MENU_KEY, array( $this, 'display' ) );
}
/**
* Display editor stuff.
*/
public function display() {
global $contextly;
if ( isset( $_GET['editor-type'] ) ) { // WPCS: CSRF ok. Input var okay.
$type = sanitize_text_field( wp_unslash( $_GET['editor-type'] ) ); // WPCS: CSRF ok. Input var okay.
if ( ! in_array( $type, array( 'link', 'snippet', 'sidebar' ), true ) ) {
$contextly->return404();
}
$overrides = $this->kit->newOverridesManager( $contextly->get_kit_settings_overrides() )
->compile();
print $this->kit->newOverlayDialog( $type )
->render(
array(
'loader' => $this->kit->getLoaderName(),
'code' => $overrides,
)
); // WPCS: XSS ok.
}
exit;
}
}
/**
* Widget editor stuff.
*
* Class ContextlyWpWidgetsEditor
*/
class ContextlyWpWidgetsEditor extends ContextlyKitWidgetsEditor {
/**
* Register editor AJAX actions.
*/
public function addAjaxActions() {
add_action( 'wp_ajax_contextly_widgets_editor_request', array( $this, 'handleAjaxAction' ) );
}
/**
* Handle editor AJAX action.
*/
public function handleAjaxAction() {
$result = array();
if ( isset( $_POST['post_id'] ) ) { // WPCS: CSRF ok.
$post_id = sanitize_text_field( wp_unslash( $_POST['post_id'] ) ); // WPCS: CSRF ok. Input var okay.
check_ajax_referer( "contextly-post-$post_id", 'nonce' );
if ( ! isset( $_POST['method'] ) ) { // Input var okay.
$GLOBALS['contextly']->return404();
}
$method = sanitize_text_field( wp_unslash( $_POST['method'] ) ); // Input var okay.
if ( isset( $_POST['params'] ) ) { // WPCS: CSRF ok.
$params = $this->sanitize_array( wp_unslash( $_POST['params'] ) ); // WPCS: CSRF ok. Input var okay.
} else {
$params = array();
}
$params['custom_id'] = $post_id;
try {
$result = $this->handleRequest( $method, $params );
} catch ( ContextlyKitApiException $e ) {
if ( isset( $e->getApiResult()->error_code ) && $e->getApiResult()->error_code === 413 ) {
// Access token not exists, try to remove it.
$this->kit->newApiSession()->cleanupToken();
}
if ( CONTEXTLY_MODE !== Urls::MODE_LIVE ) {
$message = (string) $e;
} else {
$message = null;
}
$GLOBALS['contextly']->return500( $message );
} catch ( Exception $e ) {
Contextly::fire_api_event( 'handleAjaxAction', wp_json_encode( $e ) );
if ( CONTEXTLY_MODE !== Urls::MODE_LIVE ) {
$message = (string) $e;
} else {
$message = null;
}
$GLOBALS['contextly']->return500( $message );
}
}
header( 'Content-Type: application/json; charset=' . get_option( 'blog_charset' ) );
echo wp_json_encode( $result );
exit;
}
/**
* Sanitize array data.
*
* @param array $array array for anitize.
* @return array sanitized array.
*/
private function sanitize_array( &$array ) {
foreach ( $array as &$value ) {
if ( ! is_array( $value ) ) {
$value = sanitize_text_field( $value );
} else {
$this->sanitize_array( $value );
}
}
return $array;
}
}