akashop/volumes/wp/wp-content/plugins/optimole-wp/inc/config.php

129 lines
3.1 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
/**
* Class Optml_Config holds configuration for the service.
*
* @package \Optml\Inc
* @author Optimole <friends@optimole.com>
*/
class Optml_Config {
/**
* A list of allowed extensions.
*
* @var array
*/
public static $image_extensions = [
'jpg' => 'image/jpeg',
'jpeg' => 'image/jpeg',
'jpe' => 'image/jpeg',
'png' => 'image/png',
'heic' => 'image/heif',
'ico' => 'image/x-icon',
'avif' => 'image/avif',
'webp' => 'image/webp',
'svg' => 'image/svg+xml',
'gif' => 'image/gif',
];
/**
* CSS/Js mimetypes.
*
* @var string[]
*/
public static $assets_extensions = [
'css' => 'text/css',
'js' => 'text/javascript',
];
/**
* All extensions that Optimole process.
*
* @var string[]
*/
public static $all_extensions = [
'jpg|jpeg|jpe' => 'image/jpeg',
'png' => 'image/png',
'webp' => 'image/webp',
'ico' => 'image/x-icon',
'heic' => 'image/heif',
'avif' => 'image/avif',
'svg' => 'image/svg+xml',
'gif' => 'image/gif',
'css' => 'text/css',
'js' => 'text/javascript',
];
/**
* A string of allowed chars.
*
* @var string
*/
public static $chars = '\/:,~\\\\.\-\\d_@%^A-Za-z\p{L}\p{M}\p{N}\x{0080}-\x{017F}\x{2200}-\x{22FF}\x{2022}';
/**
* Service api key.
*
* @var string Service key.
*/
public static $key = '';
/**
* Service secret key used for signing the requests.
*
* @var string Secret key.
*/
public static $secret = '';
/**
* Service url.
*
* @var string Service url.
*/
public static $service_url = '';
/**
* Base domain.
*
* @var string Base domain.
*/
public static $base_domain = 'i.optimole.com';
/**
* Service settings.
*
* @param array $service_settings Service settings.
*
* @throws \InvalidArgumentException In case that key or secret is not provided.
*/
public static function init( $service_settings = [] ) {
if ( empty( $service_settings['key'] ) && ! defined( 'OPTML_KEY' ) ) {
throw new \InvalidArgumentException( 'Optimole SDK requires service api key.' ); // @codeCoverageIgnore
}
if ( empty( $service_settings['secret'] ) && ! defined( 'OPTML_SECRET' ) ) {
throw new \InvalidArgumentException( 'Optimole SDK requires service secret key.' ); // @codeCoverageIgnore
}
if ( defined( 'OPTML_KEY' ) ) {
self::$key = constant( 'OPTML_KEY' );
}
if ( defined( 'OPTML_SECRET' ) ) {
self::$secret = constant( 'OPTML_SECRET' );
}
if ( defined( 'OPTML_BASE_DOMAIN' ) ) {
self::$base_domain = constant( 'OPTML_BASE_DOMAIN' );
}
if ( ! empty( $service_settings['key'] ) ) {
self::$key = trim( strtolower( $service_settings['key'] ) );
}
if ( ! empty( $service_settings['secret'] ) ) {
self::$secret = trim( $service_settings['secret'] );
}
self::$service_url = sprintf( 'https://%s.%s', self::$key, self::$base_domain );
if ( isset( $service_settings['domain'] ) && ! empty( $service_settings['domain'] ) ) {
self::$service_url = sprintf( 'https://%s', $service_settings['domain'] );
} elseif ( defined( 'OPTML_CUSTOM_DOMAIN' ) ) {
self::$service_url = constant( 'OPTML_CUSTOM_DOMAIN' );
}
}
}