Files
wyczarujprezent.pl/modules/paypal/classes/InstallmentBanner/BannerManager.php
2024-10-28 22:14:22 +01:00

209 lines
5.7 KiB
PHP

<?php
/**
* 2007-2022 PayPal
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* 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.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
* @author 2007-2022 PayPal
* @author 202 ecommerce <tech@202-ecommerce.com>
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
* @copyright PayPal
*/
namespace PaypalAddons\classes\InstallmentBanner;
use Configuration;
use Context;
use Country;
use PaypalAddons\services\CurrencyConverter;
use ProductController;
use Validate;
class BannerManager
{
/** @var Banner */
protected $banner;
/** @var Context */
protected $context;
public function __construct()
{
$this->banner = new Banner();
$this->context = Context::getContext();
}
/**
* @return bool
*/
public function isEligibleContext()
{
$isoLang = \Tools::strtolower($this->context->language->iso_code);
$isoCurrency = \Tools::strtolower($this->context->currency->iso_code);
foreach (ConfigurationMap::getLanguageCurrencyMap() as $langCurrency) {
if (isset($langCurrency[$isoLang]) && $langCurrency[$isoLang] == $isoCurrency) {
return true;
}
}
return false;
}
/**
* @return bool
*/
public function isEligiblePage()
{
foreach (ConfigurationMap::getPageConfMap() as $page => $conf) {
if (is_a($this->context->controller, $page) && (int) Configuration::get($conf)) {
return true;
}
}
return false;
}
/**
* @return bool
*/
public function isEligibleConf()
{
if (false === (bool) Configuration::get(ConfigurationMap::ENABLE_INSTALLMENT)) {
return false;
}
if (false === $this->isEligibleCountry()) {
return false;
}
return true;
}
public function isEligibleCountry()
{
$isoCountryDefault = Country::getIsoById(
(int) Configuration::get(
'PS_COUNTRY_DEFAULT',
null,
null,
$this->context->shop->id
)
);
if (false === in_array(\Tools::strtolower($isoCountryDefault), ConfigurationMap::getAllowedCountries())) {
return false;
}
return true;
}
/**
* @return bool
*/
public function isBannerAvailable()
{
if ($this->isEligibleConf() === false) {
return false;
}
if ($this->isEligibleContext() === false) {
return false;
}
if ($this->isEligiblePage() === false) {
return false;
}
return true;
}
/**
* @return string
*/
public function renderForHomePage()
{
return $this->banner
->setPlacement('home')
->setLayout('flex')
->setTemplate(_PS_MODULE_DIR_ . 'paypal/views/templates/installmentBanner/home-banner.tpl')
->render();
}
/**
* @return string
*/
public function renderForCartPage()
{
$amount = $this->getCurrencyConverter()->convert($this->context->cart->getOrderTotal(true));
return $this->banner
->setPlacement('cart')
->setLayout('text')
->setAmount($amount)
->setPageTypeAttribute(ConfigurationMap::PAGE_TYPE_CART)
->setTemplate(_PS_MODULE_DIR_ . 'paypal/views/templates/installmentBanner/cart-banner.tpl')
->render();
}
/** @return CurrencyConverter*/
public function getCurrencyConverter()
{
return new CurrencyConverter();
}
/**
* @return string
*/
public function renderForCheckoutPage()
{
$amount = $this->getCurrencyConverter()->convert($this->context->cart->getOrderTotal(true));
return $this->banner
->setPlacement('payment')
->setLayout('text')
->setAmount($amount)
->setPageTypeAttribute(ConfigurationMap::PAGE_TYPE_CHECKOUT)
->addJsVar('paypalInstallmentController', $this->context->link->getModuleLink('paypal', 'installment'))
->setTemplate(_PS_MODULE_DIR_ . 'paypal/views/templates/installmentBanner/checkout-banner.tpl')
->render();
}
/**
* @return string
*/
public function renderForProductPage()
{
$idProduct = 0;
if ($this->context->controller instanceof ProductController) {
if (Validate::isLoadedObject($this->context->controller->getProduct())) {
$idProduct = (int) $this->context->controller->getProduct()->id;
}
}
return $this->banner
->setPlacement('product')
->setLayout('text')
->addJsVar('paypalBanner_IdProduct', $idProduct)
->addJsVar('paypalBanner_scInitController', $this->context->link->getModuleLink('paypal', 'ScInit'))
->setPageTypeAttribute(ConfigurationMap::PAGE_TYPE_PRODUCT)
->setTemplate(_PS_MODULE_DIR_ . 'paypal/views/templates/installmentBanner/product-banner.tpl')
->render();
}
}