Handler.php
948 lines
| 1 | <?php |
| 2 | |
| 3 | namespace EmbedPress\Ends\Back; |
| 4 | |
| 5 | use EmbedPress\Core; |
| 6 | use EmbedPress\Ends\Handler as EndHandlerAbstract; |
| 7 | use EmbedPress\Shortcode; |
| 8 | use Embera\Embera; |
| 9 | use EmbedPress\Includes\Classes\Helper; |
| 10 | |
| 11 | (defined('ABSPATH') && defined('EMBEDPRESS_IS_LOADED')) or die("No direct script access allowed."); |
| 12 | |
| 13 | /** |
| 14 | * The admin-facing functionality of the plugin. |
| 15 | * Defines the plugin name, version, and enqueue the admin-specific stylesheets and scripts. |
| 16 | * |
| 17 | * @package EmbedPress |
| 18 | * @subpackage EmbedPress/Ends/Back |
| 19 | * @author EmbedPress <help@embedpress.com> |
| 20 | * @copyright Copyright (C) 2023 WPDeveloper. All rights reserved. |
| 21 | * @license GPLv3 or later |
| 22 | * @since 1.0.0 |
| 23 | */ |
| 24 | class Handler extends EndHandlerAbstract |
| 25 | { |
| 26 | /** |
| 27 | * Method that register all scripts for the admin area. |
| 28 | * |
| 29 | * @return void |
| 30 | * @since 1.0.0 |
| 31 | * |
| 32 | */ |
| 33 | |
| 34 | public function __construct($pluginName, $pluginVersion) |
| 35 | { |
| 36 | parent::__construct($pluginName, $pluginVersion); |
| 37 | |
| 38 | add_action('wp_ajax_delete_instagram_account', [$this, 'delete_instagram_account']); |
| 39 | // add_action('init', [$this, 'handle_instagram_data']); |
| 40 | |
| 41 | add_action('wp_ajax_get_instagram_userdata_ajax', [$this, 'get_instagram_userdata_ajax']); |
| 42 | add_action('wp_ajax_nopriv_get_instagram_userdata_ajax', [$this, 'get_instagram_userdata_ajax']); |
| 43 | |
| 44 | if (!empty($_GET['page_type']) && $_GET['page_type'] == 'calendly') { |
| 45 | add_action('init', [$this, 'handle_calendly_data']); |
| 46 | } |
| 47 | |
| 48 | if (defined('EMBEDPRESS_SL_ITEM_SLUG') && is_admin()) { |
| 49 | add_action('admin_enqueue_scripts', [$this, 'enqueueLisenceScripts']); |
| 50 | } |
| 51 | |
| 52 | add_action('wp_ajax_sync_instagram_data_ajax', [$this, 'sync_instagram_data_ajax']); |
| 53 | add_action('wp_ajax_nopriv_sync_instagram_data_ajax', [$this, 'sync_instagram_data_ajax']); |
| 54 | } |
| 55 | |
| 56 | |
| 57 | public function get_instagram_userdata_ajax() |
| 58 | { |
| 59 | |
| 60 | if (!current_user_can('manage_options')) { |
| 61 | wp_send_json_error(array('message' => 'You do not have sufficient permissions to access this functionality.')); |
| 62 | return; |
| 63 | } |
| 64 | |
| 65 | if (isset($_POST['_nonce']) && wp_verify_nonce($_POST['_nonce'], 'embedpress_elements_action')) { |
| 66 | if (isset($_POST['access_token'])) { |
| 67 | $access_token = sanitize_text_field($_POST['access_token']); |
| 68 | $account_type = sanitize_text_field($_POST['account_type']); |
| 69 | |
| 70 | $user_data = $this->get_instagram_userdata($access_token, $account_type); |
| 71 | |
| 72 | $this->handle_instagram_data($user_data); |
| 73 | |
| 74 | $access_token = sanitize_text_field($_POST['access_token']); |
| 75 | $account_type = sanitize_text_field($_POST['account_type']); |
| 76 | $user_id = $this->get_instagram_userid($access_token, $account_type); |
| 77 | |
| 78 | $option_key = 'ep_instagram_feed_data'; |
| 79 | $feed_data = get_option($option_key, array()); |
| 80 | |
| 81 | $feed_userinfo = Helper::getInstagramUserInfo($access_token, $account_type, $user_id, true); |
| 82 | $feed_posts = Helper::getInstagramPosts($access_token, $account_type, $user_id, 100, true); |
| 83 | |
| 84 | if (!empty($user_id)) { |
| 85 | $feed_data[$user_id] = [ |
| 86 | 'feed_userinfo' => $feed_userinfo, |
| 87 | 'feed_posts' => $feed_posts, |
| 88 | ]; |
| 89 | |
| 90 | delete_transient('instagram_user_info_' . $user_id); |
| 91 | delete_transient('instagram_posts_' . $user_id); |
| 92 | update_option('ep_instagram_feed_data', $feed_data); |
| 93 | } else { |
| 94 | $feed_data['error'] = "Access token Invalid or expired."; |
| 95 | } |
| 96 | |
| 97 | |
| 98 | wp_send_json($feed_data); |
| 99 | } else { |
| 100 | wp_send_json_error('Access token not provided'); |
| 101 | } |
| 102 | } else { |
| 103 | wp_send_json_error('Nonce verification failed'); |
| 104 | } |
| 105 | } |
| 106 | |
| 107 | public function sync_instagram_data_ajax() |
| 108 | { |
| 109 | if (!current_user_can('manage_options')) { |
| 110 | wp_send_json_error(array('message' => 'You do not have sufficient permissions to access this functionality.')); |
| 111 | return; |
| 112 | } |
| 113 | |
| 114 | if (isset($_POST['_nonce']) && wp_verify_nonce($_POST['_nonce'], 'embedpress_elements_action')) { |
| 115 | if (isset($_POST['access_token'])) { |
| 116 | |
| 117 | $access_token = sanitize_text_field($_POST['access_token']); |
| 118 | $account_type = sanitize_text_field($_POST['account_type']); |
| 119 | $user_id = sanitize_text_field($_POST['user_id']); |
| 120 | |
| 121 | $option_key = 'ep_instagram_feed_data'; |
| 122 | $feed_data = get_option($option_key, array()); |
| 123 | |
| 124 | $feed_userinfo = Helper::getInstagramUserInfo($access_token, $account_type, $user_id, true); |
| 125 | $feed_posts = Helper::getInstagramPosts($access_token, $account_type, $user_id, 100, true); |
| 126 | |
| 127 | $feed_data[$user_id] = [ |
| 128 | 'feed_userinfo' => $feed_userinfo, |
| 129 | 'feed_posts' => $feed_posts, |
| 130 | ]; |
| 131 | |
| 132 | delete_transient('instagram_user_info_' . $user_id); |
| 133 | delete_transient('instagram_posts_' . $user_id); |
| 134 | update_option('ep_instagram_feed_data', $feed_data); |
| 135 | |
| 136 | |
| 137 | wp_send_json($feed_data); |
| 138 | } else { |
| 139 | wp_send_json_error('Access token not provided'); |
| 140 | } |
| 141 | } else { |
| 142 | wp_send_json_error('Nonce verification failed'); |
| 143 | } |
| 144 | } |
| 145 | |
| 146 | |
| 147 | public function get_instagram_userid($access_token) |
| 148 | { |
| 149 | $response = "https://graph.facebook.com/v19.0/me/accounts?fields=connected_instagram_account{id}&access_token=$access_token"; |
| 150 | if (!is_wp_error($response)) { |
| 151 | |
| 152 | $body = wp_remote_retrieve_body($response); |
| 153 | $data = json_decode($body, true); |
| 154 | |
| 155 | // Extract the connected Instagram account ID |
| 156 | if (isset($data['data'][0]['connected_instagram_account']['id'])) { |
| 157 | return $data['data'][0]['connected_instagram_account']['id']; |
| 158 | } else { |
| 159 | return ''; |
| 160 | } |
| 161 | } else { |
| 162 | $user_data['error'] = "Error: Unable to connect to Instagram API."; |
| 163 | } |
| 164 | } |
| 165 | |
| 166 | public function get_instagram_profile_picture($access_token, $userid) |
| 167 | { } |
| 168 | |
| 169 | public function get_instagram_user_id($access_token, $account_type) |
| 170 | { |
| 171 | // Check if user data is already cached |
| 172 | $user_id = get_transient('instagram_user_id_' . $access_token); |
| 173 | |
| 174 | if (!$user_id) { |
| 175 | $user_id = array(); |
| 176 | |
| 177 | if ($account_type == 'personal') { |
| 178 | $response = wp_remote_get('https://graph.instagram.com/me?fields=id,username,account_type&access_token=' . $access_token); |
| 179 | } else { |
| 180 | $response = wp_remote_get('https://graph.facebook.com/v19.0/me/accounts?fields=connected_instagram_account{id,name,username,followers_count}&access_token=' . $access_token); |
| 181 | } |
| 182 | |
| 183 | |
| 184 | if (!is_wp_error($response)) { |
| 185 | |
| 186 | $body = wp_remote_retrieve_body($response); |
| 187 | $data = json_decode($body, true); |
| 188 | |
| 189 | if ($account_type == 'personal') { |
| 190 | |
| 191 | if (isset($data['id']) && isset($data['username'])) { |
| 192 | return $data['id']; |
| 193 | |
| 194 | set_transient('instagram_user_id_' . $access_token, $data['id'], HOUR_IN_SECONDS); |
| 195 | return $data['id']; |
| 196 | } else { |
| 197 | $data['error'] = "Access token Invalid or expired."; |
| 198 | } |
| 199 | } else { |
| 200 | if (isset($data['data'][0]['connected_instagram_account']['id']) && isset($data['data'][0]['connected_instagram_account']['username'])) { |
| 201 | set_transient('instagram_user_id_' . $access_token, $data['data'][0]['connected_instagram_account']['id'], HOUR_IN_SECONDS); |
| 202 | return $data['data'][0]['connected_instagram_account']['id']; |
| 203 | } else { |
| 204 | $data['error'] = "Access token Invalid or expired."; |
| 205 | } |
| 206 | } |
| 207 | } else { |
| 208 | $data['error'] = "Error: Unable to connect to Instagram API."; |
| 209 | } |
| 210 | } |
| 211 | |
| 212 | return $data; |
| 213 | } |
| 214 | |
| 215 | public function get_instagram_userdata($access_token, $account_type) |
| 216 | { |
| 217 | // Check if user data is already cached |
| 218 | $user_data = get_transient('instagram_user_data_' . $access_token); |
| 219 | |
| 220 | if (!$user_data) { |
| 221 | $user_data = array(); |
| 222 | |
| 223 | if ($account_type == 'personal') { |
| 224 | $response = wp_remote_get('https://graph.instagram.com/me?fields=id,username,account_type&access_token=' . $access_token); |
| 225 | } else { |
| 226 | $response = wp_remote_get('https://graph.facebook.com/v19.0/me/accounts?fields=connected_instagram_account{id,name,username,followers_count}&access_token=' . $access_token); |
| 227 | } |
| 228 | |
| 229 | |
| 230 | if (!is_wp_error($response)) { |
| 231 | |
| 232 | $body = wp_remote_retrieve_body($response); |
| 233 | $data = json_decode($body, true); |
| 234 | |
| 235 | if ($account_type == 'personal') { |
| 236 | |
| 237 | if (isset($data['id']) && isset($data['username'])) { |
| 238 | $user_data['access_token'] = $access_token; |
| 239 | $user_data['user_id'] = $data['id']; |
| 240 | $user_data['username'] = $data['username']; |
| 241 | $user_data['account_type'] = $account_type; |
| 242 | |
| 243 | set_transient('instagram_user_data_' . $access_token, $user_data, HOUR_IN_SECONDS); |
| 244 | } else { |
| 245 | $user_data['error'] = "Access token Invalid or expired."; |
| 246 | } |
| 247 | } else { |
| 248 | if (isset($data['data'][0]['connected_instagram_account']['id']) && isset($data['data'][0]['connected_instagram_account']['username'])) { |
| 249 | $user_data['access_token'] = $access_token; |
| 250 | $user_data['user_id'] = $data['data'][0]['connected_instagram_account']['id']; // Assuming 'id' refers to Facebook account ID |
| 251 | $user_data['instagram_id'] = $data['data'][0]['connected_instagram_account']['id']; |
| 252 | $user_data['username'] = $data['data'][0]['connected_instagram_account']['username']; |
| 253 | $user_data['account_type'] = $account_type; |
| 254 | |
| 255 | set_transient('instagram_user_data_' . $access_token, $user_data, HOUR_IN_SECONDS); |
| 256 | } else { |
| 257 | $user_data['error'] = "Access token Invalid or expired."; |
| 258 | } |
| 259 | } |
| 260 | } else { |
| 261 | $user_data['error'] = "Error: Unable to connect to Instagram API."; |
| 262 | } |
| 263 | } |
| 264 | |
| 265 | return $user_data; |
| 266 | } |
| 267 | |
| 268 | |
| 269 | |
| 270 | |
| 271 | public function handle_instagram_data($user_data) |
| 272 | { |
| 273 | if (empty($user_data['error'])) { |
| 274 | $user_id = isset($user_data['user_id']) ? $user_data['user_id'] : ''; |
| 275 | $username = isset($user_data['username']) ? $user_data['username'] : ''; |
| 276 | $account_type = isset($user_data['account_type']) ? $user_data['account_type'] : ''; |
| 277 | $access_token = isset($user_data['access_token']) ? $user_data['access_token'] : ''; |
| 278 | |
| 279 | $get_instagram_data = get_option('ep_instagram_account_data'); |
| 280 | |
| 281 | $token_data = [ |
| 282 | [ |
| 283 | 'user_id' => $user_id, |
| 284 | 'username' => $username, |
| 285 | 'account_type' => $account_type, |
| 286 | 'access_token' => $access_token, |
| 287 | ] |
| 288 | ]; |
| 289 | |
| 290 | if (!empty($get_instagram_data)) { |
| 291 | $updated = false; |
| 292 | |
| 293 | foreach ($get_instagram_data as &$data) { |
| 294 | |
| 295 | if ($data['user_id'] === $user_id) { |
| 296 | |
| 297 | // If user_id matches, update the data |
| 298 | $data['username'] = $username; |
| 299 | $data['account_type'] = $account_type; |
| 300 | $data['access_token'] = $access_token; |
| 301 | |
| 302 | $updated = true; |
| 303 | break; |
| 304 | } |
| 305 | } |
| 306 | |
| 307 | if (!$updated) { |
| 308 | // If user_id does not exist, add new data |
| 309 | $get_instagram_data[] = $token_data[0]; |
| 310 | } |
| 311 | } else { |
| 312 | // If $get_instagram_data is empty, add the new data directly |
| 313 | $get_instagram_data = $token_data; |
| 314 | } |
| 315 | |
| 316 | update_option('ep_instagram_account_data', $get_instagram_data); |
| 317 | |
| 318 | wp_redirect(admin_url('admin.php?page=embedpress&page_type=instagram'), 301); |
| 319 | |
| 320 | exit(); |
| 321 | } |
| 322 | } |
| 323 | |
| 324 | public function handle_calendly_data() |
| 325 | { |
| 326 | |
| 327 | if (empty($_GET['_nonce'])) { |
| 328 | return false; |
| 329 | } |
| 330 | |
| 331 | $verify = wp_verify_nonce($_GET['_nonce'], 'calendly_nonce'); |
| 332 | |
| 333 | // Check if access_token or calendly_status is present and nonce is invalid |
| 334 | if (!$verify) { |
| 335 | echo esc_html__('Invalid nonce', 'embedpress'); |
| 336 | die; |
| 337 | } |
| 338 | |
| 339 | if ((!empty($_GET['_nonce']) && $verify) && (!empty($_GET['access_token']) && isset($_GET['page_type']) && $_GET['page_type'] == 'calendly') || (isset($_GET['calendly_status']) && ($_GET['calendly_status'] == 'sync' || $_GET['calendly_status'] == 'connect'))) { |
| 340 | |
| 341 | if ($_GET['calendly_status'] === 'connect') { |
| 342 | update_option('is_calendly_connected', true); |
| 343 | } |
| 344 | |
| 345 | if (isset($_GET['access_token']) && !empty($_GET['access_token'])) { |
| 346 | $access_token = $_GET['access_token']; |
| 347 | $refresh_token = $_GET['refresh_token']; |
| 348 | $expires_in = $_GET['expires_in']; |
| 349 | $created_at = $_GET['created_at']; |
| 350 | } elseif (isset($_GET['calendly_status']) && ($_GET['calendly_status'] == 'sync' || $_GET['calendly_status'] == 'connect')) { |
| 351 | $token_data = get_option('calendly_tokens'); |
| 352 | $access_token = $token_data['access_token']; |
| 353 | $refresh_token = $token_data['refresh_token']; |
| 354 | $expires_in = $token_data['expires_in']; |
| 355 | $created_at = $token_data['created_at']; |
| 356 | } |
| 357 | |
| 358 | |
| 359 | // Create an array to store the tokens and expiration time |
| 360 | $token_data = array( |
| 361 | 'access_token' => $access_token, |
| 362 | 'refresh_token' => $refresh_token, |
| 363 | 'expires_in' => $expires_in, |
| 364 | 'created_at' => $created_at |
| 365 | ); |
| 366 | |
| 367 | // Save the serialized data in a single option key |
| 368 | update_option('calendly_tokens', $token_data); |
| 369 | |
| 370 | $user_info = json_decode(Helper::getCalendlyUserInfo($access_token), true); |
| 371 | |
| 372 | if (!empty($user_info['resource']['uri'])) { |
| 373 | $event_types = Helper::getCalaendlyEventTypes($user_info['resource']['uri'], $access_token); |
| 374 | $scheduled_events = Helper::getCalaendlyScheduledEvents($user_info['resource']['uri'], $access_token); |
| 375 | |
| 376 | $invite_list = []; |
| 377 | |
| 378 | if (is_array($scheduled_events['collection'])) { |
| 379 | foreach ($scheduled_events['collection'] as $event) : |
| 380 | $uuid = Helper::getCalendlyUuid($event['uri']); |
| 381 | $invite_list[$uuid] = Helper::getListEventInvitee($uuid, $access_token); |
| 382 | endforeach; |
| 383 | } |
| 384 | |
| 385 | update_option('calendly_user_info', $user_info); |
| 386 | |
| 387 | if (!apply_filters('embedpress/is_allow_rander', false)) { |
| 388 | update_option('calendly_event_types', []); |
| 389 | update_option('calendly_scheduled_events', []); |
| 390 | update_option('calendly_invitees_list', []); |
| 391 | } else { |
| 392 | do_action('embedepress/calendly_event_data', $event_types, $scheduled_events, $invite_list); |
| 393 | } |
| 394 | |
| 395 | } |
| 396 | |
| 397 | wp_redirect(admin_url('admin.php?page=embedpress&page_type=calendly'), 302); |
| 398 | exit(); |
| 399 | } |
| 400 | } |
| 401 | |
| 402 | public function enqueueScripts() |
| 403 | { |
| 404 | global $pagenow; |
| 405 | if ('post.php' === $pagenow || 'post-new.php' === $pagenow) { |
| 406 | $urlSchemes = apply_filters('embedpress:getAdditionalURLSchemes', $this->getUrlSchemes()); |
| 407 | |
| 408 | wp_enqueue_script( |
| 409 | 'embedpress-pdfobject', |
| 410 | EMBEDPRESS_URL_ASSETS . 'js/pdfobject.js', |
| 411 | [], |
| 412 | $this->pluginVersion, |
| 413 | false |
| 414 | ); |
| 415 | |
| 416 | wp_enqueue_script("bootbox-bootstrap", EMBEDPRESS_URL_ASSETS . 'js/vendor/bootstrap/bootstrap.min.js', ['jquery'], $this->pluginVersion, false); |
| 417 | wp_enqueue_script("bootbox", EMBEDPRESS_URL_ASSETS . 'js/vendor/bootbox.min.js', ['jquery', 'bootbox-bootstrap'], $this->pluginVersion, true); |
| 418 | wp_enqueue_script($this->pluginName, EMBEDPRESS_URL_ASSETS . 'js/preview.js', ['jquery', 'bootbox'], $this->pluginVersion, true); |
| 419 | |
| 420 | |
| 421 | wp_localize_script($this->pluginName, '$data', [ |
| 422 | 'previewSettings' => [ |
| 423 | 'baseUrl' => get_site_url() . '/', |
| 424 | 'versionUID' => $this->pluginVersion, |
| 425 | 'debug' => true, |
| 426 | ], |
| 427 | 'EMBEDPRESS_SHORTCODE' => EMBEDPRESS_SHORTCODE, |
| 428 | 'EMBEDPRESS_URL_ASSETS' => EMBEDPRESS_URL_ASSETS, |
| 429 | 'urlSchemes' => $urlSchemes, |
| 430 | ]); |
| 431 | } |
| 432 | |
| 433 | if ('post.php' === $pagenow || 'post-new.php' === $pagenow) { |
| 434 | wp_enqueue_script( |
| 435 | 'plyr.polyfilled', |
| 436 | EMBEDPRESS_URL_ASSETS . 'js/plyr.polyfilled.js', |
| 437 | [], |
| 438 | $this->pluginVersion, |
| 439 | false |
| 440 | ); |
| 441 | wp_enqueue_script( |
| 442 | 'gutenberg-general', |
| 443 | EMBEDPRESS_URL_ASSETS . 'js/gutneberg-script.js', |
| 444 | ['wp-data'], |
| 445 | $this->pluginVersion, |
| 446 | false |
| 447 | ); |
| 448 | |
| 449 | |
| 450 | wp_enqueue_style('plyr', EMBEDPRESS_URL_ASSETS . 'css/plyr.css', array(), $this->pluginVersion); |
| 451 | wp_enqueue_style($this->pluginName, EMBEDPRESS_URL_ASSETS . 'css/embedpress.css', array(), $this->pluginVersion); |
| 452 | |
| 453 | |
| 454 | wp_enqueue_script( |
| 455 | 'cg-carousel', |
| 456 | EMBEDPRESS_URL_ASSETS . 'js/carousel.min.js', |
| 457 | ['jquery'], |
| 458 | $this->pluginVersion, |
| 459 | false |
| 460 | ); |
| 461 | wp_enqueue_script( |
| 462 | 'init-carousel', |
| 463 | EMBEDPRESS_URL_ASSETS . 'js/initCarousel.js', |
| 464 | ['jquery', 'cg-carousel'], |
| 465 | $this->pluginVersion, |
| 466 | false |
| 467 | ); |
| 468 | |
| 469 | wp_enqueue_style('cg-carousel', EMBEDPRESS_URL_ASSETS . 'css/carousel.min.css', $this->pluginVersion, true); |
| 470 | |
| 471 | wp_enqueue_style($this->pluginName, EMBEDPRESS_URL_ASSETS . 'css/embedpress.css', $this->pluginVersion, true); |
| 472 | } |
| 473 | |
| 474 | //load embedpress admin js |
| 475 | |
| 476 | wp_enqueue_script( |
| 477 | 'embedpress-admin', |
| 478 | EMBEDPRESS_URL_ASSETS . 'js/admin.js', |
| 479 | ['jquery', 'wp-i18n', 'wp-url'], |
| 480 | $this->pluginVersion, |
| 481 | true |
| 482 | ); |
| 483 | |
| 484 | wp_localize_script($this->pluginName, 'EMBEDPRESS_ADMIN_PARAMS', [ |
| 485 | 'ajaxurl' => admin_url('admin-ajax.php'), |
| 486 | 'nonce' => wp_create_nonce('embedpress') |
| 487 | ]); |
| 488 | |
| 489 | |
| 490 | $installedPlugins = Core::getPlugins(); |
| 491 | if (count($installedPlugins) > 0) { |
| 492 | foreach ($installedPlugins as $plgSlug => $plgNamespace) { |
| 493 | $plgScriptPathRelative = "assets/js/embedpress.{$plgSlug}.js"; |
| 494 | $plgName = "embedpress-{$plgSlug}"; |
| 495 | |
| 496 | if (file_exists(WP_PLUGIN_DIR . "/{$plgName}/{$plgScriptPathRelative}")) { |
| 497 | wp_enqueue_script( |
| 498 | $plgName, |
| 499 | plugins_url($plgName) . '/' . $plgScriptPathRelative, |
| 500 | [$this->pluginName], |
| 501 | $this->pluginVersion, |
| 502 | true |
| 503 | ); |
| 504 | } |
| 505 | } |
| 506 | } |
| 507 | } |
| 508 | |
| 509 | public function enqueueLisenceScripts() |
| 510 | { |
| 511 | wp_enqueue_script( |
| 512 | 'embedpress-lisence', |
| 513 | EMBEDPRESS_URL_ASSETS . 'js/license.js', |
| 514 | ['jquery', 'wp-i18n', 'wp-url'], |
| 515 | $this->pluginVersion, |
| 516 | true |
| 517 | ); |
| 518 | |
| 519 | wp_localize_script('embedpress-lisence', 'wpdeveloperLicenseManagerNonce', array('embedpress_lisence_nonce' => wp_create_nonce('wpdeveloper_sl_' . EMBEDPRESS_SL_ITEM_ID . '_nonce'))); |
| 520 | } |
| 521 | |
| 522 | |
| 523 | /** |
| 524 | * Method that register all stylesheets for the admin area. |
| 525 | * |
| 526 | * @return void |
| 527 | * @since 1.0.0 |
| 528 | * @static |
| 529 | * |
| 530 | */ |
| 531 | public static function enqueueStyles() |
| 532 | { |
| 533 | if (isset($_GET['page']) && 'embedpress' === $_GET['page']) { |
| 534 | wp_enqueue_style('embedpress-admin', plugins_url('embedpress/assets/css/admin.css')); |
| 535 | } |
| 536 | } |
| 537 | |
| 538 | /** |
| 539 | * Method that receive a string via AJAX and return the decoded-shortcoded-version of that string. |
| 540 | * |
| 541 | * @return void |
| 542 | * @since 1.0.0 |
| 543 | * |
| 544 | */ |
| 545 | public function doShortcodeReceivedViaAjax() |
| 546 | { |
| 547 | $subject = isset($_POST['subject']) ? $_POST['subject'] : ""; |
| 548 | |
| 549 | $response = [ |
| 550 | 'data' => Shortcode::parseContent($subject, true), |
| 551 | ]; |
| 552 | |
| 553 | header('Content-Type:application/json;charset=UTF-8'); |
| 554 | echo json_encode($response); |
| 555 | |
| 556 | exit(); |
| 557 | } |
| 558 | |
| 559 | /** |
| 560 | * Method that receive an url via AJAX and return the info about that url/embed. |
| 561 | * |
| 562 | * @return void |
| 563 | * @since 1.0.0 |
| 564 | * |
| 565 | */ |
| 566 | public function getUrlInfoViaAjax() |
| 567 | { |
| 568 | $url = isset($_GET['url']) ? trim($_GET['url']) : ""; |
| 569 | |
| 570 | $response = [ |
| 571 | 'url' => $url, |
| 572 | 'canBeResponsive' => false, |
| 573 | ]; |
| 574 | |
| 575 | if (!!strlen($response['url'])) { |
| 576 | |
| 577 | $additionalServiceProviders = Core::getAdditionalServiceProviders(); |
| 578 | if (!empty($additionalServiceProviders)) { |
| 579 | foreach ($additionalServiceProviders as $serviceProviderClassName => $serviceProviderUrls) { |
| 580 | Shortcode::addServiceProvider($serviceProviderClassName, $serviceProviderUrls); |
| 581 | } |
| 582 | } |
| 583 | $embera = new Embera([], Shortcode::get_collection()); |
| 584 | |
| 585 | $urlInfo = $embera->getUrlData($response['url']); |
| 586 | if (isset($urlInfo[$response['url']]) && $urlInfo[$response['url']]['provider_name']) { |
| 587 | $response['canBeResponsive'] = Core::canServiceProviderBeResponsive(strtolower($urlInfo[$response['url']]['provider_name'])); |
| 588 | } |
| 589 | } |
| 590 | |
| 591 | header('Content-Type:application/json;charset=UTF-8'); |
| 592 | echo json_encode($response); |
| 593 | |
| 594 | exit(); |
| 595 | } |
| 596 | |
| 597 | /** |
| 598 | * Returns a list of supported URL schemes for the preview script |
| 599 | * |
| 600 | * @return array |
| 601 | */ |
| 602 | public function getUrlSchemes() |
| 603 | { |
| 604 | return [ |
| 605 | // Apple podcasts |
| 606 | 'podcasts.apple.com/*', |
| 607 | // PollDaddy |
| 608 | '*.polldaddy.com/s/*', |
| 609 | '*.polldaddy.com/poll/*', |
| 610 | '*.polldaddy.com/ratings/*', |
| 611 | 'polldaddy.com/s/*', |
| 612 | 'polldaddy.com/poll/*', |
| 613 | 'polldaddy.com/ratings/*', |
| 614 | |
| 615 | // VideoPress |
| 616 | 'videopress.com/v/*', |
| 617 | |
| 618 | // Tumblr |
| 619 | '*.tumblr.com/post/*', |
| 620 | |
| 621 | // SmugMug |
| 622 | 'smugmug.com/*', |
| 623 | '*.smugmug.com/*', |
| 624 | |
| 625 | // SlideShare |
| 626 | 'slideshare.net/*/*', |
| 627 | '*.slideshare.net/*/*', |
| 628 | |
| 629 | |
| 630 | 'reddit.com/r/[^/]+/comments/*', |
| 631 | |
| 632 | // Photobucket |
| 633 | 'i*.photobucket.com/albums/*', |
| 634 | 'gi*.photobucket.com/groups/*', |
| 635 | |
| 636 | // Cloudup |
| 637 | 'cloudup.com/*', |
| 638 | |
| 639 | // Imgur |
| 640 | 'imgur.com/*', |
| 641 | 'i.imgur.com/*', |
| 642 | |
| 643 | // YouTube (http://www.youtube.com/) |
| 644 | 'youtube.com/watch\\?*', |
| 645 | 'youtube.com/playlist\\?*', |
| 646 | 'youtube.com/channel/*', |
| 647 | 'youtube.com/c/*', |
| 648 | 'youtube.com/user/*', |
| 649 | 'youtube.com/(\w+)[^?\/]*$', |
| 650 | |
| 651 | // opensea |
| 652 | 'opensea.io/collection/*', |
| 653 | |
| 654 | // Flickr (http://www.flickr.com/) |
| 655 | 'flickr.com/photos/*/*', |
| 656 | 'flic.kr/p/*', |
| 657 | |
| 658 | // Viddler (http://www.viddler.com/) |
| 659 | 'viddler.com/v/*', |
| 660 | |
| 661 | // Hulu (http://www.hulu.com/) |
| 662 | 'hulu.com/watch/*', |
| 663 | |
| 664 | // Vimeo (http://vimeo.com/) |
| 665 | 'vimeo.com/*', |
| 666 | 'vimeo.com/groups/*/videos/*', |
| 667 | |
| 668 | // CollegeHumor (http://www.collegehumor.com/) |
| 669 | 'collegehumor.com/video/*', |
| 670 | |
| 671 | // Deviantart.com (http://www.deviantart.com) |
| 672 | '*.deviantart.com/art/*', |
| 673 | '*.deviantart.com/*#/d*', |
| 674 | 'fav.me/*', |
| 675 | 'sta.sh/*', |
| 676 | |
| 677 | // SlideShare (http://www.slideshare.net/) |
| 678 | |
| 679 | // chirbit.com (http://www.chirbit.com/) |
| 680 | 'chirb.it/*', |
| 681 | |
| 682 | // nfb.ca (http://www.nfb.ca/) |
| 683 | '*.nfb.ca/film/*', |
| 684 | |
| 685 | // Scribd (http://www.scribd.com/) |
| 686 | '*.scribd.com/doc/*', |
| 687 | '*.scribd.com/document/*', |
| 688 | |
| 689 | // Dotsub (http://dotsub.com/) |
| 690 | 'dotsub.com/view/*', |
| 691 | |
| 692 | // Animoto (http://animoto.com/) |
| 693 | 'animoto.com/play/*', |
| 694 | |
| 695 | // Rdio (http://rdio.com/) |
| 696 | '*.rdio.com/artist/*', |
| 697 | '*.rdio.com/people/*', |
| 698 | |
| 699 | // MixCloud (http://mixcloud.com/) |
| 700 | 'mixcloud.com/*/*/', |
| 701 | |
| 702 | // FunnyOrDie (http://www.funnyordie.com/) |
| 703 | 'funnyordie.com/videos/*', |
| 704 | |
| 705 | // Ted (http://ted.com) |
| 706 | 'ted.com/talks/*', |
| 707 | |
| 708 | // Sapo Videos (http://videos.sapo.pt) |
| 709 | 'videos.sapo.pt/*', |
| 710 | |
| 711 | // Official FM (http://official.fm) |
| 712 | 'official.fm/tracks/*', |
| 713 | 'official.fm/playlists/*', |
| 714 | |
| 715 | // HuffDuffer (http://huffduffer.com) |
| 716 | 'huffduffer.com/*/*', |
| 717 | |
| 718 | // Shoudio (http://shoudio.com) |
| 719 | 'shoudio.com/*', |
| 720 | 'shoud.io/*', |
| 721 | |
| 722 | // Moby Picture (http://www.mobypicture.com) |
| 723 | 'mobypicture.com/user/*/view/*', |
| 724 | 'moby.to/*', |
| 725 | |
| 726 | // 23HQ (http://www.23hq.com) |
| 727 | '23hq.com/*/photo/*', |
| 728 | |
| 729 | // Cacoo (https://cacoo.com) |
| 730 | 'cacoo.com/diagrams/*', |
| 731 | |
| 732 | // Dipity (http://www.dipity.com) |
| 733 | 'dipity.com/*/*/', |
| 734 | |
| 735 | // Roomshare (http://roomshare.jp) |
| 736 | 'roomshare.jp/post/*', |
| 737 | 'roomshare.jp/en/post/*', |
| 738 | |
| 739 | // Dailymotion (http://www.dailymotion.com) |
| 740 | 'dailymotion.com/video/*', |
| 741 | |
| 742 | // Crowd Ranking (http://crowdranking.com) |
| 743 | 'c9ng.com/*/*', |
| 744 | |
| 745 | // CircuitLab (https://www.circuitlab.com/) |
| 746 | 'circuitlab.com/circuit/*', |
| 747 | |
| 748 | // Coub (http://coub.com/) |
| 749 | 'coub.com/view/*', |
| 750 | 'coub.com/embed/*', |
| 751 | |
| 752 | // SpeakerDeck (https://speakerdeck.com) |
| 753 | 'speakerdeck.com/*/*', |
| 754 | |
| 755 | // Instagram (https://instagram.com) |
| 756 | 'instagram.com/p/*', |
| 757 | 'instagr.am/p/*', |
| 758 | |
| 759 | // SoundCloud (http://soundcloud.com/) |
| 760 | 'soundcloud.com/*', |
| 761 | |
| 762 | // Kickstarter (http://www.kickstarter.com) |
| 763 | 'kickstarter.com/projects/*', |
| 764 | |
| 765 | // Ustream (http://www.ustream.tv) |
| 766 | '*.ustream.tv/*', |
| 767 | '*.ustream.com/*', |
| 768 | |
| 769 | // Daily Mile (http://www.dailymile.com) |
| 770 | 'dailymile.com/people/*/entries/*', |
| 771 | |
| 772 | // Sketchfab (http://sketchfab.com) |
| 773 | 'sketchfab.com/models/*', |
| 774 | 'sketchfab.com/*/folders/*', |
| 775 | |
| 776 | // Meetup (http://www.meetup.com) |
| 777 | 'meetup.com/*', |
| 778 | 'meetu.ps/*', |
| 779 | |
| 780 | // AudioSnaps (http://audiosnaps.com) |
| 781 | 'audiosnaps.com/k/*', |
| 782 | |
| 783 | // RapidEngage (https://rapidengage.com) |
| 784 | 'rapidengage.com/s/*', |
| 785 | |
| 786 | // Getty Images (http://www.gettyimages.com/) |
| 787 | 'gty.im/*', |
| 788 | 'gettyimages.com/detail/photo/*', |
| 789 | |
| 790 | // amCharts Live Editor (http://live.amcharts.com/) |
| 791 | 'live.amcharts.com/*', |
| 792 | |
| 793 | // Infogram (https://infogr.am/) |
| 794 | 'infogr.am/*', |
| 795 | 'infogram.com/*', |
| 796 | |
| 797 | // ChartBlocks (http://www.chartblocks.com/) |
| 798 | 'public.chartblocks.com/c/*', |
| 799 | |
| 800 | // ReleaseWire (http://www.releasewire.com/) |
| 801 | 'rwire.com/*', |
| 802 | |
| 803 | // ShortNote (https://www.shortnote.jp/) |
| 804 | 'shortnote.jp/view/notes/*', |
| 805 | |
| 806 | // EgliseInfo (http://egliseinfo.catholique.fr/) |
| 807 | 'egliseinfo.catholique.fr/*', |
| 808 | |
| 809 | // Silk (http://www.silk.co/) |
| 810 | '*.silk.co/explore/*', |
| 811 | '*.silk.co/s/embed/*', |
| 812 | |
| 813 | |
| 814 | 'twitter.com/*/status/*', |
| 815 | 'twitter.com/i/moments/*', |
| 816 | 'twitter.com/*/timelines/*', |
| 817 | |
| 818 | // http://bambuser.com |
| 819 | 'bambuser.com/v/*', |
| 820 | |
| 821 | // https://clyp.it |
| 822 | 'clyp.it/*', |
| 823 | |
| 824 | // https://gist.github.com |
| 825 | 'gist.github.com/*/*', |
| 826 | |
| 827 | // http://issuu.com |
| 828 | 'issuu.com/*', |
| 829 | |
| 830 | // https://portfolium.com |
| 831 | 'portfolium.com/*', |
| 832 | |
| 833 | // https://www.reverbnation.com |
| 834 | 'reverbnation.com/*', |
| 835 | |
| 836 | // http://rutube.ru |
| 837 | 'rutube.ru/video/*', |
| 838 | |
| 839 | // https://spotify.com/ |
| 840 | 'open.spotify.com/*', |
| 841 | |
| 842 | // http://www.videojug.com |
| 843 | 'videojug.com/*', |
| 844 | |
| 845 | // https://vine.com |
| 846 | 'vine.co/v/*', |
| 847 | |
| 848 | |
| 849 | 'facebook.com/*', |
| 850 | 'fb.watch/*', |
| 851 | |
| 852 | // Google Shortened Url |
| 853 | 'goo.gl/*', |
| 854 | |
| 855 | // Google Maps |
| 856 | 'google.com/*', |
| 857 | 'google.com.*/*', |
| 858 | 'google.co.*/*', |
| 859 | 'maps.google.com/*', |
| 860 | |
| 861 | // Google Docs |
| 862 | 'docs.google.com/presentation/*', |
| 863 | 'docs.google.com/document/*', |
| 864 | 'docs.google.com/spreadsheets/*', |
| 865 | 'docs.google.com/forms/*', |
| 866 | 'docs.google.com/drawings/*', |
| 867 | |
| 868 | // Twitch.tv |
| 869 | '*.twitch.tv/*', |
| 870 | 'twitch.tv/*', |
| 871 | |
| 872 | // Giphy |
| 873 | '*.giphy.com/gifs/*', |
| 874 | 'giphy.com/gifs/*', |
| 875 | 'i.giphy.com/*', |
| 876 | 'gph.is/*', |
| 877 | |
| 878 | // Wistia |
| 879 | '*.wistia.com/medias/*', |
| 880 | 'fast.wistia.com/embed/medias/*.jsonp', |
| 881 | // Boomplay (http://boomplay.com/) |
| 882 | 'boomplay.com/*', |
| 883 | 'codepen.io/*', |
| 884 | 'archivos.digital/*', |
| 885 | 'audioclip.naver.com/*', |
| 886 | 'app.blogcast.host/*', |
| 887 | 'codepoints.net/*', |
| 888 | 'codesandbox.io/*', |
| 889 | 'commaful.com/*', |
| 890 | '*.survey.fm/*', |
| 891 | 'survey.fm/*', |
| 892 | 'datawrapper.dwcdn.net/*', |
| 893 | '*.didacte.com/*', |
| 894 | 'didacte.com/*', |
| 895 | 'digiteka.com/*', |
| 896 | 'docdro.id/*', |
| 897 | 'edumedia-sciences.com/*', |
| 898 | 'ethfiddle.com/*', |
| 899 | 'eyrie.io/*', |
| 900 | '*.getfader.com/*', |
| 901 | 'getfader.com/*', |
| 902 | 'fitapp.pro/*', |
| 903 | 'fite.tv/*', |
| 904 | 'public.flourish.studio/*', |
| 905 | 'geograph.org.gg/*', |
| 906 | 'geo-en.hlipp.de/*', |
| 907 | 'geograph.org.uk/*', |
| 908 | 'fortest.getshow.io/*', |
| 909 | 'opensea.io/assets/*', |
| 910 | ]; |
| 911 | } |
| 912 | |
| 913 | public function delete_instagram_account() |
| 914 | { |
| 915 | if (!current_user_can('manage_options')) { |
| 916 | wp_send_json_error(array('message' => 'You do not have sufficient permissions to access this functionality.')); |
| 917 | return; |
| 918 | } |
| 919 | |
| 920 | if (isset($_POST['_nonce']) && wp_verify_nonce($_POST['_nonce'], 'embedpress_elements_action')) { |
| 921 | $user_id = isset($_POST['user_id']) ? $_POST['user_id'] : ''; |
| 922 | $account_type = isset($_POST['account_type']) ? $_POST['account_type'] : ''; |
| 923 | $account_data = get_option('ep_instagram_account_data'); |
| 924 | |
| 925 | $data = array_filter($account_data, function ($item) use ($user_id) { |
| 926 | return $item['user_id'] !== $user_id; |
| 927 | }); |
| 928 | $data = array_values($data); |
| 929 | update_option('ep_instagram_account_data', $data); |
| 930 | } else { |
| 931 | wp_die('Nonce verification failed.'); |
| 932 | } |
| 933 | } |
| 934 | |
| 935 | |
| 936 | |
| 937 | /** |
| 938 | * Update admin notice view status |
| 939 | * |
| 940 | * @since 2.5.1 |
| 941 | */ |
| 942 | public static function embedpress_notice_dismiss() |
| 943 | { |
| 944 | check_ajax_referer('embedpress', 'security'); |
| 945 | update_option('embedpress_social_dismiss_notice', true); |
| 946 | } |
| 947 | } |
| 948 |