| 1 |
<?php |
| 2 |
/** |
| 3 |
* The main loader class for ThemeIsle SDK |
| 4 |
* |
| 5 |
* @package ThemeIsleSDK |
| 6 |
* @subpackage Loader |
| 7 |
* @copyright Copyright (c) 2017, Marius Cristea |
| 8 |
* @license http://opensource.org/licenses/gpl-3.0.php GNU Public License |
| 9 |
* @since 1.0.0 |
| 10 |
*/ |
| 11 |
|
| 12 |
namespace ThemeisleSDK; |
| 13 |
|
| 14 |
use ThemeisleSDK\Common\Module_Factory; |
| 15 |
|
| 16 |
if ( ! defined( 'ABSPATH' ) ) { |
| 17 |
exit; |
| 18 |
} |
| 19 |
|
| 20 |
|
| 21 |
/** |
| 22 |
* Singleton loader for ThemeIsle SDK. |
| 23 |
*/ |
| 24 |
final class Loader { |
| 25 |
/** |
| 26 |
* Singleton instance. |
| 27 |
* |
| 28 |
* @var Loader instance The singleton instance |
| 29 |
*/ |
| 30 |
private static $instance; |
| 31 |
/** |
| 32 |
* Current loader version. |
| 33 |
* |
| 34 |
* @var string $version The class version. |
| 35 |
*/ |
| 36 |
private static $version = '2.0.0'; |
| 37 |
/** |
| 38 |
* Holds registered products. |
| 39 |
* |
| 40 |
* @var array The products which use the SDK. |
| 41 |
*/ |
| 42 |
private static $products = []; |
| 43 |
/** |
| 44 |
* Holds available modules to load. |
| 45 |
* |
| 46 |
* @var array The modules which SDK will be using. |
| 47 |
*/ |
| 48 |
private static $available_modules = [ |
| 49 |
'dashboard_widget', |
| 50 |
'rollback', |
| 51 |
'uninstall_feedback', |
| 52 |
'licenser', |
| 53 |
'logger', |
| 54 |
'translate', |
| 55 |
'review', |
| 56 |
'recommendation', |
| 57 |
'notification', |
| 58 |
|
| 59 |
]; |
| 60 |
|
| 61 |
/** |
| 62 |
* Initialize the sdk logic. |
| 63 |
*/ |
| 64 |
public static function init() { |
| 65 |
if ( ! isset( self::$instance ) && ! ( self::$instance instanceof Loader ) ) { |
| 66 |
self::$instance = new Loader(); |
| 67 |
$modules = array_merge( self::$available_modules, apply_filters( 'themeisle_sdk_modules', [] ) ); |
| 68 |
foreach ( $modules as $key => $module ) { |
| 69 |
if ( ! class_exists( 'ThemeisleSDK\\Modules\\' . ucwords( $module, '_' ) ) ) { |
| 70 |
unset( $modules[ $key ] ); |
| 71 |
} |
| 72 |
} |
| 73 |
self::$available_modules = $modules; |
| 74 |
} |
| 75 |
} |
| 76 |
|
| 77 |
/** |
| 78 |
* Get cache token used in API requests. |
| 79 |
* |
| 80 |
* @return string Cache token. |
| 81 |
*/ |
| 82 |
public static function get_cache_token() { |
| 83 |
$cache_token = get_transient( 'themeisle_sdk_cache_token' ); |
| 84 |
if ( false === $cache_token ) { |
| 85 |
$cache_token = wp_generate_password( 6, false ); |
| 86 |
set_transient( $cache_token, WEEK_IN_SECONDS ); |
| 87 |
} |
| 88 |
|
| 89 |
return $cache_token; |
| 90 |
} |
| 91 |
|
| 92 |
/** |
| 93 |
* Clear cache token. |
| 94 |
*/ |
| 95 |
public static function clear_cache_token() { |
| 96 |
delete_transient( 'themeisle_sdk_cache_token' ); |
| 97 |
} |
| 98 |
|
| 99 |
/** |
| 100 |
* Register product into SDK. |
| 101 |
* |
| 102 |
* @param string $base_file The product base file. |
| 103 |
* |
| 104 |
* @return Loader The singleton object. |
| 105 |
*/ |
| 106 |
public static function add_product( $base_file ) { |
| 107 |
|
| 108 |
if ( ! is_file( $base_file ) ) { |
| 109 |
return self::$instance; |
| 110 |
} |
| 111 |
$product = new Product( $base_file ); |
| 112 |
|
| 113 |
Module_Factory::attach( $product, self::get_modules() ); |
| 114 |
|
| 115 |
self::$products[ $product->get_slug() ] = $product; |
| 116 |
|
| 117 |
return self::$instance; |
| 118 |
} |
| 119 |
|
| 120 |
/** |
| 121 |
* Get all registered modules by the SDK. |
| 122 |
* |
| 123 |
* @return array Modules available. |
| 124 |
*/ |
| 125 |
public static function get_modules() { |
| 126 |
return self::$available_modules; |
| 127 |
} |
| 128 |
|
| 129 |
/** |
| 130 |
* Get all products using the SDK. |
| 131 |
* |
| 132 |
* @return array Products available. |
| 133 |
*/ |
| 134 |
public static function get_products() { |
| 135 |
return self::$products; |
| 136 |
} |
| 137 |
|
| 138 |
/** |
| 139 |
* Get the version of the SDK. |
| 140 |
* |
| 141 |
* @return string The version. |
| 142 |
*/ |
| 143 |
public static function get_version() { |
| 144 |
return self::$version; |
| 145 |
} |
| 146 |
|
| 147 |
} |
| 148 |
|