init
This commit is contained in:
@@ -0,0 +1,177 @@
|
||||
<?php // phpcs:ignore SlevomatCodingStandard.TypeHints.DeclareStrictTypes.DeclareStrictTypesMissing
|
||||
|
||||
namespace MailPoet\Config;
|
||||
|
||||
if (!defined('ABSPATH')) exit;
|
||||
|
||||
|
||||
use MailPoet\Settings\SettingsController;
|
||||
use MailPoet\Settings\TrackingConfig;
|
||||
use MailPoet\Util\Url;
|
||||
use MailPoet\WooCommerce\Helper;
|
||||
use MailPoet\WP\Functions as WPFunctions;
|
||||
|
||||
class Changelog {
|
||||
/** @var WPFunctions */
|
||||
private $wp;
|
||||
|
||||
/** @var SettingsController */
|
||||
private $settings;
|
||||
|
||||
/** @var Helper */
|
||||
private $wooCommerceHelper;
|
||||
|
||||
/** @var Url */
|
||||
private $urlHelper;
|
||||
|
||||
/** @var TrackingConfig */
|
||||
private $trackingConfig;
|
||||
|
||||
public function __construct(
|
||||
SettingsController $settings,
|
||||
WPFunctions $wp,
|
||||
Helper $wooCommerceHelper,
|
||||
Url $urlHelper,
|
||||
TrackingConfig $trackingConfig
|
||||
) {
|
||||
$this->wooCommerceHelper = $wooCommerceHelper;
|
||||
$this->settings = $settings;
|
||||
$this->wp = $wp;
|
||||
$this->urlHelper = $urlHelper;
|
||||
$this->trackingConfig = $trackingConfig;
|
||||
}
|
||||
|
||||
public function init() {
|
||||
$doingAjax = (bool)(defined('DOING_AJAX') && DOING_AJAX);
|
||||
|
||||
// don't run any check when it's an ajax request
|
||||
if ($doingAjax) {
|
||||
return;
|
||||
}
|
||||
|
||||
// don't run any check when we're not on our pages
|
||||
if (
|
||||
!(isset($_GET['page']))
|
||||
or
|
||||
(isset($_GET['page']) && strpos(
|
||||
sanitize_text_field(wp_unslash($_GET['page'])),
|
||||
'mailpoet'
|
||||
) !== 0)
|
||||
) {
|
||||
return;
|
||||
}
|
||||
|
||||
WPFunctions::get()->addAction(
|
||||
'admin_init',
|
||||
[$this, 'check']
|
||||
);
|
||||
}
|
||||
|
||||
public function check() {
|
||||
$version = $this->settings->get('version');
|
||||
if ($version === null) {
|
||||
$this->setupNewInstallation();
|
||||
$this->maybeRedirectToLandingPage();
|
||||
}
|
||||
$this->checkWooCommerceListImportPage();
|
||||
$this->checkRevenueTrackingPermissionPage();
|
||||
}
|
||||
|
||||
public function shouldShowWelcomeWizard() {
|
||||
if ($this->wp->applyFilters('mailpoet_skip_welcome_wizard', false)) {
|
||||
return false;
|
||||
}
|
||||
return $this->settings->get('version') === null;
|
||||
}
|
||||
|
||||
public function shouldShowLandingPage(): bool {
|
||||
return $this->shouldShowWelcomeWizard();
|
||||
}
|
||||
|
||||
public function shouldShowWooCommerceListImportPage() {
|
||||
if ($this->wp->applyFilters('mailpoet_skip_woocommerce_import_page', false)) {
|
||||
return false;
|
||||
}
|
||||
return !$this->settings->get('woocommerce_import_screen_displayed')
|
||||
&& $this->wooCommerceHelper->isWooCommerceActive()
|
||||
&& $this->wooCommerceHelper->getOrdersCountCreatedBefore($this->settings->get('installed_at')) > 0
|
||||
&& $this->wp->currentUserCan('administrator');
|
||||
}
|
||||
|
||||
public function shouldShowRevenueTrackingPermissionPage() {
|
||||
return ($this->settings->get('woocommerce.accept_cookie_revenue_tracking.set') === null)
|
||||
&& $this->trackingConfig->isEmailTrackingEnabled()
|
||||
&& $this->wooCommerceHelper->isWooCommerceActive()
|
||||
&& $this->wp->currentUserCan('administrator');
|
||||
}
|
||||
|
||||
public function redirectToLandingPage() {
|
||||
if (isset($_GET['activate-multi'])) return; // do not redirect when activated with bulk activation mode
|
||||
|
||||
if ($this->shouldShowLandingPage() && !$this->isLandingPage()) {
|
||||
$this->urlHelper->redirectTo(
|
||||
$this->wp->adminUrl('admin.php?page=mailpoet-landingpage')
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
public function maybeRedirectToLandingPage() {
|
||||
if ($this->isWelcomeWizardPage()) return; // do not redirect when on welcome wizard page
|
||||
|
||||
if ($this->isExperimentalPage()) return; // do not redirect when on experimental page
|
||||
|
||||
$this->redirectToLandingPage();
|
||||
}
|
||||
|
||||
private function setupNewInstallation() {
|
||||
$this->settings->set('show_congratulate_after_first_newsletter', true);
|
||||
}
|
||||
|
||||
private function isWelcomeWizardPage() {
|
||||
return isset($_GET['page']) && sanitize_text_field(wp_unslash($_GET['page'])) === Menu::WELCOME_WIZARD_PAGE_SLUG;
|
||||
}
|
||||
|
||||
private function isLandingPage() {
|
||||
return isset($_GET['page']) && sanitize_text_field(wp_unslash($_GET['page'])) === Menu::LANDINGPAGE_PAGE_SLUG;
|
||||
}
|
||||
|
||||
private function isExperimentalPage() {
|
||||
return isset($_GET['page']) && sanitize_text_field(wp_unslash($_GET['page'])) === Menu::EXPERIMENTS_PAGE_SLUG;
|
||||
}
|
||||
|
||||
private function checkWooCommerceListImportPage() {
|
||||
if (
|
||||
!isset($_GET['page']) ||
|
||||
!in_array(
|
||||
sanitize_text_field(wp_unslash($_GET['page'])),
|
||||
[
|
||||
'mailpoet-woocommerce-setup',
|
||||
'mailpoet-welcome-wizard',
|
||||
'mailpoet-migration',
|
||||
'mailpoet-landingpage',
|
||||
]
|
||||
)
|
||||
&& $this->shouldShowWooCommerceListImportPage()
|
||||
) {
|
||||
$this->urlHelper->redirectTo($this->wp->adminUrl('admin.php?page=mailpoet-woocommerce-setup'));
|
||||
}
|
||||
}
|
||||
|
||||
private function checkRevenueTrackingPermissionPage() {
|
||||
if (
|
||||
!isset($_GET['page']) ||
|
||||
!in_array(
|
||||
sanitize_text_field(wp_unslash($_GET['page'])),
|
||||
[
|
||||
'mailpoet-woocommerce-setup',
|
||||
'mailpoet-welcome-wizard',
|
||||
'mailpoet-migration',
|
||||
'mailpoet-landingpage',
|
||||
]
|
||||
)
|
||||
&& $this->shouldShowRevenueTrackingPermissionPage()
|
||||
) {
|
||||
$this->urlHelper->redirectTo($this->wp->adminUrl('admin.php?page=mailpoet-woocommerce-setup'));
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user