143 lines
6.1 KiB
PHP
143 lines
6.1 KiB
PHP
<?php
|
|
/*************************************************************************************/
|
|
/* */
|
|
/* Thelia */
|
|
/* */
|
|
/* Copyright (c) OpenStudio */
|
|
/* email : info@thelia.net */
|
|
/* web : http://www.thelia.net */
|
|
/* */
|
|
/* This program is free software; you can redistribute it and/or modify */
|
|
/* it under the terms of the GNU General Public License as published by */
|
|
/* the Free Software Foundation; either version 3 of the License */
|
|
/* */
|
|
/* This program is distributed in the hope that it will be useful, */
|
|
/* but WITHOUT ANY WARRANTY; without even the implied warranty of */
|
|
/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */
|
|
/* GNU General Public License for more details. */
|
|
/* */
|
|
/* You should have received a copy of the GNU General Public License */
|
|
/* along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
|
/* */
|
|
/*************************************************************************************/
|
|
|
|
namespace CmCIC\Controller;
|
|
|
|
use CmCIC\CmCIC;
|
|
use CmCIC\Form\ConfigureCmCIC;
|
|
use CmCIC\Model\Config;
|
|
use Thelia\Controller\Admin\BaseAdminController;
|
|
use Thelia\Core\HttpFoundation\Response;
|
|
use Thelia\Core\Security\AccessManager;
|
|
use Thelia\Core\Security\Resource\AdminResources;
|
|
use Thelia\Tools\URL;
|
|
|
|
class CmcicSaveConfig extends BaseAdminController
|
|
{
|
|
const CIC_SERVER = "https://ssl.paiement.cic-banques.fr/";
|
|
const CM_SERVER = "https://paiement.creditmutuel.fr/";
|
|
const OBC_SERVER = "https://ssl.paiement.banque-obc.fr/";
|
|
const MONETICO_SERVER = "https://p.monetico-services.com/";
|
|
|
|
const CMCIC_VERSION = "3.0";
|
|
const CMCIC_URLOK = "/order/placed/";
|
|
const CMCIC_URLKO = "/module/cmcic/payfail/";
|
|
const CMCIC_URLRECEIVE = "/module/cmcic/receive/";
|
|
|
|
public function downloadLog()
|
|
{
|
|
if (null !== $response = $this->checkAuth(AdminResources::MODULE, 'CmCIC', AccessManager::UPDATE)) {
|
|
return $response;
|
|
}
|
|
|
|
$data = @file_get_contents(THELIA_LOG_DIR . "log-cmcic.txt");
|
|
|
|
if (empty($data)) {
|
|
$data = $this->getTranslator()->trans("The CmCIC server log is currently empty.", [], CmCIC::DOMAIN_NAME);
|
|
}
|
|
return Response::create(
|
|
$data,
|
|
200,
|
|
array(
|
|
'Content-type' => "text/plain",
|
|
'Content-Disposition' => sprintf('Attachment;filename=log-cmcic.txt')
|
|
)
|
|
);
|
|
}
|
|
|
|
public function save()
|
|
{
|
|
if (null !== $response = $this->checkAuth(AdminResources::MODULE, 'CmCIC', AccessManager::UPDATE)) {
|
|
return $response;
|
|
}
|
|
|
|
$error_message="";
|
|
$conf = new Config();
|
|
$form = new ConfigureCmCIC($this->getRequest());
|
|
|
|
try {
|
|
$vform = $this->validateForm($form);
|
|
|
|
CmCIC::setConfigValue('debug', $vform->get('debug')->getData());
|
|
CmCIC::setConfigValue('allowed_ips', $vform->get('allowed_ips')->getData());
|
|
CmCIC::setConfigValue('send_confirmation_message_only_if_paid', $vform->get('send_confirmation_message_only_if_paid')->getData());
|
|
|
|
// After post checks (PREG_MATCH) & create json file
|
|
if (preg_match("#^\d{7}$#", $vform->get('TPE')->getData()) &&
|
|
preg_match("#^[a-z\d]{40}$#i", $vform->get('com_key')->getData()) &&
|
|
preg_match("#^[a-z\d]+$#i", $vform->get('com_soc')->getData()) &&
|
|
preg_match("#^cic|cm|obc|mon$#", $vform->get('server')->getData())
|
|
) {
|
|
$serv = $vform->get('server')->getData();
|
|
|
|
switch($serv) {
|
|
case 'mon':
|
|
$serv = self::MONETICO_SERVER;
|
|
break;
|
|
|
|
case 'cic':
|
|
$serv = self::CIC_SERVER;
|
|
break;
|
|
|
|
case 'cm':
|
|
$serv = self::CM_SERVER;
|
|
break;
|
|
|
|
case 'obc':
|
|
$serv = self::OBC_SERVER;
|
|
break;
|
|
|
|
default:
|
|
throw new \InvalidArgumentException("Unknown server type '$serv'");
|
|
}
|
|
|
|
if ($vform->get('debug')->getData() === true) {
|
|
$serv .= 'test/';
|
|
}
|
|
|
|
$conf
|
|
->setCMCICKEY($vform->get('com_key')->getData())
|
|
->setCMCICVERSION(self::CMCIC_VERSION)
|
|
->setCMCICCODESOCIETE($vform->get('com_soc')->getData())
|
|
->setCMCICPAGE($vform->get('page')->getData())
|
|
->setCMCICTPE($vform->get('TPE')->getData())
|
|
->setCMCICSERVER($serv)
|
|
->write(CmCIC::JSON_CONFIG_PATH)
|
|
;
|
|
} else {
|
|
throw new \Exception($this->getTranslator()->trans("Error in form syntax, please check that your values are correct."));
|
|
}
|
|
} catch (\Exception $e) {
|
|
$error_message = $e->getMessage();
|
|
|
|
$this->setupFormErrorContext(
|
|
'erreur sauvegarde configuration',
|
|
$error_message,
|
|
$form
|
|
);
|
|
}
|
|
|
|
return $this->generateRedirect(URL::getInstance()->absoluteUrl("/admin/module/CmCIC"));
|
|
}
|
|
}
|