334 lines
13 KiB
PHP
334 lines
13 KiB
PHP
<?php
|
|
/**
|
|
* Copyright since 2007 PrestaShop SA and Contributors
|
|
* PrestaShop is an International Registered Trademark & Property of PrestaShop SA
|
|
*
|
|
* NOTICE OF LICENSE
|
|
*
|
|
* This source file is subject to the Academic Free License version 3.0
|
|
* that is bundled with this package in the file LICENSE.md.
|
|
* It is also available through the world-wide-web at this URL:
|
|
* https://opensource.org/licenses/AFL-3.0
|
|
* If you did not receive a copy of the license and are unable to
|
|
* obtain it through the world-wide-web, please send an email
|
|
* to license@prestashop.com so we can send you a copy immediately.
|
|
*
|
|
* @author PrestaShop SA and Contributors <contact@prestashop.com>
|
|
* @copyright Since 2007 PrestaShop SA and Contributors
|
|
* @license https://opensource.org/licenses/AFL-3.0 Academic Free License version 3.0
|
|
*/
|
|
|
|
use PrestaShop\Module\PsxMarketingWithGoogle\Adapter\BillingAdapter;
|
|
use PrestaShop\Module\PsxMarketingWithGoogle\Adapter\ConfigurationAdapter;
|
|
use PrestaShop\Module\PsxMarketingWithGoogle\Config\Config;
|
|
use PrestaShop\Module\PsxMarketingWithGoogle\Config\Env;
|
|
use PrestaShop\Module\PsxMarketingWithGoogle\Handler\ErrorHandler;
|
|
use PrestaShop\Module\PsxMarketingWithGoogle\Repository\CountryRepository;
|
|
use PrestaShop\Module\PsxMarketingWithGoogle\Repository\CurrencyRepository;
|
|
use PrestaShop\Module\PsxMarketingWithGoogle\Repository\LanguageRepository;
|
|
use PrestaShop\Module\PsxMarketingWithGoogle\Repository\ModuleRepository;
|
|
use PrestaShop\PrestaShop\Core\Addon\Module\ModuleManagerBuilder;
|
|
use PrestaShop\PsAccountsInstaller\Installer\Facade\PsAccounts;
|
|
use PrestaShopCorp\Billing\Presenter\BillingPresenter;
|
|
|
|
class AdminPsxMktgWithGoogleModuleController extends ModuleAdminController
|
|
{
|
|
/** @var PsxMarketingWithGoogle */
|
|
public $module;
|
|
|
|
/**
|
|
* @var Env
|
|
*/
|
|
private $env;
|
|
|
|
/**
|
|
/**
|
|
* @var ConfigurationAdapter
|
|
*/
|
|
private $configurationAdapter;
|
|
|
|
/**
|
|
* @var CountryRepository
|
|
*/
|
|
private $countryRepository;
|
|
|
|
/**
|
|
* @var CurrencyRepository
|
|
*/
|
|
private $currencyRepository;
|
|
|
|
/**
|
|
* @var LanguageRepository
|
|
*/
|
|
private $languageRepository;
|
|
|
|
/**
|
|
* @var ModuleRepository
|
|
*/
|
|
private $moduleRepository;
|
|
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
$this->bootstrap = false;
|
|
|
|
$this->module->getService(ErrorHandler::class);
|
|
$this->env = $this->module->getService(Env::class);
|
|
$this->configurationAdapter = $this->module->getService(
|
|
ConfigurationAdapter::class
|
|
);
|
|
$this->countryRepository = $this->module->getService(
|
|
CountryRepository::class
|
|
);
|
|
$this->currencyRepository = $this->module->getService(
|
|
CurrencyRepository::class
|
|
);
|
|
$this->languageRepository = $this->module->getService(
|
|
LanguageRepository::class
|
|
);
|
|
$this->moduleRepository = new ModuleRepository($this->module->name);
|
|
}
|
|
|
|
public function initContent()
|
|
{
|
|
// from google response
|
|
if (
|
|
Tools::getValue('message') !== false ||
|
|
Tools::getValue('from') !== false
|
|
) {
|
|
$this->ajax = true;
|
|
if (version_compare(_PS_VERSION_, '9.0.0', '>=')) {
|
|
$this->content = $this->context->smarty->display(
|
|
$this->module->getLocalPath() .
|
|
'/views/templates/admin/googlePopin.tpl'
|
|
);
|
|
} else {
|
|
$this->content = $this->context->smarty->fetch(
|
|
'module:psxmarketingwithgoogle/views/templates/admin/googlePopin.tpl'
|
|
);
|
|
}
|
|
|
|
return;
|
|
}
|
|
|
|
$billingUrl = (bool) $this->env->get('USE_BILLING_PREPROD') ? $this->env->get('PSX_MKTG_WITH_GOOGLE_BILLING_PREPROD_CDC_URL') : $this->env->get('PSX_MKTG_WITH_GOOGLE_BILLING_CDC_URL');
|
|
$cloudsyncUrl = (bool) $this->env->get('USE_CLOUDSYNC_PREPROD') ? $this->env->get('PSX_MKTG_WITH_GOOGLE_CLOUDSYNC_PREPROD_CDC_URL') : $this->env->get('PSX_MKTG_WITH_GOOGLE_CLOUDSYNC_CDC_URL');
|
|
|
|
$this->context->smarty->assign([
|
|
'pathApp' => (bool) $this->env->get('USE_LOCAL_VUE_APP')
|
|
? $this->module->getPathUri() .
|
|
'views/js/psxmarketingwithgoogle-ui.js'
|
|
: $this->env->get('PSX_MKTG_WITH_GOOGLE_CDN_URL') .
|
|
'psxmarketingwithgoogle-ui.js',
|
|
'billingUrl' => $billingUrl,
|
|
'cloudSyncUrl' => $cloudsyncUrl,
|
|
'psxMktgWithGoogleControllerLink' => $this->context->link->getAdminLink(
|
|
'AdminAjaxPsxMktgWithGoogle'
|
|
),
|
|
'psxMktgWithGoogleLiveMode' => (bool) $this->env->get(
|
|
'USE_LIVE_VUE_APP'
|
|
),
|
|
]);
|
|
|
|
try {
|
|
/**********************
|
|
* PrestaShop Account *
|
|
**********************/
|
|
|
|
$psAccountsService = $this->module
|
|
->getService(PsAccounts::class)
|
|
->getPsAccountsService();
|
|
$shopIdPsAccounts = $psAccountsService->getShopUuidV4();
|
|
$tokenPsAccounts = $psAccountsService->getOrRefreshToken();
|
|
|
|
/**********************
|
|
* PrestaShop Billing *
|
|
**********************/
|
|
|
|
// Load the context for PrestaShop Billing
|
|
$billingFacade = $this->module->getService(BillingPresenter::class);
|
|
$billingAdapter = new BillingAdapter(
|
|
$tokenPsAccounts,
|
|
(bool) $this->env->get('USE_BILLING_SANDBOX'),
|
|
(bool) $this->env->get('USE_BILLING_PREPROD')
|
|
);
|
|
$partnerLogo = $this->module->getLocalPath() . 'logo.png';
|
|
$fetchSubscriptions = $billingAdapter->getCurrentSubscription(
|
|
$shopIdPsAccounts,
|
|
$this->module->name
|
|
);
|
|
$currentSubscription = json_decode(
|
|
$fetchSubscriptions->getBody(),
|
|
true
|
|
);
|
|
// PrestaShop Billing
|
|
Media::addJsDef(
|
|
$billingFacade->present([
|
|
'logo' => $partnerLogo,
|
|
'tosLink' => 'https://prestashop.com/prestashop-account-terms-conditions/',
|
|
'privacyLink' => 'https://prestashop.com/prestashop-account-privacy/',
|
|
// This field is deprecated but a valid email must be provided to ensure backward compatibility
|
|
'emailSupport' => 'no-reply@prestashop.com',
|
|
])
|
|
);
|
|
Media::addJsDef([
|
|
'psBillingSubscription' => $fetchSubscriptions->getStatusCode() === 200
|
|
? $currentSubscription
|
|
: null,
|
|
]);
|
|
} catch (Exception $e) {
|
|
$shopIdPsAccounts = null;
|
|
$tokenPsAccounts = null;
|
|
}
|
|
|
|
/************************
|
|
* PrestaShop CloudSync *
|
|
************************/
|
|
|
|
$moduleManager = ModuleManagerBuilder::getInstance()->build();
|
|
|
|
if ($moduleManager->isInstalled('ps_eventbus')) {
|
|
$eventbusModule = \Module::getInstanceByName('ps_eventbus');
|
|
if (
|
|
$eventbusModule &&
|
|
version_compare($eventbusModule->version, '1.9.0', '>=')
|
|
) {
|
|
/* @phpstan-ignore-next-line */
|
|
$eventbusPresenterService = $eventbusModule->getService(
|
|
"PrestaShop\Module\PsEventbus\Service\PresenterService"
|
|
);
|
|
|
|
Media::addJsDef([
|
|
'contextPsEventbus' => $eventbusPresenterService->expose(
|
|
$this->module,
|
|
['info', 'products', 'currencies', 'categories']
|
|
),
|
|
]);
|
|
}
|
|
}
|
|
|
|
/************************************
|
|
* PrestaShop Marketing with Google *
|
|
************************************/
|
|
|
|
Media::addJsDef([
|
|
'contextPsAccounts' => (object) $this->module
|
|
->getService(PsAccounts::class)
|
|
->getPsAccountsPresenter()
|
|
->present($this->module->name),
|
|
'i18nSettings' => [
|
|
'isoCode' => $this->context->language->iso_code,
|
|
'languageLocale' => $this->context->language->language_code,
|
|
],
|
|
'psGoogleRetrieveFaq' => $this->context->link->getAdminLink(
|
|
'AdminAjaxPsxMktgWithGoogle',
|
|
true,
|
|
[],
|
|
[
|
|
'action' => 'RetrieveFaq',
|
|
'ajax' => 1,
|
|
]
|
|
),
|
|
'psGoogleCallEventBus' => $this->context->link->getAdminLink(
|
|
'AdminAjaxPsxMktgWithGoogle',
|
|
true,
|
|
[],
|
|
[
|
|
'ajax' => 1,
|
|
]
|
|
),
|
|
'shopIdPsAccounts' => $shopIdPsAccounts,
|
|
'tokenPsAccounts' => $tokenPsAccounts,
|
|
'psVersion' => _PS_VERSION_,
|
|
'phpVersion' => phpversion(),
|
|
'psxMktgWithGoogleModuleVersion' => $this->module->version,
|
|
'psxMktgWithGoogleOnProductionEnvironment' => $this->env->get('PSX_MKTG_WITH_GOOGLE_API_URL') ===
|
|
Config::PSX_MKTG_WITH_GOOGLE_API_URL,
|
|
'psxMktgWithGoogleSegmentId' => $this->env->get(
|
|
'PSX_MKTG_WITH_GOOGLE_SEGMENT_API_KEY'
|
|
),
|
|
'psxMktgWithGoogleDsnSentry' => $this->env->get(
|
|
'PSX_MKTG_WITH_GOOGLE_SENTRY_CREDENTIALS_VUE'
|
|
),
|
|
'psxMktgWithGoogleApiUrl' => $this->env->get(
|
|
'PSX_MKTG_WITH_GOOGLE_API_URL'
|
|
),
|
|
'psxMktgWithGoogleAdminUrl' => $this->context->link->getAdminLink(
|
|
'AdminPsxMktgWithGoogleModule'
|
|
),
|
|
'psxMktgWithGoogleAdminAjaxUrl' => $this->context->link->getAdminLink(
|
|
'AdminAjaxPsxMktgWithGoogle',
|
|
true,
|
|
[],
|
|
[
|
|
'ajax' => 1,
|
|
]
|
|
),
|
|
'psxMktgWithGoogleMaintenanceSettingsUrl' => Tools::getShopDomainSsl(true) .
|
|
$this->context->link->getAdminLink('AdminMaintenance'),
|
|
'psxMktgWithGoogleCarriersUrl' => $this->context->link->getAdminLink(
|
|
'AdminCarriers'
|
|
),
|
|
'psxMktgWithGoogleAttributesUrl' => $this->context->link->getAdminLink(
|
|
'AdminAttributesGroups'
|
|
),
|
|
'psxMktgWithGoogleStoreSettingsUrl' => $this->context->link->getAdminLink(
|
|
'AdminStores'
|
|
),
|
|
'psxMktgWithGoogleProductsUrl' => $this->context->link->getAdminLink(
|
|
'AdminProducts'
|
|
),
|
|
'psxMktgWithGoogleCurrenciesUrl' => $this->context->link->getAdminLink(
|
|
'AdminCurrencies'
|
|
),
|
|
'psxMktgWithGoogleLanguagesUrl' => $this->context->link->getAdminLink(
|
|
'AdminLanguages'
|
|
),
|
|
'psxMktgWithGoogleProductDetailUrl' => $this->context->link->getAdminLink(
|
|
'AdminProducts',
|
|
true,
|
|
['id_product' => 1, 'updateproduct' => '1']
|
|
),
|
|
'psxMktgWithGoogleEnableLink' => $this->moduleRepository->getEnableLink(),
|
|
'psxMktgWithGoogleModuleIsEnabled' => $this->moduleRepository->moduleIsEnabled(),
|
|
'isCountryMemberOfEuropeanUnion' => $this->countryRepository->isCompatibleForCSS(),
|
|
'psxMktgWithGoogleShopUrl' => $this->context->link->getBaseLink(
|
|
$this->context->shop->id
|
|
),
|
|
'psxMktgWithGoogleActiveCountries' => $this->countryRepository->getActiveCountries(),
|
|
'psxMktgWithGoogleActiveCurrencies' => $this->currencyRepository->getActiveCurrencies(),
|
|
'psxMktgWithGoogleLanguages' => $this->languageRepository->getLanguages(),
|
|
'psxMtgWithGoogleDefaultShopCountry' => $this->countryRepository->getShopDefaultCountry()[
|
|
'iso_code'
|
|
],
|
|
'psxMktgWithGoogleShopCurrency' => $this->currencyRepository->getShopCurrency(),
|
|
'psxMktgWithGoogleRemarketingTagsStatus' => (bool) $this->configurationAdapter->get(
|
|
Config::PSX_MKTG_WITH_GOOGLE_REMARKETING_STATUS
|
|
),
|
|
]);
|
|
|
|
if ($moduleManager->isInstalled('ps_accounts')) {
|
|
$accountsModule = \Module::getInstanceByName('ps_accounts');
|
|
if ($accountsModule && version_compare($accountsModule->version, '7', '>=')) {
|
|
/* @phpstan-ignore-next-line */
|
|
$accountsCdn = $accountsModule->getParameter('ps_accounts.accounts_cdn_url');
|
|
}
|
|
}
|
|
|
|
$this->context->smarty->assign([
|
|
'ps_account_cdn_url' => $accountsCdn ?? 'https://unpkg.com/prestashop_accounts_vue_components@5',
|
|
]);
|
|
|
|
$this->content = $this->context->smarty->fetch(
|
|
$this->module->getLocalPath() . '/views/templates/admin/app.tpl'
|
|
);
|
|
|
|
parent::initContent();
|
|
}
|
|
|
|
public function postProcess()
|
|
{
|
|
return false;
|
|
}
|
|
}
|