<?php /** * Plugin Name: Embed Any Document * Plugin URI: http://awsm.in/embed-any-documents * Description: Embed Any Document WordPress plugin lets you upload and embed your documents easily in your WordPress website without any additional browser plugins like Flash or Acrobat reader. The plugin lets you choose between Google Docs Viewer and Microsoft Office Online to display your documents. * Version: 2.7.7 * Author: Awsm Innovations * Author URI: https://awsm.in * License: GPL V3 * Text Domain: embed-any-document * Domain Path: /language * * @package embed-any-document */ // Exit if accessed directly. if ( ! defined( 'ABSPATH' ) ) { exit; } if ( ! defined( 'AWSM_EMBED_VERSION' ) ) { define( 'AWSM_EMBED_VERSION', '2.7.7' ); } /** * Embed Any Document Main Class. */ class Awsm_embed { /** * The instance of the class. * * @var Awsm_embed */ private static $instance = null; /** * Plugin path. * * @var string */ private $plugin_path; /** * Plugin url. * * @var string */ private $plugin_url; /** * Plugin directory name. * * @var string */ private $plugin_base; /** * Current file path. * * @var string */ private $plugin_file; /** * Plugin Version. * * @var string */ private $plugin_version; /** * Settings page slug. * * @var string */ private $settings_slug; /** * Creates or returns an instance of this class. */ public static function get_instance() { // If an instance hasn't been created and set to $instance create an instance and set it to $instance. if ( is_null( self::$instance ) ) { self::$instance = new self(); } return self::$instance; } /** * Initializes the plugin by setting localization, hooks, filters, and administrative functions. */ private function __construct() { $this->plugin_path = plugin_dir_path( __FILE__ ); $this->plugin_url = plugin_dir_url( __FILE__ ); $this->plugin_base = dirname( plugin_basename( __FILE__ ) ); $this->plugin_file = __FILE__; $this->settings_slug = 'ead-settings'; $this->plugin_version = AWSM_EMBED_VERSION; add_action( 'media_buttons', array( $this, 'embedbutton' ), 1000 ); add_shortcode( 'embeddoc', array( $this, 'embed_shortcode' ) ); // Initialize block. include_once $this->plugin_path . 'blocks/document.php'; add_action( 'wp_loaded', array( $this, 'register_scripts' ) ); // Load plugin textdomain. add_action( 'plugins_loaded', array( $this, 'load_textdomain' ) ); $this->adminfunctions(); } /** * Register admin Settings style */ public function setting_styles() { wp_register_style( 'embed-settings', plugins_url( 'css/settings.min.css', $this->plugin_file ), false, $this->plugin_version, 'all' ); wp_enqueue_style( 'embed-settings' ); } /** * Load plugin textdomain. * * @since 2.2.3 */ public function load_textdomain() { if ( version_compare( get_bloginfo( 'version' ), '6.8', '<' ) ) { load_plugin_textdomain( 'embed-any-document', false, $this->plugin_base . '/language/' ); } } /** * Embed any Docs Button. * * @param string $editor_id Unique editor identifier. */ public function embedbutton( $editor_id ) { // Check user previlege. if ( ! current_user_can( 'edit_posts' ) ) { return; } $btn_text = __( 'Add Document', 'embed-any-document' ); $btn_icon = sprintf( '<img src="%1$s" alt="%2$s" role="presentation" /> ', esc_url( plugins_url( 'images/ead-small.png', __FILE__ ) ), esc_attr( $btn_text ) ); printf( '<a href="javascript:void(0);" class="awsm-embed button" title="%2$s" data-mfp-src="#embed-popup-wrap" data-target="%3$s">%1$s</a>', $btn_icon . esc_html( $btn_text ), esc_attr( $btn_text ), esc_attr( $editor_id ) ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped } /** * Admin Easy access settings link. * * @param array $links Plugin action links. * @return array Plugin action links with ead settings link included. */ public function settingslink( $links ) { $settings_link = '<a href="options-general.php?page=' . esc_attr( $this->settings_slug ) . '">' . esc_html__( 'Settings', 'embed-any-document' ) . '</a>'; array_unshift( $links, $settings_link ); return $links; } /** * Embed Form popup */ public function embedpopup() { if ( wp_script_is( 'ead_media_button' ) ) { add_thickbox(); include $this->plugin_path . 'inc/popup.php'; } } /** * Register admin scripts */ public function embed_helper() { $script_deps = array( 'jquery' ); if ( function_exists( 'get_current_screen' ) ) { $screen = get_current_screen(); if ( ! empty( $screen ) && method_exists( $screen, 'is_block_editor' ) && $screen->is_block_editor() ) { $script_deps[] = 'wp-blocks'; } } wp_enqueue_script( 'ead_media_button', plugins_url( 'js/embed.min.js', $this->plugin_file ), $script_deps, $this->plugin_version, true ); wp_enqueue_style( 'ead_media_button', plugins_url( 'css/embed.min.css', $this->plugin_file ), false, $this->plugin_version, 'all' ); wp_localize_script( 'ead_media_button', 'emebeder', array( 'viewers' => array_keys( self::get_viewers() ), 'height' => get_option( 'ead_height', '100%' ), 'width' => get_option( 'ead_width', '100%' ), 'download' => get_option( 'ead_download', 'none' ), 'text' => get_option( 'ead_text', __( 'Download', 'embed-any-document' ) ), 'provider' => get_option( 'ead_provider', 'google' ), 'ajaxurl' => admin_url( 'admin-ajax.php' ), 'site_url' => site_url( '/' ), 'validtypes' => $this->validembedtypes(), 'msextension' => $this->validextensions( 'ms' ), 'drextension' => $this->validextensions( 'all' ), 'nocontent' => __( 'Nothing to insert', 'embed-any-document' ), 'invalidurl' => __( 'Invalid URL', 'embed-any-document' ), 'addurl' => __( 'Add URL', 'embed-any-document' ), 'verify' => __( 'Verifying...', 'embed-any-document' ), 'from_url' => __( 'From URL', 'embed-any-document' ), 'select_button' => __( 'Select', 'embed-any-document' ), ) ); } /** * Check whether the file is viewable by browser or not by checking the file URL. * * @param string $url The file URL. * @return boolean */ public static function is_browser_viewable_type( $url ) { $is_viewable = false; $types = array( 'pdf', 'txt' ); $splitted = explode( '.', $url ); $extension = end( $splitted ); if ( ! empty( $extension ) ) { if ( in_array( strtolower( trim( $extension ) ), $types, true ) ) { $is_viewable = true; } } return $is_viewable; } /** * Get the iframe preloader content. * * @param array $shortcode_atts The shortcode attributes. */ public static function get_iframe_preloader( $shortcode_atts ) { if ( ! isset( $shortcode_atts['viewer'] ) || ! isset( $shortcode_atts['url'] ) ) { return; } $document_url = '#'; if ( $shortcode_atts['viewer'] === 'google' ) { if ( self::is_browser_viewable_type( $shortcode_atts['url'] ) ) { $document_url = $shortcode_atts['url']; } else { $src = 'https://docs.google.com/viewer?url=%1$s&hl=%2$s'; $document_url = sprintf( $src, rawurlencode( $shortcode_atts['url'] ), esc_attr( $shortcode_atts['language'] ) ); } } ob_start(); ?> <div class="ead-document-loading" style="width:100%;height:100%;position:absolute;left:0;top:0;z-index:10;"> <div class="ead-loading-wrap"> <div class="ead-loading-main"> <div class="ead-loading"> <img src="<?php echo esc_url( plugins_url( 'images/loading.svg', __FILE__ ) ); ?>" width="55" height="55" alt="<?php esc_html_e( 'Loader', 'embed-any-document' ); ?>"> <span><?php esc_html_e( 'Loading...', 'embed-any-document' ); ?></span> </div> </div> <div class="ead-loading-foot"> <div class="ead-loading-foot-title"> <img src="<?php echo esc_url( plugins_url( 'images/EAD-logo.svg', __FILE__ ) ); ?>" alt="<?php esc_html_e( 'EAD Logo', 'embed-any-document' ); ?>" width="36" height="23"/> <span><?php esc_html_e( 'Taking too long?', 'embed-any-document' ); ?></span> </div> <p> <div class="ead-document-btn ead-reload-btn" role="button"> <img src="<?php echo esc_url( plugins_url( 'images/reload.svg', __FILE__ ) ); ?>" alt="<?php esc_html_e( 'Reload', 'embed-any-document' ); ?>" width="12" height="12"/> <?php esc_html_e( 'Reload document', 'embed-any-document' ); ?> </div> <span>|</span> <a href="<?php echo esc_url( $document_url ); ?>" class="ead-document-btn" target="_blank"> <img src="<?php echo esc_url( plugins_url( 'images/open.svg', __FILE__ ) ); ?>" alt="<?php esc_html_e( 'Open', 'embed-any-document' ); ?>" width="12" height="12"/> <?php esc_html_e( 'Open in new tab', 'embed-any-document' ); ?> </a> </div> </div> </div> <?php $preloader = ob_get_clean(); /** * Customize the document preloader. * * @since 2.6.0 * * @param string $preloader The preloader content. * @param array $shortcode_atts The shortcode attributes. */ return apply_filters( 'awsm_ead_preloader', $preloader, $shortcode_atts ); } /** * Get public script data. * * @return array */ public function get_public_script_data() { /** * Customize the public script data. * * @since 2.6.0 * * @param array $script_data The script data. */ $script_data = apply_filters( 'awsm_ead_public_script_data', array() ); return $script_data; } /** * Register scripts for both back-end and front-end use. */ public function register_scripts() { wp_register_style( 'awsm-ead-public', plugins_url( 'css/embed-public.min.css', $this->plugin_file ), array(), $this->plugin_version, 'all' ); wp_register_script( 'awsm-ead-pdf-object', plugins_url( 'js/pdfobject.min.js', $this->plugin_file ), array(), $this->plugin_version, true ); wp_register_script( 'awsm-ead-public', plugins_url( 'js/embed-public.min.js', $this->plugin_file ), array( 'jquery', 'awsm-ead-pdf-object' ), $this->plugin_version, true ); wp_localize_script( 'awsm-ead-public', 'eadPublic', $this->get_public_script_data() ); } /** * Generate style attribute from attributes array. * * @param array $attrs Attributes array. * @return string */ public static function build_style_attr( $attrs ) { $style = 'style="'; foreach ( $attrs as $property => $value ) { $style .= sprintf( '%1$s: %2$s;', esc_attr( $property ), esc_attr( $value ) ); } $style .= '"'; return $style; } /** * Get the supported viewers. * * @return array */ public static function get_viewers() { $viewers = array( 'google' => __( 'Google Docs Viewer', 'embed-any-document' ), 'browser' => __( 'Browser Based', 'embed-any-document' ), 'microsoft' => __( 'Microsoft Office Online', 'embed-any-document' ), ); /** * Customize the supported viewers. * * @since 2.6.0 * * @param array $viewers Viewers array. */ return apply_filters( 'awsm_ead_viewers', $viewers ); } /** * Get all providers. * * @return array */ public static function get_all_providers() { $providers = array( 'google', 'microsoft', 'browser' ); /** * Customize the providers. * * @since 2.6.0 * * @param array $providers Providers array. */ return apply_filters( 'awsm_ead_providers', $providers ); } /** * Get shortcode attributes as an array from EAD shortcode. * * @param string $shortcode EAD Shortcode. * @return array */ public static function get_shortcode_attrs( $shortcode ) { $text = str_replace( '[embeddoc', '', $shortcode ); $text = trim( $text ); $text = rtrim( $text, ']' ); $attributes = shortcode_parse_atts( $text ); return $attributes; } /** * Shortcode Functionality. * * @param array $atts The shortcode attributes. * @return string Shortcode output content. */ public function embed_shortcode( $atts ) { $embed = ''; $durl = ''; $default_width = $this->sanitize_dims( get_option( 'ead_width', '100%' ) ); $default_height = $this->sanitize_dims( get_option( 'ead_height', '100%' ) ); $default_provider = get_option( 'ead_provider', 'google' ); $default_download = get_option( 'ead_download', 'none' ); $default_text = get_option( 'ead_text', __( 'Download', 'embed-any-document' ) ); $show = false; $shortcode_atts = shortcode_atts( array( 'url' => '', 'drive' => '', 'width' => $default_width, 'height' => $default_height, 'language' => 'en', 'text' => $default_text, 'viewer' => $default_provider, 'download' => $default_download, 'cache' => 'on', ), $atts ); wp_enqueue_style( 'awsm-ead-public' ); wp_enqueue_script( 'awsm-ead-public' ); if ( isset( $shortcode_atts['url'] ) && ! empty( $shortcode_atts['url'] ) ) : // AMP. $is_amp = function_exists( 'is_amp_endpoint' ) && is_amp_endpoint(); $durl = ''; $viewer = $shortcode_atts['viewer']; $providers = self::get_all_providers(); if ( ! in_array( $viewer, $providers, true ) ) { $viewer = 'google'; $shortcode_atts['viewer'] = 'google'; } $is_browser_viewer = false; if ( $shortcode_atts['viewer'] === 'browser' ) { // fallback for Browser viewer. $is_browser_viewer = true; $viewer = 'google'; // AMP handling. if ( $is_amp ) { $is_browser_viewer = false; } } if ( $this->allowdownload( $shortcode_atts['viewer'] ) ) { if ( $shortcode_atts['download'] === 'alluser' || $shortcode_atts['download'] === 'all' ) { $show = true; } elseif ( $shortcode_atts['download'] === 'logged' && is_user_logged_in() ) { $show = true; } } $url = esc_url( $shortcode_atts['url'], array( 'http', 'https' ) ); if ( $show ) { $filedata = wp_safe_remote_head( $shortcode_atts['url'] ); $filesize = 0; if ( ! is_wp_error( $filedata ) && isset( $filedata['headers']['content-length'] ) ) { $filesize = $this->human_filesize( $filedata['headers']['content-length'] ); } else { $filesize = 0; } $file_html = ''; if ( $filesize ) { $file_html = ' [' . $filesize . ']'; } $text = isset( $shortcode_atts['text'] ) ? esc_attr( $shortcode_atts['text'] ) : 'Download'; $durl = '<p class="embed_download"><a href="' . esc_url( $url ) . '" download>' . $text . $file_html . ' </a></p>'; } if ( $shortcode_atts['cache'] === 'off' && $viewer === 'google' ) { if ( $this->url_get_param( $url ) ) { $url .= '?' . time(); } else { $url .= '&' . time(); } } $iframe_src = ''; switch ( $viewer ) { case 'google': $embedsrc = '//docs.google.com/viewer?url=%1$s&embedded=true&hl=%2$s'; $iframe_src = sprintf( $embedsrc, rawurlencode( $url ), esc_attr( $shortcode_atts['language'] ) ); break; case 'microsoft': $embedsrc = '//view.officeapps.live.com/op/embed.aspx?src=%1$s'; $iframe_src = sprintf( $embedsrc, rawurlencode( $url ) ); break; } $iframe_style_attrs = array(); $doc_style_attrs = array( 'position' => 'relative', ); if ( $this->check_responsive( $shortcode_atts['height'] ) && $this->check_responsive( $shortcode_atts['width'] ) && ! $is_browser_viewer ) { $iframe_style_attrs = array( 'width' => '100%', 'height' => '100%', 'border' => 'none', 'position' => 'absolute', 'left' => '0', 'top' => '0', ); $doc_style_attrs['padding-top'] = '90%'; } else { $iframe_style_attrs = array( 'width' => $shortcode_atts['width'], 'height' => $shortcode_atts['height'], 'border' => 'none', ); if ( $this->in_percentage( $shortcode_atts['height'] ) ) { $iframe_style_attrs['min-height'] = '500px'; } } $enable_preloader = ! $is_amp && $viewer === 'google'; if ( $enable_preloader ) { $iframe_style_attrs['visibility'] = 'hidden'; } $data_attr = ''; if ( $is_browser_viewer ) { $data_attr = sprintf( ' data-pdf-src="%1$s" data-viewer="%2$s"', esc_url( $shortcode_atts['url'] ), esc_attr( $shortcode_atts['viewer'] ) ); $doc_style_attrs = array_merge( $doc_style_attrs, $iframe_style_attrs ); unset( $doc_style_attrs['visibility'] ); } $iframe_style = self::build_style_attr( $iframe_style_attrs ); $iframe = sprintf( '<iframe src="%s" title="%s" class="ead-iframe" %s></iframe>', esc_attr( $iframe_src ), esc_html__( 'Embedded Document', 'embed-any-document' ), $iframe_style ); if ( $enable_preloader ) { $iframe = '<div class="ead-iframe-wrapper">' . $iframe . '</div>' . self::get_iframe_preloader( $shortcode_atts ); } $doc_style = self::build_style_attr( $doc_style_attrs ); $embed = sprintf( '<div class="ead-preview"><div class="ead-document" %3$s>%1$s</div>%2$s</div>', $iframe, $durl, $doc_style . $data_attr ); else : $embed = esc_html__( 'No Url Found', 'embed-any-document' ); endif; /** * Customize the embedded content. * * @since 2.6.0 * * @param string $embed The embedded content. * @param array $shortcode_atts The shortcode attributes. */ $embed = apply_filters( 'awsm_ead_content', $embed, $shortcode_atts ); return $embed; } /** * Admin menu setup */ public function admin_menu() { $title = __( 'Embed Any Document', 'embed-any-document' ); $eadsettings = add_options_page( $title, $title, 'manage_options', $this->settings_slug, array( $this, 'settings_page' ) ); add_action( 'admin_print_styles-' . $eadsettings, array( $this, 'setting_styles' ) ); } /** * Admin settings page. */ public function settings_page() { if ( ! current_user_can( 'manage_options' ) ) { wp_die( esc_html__( 'You do not have sufficient permissions to access this page.', 'default' ) ); } include $this->plugin_path . 'inc/settings.php'; } /** * Register Settings */ public function register_eadsettings() { register_setting( 'ead-settings-group', 'ead_width', array( $this, 'sanitize_dims' ) ); register_setting( 'ead-settings-group', 'ead_height', array( $this, 'sanitize_dims' ) ); register_setting( 'ead-settings-group', 'ead_provider' ); register_setting( 'ead-settings-group', 'ead_download' ); register_setting( 'ead-settings-group', 'ead_text', array( 'sanitize_callback' => function( $value ) { return sanitize_text_field( wp_unslash( $value ) ); }, ) ); register_setting( 'ead-settings-group', 'ead_mediainsert' ); } public function ead_sanitize_strict_text( $value ) { $value = html_entity_decode( $value, ENT_QUOTES | ENT_HTML5, 'UTF-8' ); $value = preg_replace( '/<script\b[^>]*>(.*?)<\/script>/is', '', $value ); $value = preg_replace( '/<[^>]*>/', '', $value ); $value = preg_replace( '/on\w+\s*=\s*("[^"]*"|\'[^\']*\'|[^ >]*)/i', '', $value ); $value = preg_replace( '/javascript\s*:/i', '', $value ); $value = str_replace( array( '<', '>', '"', "'" ), '', $value ); $value = sanitize_text_field( $value ); return $value; } /** * Register Privacy Policy Content */ public function register_privacy_policy_content() { if ( ! function_exists( 'wp_add_privacy_policy_content' ) ) { return; } $content = __( 'The third party tools we are using to display your documents easily may use cookies or similar technologies for technical purposes.These third-party services may set their own cookies on your device to provide additional functionality or integrate certain features.The use of third-party cookies is subject to the respective third party privacy and cookie policies.', 'embed-any-document' ); wp_add_privacy_policy_content( 'Embed Any Document', wp_kses_post( wpautop( $content, false ) ) ); } /** * Admin init functions */ public function admin_init_functions() { $this->register_eadsettings(); $this->register_privacy_policy_content(); } /** * Admin Functions init */ public function adminfunctions() { if ( is_admin() ) { add_action( 'wp_enqueue_media', array( $this, 'embed_helper' ) ); add_action( 'admin_menu', array( $this, 'admin_menu' ) ); add_action( 'admin_init', array( $this, 'admin_init_functions' ) ); add_action( 'admin_footer', array( $this, 'embedpopup' ) ); add_filter( 'plugin_action_links_' . plugin_basename( __FILE__ ), array( $this, 'settingslink' ) ); add_filter( 'upload_mimes', array( $this, 'additional_mimes' ) ); add_filter( 'wp_handle_upload_prefilter', array( $this, 'wp_handle_upload_file_validation' ), 100, 2 ); } } /** * Adds additional mime type for media uploader. * * @param array $mimes Mime types. * @return array An array with additional mime types added. */ public function additional_mimes( $mimes ) { /** * Filter to enable additional mimes. * * @since 2.7.2 * * @param bool $enable_additional_mimes Enable additional mimes or not. */ $enable_additional_mimes = apply_filters( 'awsm_ead_enable_additional_mimes', false ); if ( $enable_additional_mimes ) { $mimes = array_merge( $mimes, array( 'svg' => 'image/svg+xml', 'ai' => 'application/postscript', ) ); } return $mimes; } /** * Handle required file validation before upload. * * @param array $file Single element of $_FILES. * * @return array. */ public function wp_handle_upload_file_validation( $file ) { $validate = wp_check_filetype_and_ext( $file['tmp_name'], $file['name'] ); if ( $validate['type'] === 'image/svg+xml' && $validate['ext'] === 'svg' ) { $svg_file = file_get_contents( $file['tmp_name'] ); if ( strpos( $svg_file, '<script' ) !== false ) { $file['error'] = esc_html__( 'Unsupported file content detected. Sorry, you are not allowed to upload this file.', 'embed-any-document' ); } } return $file; } /** * To get Overlay link. * * @param string $provider Service provider. */ public function providerlink( $provider ) { $link = 'http://embedanydocument.com/plus-cc'; $id = ''; $configure = '<span class="overlay"><strong>' . esc_html__( 'Buy Pro Version', 'embed-any-document' ) . '</strong><i></i></span>'; $target = 'target="_blank"'; /* translators: %1$s: Service provider */ echo '<a href="' . esc_url( $link ) . '" id="' . esc_attr( $id ) . '" ' . $target . '><span><img src="' . esc_url( $this->plugin_url ) . 'images/icon-' . esc_attr( strtolower( $provider ) ) . '.svg" alt="' . esc_attr( sprintf( __( 'Add From %1$s', 'embed-any-document' ), $provider ) ) . '" />' . esc_html( sprintf( __( 'Add From %1$s', 'embed-any-document' ), $provider ) ) . $configure . '</span></a>'; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped } /** * To initialize default options */ public function defaults() { $options = array( 'ead_width' => '100%', 'ead_height' => '100%', 'ead_download' => 'none', 'ead_provider' => 'google', 'ead_mediainsert' => '1', ); foreach ( $options as $key => $value ) { if ( ! get_option( $key ) ) { update_option( $key, $value ); } } } /** * Dropdown Builder. * * @param string $name 'name' attribute value. * @param array $options Array of choices. * @param mixed $selected Optional. One of the values to compare. Default empty. * @param string $class Optional. 'class' attribute value. Default empty. */ public function selectbuilder( $name, $options, $selected = '', $class = '' ) { if ( is_array( $options ) ) : echo '<select name="' . esc_attr( $name ) . '" id="' . esc_attr( $name ) . '" class="' . esc_attr( $class ) . '">'; foreach ( $options as $key => $option ) { echo '<option value="' . esc_attr( $key ) . '"'; if ( $key == $selected ) { echo ' selected="selected"'; } echo '>' . esc_html( $option ) . "</option>\n"; } echo '</select>'; endif; } /** * Human Readable filesize. * * @param int|string $bytes Number of bytes. * @param int $decimals Optional. Precision of number of decimal places. Default 2. * @return string Human readable file size. */ public function human_filesize( $bytes, $decimals = 2 ) { $size = array( 'B', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB' ); $factor = floor( ( strlen( $bytes ) - 1 ) / 3 ); $size = isset( $size[ $factor ] ) ? $size[ $factor ] : ''; return sprintf( "%.{$decimals}f ", $bytes / pow( 1024, $factor ) ) . $size; } /** * Sanitize dimensions (width, height). * * @param string $dim Value to be sanitized. * @return string|bool Sanitized dimensions or false if value is invalid. */ public function sanitize_dims( $dim ) { // remove any spacing junk. $dim = trim( str_replace( ' ', '', $dim ) ); if ( ! $dim ) { $dim = '100%'; } if ( ! strstr( $dim, '%' ) ) { $type = 'px'; $dim = preg_replace( '/[^0-9]*/', '', $dim ); } else { $type = '%'; $dim = preg_replace( '/[^0-9]*/', '', $dim ); if ( (int) $dim > 100 ) { $dim = '100'; } } if ( $dim ) { return $dim . $type; } else { return false; } } /** * Check value in percentage. * * @since 2.2.3 * * @param string $dim Value to be checked. * @return bool */ public function in_percentage( $dim ) { if ( strstr( $dim, '%' ) ) { return true; } return false; } /** * Enable Responsive. * * @since 2.2.3 * * @param string $dim Value to be checked. * @return bool */ public function check_responsive( $dim ) { if ( strstr( $dim, '%' ) ) { $dim = preg_replace( '/[^0-9]*/', '', $dim ); if ( (int) $dim === 100 ) { return true; } } return false; } /** * Validate Source mime type * * @since 1.0 * @return array */ public function validmime_types() { $mimetypes = array( // Text formats. 'txt|asc|c|cc|h' => 'text/plain', 'rtx' => 'text/richtext', 'css' => 'text/css', // Misc application formats. 'js' => 'application/javascript', 'pdf' => 'application/pdf', 'ai' => 'application/postscript', 'tif' => 'image/tiff', 'tiff' => 'image/tiff', // MS Office formats. 'doc' => 'application/msword', 'pot|pps|ppt' => 'application/vnd.ms-powerpoint', 'xla|xls|xlt|xlw' => 'application/vnd.ms-excel', 'docx' => 'application/vnd.openxmlformats-officedocument.wordprocessingml.document', 'dotx' => 'application/vnd.openxmlformats-officedocument.wordprocessingml.template', 'dotm' => 'application/vnd.ms-word.template.macroEnabled.12', 'xlsx' => 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', 'xlsm' => 'application/vnd.ms-excel.sheet.macroEnabled.12', 'pptx' => 'application/vnd.openxmlformats-officedocument.presentationml.presentation', 'ppsx' => 'application/vnd.openxmlformats-officedocument.presentationml.slideshow', // iWork formats. 'pages' => 'application/vnd.apple.pages', ); /** * Filter valid mime types. * * @since 2.7.2 * * @param array $mimetypes Valid mime types. */ $mimetypes = apply_filters( 'awsm_ead_valid_mime_types', $mimetypes ); return $mimetypes; } /** * Checks Url Validity. * * @since 1.0 * * @param string $url File URL. * @return boolean */ public function valid_type( $url ) { $doctypes = $this->validmime_types(); if ( is_array( $doctypes ) ) { $allowed_ext = implode( '|', array_keys( $doctypes ) ); if ( preg_match( "/\.($allowed_ext)$/i", $url ) ) { return true; } } else { return false; } } /** * Get allowed Mime Types. * * @since 1.0 * * @return string Mimetypes */ public function validembedtypes() { $doctypes = $this->validmime_types(); return implode( ',', $doctypes ); } /** * Get allowed Extensions. * * @param string $list Optional. 'all' extensions or 'ms' only extensions. Default 'all'. * @return string Comma-separated extenstions list. */ public function validextensions( $list = 'all' ) { $all_valid_extensions = array( '.css', '.js', '.pdf', '.tif', '.tiff', '.doc', '.txt', '.asc', '.c', '.cc', '.h', '.pot', '.pps', '.ppt', '.xla', '.xls', '.xlt', '.xlw', '.docx', '.dotx', '.dotm', '.xlsx', '.xlsm', '.pptx', '.pages', '.ppsx' ); /** * Filter all allowed extensions. * * @since 2.7.2 * * @param array $all_valid_extensions All allowed extensions. */ $all_valid_extensions = apply_filters( 'awsm_ead_all_allowed_extensions', $all_valid_extensions ); $extensions['all'] = $all_valid_extensions; $ms_valid_extensions = array( '.doc', '.pot', '.pps', '.ppt', '.xla', '.xls', '.xlt', '.xlw', '.docx', '.dotx', '.dotm', '.xlsx', '.xlsm', '.pptx', '.ppsx' ); /** * Filter Microsoft allowed extensions. * * @since 2.7.2 * * @param array $ms_valid_extensions Microsoft allowed extensions. */ $ms_valid_extensions = apply_filters( 'awsm_ead_ms_allowed_extensions', $ms_valid_extensions ); $extensions['ms'] = $ms_valid_extensions; return implode( ',', $extensions[ $list ] ); } /** * Get allowed Mime Types for Microsoft. * * @return array Mimetypes. */ public function microsoft_mimes() { $micro_mime = array( 'doc' => 'application/msword', 'pot|pps|ppt' => 'application/vnd.ms-powerpoint', 'xla|xls|xlt|xlw' => 'application/vnd.ms-excel', 'docx' => 'application/vnd.openxmlformats-officedocument.wordprocessingml.document', 'dotx' => 'application/vnd.openxmlformats-officedocument.wordprocessingml.template', 'dotm' => 'application/vnd.ms-word.template.macroEnabled.12', 'xlsx' => 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet', 'xlsm' => 'application/vnd.ms-excel.sheet.macroEnabled.12', 'pptx' => 'application/vnd.openxmlformats-officedocument.presentationml.presentation', 'ppsx' => 'application/vnd.openxmlformats-officedocument.presentationml.slideshow', ); return $micro_mime; } /** * Check Allow Download. * * @param string $provider Service provider. * @return bool */ public function allowdownload( $provider ) { $blacklist = array( 'drive', 'box' ); if ( in_array( $provider, $blacklist, true ) ) { return false; } else { return true; } } /** * Get Active Menu Class. * * @param string $tab One of the values to compare. * @param string $needle The other value to compare. */ public function getactive_menu( $tab, $needle ) { if ( $tab === $needle ) { echo 'nav-tab-active'; } } /** * Checks for url query parameter. * * @since 2.6.0 * @param string $url Document url. * @return bool */ public function url_get_param( $url ) { $urldata = parse_url( $url ); if ( isset( $urldata['query'] ) ) { return false; } else { return true; } } } if ( defined( 'EAD_PLUS' ) ) { if ( ! function_exists( 'embed_doc_disable_self' ) ) { /** * Deactivate free version if Plus version is available. */ function embed_doc_disable_self() { deactivate_plugins( plugin_basename( __FILE__ ) ); } add_action( 'admin_init', 'embed_doc_disable_self' ); } } else { // Initialize the class. $awsm_embed = Awsm_embed::get_instance(); // Register defaults. register_activation_hook( __FILE__, array( $awsm_embed, 'defaults' ) ); }