-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PAYSHIP-3146 - Improve the Apple Pay Setup
- Loading branch information
Showing
6 changed files
with
538 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,223 @@ | ||
<?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 [email protected] so we can send you a copy immediately. | ||
* | ||
* @author PrestaShop SA and Contributors <[email protected]> | ||
* @copyright Since 2007 PrestaShop SA and Contributors | ||
* @license https://opensource.org/licenses/AFL-3.0 Academic Free License version 3.0 | ||
*/ | ||
|
||
namespace PrestaShop\Module\PrestashopCheckout\PayPal\ApplePay; | ||
|
||
use Configuration; | ||
use Exception; | ||
use Hook; | ||
use Module; | ||
use PrestaShop\Module\PrestashopCheckout\PayPal\ApplePay\Exception\ApplePaySetupException; | ||
use PrestaShop\Module\PrestashopCheckout\PayPal\PayPalConfiguration; | ||
use PrestaShop\Module\PrestashopCheckout\System\SystemConfiguration; | ||
use Shop; | ||
|
||
class AppleSetup | ||
{ | ||
/** | ||
* @var SystemConfiguration | ||
*/ | ||
private $systemConfiguration; | ||
|
||
/** | ||
* @var PayPalConfiguration | ||
*/ | ||
private $payPalConfiguration; | ||
|
||
public function __construct(SystemConfiguration $systemConfiguration, PayPalConfiguration $payPalConfiguration) | ||
{ | ||
$this->systemConfiguration = $systemConfiguration; | ||
$this->payPalConfiguration = $payPalConfiguration; | ||
} | ||
|
||
/** | ||
* @return void | ||
* | ||
* @throws ApplePaySetupException | ||
*/ | ||
public function setup() | ||
{ | ||
if ($this->systemConfiguration->isApacheServer() && !$this->checkWellKnownFileExist()) { | ||
$this->registerModuleRoutesHook(); | ||
} else { | ||
$this->copyWellKnownFile(); | ||
} | ||
} | ||
|
||
/** | ||
* @return void | ||
* | ||
* @throws ApplePaySetupException | ||
*/ | ||
public function registerModuleRoutesHook() | ||
{ | ||
try { | ||
$module = Module::getInstanceByName('ps_checkout'); | ||
$shopList = Shop::getCompleteListOfShopsID(); | ||
if (!Hook::registerHook($module, 'moduleRoutes', $shopList)) { | ||
throw new ApplePaySetupException('Failed to register moduleRoutes hook for ps_checkout.', ApplePaySetupException::FAILED_REGISTER_HOOK); | ||
} | ||
} catch (Exception $e) { | ||
throw new ApplePaySetupException('Failed to register moduleRoutes hook for ps_checkout.', ApplePaySetupException::ERROR_REGISTER_HOOK, $e); | ||
} | ||
} | ||
|
||
/** | ||
* @param string $wellKnownDir | ||
* | ||
* @return string | ||
*/ | ||
public function getDestinationFile($wellKnownDir) | ||
{ | ||
return $wellKnownDir . '/apple-developer-merchantid-domain-association'; | ||
} | ||
|
||
/** | ||
* @return bool | ||
* | ||
* @throws ApplePaySetupException | ||
*/ | ||
public function checkWellKnownFileExist() | ||
{ | ||
$rootDir = $this->getPrestaShopRootDir(); | ||
$wellKnownDir = $this->getWellKnownDir($rootDir); | ||
$destinationFile = $this->getDestinationFile($wellKnownDir); | ||
|
||
return file_exists($destinationFile); | ||
} | ||
|
||
/** | ||
* @return void | ||
* | ||
* @throws ApplePaySetupException | ||
*/ | ||
public function copyWellKnownFile() | ||
{ | ||
$rootDir = $this->getPrestaShopRootDir(); | ||
$this->checkPrestaShopIsAtDomainRoot(); | ||
$wellKnownDir = $this->getWellKnownDir($rootDir); | ||
$sourceFile = $this->getSourceFile(); | ||
$destinationFile = $this->getDestinationFile($wellKnownDir); | ||
|
||
if (!$this->isWritable($destinationFile)) { | ||
throw new ApplePaySetupException('The Apple Domain Association file is not writable in the PrestaShop root directory.', ApplePaySetupException::APPLE_DOMAIN_FILE_NOT_WRITABLE); | ||
} | ||
|
||
if (!copy($sourceFile, $destinationFile)) { | ||
throw new ApplePaySetupException('Failed to copy the "apple-developer-merchantid-domain-association" file to the PrestaShop root directory.', ApplePaySetupException::FAILED_COPY_APPLE_DOMAIN_FILE); | ||
} | ||
} | ||
|
||
/** | ||
* @return string | ||
* | ||
* @throws ApplePaySetupException | ||
*/ | ||
public function getPrestaShopRootDir() | ||
{ | ||
$rootDir = defined('_PS_ROOT_DIR_') ? constant('_PS_ROOT_DIR_') : null; | ||
|
||
if (!$rootDir || !is_dir($rootDir)) { | ||
throw new ApplePaySetupException('Unable to retrieve the PrestaShop Root directory path.', ApplePaySetupException::UNABLE_RETRIEVE_ROOT_DIR); | ||
} | ||
|
||
return $rootDir; | ||
} | ||
|
||
/** | ||
* @return void | ||
* | ||
* @throws ApplePaySetupException | ||
*/ | ||
public function checkPrestaShopIsAtDomainRoot() | ||
{ | ||
$defaultShop = new Shop((int) Configuration::get('PS_SHOP_DEFAULT')); | ||
|
||
if (!$defaultShop->physical_uri) { | ||
throw new ApplePaySetupException('Unable to retrieve the base URI of the shop.', ApplePaySetupException::UNABLE_RETRIEVE_BASE_URI); | ||
} | ||
|
||
if ($defaultShop->physical_uri !== '/') { | ||
throw new ApplePaySetupException('PrestaShop is not installed at the domain root.', ApplePaySetupException::PRESTASHOP_NOT_AT_DOMAIN_ROOT); | ||
} | ||
} | ||
|
||
/** | ||
* @param string $rootDir | ||
* | ||
* @return string | ||
* | ||
* @throws ApplePaySetupException | ||
*/ | ||
public function getWellKnownDir($rootDir) | ||
{ | ||
$wellKnownDir = $rootDir . '/.well-known'; | ||
|
||
if (!is_dir($wellKnownDir)) { | ||
if (!$this->createDir($wellKnownDir)) { | ||
throw new ApplePaySetupException('Failed to create the ".well-known" directory in the PrestaShop root directory.', ApplePaySetupException::FAILED_CREATE_WELL_KNOWN_DIR); | ||
} | ||
} | ||
|
||
if (!$this->isWritable($wellKnownDir)) { | ||
throw new ApplePaySetupException('The ".well-known" directory is not writable in the PrestaShop root directory.', ApplePaySetupException::WELL_KNOWN_DIR_NOT_WRITABLE); | ||
} | ||
|
||
return $wellKnownDir; | ||
} | ||
|
||
/** | ||
* @return string | ||
* | ||
* @throws ApplePaySetupException | ||
*/ | ||
public function getSourceFile() | ||
{ | ||
$moduleWellKnownDir = _PS_MODULE_DIR_ . 'ps_checkout/.well-known'; | ||
$paypalEnvironment = $this->payPalConfiguration->getPaymentMode(); | ||
$sourceFile = "${$moduleWellKnownDir}/apple-${$paypalEnvironment}-merchantid-domain-association"; | ||
|
||
if (!file_exists($sourceFile)) { | ||
throw new ApplePaySetupException('The Apple Domain Association file could not be found in the module directory.', ApplePaySetupException::APPLE_DOMAIN_FILE_NOT_FOUND); | ||
} | ||
|
||
return $sourceFile; | ||
} | ||
|
||
/** | ||
* @param string $wellKnownDir | ||
* | ||
* @return bool | ||
*/ | ||
public function createDir($wellKnownDir) | ||
{ | ||
return mkdir($wellKnownDir, 0755, true); | ||
} | ||
|
||
/** | ||
* @param string $wellKnownDir | ||
* | ||
* @return bool | ||
*/ | ||
public function isWritable($wellKnownDir) | ||
{ | ||
return is_writable($wellKnownDir); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
<?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 [email protected] so we can send you a copy immediately. | ||
* | ||
* @author PrestaShop SA and Contributors <[email protected]> | ||
* @copyright Since 2007 PrestaShop SA and Contributors | ||
* @license https://opensource.org/licenses/AFL-3.0 Academic Free License version 3.0 | ||
*/ | ||
|
||
namespace PrestaShop\Module\PrestashopCheckout\PayPal\ApplePay\Exception; | ||
|
||
use PrestaShop\Module\PrestashopCheckout\Exception\PsCheckoutException; | ||
|
||
class ApplePaySetupException extends PsCheckoutException | ||
{ | ||
const FAILED_REGISTER_HOOK = 1001; | ||
const ERROR_REGISTER_HOOK = 1002; | ||
const UNABLE_RETRIEVE_ROOT_DIR = 2001; | ||
const FAILED_CREATE_WELL_KNOWN_DIR = 2002; | ||
const WELL_KNOWN_DIR_NOT_WRITABLE = 2003; | ||
const PRESTASHOP_NOT_AT_DOMAIN_ROOT = 2004; | ||
const UNABLE_RETRIEVE_BASE_URI = 2005; | ||
const APPLE_DOMAIN_FILE_NOT_FOUND = 3001; | ||
const APPLE_DOMAIN_FILE_NOT_WRITABLE = 3002; | ||
const FAILED_COPY_APPLE_DOMAIN_FILE = 3003; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
<?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 [email protected] so we can send you a copy immediately. | ||
* | ||
* @author PrestaShop SA and Contributors <[email protected]> | ||
* @copyright Since 2007 PrestaShop SA and Contributors | ||
* @license https://opensource.org/licenses/AFL-3.0 Academic Free License version 3.0 | ||
*/ | ||
|
||
namespace PrestaShop\Module\PrestashopCheckout\System; | ||
|
||
class SystemConfiguration | ||
{ | ||
/** | ||
* @return bool | ||
*/ | ||
public function isApacheServer() | ||
{ | ||
if (php_sapi_name() === 'apache2handler') { | ||
return true; | ||
} | ||
|
||
if (function_exists('apache_get_version')) { | ||
return true; | ||
} | ||
|
||
if (isset($_SERVER['SERVER_SOFTWARE']) && stripos($_SERVER['SERVER_SOFTWARE'], 'apache') !== false) { | ||
return true; | ||
} | ||
|
||
if (isset($_SERVER['HTTPD_SERVER_ADMIN']) || isset($_SERVER['HTTPD_SERVER_NAME'])) { | ||
return true; | ||
} | ||
|
||
$headers = $this->getAllHeaders(); | ||
if (isset($headers['Server']) && stripos($headers['Server'], 'apache') !== false) { | ||
return true; | ||
} | ||
|
||
return false; | ||
} | ||
|
||
/** | ||
* @return array | ||
*/ | ||
public function getAllHeaders() | ||
{ | ||
if (function_exists('getallheaders')) { | ||
return getallheaders(); | ||
} | ||
|
||
return []; | ||
} | ||
} |
Oops, something went wrong.