| @@ -1,361 +1,485 @@ | ||
| 1 | 1 | <?php |
| 2 | - | |
| 3 | 2 | namespace Elementor\App\Modules\Onboarding; |
| 4 | 3 | |
| 5 | -use Elementor\App\Modules\Onboarding\Data\Controller; | |
| 6 | -use Elementor\App\Modules\Onboarding\Data\Endpoints\Install_Theme; | |
| 7 | -use Elementor\App\Modules\Onboarding\Storage\Entities\User_Choices; | |
| 8 | -use Elementor\App\Modules\Onboarding\Storage\Entities\User_Progress; | |
| 9 | -use Elementor\App\Modules\Onboarding\Storage\Onboarding_Progress_Manager; | |
| 4 | +use Automatic_Upgrader_Skin; | |
| 10 | 5 | use Elementor\Core\Base\Module as BaseModule; |
| 11 | -use Elementor\Core\Settings\Manager as SettingsManager; | |
| 12 | -use Elementor\Includes\EditorAssetsAPI; | |
| 6 | +use Elementor\Core\Common\Modules\Ajax\Module as Ajax; | |
| 7 | +use Elementor\Core\Common\Modules\Connect\Apps\Library; | |
| 8 | +use Elementor\Core\Files\Uploads_Manager; | |
| 13 | 9 | use Elementor\Plugin; |
| 10 | +use Elementor\Tracker; | |
| 14 | 11 | use Elementor\Utils; |
| 12 | +use Plugin_Upgrader; | |
| 15 | 13 | |
| 16 | 14 | if ( ! defined( 'ABSPATH' ) ) { |
| 17 | - exit; | |
| 15 | + exit; // Exit if accessed directly | |
| 18 | 16 | } |
| 19 | 17 | |
| 18 | +/** | |
| 19 | + * Onboarding Module | |
| 20 | + * | |
| 21 | + * Responsible for initializing Elementor App functionality | |
| 22 | + * | |
| 23 | + * @since 3.6.0 | |
| 24 | + */ | |
| 20 | 25 | class Module extends BaseModule { |
| 21 | 26 | |
| 22 | - const VERSION = '2.0.0'; | |
| 23 | - const ASSETS_BASE_URL = 'https://assets.elementor.com/onboarding/v1/strings/'; | |
| 27 | + const VERSION = '1.0.0'; | |
| 24 | 28 | const ONBOARDING_OPTION = 'elementor_onboarded'; |
| 25 | 29 | |
| 26 | - const SUPPORTED_LOCALES = [ | |
| 27 | - 'de_DE' => 'de', | |
| 28 | - 'es_ES' => 'es', | |
| 29 | - 'fr_FR' => 'fr', | |
| 30 | - 'he_IL' => 'he', | |
| 31 | - 'id_ID' => 'id', | |
| 32 | - 'it_IT' => 'it', | |
| 33 | - 'nl_NL' => 'nl', | |
| 34 | - 'pl_PL' => 'pl', | |
| 35 | - 'pt_BR' => 'pt', | |
| 36 | - 'tr_TR' => 'tr', | |
| 37 | - ]; | |
| 38 | - | |
| 39 | - private Onboarding_Progress_Manager $progress_manager; | |
| 40 | - | |
| 41 | - public function get_name(): string { | |
| 30 | + /** | |
| 31 | + * Get name. | |
| 32 | + * | |
| 33 | + * @since 3.6.0 | |
| 34 | + * @access public | |
| 35 | + * | |
| 36 | + * @return string | |
| 37 | + */ | |
| 38 | + public function get_name() { | |
| 42 | 39 | return 'onboarding'; |
| 43 | 40 | } |
| 44 | 41 | |
| 45 | - public static function has_user_finished_onboarding(): bool { | |
| 46 | - return (bool) get_option( self::ONBOARDING_OPTION ); | |
| 47 | - } | |
| 48 | - | |
| 49 | - public function __construct() { | |
| 50 | - $this->progress_manager = Onboarding_Progress_Manager::instance(); | |
| 51 | - | |
| 52 | - Plugin::instance()->data_manager_v2->register_controller( new Controller() ); | |
| 53 | - | |
| 54 | - add_action( 'elementor/init', [ $this, 'on_elementor_init' ], 12 ); | |
| 55 | - | |
| 56 | - if ( $this->should_show_starter() ) { | |
| 57 | - add_filter( 'elementor/editor/localize_settings', [ $this, 'add_starter_settings' ] ); | |
| 58 | - add_filter( 'elementor/editor/v2/packages', [ $this, 'add_starter_packages' ] ); | |
| 59 | - add_action( 'elementor/editor/v2/styles/enqueue', [ $this, 'enqueue_fonts' ] ); | |
| 60 | - add_action( 'elementor/preview/enqueue_styles', [ $this, 'enqueue_starter_preview_css' ] ); | |
| 61 | - } | |
| 62 | - } | |
| 63 | - | |
| 64 | - public function on_elementor_init(): void { | |
| 65 | - if ( ! Plugin::instance()->app->is_current() ) { | |
| 42 | + /** | |
| 43 | + * Set Onboarding Settings | |
| 44 | + * | |
| 45 | + * Creates an array of module settings that is localized into the JS App config. | |
| 46 | + * | |
| 47 | + * @since 3.6.0 | |
| 48 | + */ | |
| 49 | + private function set_onboarding_settings() { | |
| 50 | + if ( ! Plugin::$instance->common ) { | |
| 66 | 51 | return; |
| 67 | 52 | } |
| 68 | 53 | |
| 69 | - $this->set_onboarding_settings(); | |
| 70 | - $this->enqueue_fonts(); | |
| 71 | - } | |
| 54 | + // Get the published pages and posts | |
| 55 | + $pages_and_posts = new \WP_Query( [ | |
| 56 | + 'post_type' => [ 'page', 'post' ], | |
| 57 | + 'post_status' => 'publish', | |
| 58 | + 'update_post_meta_cache' => false, | |
| 59 | + 'update_post_term_cache' => false, | |
| 60 | + 'no_found_rows' => true, | |
| 61 | + ] ); | |
| 72 | 62 | |
| 73 | - public function enqueue_fonts(): void { | |
| 74 | - wp_enqueue_style( | |
| 75 | - 'elementor-onboarding-fonts', | |
| 76 | - 'https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap', | |
| 77 | - [], | |
| 78 | - ELEMENTOR_VERSION | |
| 79 | - ); | |
| 80 | - } | |
| 63 | + $custom_site_logo_id = get_theme_mod( 'custom_logo' ); | |
| 64 | + $custom_logo_src = wp_get_attachment_image_src( $custom_site_logo_id, 'full' ); | |
| 65 | + $site_name = get_option( 'blogname', '' ); | |
| 81 | 66 | |
| 82 | - public function enqueue_starter_preview_css(): void { | |
| 83 | - $css = ' | |
| 84 | - #site-header, | |
| 85 | - .page-header { display: var(--e-starter-header-display, none); } | |
| 86 | - '; | |
| 67 | + $hello_theme = wp_get_theme( 'hello-elementor' ); | |
| 68 | + $hello_theme_errors = is_object( $hello_theme->errors() ) ? $hello_theme->errors()->errors : []; | |
| 87 | 69 | |
| 88 | - wp_register_style( 'elementor-starter-preview', false ); | |
| 89 | - wp_enqueue_style( 'elementor-starter-preview' ); | |
| 90 | - wp_add_inline_style( 'elementor-starter-preview', $css ); | |
| 91 | - } | |
| 70 | + /** @var Library $library */ | |
| 71 | + $library = Plugin::$instance->common->get_component( 'connect' )->get_app( 'library' ); | |
| 92 | 72 | |
| 93 | - public function progress_manager(): Onboarding_Progress_Manager { | |
| 94 | - return $this->progress_manager; | |
| 95 | - } | |
| 96 | - | |
| 97 | - private function set_onboarding_settings(): void { | |
| 98 | - if ( ! Plugin::instance()->common ) { | |
| 99 | - return; | |
| 100 | - } | |
| 101 | - | |
| 102 | - $progress = $this->progress_manager->get_progress(); | |
| 103 | - $choices = $this->progress_manager->get_choices(); | |
| 104 | - $steps = $this->get_steps_config(); | |
| 105 | - | |
| 106 | - // If the user previously selected a theme but it's no longer the active theme, | |
| 107 | - // clear the theme selection so the user can re-select. | |
| 108 | - $this->maybe_invalidate_theme_selection( $progress, $choices ); | |
| 109 | - | |
| 110 | - $is_connected = $this->is_user_connected(); | |
| 111 | - | |
| 112 | 73 | Plugin::$instance->app->set_settings( 'onboarding', [ |
| 113 | - 'version' => self::VERSION, | |
| 114 | - 'restUrl' => rest_url( 'elementor/v1/onboarding/' ), | |
| 115 | - 'nonce' => wp_create_nonce( 'wp_rest' ), | |
| 116 | - 'progress' => $this->validate_progress_for_steps( $progress, $steps ), | |
| 117 | - 'choices' => $choices->to_array(), | |
| 118 | - 'hadUnexpectedExit' => $progress->had_unexpected_exit( self::has_user_finished_onboarding() ), | |
| 119 | - 'isConnected' => $is_connected, | |
| 120 | - 'userName' => $this->get_user_display_name(), | |
| 121 | - 'steps' => $steps, | |
| 122 | - 'uiTheme' => $this->get_ui_theme_preference(), | |
| 123 | - 'translations' => $this->get_translated_strings(), | |
| 124 | - 'shouldShowProInstallScreen' => $is_connected ? $this->should_show_pro_install_screen() : false, | |
| 74 | + 'eventPlacement' => 'Onboarding wizard', | |
| 75 | + 'onboardingAlreadyRan' => get_option( self::ONBOARDING_OPTION ), | |
| 76 | + 'onboardingVersion' => self::VERSION, | |
| 77 | + 'isLibraryConnected' => $library->is_connected(), | |
| 78 | + // Used to check if the Hello Elementor theme is installed but not activated. | |
| 79 | + 'helloInstalled' => empty( $hello_theme_errors['theme_not_found'] ), | |
| 80 | + 'helloActivated' => 'hello-elementor' === get_option( 'template' ), | |
| 81 | + // The "Use Hello theme on my site" checkbox should be checked by default only if this condition is met. | |
| 82 | + 'helloOptOut' => count( $pages_and_posts->posts ) < 5, | |
| 83 | + 'siteName' => esc_html( $site_name ), | |
| 84 | + 'isUnfilteredFilesEnabled' => Uploads_Manager::are_unfiltered_uploads_enabled(), | |
| 125 | 85 | 'urls' => [ |
| 126 | - 'dashboard' => admin_url(), | |
| 127 | - 'editor' => admin_url( 'edit.php?post_type=elementor_library' ), | |
| 128 | - 'connect' => $this->get_connect_url(), | |
| 129 | - 'signUp' => $this->get_connect_url( 'signup' ), | |
| 130 | - 'comparePlans' => 'https://go.elementor.com/go-pro-onboarding-editor-features-step-upgrade/', | |
| 86 | + 'kitLibrary' => Plugin::$instance->app->get_base_url() . '#/kit-library?order[direction]=desc&order[by]=featuredIndex', | |
| 131 | 87 | 'createNewPage' => Plugin::$instance->documents->get_create_new_post_url(), |
| 132 | - 'upgradeUrl' => 'https://go.elementor.com/go-pro-onboarding-editor-header-upgrade/', | |
| 88 | + 'connect' => $library->get_admin_url( 'authorize', [ | |
| 89 | + 'utm_source' => 'onboarding-wizard', | |
| 90 | + 'utm_campaign' => 'connect-account', | |
| 91 | + 'utm_medium' => 'wp-dash', | |
| 92 | + 'utm_term' => self::VERSION, | |
| 93 | + 'source' => 'generic', | |
| 94 | + ] ), | |
| 95 | + 'signUp' => $library->get_admin_url( 'authorize', [ | |
| 96 | + 'utm_source' => 'onboarding-wizard', | |
| 97 | + 'utm_campaign' => 'connect-account', | |
| 98 | + 'utm_medium' => 'wp-dash', | |
| 99 | + 'utm_term' => self::VERSION, | |
| 100 | + 'source' => 'generic', | |
| 101 | + 'screen_hint' => 'signup', | |
| 102 | + ] ), | |
| 103 | + 'uploadPro' => Plugin::$instance->app->get_base_url() . '#/onboarding/uploadAndInstallPro?mode=popup', | |
| 133 | 104 | ], |
| 105 | + 'siteLogo' => [ | |
| 106 | + 'id' => $custom_site_logo_id, | |
| 107 | + 'url' => $custom_logo_src ? $custom_logo_src[0] : '', | |
| 108 | + ], | |
| 109 | + 'utms' => [ | |
| 110 | + 'connectTopBar' => '&utm_content=top-bar', | |
| 111 | + 'connectCta' => '&utm_content=cta-button', | |
| 112 | + 'connectCtaLink' => '&utm_content=cta-link', | |
| 113 | + 'downloadPro' => '?utm_source=onboarding-wizard&utm_campaign=my-account-subscriptions&utm_medium=wp-dash&utm_content=import-pro-plugin&utm_term=' . self::VERSION, | |
| 114 | + ], | |
| 115 | + 'nonce' => wp_create_nonce( 'onboarding' ), | |
| 134 | 116 | ] ); |
| 135 | 117 | } |
| 136 | 118 | |
| 137 | - private function validate_progress_for_steps( User_Progress $progress, array $steps ): array { | |
| 138 | - $progress_data = $progress->to_array(); | |
| 139 | - $step_count = count( $steps ); | |
| 140 | - $current_step_index = $progress->get_current_step_index() ?? 0; | |
| 141 | - $current_step_id = $progress->get_current_step_id() ?? $steps[0]['id'] ?? 'building_for'; | |
| 119 | + /** | |
| 120 | + * Get Permission Error Response | |
| 121 | + * | |
| 122 | + * Returns the response that is returned when the user's capabilities are not sufficient for performing an action. | |
| 123 | + * | |
| 124 | + * @since 3.6.4 | |
| 125 | + * | |
| 126 | + * @return array | |
| 127 | + */ | |
| 128 | + private function get_permission_error_response() { | |
| 129 | + return [ | |
| 130 | + 'status' => 'error', | |
| 131 | + 'payload' => [ | |
| 132 | + 'error_message' => esc_html__( 'You do not have permissions to perform this action.', 'elementor' ), | |
| 133 | + ], | |
| 134 | + ]; | |
| 135 | + } | |
| 142 | 136 | |
| 143 | - $is_invalid_step_index = $current_step_index < 0 || $current_step_index >= $step_count; | |
| 137 | + /** | |
| 138 | + * Maybe Update Site Logo | |
| 139 | + * | |
| 140 | + * If a new name is provided, it will be updated as the Site Name. | |
| 141 | + * | |
| 142 | + * @since 3.6.0 | |
| 143 | + * | |
| 144 | + * @return array | |
| 145 | + */ | |
| 146 | + private function maybe_update_site_name() { | |
| 147 | + $problem_error = [ | |
| 148 | + 'status' => 'error', | |
| 149 | + 'payload' => [ | |
| 150 | + 'error_message' => esc_html__( 'There was a problem setting your site name.', 'elementor' ), | |
| 151 | + ], | |
| 152 | + ]; | |
| 144 | 153 | |
| 145 | - if ( $is_invalid_step_index ) { | |
| 146 | - $current_step_id = $steps[0]['id']; | |
| 147 | - $current_step_index = 0; | |
| 154 | + // phpcs:ignore WordPress.Security.NonceVerification.Missing | |
| 155 | + if ( empty( $_POST['data'] ) ) { | |
| 156 | + return $problem_error; | |
| 148 | 157 | } |
| 149 | 158 | |
| 150 | - $progress_data['current_step_id'] = $current_step_id; | |
| 151 | - $progress_data['current_step_index'] = $current_step_index; | |
| 159 | + // phpcs:ignore WordPress.Security.NonceVerification.Missing | |
| 160 | + $data = json_decode( Utils::get_super_global_value( $_POST, 'data' ), true ); | |
| 152 | 161 | |
| 153 | - return $progress_data; | |
| 154 | - } | |
| 162 | + if ( ! isset( $data['siteName'] ) ) { | |
| 163 | + return $problem_error; | |
| 164 | + } | |
| 155 | 165 | |
| 156 | - private function is_user_connected(): bool { | |
| 157 | - $library = $this->get_library_app(); | |
| 166 | + /** | |
| 167 | + * Onboarding Site Name | |
| 168 | + * | |
| 169 | + * Filters the new site name passed by the user to update in Elementor's onboarding process. | |
| 170 | + * Elementor runs `esc_html()` on the Site Name passed by the user for security reasons. If a user wants to | |
| 171 | + * include special characters in their site name, they can use this filter to override it. | |
| 172 | + * | |
| 173 | + * @since 3.6.0 | |
| 174 | + * | |
| 175 | + * @param string Escaped new site name | |
| 176 | + */ | |
| 177 | + $new_site_name = apply_filters( 'elementor/onboarding/site-name', $data['siteName'] ); | |
| 158 | 178 | |
| 159 | - return $library ? $library->is_connected() : false; | |
| 179 | + // The site name is sanitized in `update_options()` | |
| 180 | + update_option( 'blogname', $new_site_name ); | |
| 181 | + | |
| 182 | + return [ | |
| 183 | + 'status' => 'success', | |
| 184 | + 'payload' => [ | |
| 185 | + 'siteNameUpdated' => true, | |
| 186 | + ], | |
| 187 | + ]; | |
| 160 | 188 | } |
| 161 | 189 | |
| 162 | - private function get_connect_url( string $screen_hint = '' ): string { | |
| 163 | - $library = $this->get_library_app(); | |
| 164 | - | |
| 165 | - if ( ! $library ) { | |
| 166 | - return ''; | |
| 190 | + /** | |
| 191 | + * Maybe Update Site Logo | |
| 192 | + * | |
| 193 | + * If an image attachment ID is provided, it will be updated as the Site Logo Theme Mod. | |
| 194 | + * | |
| 195 | + * @since 3.6.0 | |
| 196 | + * | |
| 197 | + * @return array | |
| 198 | + */ | |
| 199 | + private function maybe_update_site_logo() { | |
| 200 | + if ( ! current_user_can( 'edit_theme_options' ) ) { | |
| 201 | + return $this->get_permission_error_response(); | |
| 167 | 202 | } |
| 168 | 203 | |
| 169 | - return $library->get_admin_url( 'authorize', [ | |
| 170 | - 'utm_source' => 'onboarding-wizard', | |
| 171 | - 'utm_campaign' => 'connect-account', | |
| 172 | - 'utm_medium' => 'wp-dash', | |
| 173 | - 'utm_term' => self::VERSION, | |
| 174 | - 'source' => 'generic', | |
| 175 | - 'screen_hint' => $screen_hint, | |
| 176 | - ] ) ?? ''; | |
| 177 | - } | |
| 204 | + $data_error = [ | |
| 205 | + 'status' => 'error', | |
| 206 | + 'payload' => [ | |
| 207 | + 'error_message' => esc_html__( 'There was a problem setting your site logo.', 'elementor' ), | |
| 208 | + ], | |
| 209 | + ]; | |
| 178 | 210 | |
| 179 | - private function get_library_app() { | |
| 180 | - $connect = Plugin::instance()->common->get_component( 'connect' ); | |
| 181 | - | |
| 182 | - if ( ! $connect ) { | |
| 183 | - return null; | |
| 211 | + // phpcs:ignore WordPress.Security.NonceVerification.Missing | |
| 212 | + if ( empty( $_POST['data'] ) ) { | |
| 213 | + return $data_error; | |
| 184 | 214 | } |
| 185 | 215 | |
| 186 | - return $connect->get_app( 'library' ); | |
| 187 | - } | |
| 216 | + // phpcs:ignore WordPress.Security.NonceVerification.Missing | |
| 217 | + $data = json_decode( Utils::get_super_global_value( $_POST, 'data' ), true ); | |
| 188 | 218 | |
| 189 | - public static function should_show_pro_install_screen(): bool { | |
| 190 | - if ( self::is_elementor_pro_installed() ) { | |
| 191 | - return false; | |
| 219 | + // If there is no attachment ID passed or it is not a valid ID, exit here. | |
| 220 | + if ( empty( $data['attachmentId'] ) ) { | |
| 221 | + return $data_error; | |
| 192 | 222 | } |
| 193 | 223 | |
| 194 | - $connect = Plugin::$instance->common->get_component( 'connect' ); | |
| 224 | + $absint_attachment_id = absint( $data['attachmentId'] ); | |
| 195 | 225 | |
| 196 | - if ( ! $connect ) { | |
| 197 | - return false; | |
| 226 | + if ( 0 === $absint_attachment_id ) { | |
| 227 | + return $data_error; | |
| 198 | 228 | } |
| 199 | 229 | |
| 200 | - $pro_install_app = $connect->get_app( 'pro-install' ); | |
| 230 | + $attachment_url = wp_get_attachment_url( $data['attachmentId'] ); | |
| 201 | 231 | |
| 202 | - if ( ! $pro_install_app || ! $pro_install_app->is_connected() ) { | |
| 203 | - return false; | |
| 232 | + // Check if the attachment exists. If it does not, exit here. | |
| 233 | + if ( ! $attachment_url ) { | |
| 234 | + return $data_error; | |
| 204 | 235 | } |
| 205 | 236 | |
| 206 | - $download_link = $pro_install_app->get_download_link(); | |
| 237 | + set_theme_mod( 'custom_logo', $absint_attachment_id ); | |
| 207 | 238 | |
| 208 | - return ! empty( $download_link ); | |
| 239 | + return [ | |
| 240 | + 'status' => 'success', | |
| 241 | + 'payload' => [ | |
| 242 | + 'siteLogoUpdated' => true, | |
| 243 | + ], | |
| 244 | + ]; | |
| 209 | 245 | } |
| 210 | 246 | |
| 211 | - private function get_ui_theme_preference(): string { | |
| 212 | - $editor_preferences = SettingsManager::get_settings_managers( 'editorPreferences' ); | |
| 247 | + /** | |
| 248 | + * Maybe Upload Logo Image | |
| 249 | + * | |
| 250 | + * If an image file upload is provided, and it passes validation, it will be uploaded to the site's Media Library. | |
| 251 | + * | |
| 252 | + * @since 3.6.0 | |
| 253 | + * | |
| 254 | + * @return array | |
| 255 | + */ | |
| 256 | + private function maybe_upload_logo_image() { | |
| 257 | + $error_message = esc_html__( 'There was a problem uploading your file.', 'elementor' ); | |
| 213 | 258 | |
| 214 | - $ui_theme = $editor_preferences->get_model()->get_settings( 'ui_theme' ); | |
| 259 | + $file = Utils::get_super_global_value( $_FILES, 'fileToUpload' ); | |
| 215 | 260 | |
| 216 | - return $ui_theme ? $ui_theme : 'auto'; | |
| 217 | - } | |
| 261 | + // phpcs:ignore WordPress.Security.NonceVerification.Missing | |
| 262 | + if ( ! is_array( $file ) || empty( $file['type'] ) ) { | |
| 263 | + return [ | |
| 264 | + 'status' => 'error', | |
| 265 | + 'payload' => [ | |
| 266 | + 'error_message' => $error_message, | |
| 267 | + ], | |
| 268 | + ]; | |
| 269 | + } | |
| 218 | 270 | |
| 219 | - private function get_user_display_name(): string { | |
| 220 | - $library = $this->get_library_app(); | |
| 221 | - | |
| 222 | - if ( ! $library || ! $library->is_connected() ) { | |
| 223 | - return ''; | |
| 271 | + // If the user has allowed it, set the Request's state as an "Elementor Upload" request, in order to add | |
| 272 | + // support for non-standard file uploads. | |
| 273 | + if ( 'image/svg+xml' === $file['type'] ) { | |
| 274 | + if ( Uploads_Manager::are_unfiltered_uploads_enabled() ) { | |
| 275 | + Plugin::$instance->uploads_manager->set_elementor_upload_state( true ); | |
| 276 | + } else { | |
| 277 | + wp_send_json_error( 'To upload SVG files, you must allow uploading unfiltered files.' ); | |
| 278 | + } | |
| 224 | 279 | } |
| 225 | 280 | |
| 226 | - $user = $library->get( 'user' ); | |
| 281 | + // If the image is an SVG file, sanitation is performed during the import (upload) process. | |
| 282 | + $image_attachment = Plugin::$instance->templates_manager->get_import_images_instance()->import( $file ); | |
| 227 | 283 | |
| 228 | - return $user->first_name ?? ''; | |
| 229 | - } | |
| 284 | + if ( 'image/svg+xml' === $file['type'] && Uploads_Manager::are_unfiltered_uploads_enabled() ) { | |
| 285 | + // Reset Upload state. | |
| 286 | + Plugin::$instance->uploads_manager->set_elementor_upload_state( false ); | |
| 287 | + } | |
| 230 | 288 | |
| 231 | - public function should_show_starter(): bool { | |
| 232 | - $progress = $this->progress_manager->get_progress(); | |
| 289 | + if ( $image_attachment && ! is_wp_error( $image_attachment ) ) { | |
| 290 | + $result = [ | |
| 291 | + 'status' => 'success', | |
| 292 | + 'payload' => [ | |
| 293 | + 'imageAttachment' => $image_attachment, | |
| 294 | + ], | |
| 295 | + ]; | |
| 296 | + } else { | |
| 297 | + $result = [ | |
| 298 | + 'status' => 'error', | |
| 299 | + 'payload' => [ | |
| 300 | + 'error_message' => $error_message, | |
| 301 | + ], | |
| 302 | + ]; | |
| 303 | + } | |
| 233 | 304 | |
| 234 | - return self::VERSION === get_option( self::ONBOARDING_OPTION ) && ! $progress->is_starter_dismissed(); | |
| 305 | + return $result; | |
| 235 | 306 | } |
| 236 | 307 | |
| 237 | - public function add_starter_packages( array $packages ): array { | |
| 238 | - $packages[] = 'editor-starter'; | |
| 308 | + /** | |
| 309 | + * Activate Hello Theme | |
| 310 | + * | |
| 311 | + * @since 3.6.0 | |
| 312 | + * | |
| 313 | + * @return array | |
| 314 | + */ | |
| 315 | + private function maybe_activate_hello_theme() { | |
| 316 | + if ( ! current_user_can( 'switch_themes' ) ) { | |
| 317 | + return $this->get_permission_error_response(); | |
| 318 | + } | |
| 239 | 319 | |
| 240 | - return $packages; | |
| 241 | - } | |
| 320 | + switch_theme( 'hello-elementor' ); | |
| 242 | 321 | |
| 243 | - public function add_starter_settings( array $settings ): array { | |
| 244 | - $settings['starter'] = [ | |
| 245 | - 'restPath' => 'elementor/v1/onboarding/user-progress', | |
| 246 | - 'aiPlannerUrl' => 'https://planner.elementor.com/home.html', | |
| 247 | - 'kitLibraryUrl' => Plugin::$instance->app->get_base_url() . '#/kit-library', | |
| 322 | + return [ | |
| 323 | + 'status' => 'success', | |
| 324 | + 'payload' => [ | |
| 325 | + 'helloThemeActivated' => true, | |
| 326 | + ], | |
| 248 | 327 | ]; |
| 249 | - | |
| 250 | - return $settings; | |
| 251 | 328 | } |
| 252 | 329 | |
| 253 | - private function maybe_invalidate_theme_selection( User_Progress $progress, User_Choices $choices ): void { | |
| 254 | - $selected_theme = $choices->get_theme_selection(); | |
| 255 | - | |
| 256 | - if ( empty( $selected_theme ) ) { | |
| 257 | - return; | |
| 330 | + /** | |
| 331 | + * Upload and Install Elementor Pro | |
| 332 | + * | |
| 333 | + * @since 3.6.0 | |
| 334 | + * | |
| 335 | + * @return array | |
| 336 | + */ | |
| 337 | + private function upload_and_install_pro() { | |
| 338 | + if ( ! current_user_can( 'install_plugins' ) || ! current_user_can( 'activate_plugins' ) ) { | |
| 339 | + return $this->get_permission_error_response(); | |
| 258 | 340 | } |
| 259 | 341 | |
| 260 | - $active_theme = get_stylesheet(); | |
| 342 | + $error_message = esc_html__( 'There was a problem uploading your file.', 'elementor' ); | |
| 261 | 343 | |
| 262 | - if ( $active_theme !== $selected_theme ) { | |
| 263 | - $completed = $this->filter_out_theme_selection_step( $progress->get_completed_steps() ); | |
| 264 | - $progress->set_completed_steps( $completed ); | |
| 265 | - $this->progress_manager->save_progress( $progress ); | |
| 344 | + $file = Utils::get_super_global_value( $_FILES, 'fileToUpload' ) ?? []; | |
| 266 | 345 | |
| 267 | - $choices->set_theme_selection( null ); | |
| 268 | - $this->progress_manager->save_choices( $choices ); | |
| 346 | + // phpcs:ignore WordPress.Security.NonceVerification.Missing | |
| 347 | + if ( ! is_array( $file ) || empty( $file['type'] ) ) { | |
| 348 | + return [ | |
| 349 | + 'status' => 'error', | |
| 350 | + 'payload' => [ | |
| 351 | + 'error_message' => $error_message, | |
| 352 | + ], | |
| 353 | + ]; | |
| 269 | 354 | } |
| 270 | - } | |
| 271 | 355 | |
| 272 | - private function filter_out_theme_selection_step( array $steps ): array { | |
| 273 | - return array_values( array_filter( $steps, function ( $step ) { | |
| 274 | - return 'theme_selection' !== $step; | |
| 275 | - } ) ); | |
| 276 | - } | |
| 356 | + $result = []; | |
| 277 | 357 | |
| 278 | - private function get_translated_strings(): array { | |
| 279 | - $locale = $this->get_onboarding_locale(); | |
| 358 | + if ( ! class_exists( 'Automatic_Upgrader_Skin' ) ) { | |
| 359 | + require_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php'; | |
| 360 | + } | |
| 280 | 361 | |
| 281 | - $api = new EditorAssetsAPI( [ | |
| 282 | - EditorAssetsAPI::ASSETS_DATA_URL => self::ASSETS_BASE_URL . $locale . '.json', | |
| 283 | - EditorAssetsAPI::ASSETS_DATA_TRANSIENT_KEY => '_elementor_onboarding_strings_' . $locale, | |
| 284 | - EditorAssetsAPI::ASSETS_DATA_KEY => 'translations', | |
| 285 | - ] ); | |
| 362 | + $skin = new Automatic_Upgrader_Skin(); | |
| 363 | + $upgrader = new Plugin_Upgrader( $skin ); | |
| 364 | + $upload_result = $upgrader->install( $file['tmp_name'], [ 'overwrite_package' => false ] ); | |
| 286 | 365 | |
| 287 | - return $api->get_assets_data(); | |
| 288 | - } | |
| 366 | + if ( ! $upload_result || is_wp_error( $upload_result ) ) { | |
| 367 | + $result = [ | |
| 368 | + 'status' => 'error', | |
| 369 | + 'payload' => [ | |
| 370 | + 'error_message' => $error_message, | |
| 371 | + ], | |
| 372 | + ]; | |
| 373 | + } else { | |
| 374 | + $activated = activate_plugin( WP_PLUGIN_DIR . '/elementor-pro/elementor-pro.php', false, false, true ); | |
| 289 | 375 | |
| 290 | - private function get_onboarding_locale(): string { | |
| 291 | - static $flipped_locales = null; | |
| 292 | - | |
| 293 | - if ( null === $flipped_locales ) { | |
| 294 | - $flipped_locales = array_flip( self::SUPPORTED_LOCALES ); | |
| 376 | + if ( ! is_wp_error( $activated ) ) { | |
| 377 | + $result = [ | |
| 378 | + 'status' => 'success', | |
| 379 | + 'payload' => [ | |
| 380 | + 'elementorProInstalled' => true, | |
| 381 | + ], | |
| 382 | + ]; | |
| 383 | + } else { | |
| 384 | + $result = [ | |
| 385 | + 'status' => 'error', | |
| 386 | + 'payload' => [ | |
| 387 | + 'error_message' => $error_message, | |
| 388 | + 'elementorProInstalled' => false, | |
| 389 | + ], | |
| 390 | + ]; | |
| 391 | + } | |
| 295 | 392 | } |
| 296 | 393 | |
| 297 | - $user_locale = get_user_locale(); | |
| 394 | + return $result; | |
| 395 | + } | |
| 298 | 396 | |
| 299 | - if ( isset( self::SUPPORTED_LOCALES[ $user_locale ] ) ) { | |
| 300 | - return $user_locale; | |
| 301 | - } | |
| 397 | + private function maybe_update_onboarding_db_option() { | |
| 398 | + $db_option = get_option( self::ONBOARDING_OPTION ); | |
| 302 | 399 | |
| 303 | - $locale = substr( $user_locale, 0, 2 ); | |
| 304 | - | |
| 305 | - if ( isset( $flipped_locales[ $locale ] ) ) { | |
| 306 | - return $flipped_locales[ $locale ]; | |
| 400 | + if ( ! $db_option ) { | |
| 401 | + update_option( self::ONBOARDING_OPTION, true ); | |
| 307 | 402 | } |
| 308 | 403 | |
| 309 | - return 'en'; | |
| 404 | + return [ | |
| 405 | + 'status' => 'success', | |
| 406 | + 'payload' => 'onboarding DB', | |
| 407 | + ]; | |
| 310 | 408 | } |
| 311 | 409 | |
| 312 | - private function get_steps_config(): array { | |
| 313 | - $steps = [ | |
| 314 | - [ | |
| 315 | - 'id' => 'building_for', | |
| 316 | - 'label' => __( 'Who are you building for?', 'elementor' ), | |
| 317 | - 'type' => 'single', | |
| 318 | - ], | |
| 319 | - [ | |
| 320 | - 'id' => 'site_about', | |
| 321 | - 'label' => __( 'What is your site about?', 'elementor' ), | |
| 322 | - 'type' => 'multiple', | |
| 323 | - ], | |
| 324 | - [ | |
| 325 | - 'id' => 'experience_level', | |
| 326 | - 'label' => __( 'How much experience do you have with Elementor?', 'elementor' ), | |
| 327 | - 'type' => 'single', | |
| 328 | - ], | |
| 329 | - ]; | |
| 410 | + /** | |
| 411 | + * Maybe Handle Ajax | |
| 412 | + * | |
| 413 | + * This method checks if there are any AJAX actions being | |
| 414 | + * @since 3.6.0 | |
| 415 | + * | |
| 416 | + * @return array|null | |
| 417 | + */ | |
| 418 | + private function maybe_handle_ajax() { | |
| 419 | + $result = []; | |
| 330 | 420 | |
| 331 | - if ( ! $this->is_elementor_theme_active() ) { | |
| 332 | - $steps[] = [ | |
| 333 | - 'id' => 'theme_selection', | |
| 334 | - 'label' => __( 'Start with a theme that fits your needs', 'elementor' ), | |
| 335 | - 'type' => 'single', | |
| 336 | - ]; | |
| 421 | + // phpcs:ignore WordPress.Security.NonceVerification.Missing | |
| 422 | + switch ( Utils::get_super_global_value( $_POST, 'action' ) ) { | |
| 423 | + case 'elementor_update_site_name': | |
| 424 | + // If no value is passed for any reason, no need ot update the site name. | |
| 425 | + $result = $this->maybe_update_site_name(); | |
| 426 | + break; | |
| 427 | + case 'elementor_update_site_logo': | |
| 428 | + $result = $this->maybe_update_site_logo(); | |
| 429 | + break; | |
| 430 | + case 'elementor_upload_site_logo': | |
| 431 | + $result = $this->maybe_upload_logo_image(); | |
| 432 | + break; | |
| 433 | + case 'elementor_activate_hello_theme': | |
| 434 | + $result = $this->maybe_activate_hello_theme(); | |
| 435 | + break; | |
| 436 | + case 'elementor_upload_and_install_pro': | |
| 437 | + $result = $this->upload_and_install_pro(); | |
| 438 | + break; | |
| 439 | + case 'elementor_update_onboarding_option': | |
| 440 | + $result = $this->maybe_update_onboarding_db_option(); | |
| 337 | 441 | } |
| 338 | 442 | |
| 339 | - if ( ! self::is_elementor_pro_installed() ) { | |
| 340 | - $steps[] = [ | |
| 341 | - 'id' => 'site_features', | |
| 342 | - 'label' => __( 'What do you want to include in your site?', 'elementor' ), | |
| 343 | - 'type' => 'multiple', | |
| 344 | - ]; | |
| 443 | + if ( ! empty( $result ) ) { | |
| 444 | + if ( 'success' === $result['status'] ) { | |
| 445 | + wp_send_json_success( $result['payload'] ); | |
| 446 | + } else { | |
| 447 | + wp_send_json_error( $result['payload'] ); | |
| 448 | + } | |
| 345 | 449 | } |
| 346 | - | |
| 347 | - return apply_filters( 'elementor/onboarding/steps', $steps ); | |
| 348 | 450 | } |
| 349 | 451 | |
| 350 | - private static function is_elementor_pro_installed(): bool { | |
| 351 | - $is_pro_installed = Utils::has_pro() || Utils::is_pro_installed_and_not_active(); | |
| 352 | - return (bool) apply_filters( 'elementor/onboarding/is_elementor_pro_installed', $is_pro_installed ); | |
| 353 | - } | |
| 452 | + public function __construct() { | |
| 453 | + add_action( 'elementor/init', function() { | |
| 454 | + // Only load when viewing the onboarding app. | |
| 455 | + if ( Plugin::$instance->app->is_current() ) { | |
| 456 | + $this->set_onboarding_settings(); | |
| 457 | + // Needed for installing the Hello Elementor theme. | |
| 458 | + wp_enqueue_script( 'updates' ); | |
| 459 | + // Needed for uploading Logo from WP Media Library. | |
| 460 | + wp_enqueue_media(); | |
| 461 | + } | |
| 462 | + }, 12 ); | |
| 354 | 463 | |
| 355 | - private function is_elementor_theme_active(): bool { | |
| 356 | - $active_theme = get_stylesheet(); | |
| 357 | - $is_active = in_array( $active_theme, Install_Theme::ALLOWED_THEMES, true ); | |
| 464 | + // Needed for uploading Logo from WP Media Library. The 'admin_menu' hook is used because it runs before | |
| 465 | + // 'admin_init', and the App triggers printing footer scripts on 'admin_init' at priority 0. | |
| 466 | + add_action( 'admin_menu', function () { | |
| 467 | + add_action( 'wp_print_footer_scripts', function () { | |
| 468 | + if ( function_exists( 'wp_print_media_templates' ) ) { | |
| 469 | + wp_print_media_templates(); | |
| 470 | + } | |
| 471 | + } ); | |
| 472 | + } ); | |
| 358 | 473 | |
| 359 | - return (bool) apply_filters( 'elementor/onboarding/is_elementor_theme_active', $is_active ); | |
| 474 | + add_action( 'admin_init', function() { | |
| 475 | + if ( wp_doing_ajax() && | |
| 476 | + isset( $_POST['action'] ) && | |
| 477 | + isset( $_POST['_nonce'] ) && | |
| 478 | + wp_verify_nonce( Utils::get_super_global_value( $_POST, '_nonce' ), Ajax::NONCE_KEY ) && | |
| 479 | + current_user_can( 'manage_options' ) | |
| 480 | + ) { | |
| 481 | + $this->maybe_handle_ajax(); | |
| 482 | + } | |
| 483 | + } ); | |
| 360 | 484 | } |
| 361 | 485 | } |