| @@ -1,352 +1,396 @@ | ||
| 1 | -<?php | |
| 2 | -/** | |
| 3 | - * Install and update functions. | |
| 4 | - * | |
| 5 | - * @author ThimPress | |
| 6 | - * @package LearnPress/Classes | |
| 7 | - * @version 3.0.1 | |
| 8 | - */ | |
| 9 | - | |
| 10 | -use LearnPress\Helpers\Config; | |
| 11 | - | |
| 12 | -defined( 'ABSPATH' ) || exit(); | |
| 13 | - | |
| 14 | -if ( ! function_exists( 'LP_Install' ) ) { | |
| 15 | - | |
| 16 | - /** | |
| 17 | - * Class LP_Install | |
| 18 | - */ | |
| 19 | - class LP_Install { | |
| 20 | - protected static $instance; | |
| 21 | - protected $lp_db; | |
| 22 | - /** | |
| 23 | - * Default pages used by LP | |
| 24 | - * | |
| 25 | - * @var array | |
| 26 | - */ | |
| 27 | - private static $_pages = array( | |
| 28 | - 'checkout', | |
| 29 | - 'profile', | |
| 30 | - 'courses', | |
| 31 | - 'instructors', | |
| 32 | - 'single_instructor', | |
| 33 | - 'become_a_teacher', | |
| 34 | - 'term_conditions', | |
| 35 | - ); | |
| 36 | - | |
| 37 | - protected function __construct() { | |
| 38 | - $this->lp_db = LP_Database::getInstance(); | |
| 39 | - // Only run on backend. | |
| 40 | - if ( ! is_admin() ) { | |
| 41 | - return; | |
| 42 | - } | |
| 43 | - ini_set( 'max_execution_time', HOUR_IN_SECONDS ); | |
| 44 | - // From LP v4.2.2 temporary run create table thim_cache. | |
| 45 | - // After a long time, will remove this code. Only run create table when activate plugin LP. | |
| 46 | - if ( ! LP_Settings::is_created_tb_thim_cache() ) { | |
| 47 | - $this->create_table_thim_cache(); | |
| 48 | - } | |
| 49 | - | |
| 50 | - // From LP v4.2.6.9 temporary run create table learnpress_files. | |
| 51 | - // After a long time, will remove this code. Only run create table when activate plugin LP. | |
| 52 | - if ( ! LP_Settings::is_created_tb_courses() ) { | |
| 53 | - $this->create_table_courses(); | |
| 54 | - } | |
| 55 | - | |
| 56 | - // From LP v4.2.6.6 temporary run create table learnpress_files. | |
| 57 | - // After a long time, will remove this code. Only run create table when activate plugin LP. | |
| 58 | - if ( ! LP_Settings::is_created_tb_material_files() ) { | |
| 59 | - $this->create_table_learnpress_files(); | |
| 60 | - } | |
| 61 | - | |
| 62 | - // Runtime migration for MCP API keys table. | |
| 63 | - if ( ! LP_Settings::is_created_tb_mcp_api_keys() ) { | |
| 64 | - $this->create_table_mcp_api_keys(); | |
| 65 | - } | |
| 66 | - | |
| 67 | - // Set roles and capabilities. | |
| 68 | - learn_press_add_user_roles(); | |
| 69 | - | |
| 70 | - ini_set( 'max_execution_time', LearnPress::$time_limit_default_of_sever ); | |
| 71 | - } | |
| 72 | - | |
| 73 | - /** | |
| 74 | - * Get instance | |
| 75 | - * | |
| 76 | - * @return LP_Install | |
| 77 | - */ | |
| 78 | - public static function instance(): self { | |
| 79 | - if ( ! self::$instance ) { | |
| 80 | - self::$instance = new self(); | |
| 81 | - } | |
| 82 | - | |
| 83 | - return self::$instance; | |
| 84 | - } | |
| 85 | - | |
| 86 | - /** | |
| 87 | - * Do something after LP is activated. | |
| 88 | - * | |
| 89 | - * @since 4.0.0 | |
| 90 | - */ | |
| 91 | - public function on_activate() { | |
| 92 | - $this->create_tables(); | |
| 93 | - | |
| 94 | - if ( ! self::tables_install_done() ) { | |
| 95 | - return; | |
| 96 | - } | |
| 97 | - | |
| 98 | - // Check if LP install before has db version | |
| 99 | - if ( ! get_option( LP_KEY_DB_VERSION, false ) ) { | |
| 100 | - // Save database version of LP | |
| 101 | - update_option( LP_KEY_DB_VERSION, LearnPress::instance()->db_version ); | |
| 102 | - } | |
| 103 | - | |
| 104 | - // Create pages default. | |
| 105 | - self::create_pages(); | |
| 106 | - | |
| 107 | - // Set permalink is "Post name". | |
| 108 | - if ( ! get_option( 'permalink_structure' ) ) { | |
| 109 | - update_option( 'permalink_structure', '/%postname%/' ); | |
| 110 | - // flush_rewrite_rules(); | |
| 111 | - } | |
| 112 | - | |
| 113 | - // Force option users_can_register to ON. | |
| 114 | - /*if ( ! get_option( 'users_can_register' ) ) { | |
| 115 | - update_option( 'users_can_register', 1 ); | |
| 116 | - }*/ | |
| 117 | - } | |
| 118 | - | |
| 119 | - /** | |
| 120 | - * Create tables required for LP | |
| 121 | - */ | |
| 122 | - private function create_tables() { | |
| 123 | - try { | |
| 124 | - $tables = Config::instance()->get( 'tables-v4', 'table' ); | |
| 125 | - foreach ( $tables as $table ) { | |
| 126 | - LP_Database::getInstance()->wpdb->query( $table ); | |
| 127 | - } | |
| 128 | - | |
| 129 | - if ( ! LP_Settings::is_created_tb_thim_cache() ) { | |
| 130 | - $this->create_table_thim_cache(); | |
| 131 | - } | |
| 132 | - | |
| 133 | - if ( ! LP_Settings::is_created_tb_material_files() ) { | |
| 134 | - $this->create_table_learnpress_files(); | |
| 135 | - } | |
| 136 | - | |
| 137 | - // Ensure MCP API keys table exists for activation/upgrade flows. | |
| 138 | - // Keep this explicit guard in addition to tables-v4 config loading. | |
| 139 | - if ( ! LP_Settings::is_created_tb_mcp_api_keys() ) { | |
| 140 | - $this->create_table_mcp_api_keys(); | |
| 141 | - } | |
| 142 | - | |
| 143 | - update_option( 'learn_press_check_tables', 'yes' ); | |
| 144 | - } catch ( Throwable $e ) { | |
| 145 | - error_log( $e->getMessage() ); | |
| 146 | - } | |
| 147 | - } | |
| 148 | - | |
| 149 | - /** | |
| 150 | - * Create table thim_cache | |
| 151 | - * | |
| 152 | - * @since 4.2.2 | |
| 153 | - */ | |
| 154 | - private function create_table_thim_cache() { | |
| 155 | - global $wpdb; | |
| 156 | - | |
| 157 | - try { | |
| 158 | - $collation = $wpdb->has_cap( 'collation' ) ? $wpdb->get_charset_collate() : 'ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci'; | |
| 159 | - | |
| 160 | - $sql = "CREATE TABLE IF NOT EXISTS {$this->lp_db->tb_thim_cache} ( | |
| 161 | - key_cache VARCHAR (191) NOT NULL UNIQUE, | |
| 162 | - value LONGTEXT NOT NULL, | |
| 163 | - expiration VARCHAR (191), | |
| 164 | - PRIMARY KEY (key_cache) | |
| 165 | - ) $collation"; | |
| 166 | - | |
| 167 | - $rs = $wpdb->query( $sql ); | |
| 168 | - | |
| 169 | - if ( $rs ) { | |
| 170 | - update_option( 'thim_cache_tb_created', 'yes' ); | |
| 171 | - } | |
| 172 | - } catch ( Throwable $e ) { | |
| 173 | - error_log( $e->getMessage() ); | |
| 174 | - } | |
| 175 | - } | |
| 176 | - | |
| 177 | - /** | |
| 178 | - * Create table learnpress_courses | |
| 179 | - * | |
| 180 | - * @since 4.2.6.9 | |
| 181 | - */ | |
| 182 | - public function create_table_courses() { | |
| 183 | - global $wpdb; | |
| 184 | - | |
| 185 | - try { | |
| 186 | - $collation = $wpdb->has_cap( 'collation' ) ? $wpdb->get_charset_collate() : 'ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci'; | |
| 187 | - | |
| 188 | - $sql = "CREATE TABLE IF NOT EXISTS {$this->lp_db->tb_lp_courses} ( | |
| 189 | - ID bigint(20) unsigned NOT NULL, | |
| 190 | - json LONGTEXT NOT NULL, | |
| 191 | - price_to_sort FLOAT, | |
| 192 | - is_sale int(1) default 0, | |
| 193 | - post_author bigint unsigned, | |
| 194 | - post_date_gmt datetime, | |
| 195 | - post_content LONGTEXT, | |
| 196 | - post_title text not null, | |
| 197 | - post_status varchar(20) default 'publish' not null, | |
| 198 | - post_name varchar(200) default '', | |
| 199 | - menu_order int default 0, | |
| 200 | - lang varchar(20), | |
| 201 | - PRIMARY KEY (ID), | |
| 202 | - KEY post_title (post_title(191)), | |
| 203 | - KEY post_status (post_status), | |
| 204 | - KEY post_name (post_name(191)), | |
| 205 | - KEY id_status (ID, post_status) | |
| 206 | - ) $collation"; | |
| 207 | - | |
| 208 | - $rs = $wpdb->query( $sql ); | |
| 209 | - | |
| 210 | - if ( $rs ) { | |
| 211 | - update_option( 'tb_learnpress_courses', 'yes' ); | |
| 212 | - } | |
| 213 | - } catch ( Throwable $e ) { | |
| 214 | - error_log( $e->getMessage() ); | |
| 215 | - } | |
| 216 | - } | |
| 217 | - | |
| 218 | - /** | |
| 219 | - * Create table learnpress_material_files | |
| 220 | - * | |
| 221 | - * @since 4.2.6.6 | |
| 222 | - */ | |
| 223 | - private function create_table_learnpress_files() { | |
| 224 | - global $wpdb; | |
| 225 | - | |
| 226 | - try { | |
| 227 | - $collation = $wpdb->has_cap( 'collation' ) ? $wpdb->get_charset_collate() : 'ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci'; | |
| 228 | - | |
| 229 | - $sql = "CREATE TABLE IF NOT EXISTS {$this->lp_db->tb_lp_files} ( | |
| 230 | - file_id bigint(20) unsigned NOT NULL AUTO_INCREMENT, | |
| 231 | - file_name varchar(191) NOT NULL DEFAULT '', | |
| 232 | - file_type varchar(100) NOT NULL DEFAULT '', | |
| 233 | - item_id bigint(20) unsigned NOT NULL DEFAULT '0', | |
| 234 | - item_type varchar(100) NOT NULL DEFAULT '', | |
| 235 | - method varchar(10) NOT NULL DEFAULT 'upload', | |
| 236 | - file_path varchar(255) NOT NULL DEFAULT '', | |
| 237 | - orders int(4) NOT NULL DEFAULT '0', | |
| 238 | - created_at datetime NULL DEFAULT NULL, | |
| 239 | - PRIMARY KEY (file_id), | |
| 240 | - KEY file_name (file_name), | |
| 241 | - KEY item_id (item_id), | |
| 242 | - KEY item_type (item_type) | |
| 243 | - ) $collation"; | |
| 244 | - | |
| 245 | - $rs = $wpdb->query( $sql ); | |
| 246 | - | |
| 247 | - if ( $rs ) { | |
| 248 | - update_option( 'table_learnpress_files_created', 'yes' ); | |
| 249 | - } | |
| 250 | - } catch ( Throwable $e ) { | |
| 251 | - error_log( $e->getMessage() ); | |
| 252 | - } | |
| 253 | - } | |
| 254 | - | |
| 255 | - /** | |
| 256 | - * Create table learnpress_mcp_api_keys. | |
| 257 | - * | |
| 258 | - * @since 4.3.3 | |
| 259 | - * @return void | |
| 260 | - */ | |
| 261 | - public function create_table_mcp_api_keys() { | |
| 262 | - global $wpdb; | |
| 263 | - | |
| 264 | - try { | |
| 265 | - $collation = $wpdb->has_cap( 'collation' ) ? $wpdb->get_charset_collate() : 'ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci'; | |
| 266 | - | |
| 267 | - $sql = "CREATE TABLE IF NOT EXISTS {$this->lp_db->tb_lp_mcp_api_keys} ( | |
| 268 | - key_id bigint(20) unsigned NOT NULL AUTO_INCREMENT, | |
| 269 | - user_id bigint(20) unsigned NOT NULL, | |
| 270 | - description varchar(200) NULL DEFAULT NULL, | |
| 271 | - permissions varchar(10) NOT NULL DEFAULT 'read', | |
| 272 | - consumer_key char(64) NOT NULL, | |
| 273 | - consumer_secret char(64) NOT NULL, | |
| 274 | - truncated_key char(7) NOT NULL, | |
| 275 | - last_access datetime NULL DEFAULT NULL, | |
| 276 | - call_count bigint(20) unsigned NOT NULL DEFAULT 0, | |
| 277 | - created_at datetime NOT NULL, | |
| 278 | - updated_at datetime NULL DEFAULT NULL, | |
| 279 | - PRIMARY KEY (key_id), | |
| 280 | - UNIQUE KEY consumer_key (consumer_key), | |
| 281 | - KEY user_id (user_id) | |
| 282 | - ) $collation"; | |
| 283 | - | |
| 284 | - $wpdb->query( $sql ); | |
| 285 | - } catch ( Throwable $e ) { | |
| 286 | - error_log( $e->getMessage() ); | |
| 287 | - } | |
| 288 | - } | |
| 289 | - | |
| 290 | - /** | |
| 291 | - * Create default pages for LP | |
| 292 | - */ | |
| 293 | - public static function create_pages() { | |
| 294 | - $pages = self::$_pages; | |
| 295 | - | |
| 296 | - try { | |
| 297 | - foreach ( $pages as $page ) { | |
| 298 | - // Check if page has already existed | |
| 299 | - $page_id = get_option( "learn_press_{$page}_page_id", false ); | |
| 300 | - | |
| 301 | - if ( $page_id && get_post_type( $page_id ) === 'page' && get_post_status( $page_id ) == 'publish' ) { | |
| 302 | - continue; | |
| 303 | - } | |
| 304 | - | |
| 305 | - if ( $page === 'courses' ) { | |
| 306 | - $page_title = 'Courses'; | |
| 307 | - $page_slug = $page; | |
| 308 | - } elseif ( 'single_instructor' === $page ) { | |
| 309 | - $page_title = 'Instructor'; | |
| 310 | - $page_slug = 'instructor'; | |
| 311 | - } elseif ( 'instructors' === $page ) { | |
| 312 | - $page_title = 'Instructors'; | |
| 313 | - $page_slug = $page; | |
| 314 | - } elseif ( 'become_a_teacher' === $page ) { | |
| 315 | - $page_title = 'Become an Instructor'; | |
| 316 | - $page_slug = $page; | |
| 317 | - } elseif ( 'term_conditions' === $page ) { | |
| 318 | - $page_title = 'Terms and Conditions'; | |
| 319 | - $page_slug = $page; | |
| 320 | - } else { | |
| 321 | - $page_title = ucwords( str_replace( '_', ' ', $page ) ); | |
| 322 | - $page_slug = 'lp-' . str_replace( '_', '-', $page ); | |
| 323 | - } | |
| 324 | - | |
| 325 | - $data_create_page = array( | |
| 326 | - 'post_title' => $page_title, | |
| 327 | - 'post_name' => $page_slug, | |
| 328 | - ); | |
| 329 | - LP_Helper::create_page( $data_create_page, "learn_press_{$page}_page_id" ); | |
| 330 | - } | |
| 331 | - | |
| 332 | - flush_rewrite_rules(); | |
| 333 | - } catch ( Exception $ex ) { | |
| 334 | - error_log( $ex->getMessage() ); | |
| 335 | - } | |
| 336 | - } | |
| 337 | - | |
| 338 | - /** | |
| 339 | - * Check installed all tables required for LearnPress. | |
| 340 | - * | |
| 341 | - * @return bool | |
| 342 | - */ | |
| 343 | - public function tables_install_done(): bool { | |
| 344 | - $install_done = get_option( 'learn_press_check_tables', 'no' ); | |
| 345 | - if ( is_multisite() && 'yes' !== $install_done ) { | |
| 346 | - $this->create_tables(); | |
| 347 | - } | |
| 348 | - | |
| 349 | - return $install_done; | |
| 350 | - } | |
| 351 | - } | |
| 352 | -} | |
| 1 | +<?php | |
| 2 | +/** | |
| 3 | + * Install and update functions. | |
| 4 | + * | |
| 5 | + * @author ThimPress | |
| 6 | + * @package LearnPress/Classes | |
| 7 | + * @version 3.0.1 | |
| 8 | + */ | |
| 9 | + | |
| 10 | +use LearnPress\Helpers\Config; | |
| 11 | + | |
| 12 | +defined( 'ABSPATH' ) || exit(); | |
| 13 | + | |
| 14 | +if ( ! function_exists( 'LP_Install' ) ) { | |
| 15 | + | |
| 16 | + /** | |
| 17 | + * Class LP_Install | |
| 18 | + */ | |
| 19 | + class LP_Install { | |
| 20 | + protected static $instance; | |
| 21 | + protected $lp_db; | |
| 22 | + /** | |
| 23 | + * Default pages used by LP | |
| 24 | + * | |
| 25 | + * @var array | |
| 26 | + */ | |
| 27 | + private static $_pages = array( | |
| 28 | + 'checkout', | |
| 29 | + 'profile', | |
| 30 | + 'courses', | |
| 31 | + 'instructors', | |
| 32 | + 'single_instructor', | |
| 33 | + 'become_a_teacher', | |
| 34 | + 'term_conditions', | |
| 35 | + ); | |
| 36 | + | |
| 37 | + protected function __construct() { | |
| 38 | + $this->lp_db = LP_Database::getInstance(); | |
| 39 | + // Only run on backend. | |
| 40 | + if ( ! is_admin() ) { | |
| 41 | + return; | |
| 42 | + } | |
| 43 | + ini_set( 'max_execution_time', HOUR_IN_SECONDS ); | |
| 44 | + // From LP v4.2.2 temporary run create table thim_cache. | |
| 45 | + // After a long time, will remove this code. Only run create table when activate plugin LP. | |
| 46 | + if ( ! LP_Settings::is_created_tb_thim_cache() ) { | |
| 47 | + $this->create_table_thim_cache(); | |
| 48 | + } | |
| 49 | + | |
| 50 | + // From LP v4.2.6.9 temporary run create table learnpress_files. | |
| 51 | + // After a long time, will remove this code. Only run create table when activate plugin LP. | |
| 52 | + if ( ! LP_Settings::is_created_tb_courses() ) { | |
| 53 | + $this->create_table_courses(); | |
| 54 | + } | |
| 55 | + | |
| 56 | + // From LP v4.2.6.6 temporary run create table learnpress_files. | |
| 57 | + // After a long time, will remove this code. Only run create table when activate plugin LP. | |
| 58 | + if ( ! LP_Settings::is_created_tb_material_files() ) { | |
| 59 | + $this->create_table_learnpress_files(); | |
| 60 | + } | |
| 61 | + | |
| 62 | + // Runtime migration for MCP API keys table. | |
| 63 | + if ( ! LP_Settings::is_created_tb_mcp_api_keys() ) { | |
| 64 | + $this->create_table_mcp_api_keys(); | |
| 65 | + } | |
| 66 | + | |
| 67 | + // Runtime migration for Webhooks table. | |
| 68 | + if ( ! LP_Settings::is_created_tb_webhooks() ) { | |
| 69 | + $this->create_table_webhooks(); | |
| 70 | + } | |
| 71 | + | |
| 72 | + // Set roles and capabilities. | |
| 73 | + learn_press_add_user_roles(); | |
| 74 | + | |
| 75 | + ini_set( 'max_execution_time', LearnPress::$time_limit_default_of_sever ); | |
| 76 | + } | |
| 77 | + | |
| 78 | + /** | |
| 79 | + * Get instance | |
| 80 | + * | |
| 81 | + * @return LP_Install | |
| 82 | + */ | |
| 83 | + public static function instance(): self { | |
| 84 | + if ( ! self::$instance ) { | |
| 85 | + self::$instance = new self(); | |
| 86 | + } | |
| 87 | + | |
| 88 | + return self::$instance; | |
| 89 | + } | |
| 90 | + | |
| 91 | + /** | |
| 92 | + * Do something after LP is activated. | |
| 93 | + * | |
| 94 | + * @since 4.0.0 | |
| 95 | + */ | |
| 96 | + public function on_activate() { | |
| 97 | + $this->create_tables(); | |
| 98 | + | |
| 99 | + if ( ! self::tables_install_done() ) { | |
| 100 | + return; | |
| 101 | + } | |
| 102 | + | |
| 103 | + // Check if LP install before has db version | |
| 104 | + if ( ! get_option( LP_KEY_DB_VERSION, false ) ) { | |
| 105 | + // Save database version of LP | |
| 106 | + update_option( LP_KEY_DB_VERSION, LearnPress::instance()->db_version ); | |
| 107 | + } | |
| 108 | + | |
| 109 | + // Create pages default. | |
| 110 | + self::create_pages(); | |
| 111 | + | |
| 112 | + // Set permalink is "Post name". | |
| 113 | + if ( ! get_option( 'permalink_structure' ) ) { | |
| 114 | + update_option( 'permalink_structure', '/%postname%/' ); | |
| 115 | + // flush_rewrite_rules(); | |
| 116 | + } | |
| 117 | + | |
| 118 | + // Force option users_can_register to ON. | |
| 119 | + /*if ( ! get_option( 'users_can_register' ) ) { | |
| 120 | + update_option( 'users_can_register', 1 ); | |
| 121 | + }*/ | |
| 122 | + } | |
| 123 | + | |
| 124 | + /** | |
| 125 | + * Create tables required for LP | |
| 126 | + */ | |
| 127 | + private function create_tables() { | |
| 128 | + try { | |
| 129 | + $tables = Config::instance()->get( 'tables-v4', 'table' ); | |
| 130 | + foreach ( $tables as $table ) { | |
| 131 | + LP_Database::getInstance()->wpdb->query( $table ); | |
| 132 | + } | |
| 133 | + | |
| 134 | + if ( ! LP_Settings::is_created_tb_thim_cache() ) { | |
| 135 | + $this->create_table_thim_cache(); | |
| 136 | + } | |
| 137 | + | |
| 138 | + if ( ! LP_Settings::is_created_tb_material_files() ) { | |
| 139 | + $this->create_table_learnpress_files(); | |
| 140 | + } | |
| 141 | + | |
| 142 | + // Ensure MCP API keys table exists for activation/upgrade flows. | |
| 143 | + // Keep this explicit guard in addition to tables-v4 config loading. | |
| 144 | + if ( ! LP_Settings::is_created_tb_mcp_api_keys() ) { | |
| 145 | + $this->create_table_mcp_api_keys(); | |
| 146 | + } | |
| 147 | + | |
| 148 | + // Ensure Webhooks table exists for activation/upgrade flows. | |
| 149 | + // Keep this explicit guard in addition to tables-v4 config loading. | |
| 150 | + if ( ! LP_Settings::is_created_tb_webhooks() ) { | |
| 151 | + $this->create_table_webhooks(); | |
| 152 | + } | |
| 153 | + | |
| 154 | + update_option( 'learn_press_check_tables', 'yes' ); | |
| 155 | + } catch ( Throwable $e ) { | |
| 156 | + error_log( $e->getMessage() ); | |
| 157 | + } | |
| 158 | + } | |
| 159 | + | |
| 160 | + /** | |
| 161 | + * Create table thim_cache | |
| 162 | + * | |
| 163 | + * @since 4.2.2 | |
| 164 | + */ | |
| 165 | + private function create_table_thim_cache() { | |
| 166 | + global $wpdb; | |
| 167 | + | |
| 168 | + try { | |
| 169 | + $collation = $wpdb->has_cap( 'collation' ) ? $wpdb->get_charset_collate() : 'ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci'; | |
| 170 | + | |
| 171 | + $sql = "CREATE TABLE IF NOT EXISTS {$this->lp_db->tb_thim_cache} ( | |
| 172 | + key_cache VARCHAR (191) NOT NULL UNIQUE, | |
| 173 | + value LONGTEXT NOT NULL, | |
| 174 | + expiration VARCHAR (191), | |
| 175 | + PRIMARY KEY (key_cache) | |
| 176 | + ) $collation"; | |
| 177 | + | |
| 178 | + $rs = $wpdb->query( $sql ); | |
| 179 | + | |
| 180 | + if ( $rs ) { | |
| 181 | + update_option( 'thim_cache_tb_created', 'yes' ); | |
| 182 | + } | |
| 183 | + } catch ( Throwable $e ) { | |
| 184 | + error_log( $e->getMessage() ); | |
| 185 | + } | |
| 186 | + } | |
| 187 | + | |
| 188 | + /** | |
| 189 | + * Create table learnpress_courses | |
| 190 | + * | |
| 191 | + * @since 4.2.6.9 | |
| 192 | + */ | |
| 193 | + public function create_table_courses() { | |
| 194 | + global $wpdb; | |
| 195 | + | |
| 196 | + try { | |
| 197 | + $collation = $wpdb->has_cap( 'collation' ) ? $wpdb->get_charset_collate() : 'ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci'; | |
| 198 | + | |
| 199 | + $sql = "CREATE TABLE IF NOT EXISTS {$this->lp_db->tb_lp_courses} ( | |
| 200 | + ID bigint(20) unsigned NOT NULL, | |
| 201 | + json LONGTEXT NOT NULL, | |
| 202 | + price_to_sort FLOAT, | |
| 203 | + is_sale int(1) default 0, | |
| 204 | + post_author bigint unsigned, | |
| 205 | + post_date_gmt datetime, | |
| 206 | + post_content LONGTEXT, | |
| 207 | + post_title text not null, | |
| 208 | + post_status varchar(20) default 'publish' not null, | |
| 209 | + post_name varchar(200) default '', | |
| 210 | + menu_order int default 0, | |
| 211 | + lang varchar(20), | |
| 212 | + PRIMARY KEY (ID), | |
| 213 | + KEY post_title (post_title(191)), | |
| 214 | + KEY post_status (post_status), | |
| 215 | + KEY post_name (post_name(191)), | |
| 216 | + KEY id_status (ID, post_status) | |
| 217 | + ) $collation"; | |
| 218 | + | |
| 219 | + $rs = $wpdb->query( $sql ); | |
| 220 | + | |
| 221 | + if ( $rs ) { | |
| 222 | + update_option( 'tb_learnpress_courses', 'yes' ); | |
| 223 | + } | |
| 224 | + } catch ( Throwable $e ) { | |
| 225 | + error_log( $e->getMessage() ); | |
| 226 | + } | |
| 227 | + } | |
| 228 | + | |
| 229 | + /** | |
| 230 | + * Create table learnpress_material_files | |
| 231 | + * | |
| 232 | + * @since 4.2.6.6 | |
| 233 | + */ | |
| 234 | + private function create_table_learnpress_files() { | |
| 235 | + global $wpdb; | |
| 236 | + | |
| 237 | + try { | |
| 238 | + $collation = $wpdb->has_cap( 'collation' ) ? $wpdb->get_charset_collate() : 'ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci'; | |
| 239 | + | |
| 240 | + $sql = "CREATE TABLE IF NOT EXISTS {$this->lp_db->tb_lp_files} ( | |
| 241 | + file_id bigint(20) unsigned NOT NULL AUTO_INCREMENT, | |
| 242 | + file_name varchar(191) NOT NULL DEFAULT '', | |
| 243 | + file_type varchar(100) NOT NULL DEFAULT '', | |
| 244 | + item_id bigint(20) unsigned NOT NULL DEFAULT '0', | |
| 245 | + item_type varchar(100) NOT NULL DEFAULT '', | |
| 246 | + method varchar(10) NOT NULL DEFAULT 'upload', | |
| 247 | + file_path varchar(255) NOT NULL DEFAULT '', | |
| 248 | + orders int(4) NOT NULL DEFAULT '0', | |
| 249 | + created_at datetime NULL DEFAULT NULL, | |
| 250 | + PRIMARY KEY (file_id), | |
| 251 | + KEY file_name (file_name), | |
| 252 | + KEY item_id (item_id), | |
| 253 | + KEY item_type (item_type) | |
| 254 | + ) $collation"; | |
| 255 | + | |
| 256 | + $rs = $wpdb->query( $sql ); | |
| 257 | + | |
| 258 | + if ( $rs ) { | |
| 259 | + update_option( 'table_learnpress_files_created', 'yes' ); | |
| 260 | + } | |
| 261 | + } catch ( Throwable $e ) { | |
| 262 | + error_log( $e->getMessage() ); | |
| 263 | + } | |
| 264 | + } | |
| 265 | + | |
| 266 | + /** | |
| 267 | + * Create table learnpress_mcp_api_keys. | |
| 268 | + * | |
| 269 | + * @since 4.3.3 | |
| 270 | + * @return void | |
| 271 | + */ | |
| 272 | + public function create_table_mcp_api_keys() { | |
| 273 | + global $wpdb; | |
| 274 | + | |
| 275 | + try { | |
| 276 | + $collation = $wpdb->has_cap( 'collation' ) ? $wpdb->get_charset_collate() : 'ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci'; | |
| 277 | + | |
| 278 | + $sql = "CREATE TABLE IF NOT EXISTS {$this->lp_db->tb_lp_mcp_api_keys} ( | |
| 279 | + key_id bigint(20) unsigned NOT NULL AUTO_INCREMENT, | |
| 280 | + user_id bigint(20) unsigned NOT NULL, | |
| 281 | + description varchar(200) NULL DEFAULT NULL, | |
| 282 | + permissions varchar(10) NOT NULL DEFAULT 'read', | |
| 283 | + consumer_key char(64) NOT NULL, | |
| 284 | + consumer_secret char(64) NOT NULL, | |
| 285 | + truncated_key char(7) NOT NULL, | |
| 286 | + last_access datetime NULL DEFAULT NULL, | |
| 287 | + call_count bigint(20) unsigned NOT NULL DEFAULT 0, | |
| 288 | + created_at datetime NOT NULL, | |
| 289 | + updated_at datetime NULL DEFAULT NULL, | |
| 290 | + PRIMARY KEY (key_id), | |
| 291 | + UNIQUE KEY consumer_key (consumer_key), | |
| 292 | + KEY user_id (user_id) | |
| 293 | + ) $collation"; | |
| 294 | + | |
| 295 | + $wpdb->query( $sql ); | |
| 296 | + } catch ( Throwable $e ) { | |
| 297 | + error_log( $e->getMessage() ); | |
| 298 | + } | |
| 299 | + } | |
| 300 | + | |
| 301 | + /** | |
| 302 | + * Create table learnpress_webhooks. | |
| 303 | + * | |
| 304 | + * @since 4.3.3 | |
| 305 | + * @return void | |
| 306 | + */ | |
| 307 | + public function create_table_webhooks() { | |
| 308 | + global $wpdb; | |
| 309 | + | |
| 310 | + try { | |
| 311 | + $collation = $wpdb->has_cap( 'collation' ) ? $wpdb->get_charset_collate() : 'ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci'; | |
| 312 | + | |
| 313 | + $sql = "CREATE TABLE IF NOT EXISTS {$this->lp_db->tb_lp_webhooks} ( | |
| 314 | + webhook_id bigint(20) unsigned NOT NULL AUTO_INCREMENT, | |
| 315 | + user_id bigint(20) unsigned NOT NULL DEFAULT 0, | |
| 316 | + status varchar(20) NOT NULL DEFAULT 'active', | |
| 317 | + name varchar(200) NOT NULL DEFAULT '', | |
| 318 | + delivery_url longtext NOT NULL, | |
| 319 | + secret text NOT NULL, | |
| 320 | + events longtext NOT NULL, | |
| 321 | + created_at datetime NOT NULL, | |
| 322 | + updated_at datetime NULL DEFAULT NULL, | |
| 323 | + PRIMARY KEY (webhook_id), | |
| 324 | + KEY user_id (user_id), | |
| 325 | + KEY status (status) | |
| 326 | + ) $collation"; | |
| 327 | + | |
| 328 | + $wpdb->query( $sql ); | |
| 329 | + } catch ( Throwable $e ) { | |
| 330 | + error_log( $e->getMessage() ); | |
| 331 | + } | |
| 332 | + } | |
| 333 | + | |
| 334 | + /** | |
| 335 | + * Create default pages for LP | |
| 336 | + */ | |
| 337 | + public static function create_pages() { | |
| 338 | + $pages = self::$_pages; | |
| 339 | + | |
| 340 | + try { | |
| 341 | + foreach ( $pages as $page ) { | |
| 342 | + // Check if page has already existed | |
| 343 | + $page_id = get_option( "learn_press_{$page}_page_id", false ); | |
| 344 | + | |
| 345 | + if ( $page_id && get_post_type( $page_id ) === 'page' && get_post_status( $page_id ) == 'publish' ) { | |
| 346 | + continue; | |
| 347 | + } | |
| 348 | + | |
| 349 | + if ( $page === 'courses' ) { | |
| 350 | + $page_title = 'Courses'; | |
| 351 | + $page_slug = $page; | |
| 352 | + } elseif ( 'single_instructor' === $page ) { | |
| 353 | + $page_title = 'Instructor'; | |
| 354 | + $page_slug = 'instructor'; | |
| 355 | + } elseif ( 'instructors' === $page ) { | |
| 356 | + $page_title = 'Instructors'; | |
| 357 | + $page_slug = $page; | |
| 358 | + } elseif ( 'become_a_teacher' === $page ) { | |
| 359 | + $page_title = 'Become an Instructor'; | |
| 360 | + $page_slug = $page; | |
| 361 | + } elseif ( 'term_conditions' === $page ) { | |
| 362 | + $page_title = 'Terms and Conditions'; | |
| 363 | + $page_slug = $page; | |
| 364 | + } else { | |
| 365 | + $page_title = ucwords( str_replace( '_', ' ', $page ) ); | |
| 366 | + $page_slug = 'lp-' . str_replace( '_', '-', $page ); | |
| 367 | + } | |
| 368 | + | |
| 369 | + $data_create_page = array( | |
| 370 | + 'post_title' => $page_title, | |
| 371 | + 'post_name' => $page_slug, | |
| 372 | + ); | |
| 373 | + LP_Helper::create_page( $data_create_page, "learn_press_{$page}_page_id" ); | |
| 374 | + } | |
| 375 | + | |
| 376 | + flush_rewrite_rules(); | |
| 377 | + } catch ( Exception $ex ) { | |
| 378 | + error_log( $ex->getMessage() ); | |
| 379 | + } | |
| 380 | + } | |
| 381 | + | |
| 382 | + /** | |
| 383 | + * Check installed all tables required for LearnPress. | |
| 384 | + * | |
| 385 | + * @return bool | |
| 386 | + */ | |
| 387 | + public function tables_install_done(): bool { | |
| 388 | + $install_done = get_option( 'learn_press_check_tables', 'no' ); | |
| 389 | + if ( is_multisite() && 'yes' !== $install_done ) { | |
| 390 | + $this->create_tables(); | |
| 391 | + } | |
| 392 | + | |
| 393 | + return $install_done; | |
| 394 | + } | |
| 395 | + } | |
| 396 | +} | |