[11/06/2024] Les premières modifs + installation de quelques modules indispensables
This commit is contained in:
26
domokits/local/modules/Front/Config/config.xml
Normal file
26
domokits/local/modules/Front/Config/config.xml
Normal file
@@ -0,0 +1,26 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
|
||||
<config xmlns="http://thelia.net/schema/dic/config"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://thelia.net/schema/dic/config http://thelia.net/schema/dic/config/thelia-1.0.xsd">
|
||||
|
||||
<forms>
|
||||
<!--
|
||||
<form name="MyFormName" class="MyModule\Form\MySuperForm" />
|
||||
-->
|
||||
</forms>
|
||||
|
||||
|
||||
<services>
|
||||
<service id="router.front" class="%router.class%" public="true">
|
||||
<argument type="service" id="router.module.xmlLoader"/>
|
||||
<argument>Front/Config/front.xml</argument>
|
||||
<argument type="collection">
|
||||
<argument key="cache_dir">%kernel.cache_dir%</argument>
|
||||
<argument key="debug">%kernel.debug%</argument>
|
||||
</argument>
|
||||
<argument type="service" id="request.context"/>
|
||||
<tag name="router.register" priority="128"/>
|
||||
</service>
|
||||
</services>
|
||||
</config>
|
||||
276
domokits/local/modules/Front/Config/front.xml
Normal file
276
domokits/local/modules/Front/Config/front.xml
Normal file
@@ -0,0 +1,276 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
|
||||
<routes xmlns="http://symfony.com/schema/routing"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://symfony.com/schema/routing http://symfony.com/schema/routing/routing-1.0.xsd">
|
||||
|
||||
<route id="ajax.mini-cart" path="/ajax/mini-cart">
|
||||
<default key="_controller">Thelia\Controller\Front\DefaultController::noAction</default>
|
||||
<default key="_view">includes/mini-cart</default>
|
||||
</route>
|
||||
|
||||
<route id="ajax.addCartMessage" path="/ajax/addCartMessage">
|
||||
<default key="_controller">Thelia\Controller\Front\DefaultController::noAction</default>
|
||||
<default key="_view">includes/addedToCart</default>
|
||||
</route>
|
||||
|
||||
<!-- Register -->
|
||||
<route id="customer.create.view" path="/register" methods="get">
|
||||
<default key="_controller">Front\Controller\CustomerController::viewRegisterAction</default>
|
||||
</route>
|
||||
|
||||
<route id="customer.create.process" path="/register" methods="post">
|
||||
<default key="_controller">Front\Controller\CustomerController::createAction</default>
|
||||
<default key="_view">register</default>
|
||||
</route>
|
||||
|
||||
<!-- Login -->
|
||||
<route id="customer.login.view" path="/login" methods="get">
|
||||
<default key="_controller">Front\Controller\CustomerController::viewLoginAction</default>
|
||||
</route>
|
||||
|
||||
<route id="customer.login.process" path="/login" methods="post">
|
||||
<default key="_controller">Front\Controller\CustomerController::loginAction</default>
|
||||
<default key="_view">login</default>
|
||||
</route>
|
||||
|
||||
<!-- Forgot Password -->
|
||||
<route id="customer.password.retrieve.process" path="/password" methods="post">
|
||||
<default key="_controller">Front\Controller\CustomerController::newPasswordAction</default>
|
||||
<default key="_view">password</default>
|
||||
</route>
|
||||
|
||||
<route id="customer.password.retrieve.sent" path="/password-sent">
|
||||
<default key="_controller">Front\Controller\CustomerController::newPasswordSentAction</default>
|
||||
<default key="_view">password</default>
|
||||
</route>
|
||||
|
||||
<!-- Logout -->
|
||||
<route id="customer.logout.process" path="/logout">
|
||||
<default key="_controller">Front\Controller\CustomerController::logoutAction</default>
|
||||
</route>
|
||||
|
||||
<!-- Confirm customer -->
|
||||
<route id="customer.confirm.token" path="/customer/confirm/{token}">
|
||||
<default key="_controller">Front\Controller\CustomerController::confirmCustomerAction</default>
|
||||
</route>
|
||||
|
||||
<!-- Account -->
|
||||
|
||||
<route id="customer.home" path="/account" methods="get">
|
||||
<default key="_controller">Thelia\Controller\Front\DefaultController::noAction</default>
|
||||
<default key="_view">account</default>
|
||||
</route>
|
||||
|
||||
<route id="customer.update.view" path="/account/update" methods="get">
|
||||
<default key="_controller">Front\Controller\CustomerController::viewAction</default>
|
||||
<default key="_view">account-update</default>
|
||||
</route>
|
||||
|
||||
<route id="customer.update.process" path="/account/update" methods="post">
|
||||
<default key="_controller">Front\Controller\CustomerController::updateAction</default>
|
||||
<default key="_view">account-update</default>
|
||||
</route>
|
||||
|
||||
|
||||
<route id="customer.password.change.process" path="/account/password" methods="post">
|
||||
<default key="_controller">Front\Controller\CustomerController::updatePasswordAction</default>
|
||||
<default key="_view">account-password</default>
|
||||
</route>
|
||||
|
||||
<route id="customer.password.change.view" path="/account/password" methods="get">
|
||||
<default key="_controller">Thelia\Controller\Front\DefaultController::noAction</default>
|
||||
<default key="_view">account-password</default>
|
||||
</route>
|
||||
|
||||
<route id="customer.order" path="/account/order/{order_id}">
|
||||
<default key="_controller">Front\Controller\OrderController::viewAction</default>
|
||||
<requirement key="order_id">\d+</requirement>
|
||||
</route>
|
||||
|
||||
<route id="customer.order.pdf.delivery" path="/account/order/pdf/delivery/{order_id}">
|
||||
<default key="_controller">Front\Controller\OrderController::generateDeliveryPdf</default>
|
||||
<requirement key="order_id">\d+</requirement>
|
||||
</route>
|
||||
|
||||
<route id="customer.order.pdf.invoice" path="/account/order/pdf/invoice/{order_id}">
|
||||
<default key="_controller">Front\Controller\OrderController::generateInvoicePdf</default>
|
||||
<requirement key="order_id">\d+</requirement>
|
||||
</route>
|
||||
|
||||
<route id="customer.order.product.download" path="/account/download/{order_product_id}">
|
||||
<default key="_controller">Front\Controller\OrderController::downloadVirtualProduct</default>
|
||||
<requirement key="order_product_id">\d+</requirement>
|
||||
</route>
|
||||
<!-- end customer routes -->
|
||||
|
||||
<!-- customer address routes -->
|
||||
<route id="address.create.view" path="/address/create" methods="get">
|
||||
<default key="_controller">Thelia\Controller\Front\DefaultController::noAction</default>
|
||||
<default key="_view">address</default>
|
||||
</route>
|
||||
|
||||
<route id="address.create" path="/address/create" methods="post" >
|
||||
<default key="_controller">Front\Controller\AddressController::createAction</default>
|
||||
<default key="_view">address</default>
|
||||
</route>
|
||||
|
||||
<route id="address.edit" path="/address/update/{address_id}" methods="get">
|
||||
<default key="_controller">Front\Controller\AddressController::updateViewAction</default>
|
||||
<default key="_view">address-update</default>
|
||||
</route>
|
||||
|
||||
<route id="address.update" path="/address/update/{address_id}" methods="post" >
|
||||
<default key="_controller">Front\Controller\AddressController::processUpdateAction</default>
|
||||
<default key="_view">address-update</default>
|
||||
</route>
|
||||
|
||||
<route id="address.delete" path="/address/delete/{address_id}">
|
||||
<default key="_controller">Front\Controller\AddressController::deleteAction</default>
|
||||
<default key="_view">account</default>
|
||||
</route>
|
||||
|
||||
<route id="address.generateModal" path="/address/modal/{address_id}" methods="get">
|
||||
<default key="_controller">Front\Controller\AddressController::generateModalAction</default>
|
||||
<default key="_view">modal-address</default>
|
||||
<requirement key="address_id">\d+</requirement>
|
||||
</route>
|
||||
|
||||
<route id="address.make.default" path="/address/default/{addressId}" methods="get">
|
||||
<default key="_controller">Front:Address:makeAddressDefault</default>
|
||||
<requirement key="addressId">\d+</requirement>
|
||||
</route>
|
||||
|
||||
<!-- end customer address routes -->
|
||||
|
||||
<!-- cart routes -->
|
||||
<route id="cart.view" path="/cart">
|
||||
<default key="_controller">Thelia\Controller\Front\DefaultController::noAction</default>
|
||||
<default key="_view">cart</default>
|
||||
</route>
|
||||
|
||||
<route id="cart.add.process" path="/cart/add">
|
||||
<default key="_controller">Front\Controller\CartController::addItem</default>
|
||||
</route>
|
||||
|
||||
<route id="cart.delete.process" path="/cart/delete/{cart_item}">
|
||||
<default key="_controller">Front\Controller\CartController::deleteItem</default>
|
||||
<default key="_view">cart</default>
|
||||
</route>
|
||||
|
||||
<route id="cart.update.quantity" path="/cart/update">
|
||||
<default key="_controller">Front\Controller\CartController::changeItem</default>
|
||||
<default key="_view">cart</default>
|
||||
</route>
|
||||
|
||||
<route id="cart.update.country" path="/cart/country">
|
||||
<default key="_controller">Front\Controller\CartController::changeCountry</default>
|
||||
<default key="_view">cart</default>
|
||||
</route>
|
||||
<!-- end cart routes -->
|
||||
|
||||
<!-- order management process -->
|
||||
<route id="order.delivery.process" path="/order/delivery" methods="post">
|
||||
<default key="_controller">Front\Controller\OrderController::deliver</default>
|
||||
<default key="_view">order-delivery</default>
|
||||
</route>
|
||||
|
||||
<route id="order.delivery" path="/order/delivery">
|
||||
<default key="_controller">Front\Controller\OrderController::deliverView</default>
|
||||
<default key="_view">order-delivery</default>
|
||||
</route>
|
||||
|
||||
<route id="admin.delivery.ajax-module-list" path="/order/deliveryModuleList">
|
||||
<default key="_controller">Front\Controller\OrderController::getDeliveryModuleListAjaxAction</default>
|
||||
</route>
|
||||
|
||||
<route id="order.invoice.process" path="/order/invoice" methods="post">
|
||||
<default key="_controller">Front\Controller\OrderController::invoice</default>
|
||||
<default key="_view">order-invoice</default>
|
||||
</route>
|
||||
|
||||
<route id="order.invoice" path="/order/invoice">
|
||||
<default key="_controller">Thelia\Controller\Front\DefaultController::noAction</default>
|
||||
<default key="_view">order-invoice</default>
|
||||
</route>
|
||||
|
||||
<route id="order.coupon.process" path="/order/coupon" methods="post">
|
||||
<default key="_controller">Front\Controller\CouponController::consumeAction</default>
|
||||
<default key="_view">order-invoice</default>
|
||||
</route>
|
||||
|
||||
<route id="order.coupon.clear" path="/order/clear-coupons">
|
||||
<default key="_controller">Front\Controller\CouponController::clearAllCouponsAction</default>
|
||||
<default key="_view">order-invoice</default>
|
||||
</route>
|
||||
|
||||
<route id="order.payment.process" path="/order/pay">
|
||||
<default key="_controller">Front\Controller\OrderController::pay</default>
|
||||
</route>
|
||||
|
||||
<route id="order.placed" path="/order/placed/{order_id}">
|
||||
<default key="_controller">Front\Controller\OrderController::orderPlaced</default>
|
||||
<default key="_view">order-placed</default>
|
||||
</route>
|
||||
|
||||
<route id="order.failed" path="/order/failed/{order_id}/{message}">
|
||||
<default key="_controller">Front\Controller\OrderController::orderFailed</default>
|
||||
<default key="_view">order-failed</default>
|
||||
</route>
|
||||
<!-- end order management process -->
|
||||
|
||||
<!-- contact management -->
|
||||
<route id="contact.send" path="/contact" methods="post">
|
||||
<default key="_controller">Front\Controller\ContactController::sendAction</default>
|
||||
<default key="_view">contact</default>
|
||||
</route>
|
||||
|
||||
<route id="contact.success" path="/contact/success">
|
||||
<default key="_controller">Thelia\Controller\Front\DefaultController::noAction</default>
|
||||
<default key="_view">contact-success</default>
|
||||
</route>
|
||||
<!-- end contact management -->
|
||||
|
||||
<!-- newsletter management -->
|
||||
<route id="newsletter.process" path="/newsletter" methods="post">
|
||||
<default key="_controller">Front\Controller\NewsletterController::subscribeAction</default>
|
||||
<default key="_view">newsletter</default>
|
||||
</route>
|
||||
|
||||
<route id="newsletter.unsubscribe" path="/newsletter-unsubscribe" methods="post">
|
||||
<default key="_controller">Front\Controller\NewsletterController::unsubscribeAction</default>
|
||||
<default key="_view">newsletter-unsubscribe</default>
|
||||
</route>
|
||||
|
||||
<!-- end newsletter management -->
|
||||
|
||||
<!-- sitemap generator -->
|
||||
<route id="sitemap.process" path="/sitemap">
|
||||
<default key="_controller">Front\Controller\SitemapController::generateAction</default>
|
||||
</route>
|
||||
<route id="sitemap.process.xml" path="/sitemap.xml">
|
||||
<default key="_controller">Front\Controller\SitemapController::generateAction</default>
|
||||
</route>
|
||||
<!-- end sitemap generator -->
|
||||
|
||||
<!-- feed generator -->
|
||||
<route id="feed.process" path="/feed/{context}/{lang}/{id}">
|
||||
<default key="_controller">Front\Controller\FeedController::generateAction</default>
|
||||
<default key="context">catalog</default>
|
||||
<default key="lang"></default>
|
||||
<default key="id"></default>
|
||||
</route>
|
||||
<!-- end feed generator -->
|
||||
|
||||
<!-- Route used to check if the rewrite engine is activated -->
|
||||
<route id="empty" path="/empty">
|
||||
<default key="_controller">Thelia\Controller\Front\DefaultController::emptyRoute</default>
|
||||
</route>
|
||||
|
||||
<!-- Default Route -->
|
||||
<route id="default" path="/{_view}">
|
||||
<default key="_controller">Thelia\Controller\Front\DefaultController::noAction</default>
|
||||
<default key="_view">index</default>
|
||||
<requirement key="_view">^(?!admin|api)[^/]+</requirement>
|
||||
</route>
|
||||
</routes>
|
||||
29
domokits/local/modules/Front/Config/module.xml
Normal file
29
domokits/local/modules/Front/Config/module.xml
Normal file
@@ -0,0 +1,29 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<module xmlns="http://thelia.net/schema/dic/module"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://thelia.net/schema/dic/module http://thelia.net/schema/dic/module/module-2_2.xsd">
|
||||
<fullnamespace>Front\Front</fullnamespace>
|
||||
<descriptive locale="en_US">
|
||||
<title>Front integration</title>
|
||||
<description></description>
|
||||
</descriptive>
|
||||
<descriptive locale="fr_FR">
|
||||
<title>Front office module</title>
|
||||
<description></description>
|
||||
</descriptive>
|
||||
<languages>
|
||||
<language>en_US</language>
|
||||
<language>fr_FR</language>
|
||||
</languages>
|
||||
<version>2.5.4</version>
|
||||
<authors>
|
||||
<author>
|
||||
<name>Thelia team</name>
|
||||
<email>info@thelia.net</email>
|
||||
</author>
|
||||
</authors>
|
||||
<type>classic</type>
|
||||
<thelia>2.5.4</thelia>
|
||||
<stability>alpha</stability>
|
||||
<hidden>1</hidden>
|
||||
</module>
|
||||
257
domokits/local/modules/Front/Controller/AddressController.php
Normal file
257
domokits/local/modules/Front/Controller/AddressController.php
Normal file
@@ -0,0 +1,257 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Thelia package.
|
||||
* http://www.thelia.net
|
||||
*
|
||||
* (c) OpenStudio <info@thelia.net>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace Front\Controller;
|
||||
|
||||
use Front\Front;
|
||||
use Symfony\Component\Form\Form;
|
||||
use Symfony\Contracts\EventDispatcher\EventDispatcherInterface;
|
||||
use Thelia\Controller\Front\BaseFrontController;
|
||||
use Thelia\Core\Event\Address\AddressCreateOrUpdateEvent;
|
||||
use Thelia\Core\Event\TheliaEvents;
|
||||
use Thelia\Form\Definition\FrontForm;
|
||||
use Thelia\Form\Exception\FormValidationException;
|
||||
use Thelia\Log\Tlog;
|
||||
use Thelia\Model\AddressQuery;
|
||||
use Thelia\Model\Customer;
|
||||
use Thelia\Model\Event\AddressEvent;
|
||||
|
||||
/**
|
||||
* Class AddressController.
|
||||
*
|
||||
* @author Manuel Raynaud <manu@raynaud.io>
|
||||
*/
|
||||
class AddressController extends BaseFrontController
|
||||
{
|
||||
/**
|
||||
* Controller for generate modal containing update form
|
||||
* Check if request is a XmlHttpRequest and address owner is the current customer.
|
||||
*/
|
||||
public function generateModalAction($address_id): void
|
||||
{
|
||||
$this->checkAuth();
|
||||
$this->checkXmlHttpRequest();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create controller.
|
||||
* Check if customer is logged in.
|
||||
*
|
||||
* Dispatch TheliaEvents::ADDRESS_CREATE event
|
||||
*/
|
||||
public function createAction(EventDispatcherInterface $eventDispatcher)
|
||||
{
|
||||
$this->checkAuth();
|
||||
|
||||
$addressCreate = $this->createForm(FrontForm::ADDRESS_CREATE);
|
||||
|
||||
try {
|
||||
/** @var Customer $customer */
|
||||
$customer = $this->getSecurityContext()->getCustomerUser();
|
||||
|
||||
$form = $this->validateForm($addressCreate, 'post');
|
||||
$event = $this->createAddressEvent($form);
|
||||
$event->setCustomer($customer);
|
||||
|
||||
$eventDispatcher->dispatch($event, TheliaEvents::ADDRESS_CREATE);
|
||||
|
||||
return $this->generateSuccessRedirect($addressCreate);
|
||||
} catch (FormValidationException $e) {
|
||||
$message = $this->getTranslator()->trans('Please check your input: %s', ['%s' => $e->getMessage()], Front::MESSAGE_DOMAIN);
|
||||
} catch (\Exception $e) {
|
||||
$message = $this->getTranslator()->trans('Sorry, an error occured: %s', ['%s' => $e->getMessage()], Front::MESSAGE_DOMAIN);
|
||||
}
|
||||
|
||||
Tlog::getInstance()->error(sprintf('Error during address creation process : %s', $message));
|
||||
|
||||
$addressCreate->setErrorMessage($message);
|
||||
|
||||
$this->getParserContext()
|
||||
->addForm($addressCreate)
|
||||
->setGeneralError($message)
|
||||
;
|
||||
|
||||
// Redirect to error URL if defined
|
||||
if ($addressCreate->hasErrorUrl()) {
|
||||
return $this->generateErrorRedirect($addressCreate);
|
||||
}
|
||||
}
|
||||
|
||||
protected function createAddressEvent(Form $form)
|
||||
{
|
||||
return new AddressCreateOrUpdateEvent(
|
||||
$form->get('label')->getData(),
|
||||
$form->get('title')->getData(),
|
||||
$form->get('firstname')->getData(),
|
||||
$form->get('lastname')->getData(),
|
||||
$form->get('address1')->getData(),
|
||||
$form->get('address2')->getData(),
|
||||
$form->get('address3')->getData(),
|
||||
$form->get('zipcode')->getData(),
|
||||
$form->get('city')->getData(),
|
||||
$form->get('country')->getData(),
|
||||
$form->get('cellphone')->getData(),
|
||||
$form->get('phone')->getData(),
|
||||
$form->get('company')->getData(),
|
||||
$form->get('is_default')->getData(),
|
||||
$form->get('state')->getData()
|
||||
);
|
||||
}
|
||||
|
||||
public function updateViewAction($address_id)
|
||||
{
|
||||
$this->checkAuth();
|
||||
|
||||
$customer = $this->getSecurityContext()->getCustomerUser();
|
||||
$address = AddressQuery::create()->findPk($address_id);
|
||||
|
||||
if (!$address || $customer->getId() != $address->getCustomerId()) {
|
||||
return $this->generateRedirectFromRoute('default');
|
||||
}
|
||||
|
||||
$this->getParserContext()->set('address_id', $address_id);
|
||||
}
|
||||
|
||||
public function processUpdateAction($address_id, EventDispatcherInterface $eventDispatcher)
|
||||
{
|
||||
$this->checkAuth();
|
||||
|
||||
$addressUpdate = $this->createForm(FrontForm::ADDRESS_UPDATE);
|
||||
|
||||
try {
|
||||
$customer = $this->getSecurityContext()->getCustomerUser();
|
||||
|
||||
$form = $this->validateForm($addressUpdate);
|
||||
|
||||
$address = AddressQuery::create()->findPk($address_id);
|
||||
|
||||
if (null === $address) {
|
||||
return $this->generateRedirectFromRoute('default');
|
||||
}
|
||||
|
||||
if ($address->getCustomer()->getId() != $customer->getId()) {
|
||||
return $this->generateRedirectFromRoute('default');
|
||||
}
|
||||
|
||||
$event = $this->createAddressEvent($form);
|
||||
$event->setAddress($address);
|
||||
|
||||
$eventDispatcher->dispatch($event, TheliaEvents::ADDRESS_UPDATE);
|
||||
|
||||
return $this->generateSuccessRedirect($addressUpdate);
|
||||
} catch (FormValidationException $e) {
|
||||
$message = $this->getTranslator()->trans('Please check your input: %s', ['%s' => $e->getMessage()], Front::MESSAGE_DOMAIN);
|
||||
} catch (\Exception $e) {
|
||||
$message = $this->getTranslator()->trans('Sorry, an error occured: %s', ['%s' => $e->getMessage()], Front::MESSAGE_DOMAIN);
|
||||
}
|
||||
|
||||
$this->getParserContext()->set('address_id', $address_id);
|
||||
|
||||
Tlog::getInstance()->error(sprintf('Error during address creation process : %s', $message));
|
||||
|
||||
$addressUpdate->setErrorMessage($message);
|
||||
|
||||
$this->getParserContext()
|
||||
->addForm($addressUpdate)
|
||||
->setGeneralError($message)
|
||||
;
|
||||
|
||||
if ($addressUpdate->hasErrorUrl()) {
|
||||
return $this->generateErrorRedirect($addressUpdate);
|
||||
}
|
||||
}
|
||||
|
||||
public function deleteAction(EventDispatcherInterface $eventDispatcher, $address_id)
|
||||
{
|
||||
$this->checkAuth();
|
||||
$error_message = false;
|
||||
|
||||
$customer = $this->getSecurityContext()->getCustomerUser();
|
||||
$address = AddressQuery::create()->findPk($address_id);
|
||||
|
||||
if (!$address || $customer->getId() != $address->getCustomerId()) {
|
||||
// If Ajax Request
|
||||
if ($this->getRequest()->isXmlHttpRequest()) {
|
||||
return $this->jsonResponse(
|
||||
json_encode(
|
||||
[
|
||||
'success' => false,
|
||||
'message' => $this->getTranslator()->trans(
|
||||
'Error during address deletion process',
|
||||
[],
|
||||
Front::MESSAGE_DOMAIN
|
||||
),
|
||||
]
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
return $this->generateRedirectFromRoute('default');
|
||||
}
|
||||
|
||||
try {
|
||||
$eventDispatcher->dispatch(new AddressEvent($address), TheliaEvents::ADDRESS_DELETE);
|
||||
} catch (\Exception $e) {
|
||||
$error_message = $e->getMessage();
|
||||
}
|
||||
|
||||
Tlog::getInstance()->error(sprintf('Error during address deletion : %s', $error_message));
|
||||
|
||||
// If Ajax Request
|
||||
if ($this->getRequest()->isXmlHttpRequest()) {
|
||||
if ($error_message) {
|
||||
$response = $this->jsonResponse(json_encode([
|
||||
'success' => false,
|
||||
'message' => $error_message,
|
||||
]));
|
||||
} else {
|
||||
$response = $this->jsonResponse(
|
||||
json_encode([
|
||||
'success' => true,
|
||||
'message' => '',
|
||||
])
|
||||
);
|
||||
}
|
||||
|
||||
return $response;
|
||||
}
|
||||
|
||||
return $this->generateRedirectFromRoute('default', ['view' => 'account']);
|
||||
}
|
||||
|
||||
public function makeAddressDefaultAction(EventDispatcherInterface $eventDispatcher, $addressId)
|
||||
{
|
||||
$this->checkAuth();
|
||||
|
||||
$address = AddressQuery::create()
|
||||
->filterByCustomerId($this->getSecurityContext()->getCustomerUser()->getId())
|
||||
->findPk($addressId)
|
||||
;
|
||||
|
||||
if (null === $address) {
|
||||
$this->pageNotFound();
|
||||
}
|
||||
|
||||
try {
|
||||
$event = new AddressEvent($address);
|
||||
$eventDispatcher->dispatch($event, TheliaEvents::ADDRESS_DEFAULT);
|
||||
} catch (\Exception $e) {
|
||||
$this->getParserContext()
|
||||
->setGeneralError($e->getMessage())
|
||||
;
|
||||
|
||||
return $this->render('account');
|
||||
}
|
||||
|
||||
return $this->generateRedirectFromRoute('default', ['view' => 'account']);
|
||||
}
|
||||
}
|
||||
241
domokits/local/modules/Front/Controller/CartController.php
Normal file
241
domokits/local/modules/Front/Controller/CartController.php
Normal file
@@ -0,0 +1,241 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Thelia package.
|
||||
* http://www.thelia.net
|
||||
*
|
||||
* (c) OpenStudio <info@thelia.net>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace Front\Controller;
|
||||
|
||||
use Front\Front;
|
||||
use Propel\Runtime\Exception\PropelException;
|
||||
use Symfony\Component\Form\Extension\Core\Type\FormType;
|
||||
use Symfony\Component\HttpFoundation\Cookie;
|
||||
use Symfony\Component\HttpFoundation\Request;
|
||||
use Symfony\Contracts\EventDispatcher\EventDispatcherInterface;
|
||||
use Thelia\Controller\Front\BaseFrontController;
|
||||
use Thelia\Core\Event\Cart\CartEvent;
|
||||
use Thelia\Core\Event\Delivery\DeliveryPostageEvent;
|
||||
use Thelia\Core\Event\Order\OrderEvent;
|
||||
use Thelia\Core\Event\TheliaEvents;
|
||||
use Thelia\Form\CartAdd;
|
||||
use Thelia\Form\Definition\FrontForm;
|
||||
use Thelia\Form\Exception\FormValidationException;
|
||||
use Thelia\Log\Tlog;
|
||||
use Thelia\Model\AddressQuery;
|
||||
use Thelia\Model\ConfigQuery;
|
||||
use Thelia\Tools\URL;
|
||||
|
||||
class CartController extends BaseFrontController
|
||||
{
|
||||
public function addItem(EventDispatcherInterface $eventDispatcher)
|
||||
{
|
||||
$request = $this->getRequest();
|
||||
|
||||
$cartAdd = $this->getAddCartForm($request);
|
||||
$message = null;
|
||||
|
||||
try {
|
||||
$form = $this->validateForm($cartAdd);
|
||||
|
||||
$cartEvent = $this->getCartEvent($eventDispatcher);
|
||||
|
||||
$cartEvent->bindForm($form);
|
||||
|
||||
$eventDispatcher->dispatch($cartEvent, TheliaEvents::CART_ADDITEM);
|
||||
|
||||
$this->afterModifyCart($eventDispatcher);
|
||||
|
||||
if (!$this->changeViewForAjax()) {
|
||||
if (null !== $response = $this->generateSuccessRedirect($cartAdd)) {
|
||||
return $response;
|
||||
}
|
||||
}
|
||||
} catch (PropelException $e) {
|
||||
Tlog::getInstance()->error(sprintf('Failed to add item to cart with message : %s', $e->getMessage()));
|
||||
$message = $this->getTranslator()->trans(
|
||||
'Failed to add this article to your cart, please try again',
|
||||
[],
|
||||
Front::MESSAGE_DOMAIN
|
||||
);
|
||||
} catch (FormValidationException $e) {
|
||||
$message = $e->getMessage();
|
||||
}
|
||||
|
||||
if ($message) {
|
||||
$cartAdd->setErrorMessage($message);
|
||||
$this->getParserContext()->addForm($cartAdd);
|
||||
}
|
||||
}
|
||||
|
||||
public function changeItem(EventDispatcherInterface $eventDispatcher)
|
||||
{
|
||||
$cartEvent = $this->getCartEvent($eventDispatcher);
|
||||
$cartEvent->setCartItemId($this->getRequest()->get('cart_item'));
|
||||
$cartEvent->setQuantity($this->getRequest()->get('quantity'));
|
||||
|
||||
try {
|
||||
$this->getTokenProvider()->checkToken(
|
||||
$this->getRequest()->query->get('_token')
|
||||
);
|
||||
|
||||
$eventDispatcher->dispatch($cartEvent, TheliaEvents::CART_UPDATEITEM);
|
||||
|
||||
$this->afterModifyCart($eventDispatcher);
|
||||
|
||||
if (!$this->changeViewForAjax()) {
|
||||
if (null !== $successUrl = $this->getRequest()->get('success_url')) {
|
||||
return $this->generateRedirect(URL::getInstance()->absoluteUrl($successUrl));
|
||||
}
|
||||
}
|
||||
} catch (\Exception $e) {
|
||||
Tlog::getInstance()->error(sprintf('Failed to change cart item quantity: %s', $e->getMessage()));
|
||||
|
||||
$this->getParserContext()->setGeneralError($e->getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
public function deleteItem(EventDispatcherInterface $eventDispatcher)
|
||||
{
|
||||
$cartEvent = $this->getCartEvent($eventDispatcher);
|
||||
$cartEvent->setCartItemId($this->getRequest()->get('cart_item'));
|
||||
|
||||
try {
|
||||
$this->getTokenProvider()->checkToken(
|
||||
$this->getRequest()->query->get('_token')
|
||||
);
|
||||
|
||||
$eventDispatcher->dispatch($cartEvent, TheliaEvents::CART_DELETEITEM);
|
||||
|
||||
$this->afterModifyCart($eventDispatcher);
|
||||
} catch (\Exception $e) {
|
||||
Tlog::getInstance()->error(sprintf('error during deleting cartItem with message : %s', $e->getMessage()));
|
||||
$this->getParserContext()->setGeneralError($e->getMessage());
|
||||
}
|
||||
|
||||
if (!$this->changeViewForAjax()) {
|
||||
if (null !== $successUrl = $this->getRequest()->get('success_url')) {
|
||||
return $this->generateRedirect(URL::getInstance()->absoluteUrl($successUrl));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
protected function changeViewForAjax()
|
||||
{
|
||||
// If this is an ajax request, and if the template allow us to return an ajax result
|
||||
if ($this->getRequest()->isXmlHttpRequest() && (0 === (int) $this->getRequest()->get('no_ajax_check', 0))) {
|
||||
$request = $this->getRequest();
|
||||
|
||||
$view = $request->get('ajax-view', 'includes/mini-cart');
|
||||
|
||||
$request->attributes->set('_view', $view);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
public function changeCountry()
|
||||
{
|
||||
$redirectUrl = URL::getInstance()->absoluteUrl('/cart');
|
||||
$deliveryId = $this->getRequest()->get('country');
|
||||
$cookieName = ConfigQuery::read('front_cart_country_cookie_name', 'fcccn');
|
||||
$cookieExpires = ConfigQuery::read('front_cart_country_cookie_expires', 2592000);
|
||||
$cookieExpires = (int) $cookieExpires ?: 2592000;
|
||||
|
||||
$cookie = new Cookie($cookieName, $deliveryId, time() + $cookieExpires, '/');
|
||||
|
||||
$response = $this->generateRedirect($redirectUrl);
|
||||
$response->headers->setCookie($cookie);
|
||||
|
||||
return $response;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return \Thelia\Core\Event\Cart\CartEvent
|
||||
*/
|
||||
protected function getCartEvent(EventDispatcherInterface $eventDispatcher)
|
||||
{
|
||||
$cart = $this->getSession()->getSessionCart($eventDispatcher);
|
||||
|
||||
return new CartEvent($cart);
|
||||
}
|
||||
|
||||
/**
|
||||
* Find the good way to construct the cart form.
|
||||
*
|
||||
* @return CartAdd
|
||||
*/
|
||||
private function getAddCartForm(Request $request)
|
||||
{
|
||||
/* @var CartAdd $cartAdd */
|
||||
if ($request->isMethod('post')) {
|
||||
$cartAdd = $this->createForm(FrontForm::CART_ADD);
|
||||
} else {
|
||||
$cartAdd = $this->createForm(
|
||||
FrontForm::CART_ADD,
|
||||
FormType::class,
|
||||
[],
|
||||
[
|
||||
'csrf_protection' => false,
|
||||
]
|
||||
);
|
||||
}
|
||||
|
||||
return $cartAdd;
|
||||
}
|
||||
|
||||
/**
|
||||
* @throws PropelException
|
||||
*/
|
||||
protected function afterModifyCart(EventDispatcherInterface $eventDispatcher): void
|
||||
{
|
||||
/* recalculate postage amount */
|
||||
$order = $this->getSession()->getOrder();
|
||||
if (null !== $order) {
|
||||
$deliveryModule = $order->getModuleRelatedByDeliveryModuleId();
|
||||
$deliveryAddress = AddressQuery::create()->findPk($order->getChoosenDeliveryAddress());
|
||||
|
||||
if (null !== $deliveryModule && null !== $deliveryAddress) {
|
||||
$moduleInstance = $deliveryModule->getDeliveryModuleInstance($this->container);
|
||||
|
||||
$orderEvent = new OrderEvent($order);
|
||||
|
||||
try {
|
||||
$deliveryPostageEvent = new DeliveryPostageEvent(
|
||||
$moduleInstance,
|
||||
$this->getSession()->getSessionCart($eventDispatcher),
|
||||
$deliveryAddress
|
||||
);
|
||||
|
||||
$eventDispatcher->dispatch(
|
||||
$deliveryPostageEvent,
|
||||
TheliaEvents::MODULE_DELIVERY_GET_POSTAGE,
|
||||
);
|
||||
|
||||
$postage = $deliveryPostageEvent->getPostage();
|
||||
|
||||
if (null !== $postage) {
|
||||
$orderEvent->setPostage($postage->getAmount());
|
||||
$orderEvent->setPostageTax($postage->getAmountTax());
|
||||
$orderEvent->setPostageTaxRuleTitle($postage->getTaxRuleTitle());
|
||||
}
|
||||
|
||||
$eventDispatcher->dispatch($orderEvent, TheliaEvents::ORDER_SET_POSTAGE);
|
||||
} catch (\Exception $ex) {
|
||||
// The postage has been chosen, but changes in the cart causes an exception.
|
||||
// Reset the postage data in the order
|
||||
$orderEvent->setDeliveryModule(0);
|
||||
|
||||
$eventDispatcher->dispatch($orderEvent, TheliaEvents::ORDER_SET_DELIVERY_MODULE);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,91 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Thelia package.
|
||||
* http://www.thelia.net
|
||||
*
|
||||
* (c) OpenStudio <info@thelia.net>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace Front\Controller;
|
||||
|
||||
use Symfony\Contracts\EventDispatcher\EventDispatcherInterface;
|
||||
use Thelia\Controller\Front\BaseFrontController;
|
||||
use Thelia\Core\Event\Contact\ContactEvent;
|
||||
use Thelia\Core\Event\TheliaEvents;
|
||||
use Thelia\Core\Template\ParserContext;
|
||||
use Thelia\Core\Translation\Translator;
|
||||
use Thelia\Form\Definition\FrontForm;
|
||||
use Thelia\Form\Exception\FormValidationException;
|
||||
use Thelia\Log\Tlog;
|
||||
use Thelia\Mailer\MailerFactory;
|
||||
use Thelia\Model\ConfigQuery;
|
||||
|
||||
/**
|
||||
* Class ContactController.
|
||||
*
|
||||
* @author Manuel Raynaud <manu@raynaud.io>
|
||||
* @author Loïc Mo <lmo@openstudio.fr>
|
||||
*/
|
||||
class ContactController extends BaseFrontController
|
||||
{
|
||||
/**
|
||||
* Send contact message.
|
||||
*/
|
||||
public function sendAction(EventDispatcherInterface $eventDispatcher, MailerFactory $mailer, ParserContext $parserContext)
|
||||
{
|
||||
$translator = Translator::getInstance();
|
||||
$contactForm = $this->createForm(FrontForm::CONTACT);
|
||||
|
||||
try {
|
||||
$form = $this->validateForm($contactForm);
|
||||
$event = new ContactEvent($form);
|
||||
$eventDispatcher->dispatch($event, TheliaEvents::CONTACT_SUBMIT);
|
||||
|
||||
$name = $translator?->trans('Sender name: %name%', ['%name%' => $event->getName()]);
|
||||
$email = $translator?->trans('Sender\'s e-mail address: %email%', ['%email%' => $event->getEmail()]);
|
||||
$message = $translator?->trans('Message content: %message%', ['%message%' => $event->getMessage()]);
|
||||
|
||||
$messageContent =
|
||||
"<p>$name</p>\n".
|
||||
"<p>$email</p>\n".
|
||||
"<p>$message</p>";
|
||||
|
||||
$mailer->sendSimpleEmailMessage(
|
||||
[ConfigQuery::getStoreEmail() => $event->getName()],
|
||||
[ConfigQuery::getStoreEmail() => ConfigQuery::getStoreName()],
|
||||
$event->getSubject(),
|
||||
$messageContent,
|
||||
strip_tags($messageContent),
|
||||
[],
|
||||
[],
|
||||
[$event->getEmail() => $event->getName()]
|
||||
);
|
||||
|
||||
if ($contactForm->hasSuccessUrl()) {
|
||||
return $this->generateSuccessRedirect($contactForm);
|
||||
}
|
||||
|
||||
return $this->generateRedirectFromRoute('contact.success');
|
||||
} catch (FormValidationException $e) {
|
||||
$error_message = $e->getMessage();
|
||||
}
|
||||
|
||||
Tlog::getInstance()->error(sprintf('Error during sending contact mail : %s', $error_message));
|
||||
|
||||
$contactForm->setErrorMessage($error_message);
|
||||
|
||||
$parserContext
|
||||
->addForm($contactForm)
|
||||
->setGeneralError($error_message)
|
||||
;
|
||||
|
||||
// Redirect to error URL if defined
|
||||
if ($contactForm->hasErrorUrl()) {
|
||||
return $this->generateErrorRedirect($contactForm);
|
||||
}
|
||||
}
|
||||
}
|
||||
158
domokits/local/modules/Front/Controller/CouponController.php
Normal file
158
domokits/local/modules/Front/Controller/CouponController.php
Normal file
@@ -0,0 +1,158 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Thelia package.
|
||||
* http://www.thelia.net
|
||||
*
|
||||
* (c) OpenStudio <info@thelia.net>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace Front\Controller;
|
||||
|
||||
use Front\Front;
|
||||
use Propel\Runtime\Exception\PropelException;
|
||||
use Symfony\Contracts\EventDispatcher\EventDispatcherInterface;
|
||||
use Thelia\Controller\Front\BaseFrontController;
|
||||
use Thelia\Core\Event\Coupon\CouponConsumeEvent;
|
||||
use Thelia\Core\Event\DefaultActionEvent;
|
||||
use Thelia\Core\Event\Delivery\DeliveryPostageEvent;
|
||||
use Thelia\Core\Event\Order\OrderEvent;
|
||||
use Thelia\Core\Event\TheliaEvents;
|
||||
use Thelia\Exception\UnmatchableConditionException;
|
||||
use Thelia\Form\Definition\FrontForm;
|
||||
use Thelia\Form\Exception\FormValidationException;
|
||||
use Thelia\Log\Tlog;
|
||||
use Thelia\Model\AddressQuery;
|
||||
|
||||
/**
|
||||
* Class CouponController.
|
||||
*
|
||||
* @author Guillaume MOREL <gmorel@openstudio.fr>
|
||||
*/
|
||||
class CouponController extends BaseFrontController
|
||||
{
|
||||
/**
|
||||
* Clear all coupons.
|
||||
*/
|
||||
public function clearAllCouponsAction(EventDispatcherInterface $eventDispatcher): void
|
||||
{
|
||||
// Dispatch Event to the Action
|
||||
$eventDispatcher->dispatch(new DefaultActionEvent(), TheliaEvents::COUPON_CLEAR_ALL);
|
||||
}
|
||||
|
||||
/**
|
||||
* Coupon consuming.
|
||||
*/
|
||||
public function consumeAction(EventDispatcherInterface $eventDispatcher)
|
||||
{
|
||||
$this->checkCartNotEmpty($eventDispatcher);
|
||||
|
||||
$message = false;
|
||||
$couponCodeForm = $this->createForm(FrontForm::COUPON_CONSUME);
|
||||
|
||||
try {
|
||||
$form = $this->validateForm($couponCodeForm, 'post');
|
||||
|
||||
$couponCode = $form->get('coupon-code')->getData();
|
||||
|
||||
if (null === $couponCode || empty($couponCode)) {
|
||||
$message = true;
|
||||
throw new \Exception(
|
||||
$this->getTranslator()->trans(
|
||||
'Coupon code can\'t be empty',
|
||||
[],
|
||||
Front::MESSAGE_DOMAIN
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
$couponConsumeEvent = new CouponConsumeEvent($couponCode);
|
||||
|
||||
// Dispatch Event to the Action
|
||||
$eventDispatcher->dispatch($couponConsumeEvent, TheliaEvents::COUPON_CONSUME);
|
||||
|
||||
/* recalculate postage amount */
|
||||
$order = $this->getSession()->getOrder();
|
||||
|
||||
if (null !== $order) {
|
||||
$deliveryModule = $order->getModuleRelatedByDeliveryModuleId();
|
||||
$deliveryAddress = AddressQuery::create()->findPk($order->getChoosenDeliveryAddress());
|
||||
|
||||
if (null !== $deliveryModule && null !== $deliveryAddress) {
|
||||
$moduleInstance = $deliveryModule->getDeliveryModuleInstance($this->container);
|
||||
|
||||
$orderEvent = new OrderEvent($order);
|
||||
|
||||
try {
|
||||
$deliveryPostageEvent = new DeliveryPostageEvent(
|
||||
$moduleInstance,
|
||||
$this->getSession()->getSessionCart($eventDispatcher),
|
||||
$deliveryAddress
|
||||
);
|
||||
|
||||
$eventDispatcher->dispatch(
|
||||
$deliveryPostageEvent,
|
||||
TheliaEvents::MODULE_DELIVERY_GET_POSTAGE
|
||||
);
|
||||
|
||||
$postage = $deliveryPostageEvent->getPostage();
|
||||
|
||||
$orderEvent->setPostage($postage->getAmount());
|
||||
$orderEvent->setPostageTax($postage->getAmountTax());
|
||||
$orderEvent->setPostageTaxRuleTitle($postage->getTaxRuleTitle());
|
||||
|
||||
$eventDispatcher->dispatch($orderEvent, TheliaEvents::ORDER_SET_POSTAGE);
|
||||
} catch (\Exception $ex) {
|
||||
// The postage has been chosen, but changes dues to coupon causes an exception.
|
||||
// Reset the postage data in the order
|
||||
$orderEvent->setDeliveryModule(0);
|
||||
|
||||
$eventDispatcher->dispatch($orderEvent, TheliaEvents::ORDER_SET_DELIVERY_MODULE);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return $this->generateSuccessRedirect($couponCodeForm);
|
||||
} catch (FormValidationException $e) {
|
||||
$message = $this->getTranslator()->trans(
|
||||
'Please check your coupon code: %message',
|
||||
['%message' => $e->getMessage()],
|
||||
Front::MESSAGE_DOMAIN
|
||||
);
|
||||
} catch (UnmatchableConditionException $e) {
|
||||
$message = $this->getTranslator()->trans(
|
||||
'You should <a href="%sign">sign in</a> or <a href="%register">register</a> to use this coupon',
|
||||
[
|
||||
'%sign' => $this->retrieveUrlFromRouteId('customer.login.view'),
|
||||
'%register' => $this->retrieveUrlFromRouteId('customer.create.view'),
|
||||
],
|
||||
Front::MESSAGE_DOMAIN
|
||||
);
|
||||
} catch (PropelException $e) {
|
||||
$this->getParserContext()->setGeneralError($e->getMessage());
|
||||
} catch (\Exception $e) {
|
||||
$message = $this->getTranslator()->trans(
|
||||
'Sorry, an error occurred: %message',
|
||||
['%message' => $e->getMessage()],
|
||||
Front::MESSAGE_DOMAIN
|
||||
);
|
||||
}
|
||||
|
||||
if ($message !== false) {
|
||||
Tlog::getInstance()->error(
|
||||
sprintf('Error during order delivery process : %s. Exception was %s', $message, $e->getMessage())
|
||||
);
|
||||
|
||||
$couponCodeForm->setErrorMessage($message);
|
||||
|
||||
$this->getParserContext()
|
||||
->addForm($couponCodeForm)
|
||||
->setGeneralError($message);
|
||||
}
|
||||
|
||||
return $this->generateErrorRedirect($couponCodeForm);
|
||||
}
|
||||
}
|
||||
595
domokits/local/modules/Front/Controller/CustomerController.php
Normal file
595
domokits/local/modules/Front/Controller/CustomerController.php
Normal file
@@ -0,0 +1,595 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Thelia package.
|
||||
* http://www.thelia.net
|
||||
*
|
||||
* (c) OpenStudio <info@thelia.net>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace Front\Controller;
|
||||
|
||||
use Front\Front;
|
||||
use Symfony\Component\Form\Extension\Core\Type\FormType;
|
||||
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
|
||||
use Symfony\Contracts\EventDispatcher\EventDispatcherInterface;
|
||||
use Thelia\Controller\Front\BaseFrontController;
|
||||
use Thelia\Core\Event\Customer\CustomerCreateOrUpdateEvent;
|
||||
use Thelia\Core\Event\Customer\CustomerLoginEvent;
|
||||
use Thelia\Core\Event\DefaultActionEvent;
|
||||
use Thelia\Core\Event\LostPasswordEvent;
|
||||
use Thelia\Core\Event\Newsletter\NewsletterEvent;
|
||||
use Thelia\Core\Event\TheliaEvents;
|
||||
use Thelia\Core\Security\Authentication\CustomerUsernamePasswordFormAuthenticator;
|
||||
use Thelia\Core\Security\Exception\AuthenticationException;
|
||||
use Thelia\Core\Security\Exception\CustomerNotConfirmedException;
|
||||
use Thelia\Core\Security\Exception\UsernameNotFoundException;
|
||||
use Thelia\Core\Security\Exception\WrongPasswordException;
|
||||
use Thelia\Form\CustomerLogin;
|
||||
use Thelia\Form\Definition\FrontForm;
|
||||
use Thelia\Form\Exception\FormValidationException;
|
||||
use Thelia\Log\Tlog;
|
||||
use Thelia\Model\ConfigQuery;
|
||||
use Thelia\Model\Customer;
|
||||
use Thelia\Model\CustomerQuery;
|
||||
use Thelia\Model\Event\CustomerEvent;
|
||||
use Thelia\Model\Newsletter;
|
||||
use Thelia\Model\NewsletterQuery;
|
||||
use Thelia\Tools\RememberMeTrait;
|
||||
use Thelia\Tools\URL;
|
||||
|
||||
/**
|
||||
* Class CustomerController.
|
||||
*
|
||||
* @author Manuel Raynaud <manu@raynaud.io>
|
||||
*/
|
||||
class CustomerController extends BaseFrontController
|
||||
{
|
||||
use RememberMeTrait;
|
||||
|
||||
/**
|
||||
* Display the register template if no customer logged.
|
||||
*/
|
||||
public function viewLoginAction()
|
||||
{
|
||||
if ($this->getSecurityContext()->hasCustomerUser()) {
|
||||
// Redirect to home page
|
||||
return $this->generateRedirect(URL::getInstance()->getIndexPage());
|
||||
}
|
||||
|
||||
return $this->render('login');
|
||||
}
|
||||
|
||||
/**
|
||||
* Display the register template if no customer logged.
|
||||
*/
|
||||
public function viewRegisterAction()
|
||||
{
|
||||
if ($this->getSecurityContext()->hasCustomerUser()) {
|
||||
// Redirect to home page
|
||||
return $this->generateRedirect(URL::getInstance()->getIndexPage());
|
||||
}
|
||||
|
||||
return $this->render('register');
|
||||
}
|
||||
|
||||
public function newPasswordAction(EventDispatcherInterface $eventDispatcher)
|
||||
{
|
||||
$passwordLost = $this->createForm(FrontForm::CUSTOMER_LOST_PASSWORD);
|
||||
|
||||
if (!$this->getSecurityContext()->hasCustomerUser()) {
|
||||
try {
|
||||
$form = $this->validateForm($passwordLost);
|
||||
|
||||
$event = new LostPasswordEvent($form->get('email')->getData());
|
||||
|
||||
$eventDispatcher->dispatch($event, TheliaEvents::LOST_PASSWORD);
|
||||
|
||||
return $this->generateSuccessRedirect($passwordLost);
|
||||
} catch (FormValidationException $e) {
|
||||
$message = $this->getTranslator()->trans(
|
||||
'Please check your input: %s',
|
||||
[
|
||||
'%s' => $e->getMessage(),
|
||||
],
|
||||
Front::MESSAGE_DOMAIN
|
||||
);
|
||||
} catch (\Exception $e) {
|
||||
$message = $this->getTranslator()->trans(
|
||||
'Sorry, an error occurred: %s',
|
||||
[
|
||||
'%s' => $e->getMessage(),
|
||||
],
|
||||
Front::MESSAGE_DOMAIN
|
||||
);
|
||||
}
|
||||
|
||||
if ($message !== false) {
|
||||
Tlog::getInstance()->error(
|
||||
sprintf(
|
||||
'Error during customer creation process : %s. Exception was %s',
|
||||
$message,
|
||||
$e->getMessage()
|
||||
)
|
||||
);
|
||||
}
|
||||
} else {
|
||||
$message = $this->getTranslator()->trans(
|
||||
"You're currently logged in. Please log out before requesting a new password.",
|
||||
[],
|
||||
Front::MESSAGE_DOMAIN
|
||||
);
|
||||
}
|
||||
|
||||
$passwordLost->setErrorMessage($message);
|
||||
|
||||
$this->getParserContext()
|
||||
->addForm($passwordLost)
|
||||
->setGeneralError($message)
|
||||
;
|
||||
|
||||
// Redirect to error URL if defined
|
||||
if ($passwordLost->hasErrorUrl()) {
|
||||
return $this->generateErrorRedirect($passwordLost);
|
||||
}
|
||||
}
|
||||
|
||||
public function newPasswordSentAction(): void
|
||||
{
|
||||
$this->getParser()->assign('password_sent', true);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create a new customer.
|
||||
* On success, redirect to success_url if exists, otherwise, display the same view again.
|
||||
*/
|
||||
public function createAction(EventDispatcherInterface $eventDispatcher)
|
||||
{
|
||||
if (!$this->getSecurityContext()->hasCustomerUser()) {
|
||||
$customerCreation = $this->createForm(FrontForm::CUSTOMER_CREATE);
|
||||
|
||||
try {
|
||||
$form = $this->validateForm($customerCreation, 'post');
|
||||
|
||||
$customerCreateEvent = $this->createEventInstance($form->getData());
|
||||
|
||||
$eventDispatcher->dispatch($customerCreateEvent, TheliaEvents::CUSTOMER_CREATEACCOUNT);
|
||||
|
||||
$newCustomer = $customerCreateEvent->getCustomer();
|
||||
|
||||
// Newsletter
|
||||
if (true === $form->get('newsletter')->getData()) {
|
||||
$newsletterEmail = $newCustomer->getEmail();
|
||||
$nlEvent = new NewsletterEvent(
|
||||
$newsletterEmail,
|
||||
$this->getRequest()->getSession()->getLang()->getLocale()
|
||||
);
|
||||
$nlEvent->setFirstname($newCustomer->getFirstname());
|
||||
$nlEvent->setLastname($newCustomer->getLastname());
|
||||
|
||||
// Security : Check if this new Email address already exist
|
||||
if (null !== $newsletter = NewsletterQuery::create()->findOneByEmail($newsletterEmail)) {
|
||||
$nlEvent->setId($newsletter->getId());
|
||||
$eventDispatcher->dispatch($nlEvent, TheliaEvents::NEWSLETTER_UPDATE);
|
||||
} else {
|
||||
$eventDispatcher->dispatch($nlEvent, TheliaEvents::NEWSLETTER_SUBSCRIBE);
|
||||
}
|
||||
}
|
||||
|
||||
if (ConfigQuery::isCustomerEmailConfirmationEnable() && !$newCustomer->getEnable()) {
|
||||
$response = $this->generateRedirectFromRoute('customer.login.view');
|
||||
} else {
|
||||
$this->processLogin($eventDispatcher, $customerCreateEvent->getCustomer());
|
||||
|
||||
$cart = $this->getSession()->getSessionCart($eventDispatcher);
|
||||
if ($cart->getCartItems()->count() > 0) {
|
||||
$response = $this->generateRedirectFromRoute('cart.view');
|
||||
} else {
|
||||
$response = $this->generateSuccessRedirect($customerCreation);
|
||||
}
|
||||
}
|
||||
|
||||
return $response;
|
||||
} catch (FormValidationException $e) {
|
||||
$message = $this->getTranslator()->trans(
|
||||
'Please check your input: %s',
|
||||
[
|
||||
'%s' => $e->getMessage(),
|
||||
],
|
||||
Front::MESSAGE_DOMAIN
|
||||
);
|
||||
} catch (\Exception $e) {
|
||||
$message = $this->getTranslator()->trans(
|
||||
'Sorry, an error occured: %s',
|
||||
[
|
||||
'%s' => $e->getMessage(),
|
||||
],
|
||||
Front::MESSAGE_DOMAIN
|
||||
);
|
||||
}
|
||||
|
||||
Tlog::getInstance()->error(
|
||||
sprintf(
|
||||
'Error during customer creation process : %s. Exception was %s',
|
||||
$message,
|
||||
$e->getMessage()
|
||||
)
|
||||
);
|
||||
|
||||
$customerCreation->setErrorMessage($message);
|
||||
|
||||
$this->getParserContext()
|
||||
->addForm($customerCreation)
|
||||
->setGeneralError($message)
|
||||
;
|
||||
|
||||
// Redirect to error URL if defined
|
||||
if ($customerCreation->hasErrorUrl()) {
|
||||
return $this->generateErrorRedirect($customerCreation);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Prepare customer data update.
|
||||
*/
|
||||
public function viewAction(): void
|
||||
{
|
||||
$this->checkAuth();
|
||||
|
||||
/** @var Customer $customer */
|
||||
$customer = $this->getSecurityContext()->getCustomerUser();
|
||||
$newsletter = NewsletterQuery::create()->findOneByEmail($customer->getEmail());
|
||||
$data = [
|
||||
'id' => $customer->getId(),
|
||||
'title' => $customer->getTitleId(),
|
||||
'firstname' => $customer->getFirstName(),
|
||||
'lastname' => $customer->getLastName(),
|
||||
'email' => $customer->getEmail(),
|
||||
'email_confirm' => $customer->getEmail(),
|
||||
'lang_id' => $customer->getLangId(),
|
||||
'newsletter' => $newsletter instanceof Newsletter ? !$newsletter->getUnsubscribed() : false,
|
||||
];
|
||||
|
||||
$customerProfileUpdateForm = $this->createForm(FrontForm::CUSTOMER_PROFILE_UPDATE, FormType::class, $data);
|
||||
|
||||
// Pass it to the parser
|
||||
$this->getParserContext()->addForm($customerProfileUpdateForm);
|
||||
}
|
||||
|
||||
public function updatePasswordAction(EventDispatcherInterface $eventDispatcher)
|
||||
{
|
||||
if ($this->getSecurityContext()->hasCustomerUser()) {
|
||||
$customerPasswordUpdateForm = $this->createForm(FrontForm::CUSTOMER_PASSWORD_UPDATE);
|
||||
|
||||
try {
|
||||
/** @var Customer $customer */
|
||||
$customer = $this->getSecurityContext()->getCustomerUser();
|
||||
|
||||
$form = $this->validateForm($customerPasswordUpdateForm, 'post');
|
||||
|
||||
$customerChangeEvent = $this->createEventInstance($form->getData());
|
||||
$customerChangeEvent->setCustomer($customer);
|
||||
$eventDispatcher->dispatch($customerChangeEvent, TheliaEvents::CUSTOMER_UPDATEPROFILE);
|
||||
|
||||
return $this->generateSuccessRedirect($customerPasswordUpdateForm);
|
||||
} catch (FormValidationException $e) {
|
||||
$message = $this->getTranslator()->trans(
|
||||
'Please check your input: %s',
|
||||
[
|
||||
'%s' => $e->getMessage(),
|
||||
],
|
||||
Front::MESSAGE_DOMAIN
|
||||
);
|
||||
} catch (\Exception $e) {
|
||||
$message = $this->getTranslator()->trans(
|
||||
'Sorry, an error occured: %s',
|
||||
[
|
||||
'%s' => $e->getMessage(),
|
||||
],
|
||||
Front::MESSAGE_DOMAIN
|
||||
);
|
||||
}
|
||||
|
||||
Tlog::getInstance()->error(
|
||||
sprintf(
|
||||
'Error during customer password modification process : %s.',
|
||||
$message
|
||||
)
|
||||
);
|
||||
|
||||
$customerPasswordUpdateForm->setErrorMessage($message);
|
||||
|
||||
$this->getParserContext()
|
||||
->addForm($customerPasswordUpdateForm)
|
||||
->setGeneralError($message)
|
||||
;
|
||||
|
||||
// Redirect to error URL if defined
|
||||
if ($customerPasswordUpdateForm->hasErrorUrl()) {
|
||||
return $this->generateErrorRedirect($customerPasswordUpdateForm);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public function updateAction(EventDispatcherInterface $eventDispatcher)
|
||||
{
|
||||
if ($this->getSecurityContext()->hasCustomerUser()) {
|
||||
$customerProfileUpdateForm = $this->createForm(FrontForm::CUSTOMER_PROFILE_UPDATE);
|
||||
|
||||
try {
|
||||
/** @var Customer $customer */
|
||||
$customer = $this->getSecurityContext()->getCustomerUser();
|
||||
$newsletterOldEmail = $customer->getEmail();
|
||||
|
||||
$form = $this->validateForm($customerProfileUpdateForm, 'post');
|
||||
|
||||
$customerChangeEvent = $this->createEventInstance($form->getData());
|
||||
$customerChangeEvent->setCustomer($customer);
|
||||
|
||||
$customerChangeEvent->setEmailUpdateAllowed(
|
||||
((int) ConfigQuery::read('customer_change_email', 0)) ? true : false
|
||||
);
|
||||
|
||||
$eventDispatcher->dispatch($customerChangeEvent, TheliaEvents::CUSTOMER_UPDATEPROFILE);
|
||||
|
||||
$updatedCustomer = $customerChangeEvent->getCustomer();
|
||||
|
||||
// Newsletter
|
||||
if (true === $form->get('newsletter')->getData()) {
|
||||
$nlEvent = new NewsletterEvent(
|
||||
$updatedCustomer->getEmail(),
|
||||
$this->getRequest()->getSession()->getLang()->getLocale()
|
||||
);
|
||||
$nlEvent->setFirstname($updatedCustomer->getFirstname());
|
||||
$nlEvent->setLastname($updatedCustomer->getLastname());
|
||||
|
||||
if (null !== $newsletter = NewsletterQuery::create()->findOneByEmail($newsletterOldEmail)) {
|
||||
$nlEvent->setId($newsletter->getId());
|
||||
$eventDispatcher->dispatch($nlEvent, TheliaEvents::NEWSLETTER_UPDATE);
|
||||
} else {
|
||||
$eventDispatcher->dispatch($nlEvent, TheliaEvents::NEWSLETTER_SUBSCRIBE);
|
||||
}
|
||||
} else {
|
||||
if (null !== $newsletter = NewsletterQuery::create()->findOneByEmail($newsletterOldEmail)) {
|
||||
$nlEvent = new NewsletterEvent(
|
||||
$updatedCustomer->getEmail(),
|
||||
$this->getRequest()->getSession()->getLang()->getLocale()
|
||||
);
|
||||
$nlEvent->setId($newsletter->getId());
|
||||
$eventDispatcher->dispatch($nlEvent, TheliaEvents::NEWSLETTER_UNSUBSCRIBE);
|
||||
}
|
||||
}
|
||||
|
||||
$this->processLogin($eventDispatcher, $updatedCustomer);
|
||||
|
||||
return $this->generateSuccessRedirect($customerProfileUpdateForm);
|
||||
} catch (FormValidationException $e) {
|
||||
$message = $this->getTranslator()->trans(
|
||||
'Please check your input: %s',
|
||||
[
|
||||
'%s' => $e->getMessage(),
|
||||
],
|
||||
Front::MESSAGE_DOMAIN
|
||||
);
|
||||
} catch (\Exception $e) {
|
||||
$message = $this->getTranslator()->trans(
|
||||
'Sorry, an error occured: %s',
|
||||
[
|
||||
'%s' => $e->getMessage(),
|
||||
],
|
||||
Front::MESSAGE_DOMAIN
|
||||
);
|
||||
}
|
||||
|
||||
Tlog::getInstance()->error(sprintf('Error during customer modification process : %s.', $message));
|
||||
|
||||
$customerProfileUpdateForm->setErrorMessage($message);
|
||||
|
||||
$this->getParserContext()
|
||||
->addForm($customerProfileUpdateForm)
|
||||
->setGeneralError($message)
|
||||
;
|
||||
|
||||
// Redirect to error URL if defined
|
||||
if ($customerProfileUpdateForm->hasErrorUrl()) {
|
||||
return $this->generateErrorRedirect($customerProfileUpdateForm);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Perform user login. On a successful login, the user is redirected to the URL
|
||||
* found in the success_url form parameter, or / if none was found.
|
||||
*
|
||||
* If login is not successfull, the same view is displayed again.
|
||||
*/
|
||||
public function loginAction(EventDispatcherInterface $eventDispatcher)
|
||||
{
|
||||
if (!$this->getSecurityContext()->hasCustomerUser()) {
|
||||
$request = $this->getRequest();
|
||||
$customerLoginForm = $this->createForm(CustomerLogin::class);
|
||||
|
||||
try {
|
||||
$form = $this->validateForm($customerLoginForm, 'post');
|
||||
|
||||
// If User is a new customer
|
||||
if ($form->get('account')->getData() == 0 && $form->get('email')->getErrors()->count() == 0) {
|
||||
return $this->generateRedirectFromRoute(
|
||||
'customer.create.process',
|
||||
['email' => $form->get('email')->getData()]
|
||||
);
|
||||
}
|
||||
try {
|
||||
$authenticator = new CustomerUsernamePasswordFormAuthenticator($request, $customerLoginForm);
|
||||
|
||||
/** @var Customer $customer */
|
||||
$customer = $authenticator->getAuthentifiedUser();
|
||||
|
||||
$this->processLogin($eventDispatcher, $customer);
|
||||
|
||||
if ((int) $form->get('remember_me')->getData() > 0) {
|
||||
// If a remember me field if present and set in the form, create
|
||||
// the cookie thant store "remember me" information
|
||||
$this->createRememberMeCookie(
|
||||
$customer,
|
||||
$this->getRememberMeCookieName(),
|
||||
$this->getRememberMeCookieExpiration()
|
||||
);
|
||||
}
|
||||
|
||||
return $this->generateSuccessRedirect($customerLoginForm);
|
||||
} catch (UsernameNotFoundException $e) {
|
||||
$message = $this->getTranslator()->trans(
|
||||
'Wrong email or password. Please try again',
|
||||
[],
|
||||
Front::MESSAGE_DOMAIN
|
||||
);
|
||||
} catch (WrongPasswordException $e) {
|
||||
$message = $this->getTranslator()->trans(
|
||||
'Wrong email or password. Please try again',
|
||||
[],
|
||||
Front::MESSAGE_DOMAIN
|
||||
);
|
||||
} catch (CustomerNotConfirmedException $e) {
|
||||
if ($e->getUser() !== null) {
|
||||
// Send the confirmation email again
|
||||
$eventDispatcher->dispatch(
|
||||
new CustomerEvent($e->getUser()),
|
||||
TheliaEvents::SEND_ACCOUNT_CONFIRMATION_EMAIL
|
||||
);
|
||||
}
|
||||
$message = $this->getTranslator()->trans(
|
||||
'Your account is not yet confirmed. A confirmation email has been sent to your email address, please check your mailbox',
|
||||
[],
|
||||
Front::MESSAGE_DOMAIN
|
||||
);
|
||||
} catch (AuthenticationException $e) {
|
||||
$message = $this->getTranslator()->trans(
|
||||
'Wrong email or password. Please try again',
|
||||
[],
|
||||
Front::MESSAGE_DOMAIN
|
||||
);
|
||||
}
|
||||
} catch (FormValidationException $e) {
|
||||
$message = $this->getTranslator()->trans(
|
||||
'Please check your input: %s',
|
||||
['%s' => $e->getMessage()],
|
||||
Front::MESSAGE_DOMAIN
|
||||
);
|
||||
} catch (\Exception $e) {
|
||||
$message = $this->getTranslator()->trans(
|
||||
'Sorry, an error occured: %s',
|
||||
['%s' => $e->getMessage()],
|
||||
Front::MESSAGE_DOMAIN
|
||||
);
|
||||
}
|
||||
|
||||
Tlog::getInstance()->error(
|
||||
sprintf(
|
||||
'Error during customer login process : %s. Exception was %s',
|
||||
$message,
|
||||
$e->getMessage()
|
||||
)
|
||||
);
|
||||
|
||||
$customerLoginForm->setErrorMessage($message);
|
||||
|
||||
$this->getParserContext()->addForm($customerLoginForm);
|
||||
|
||||
if ($customerLoginForm->hasErrorUrl()) {
|
||||
return $this->generateErrorRedirect($customerLoginForm);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Perform customer logout.
|
||||
*/
|
||||
public function logoutAction(EventDispatcherInterface $eventDispatcher)
|
||||
{
|
||||
if ($this->getSecurityContext()->hasCustomerUser()) {
|
||||
$eventDispatcher->dispatch(new DefaultActionEvent(), TheliaEvents::CUSTOMER_LOGOUT);
|
||||
}
|
||||
|
||||
$this->clearRememberMeCookie($this->getRememberMeCookieName());
|
||||
|
||||
// Redirect to home page
|
||||
return $this->generateRedirect(URL::getInstance()->getIndexPage());
|
||||
}
|
||||
|
||||
/**
|
||||
* @throws \Exception
|
||||
* @throws \Propel\Runtime\Exception\PropelException
|
||||
*
|
||||
* @return \Symfony\Component\HttpFoundation\Response
|
||||
*/
|
||||
public function confirmCustomerAction($token)
|
||||
{
|
||||
/** @var Customer $customer */
|
||||
if (null === $customer = CustomerQuery::create()->findOneByConfirmationToken($token)) {
|
||||
throw new NotFoundHttpException();
|
||||
}
|
||||
|
||||
$customer
|
||||
->setEnable(true)
|
||||
->save()
|
||||
;
|
||||
|
||||
// Clear form error context
|
||||
|
||||
return $this->generateRedirectFromRoute('customer.login.view', ['validation_done' => 1]);
|
||||
}
|
||||
|
||||
/**
|
||||
* Dispatch event for customer login action.
|
||||
*/
|
||||
protected function processLogin(EventDispatcherInterface $eventDispatcher, Customer $customer): void
|
||||
{
|
||||
$eventDispatcher->dispatch(new CustomerLoginEvent($customer), TheliaEvents::CUSTOMER_LOGIN);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return \Thelia\Core\Event\Customer\CustomerCreateOrUpdateEvent
|
||||
*/
|
||||
private function createEventInstance($data)
|
||||
{
|
||||
$customerCreateEvent = new CustomerCreateOrUpdateEvent(
|
||||
$data['title'] ?? null,
|
||||
$data['firstname'] ?? null,
|
||||
$data['lastname'] ?? null,
|
||||
$data['address1'] ?? null,
|
||||
$data['address2'] ?? null,
|
||||
$data['address3'] ?? null,
|
||||
$data['phone'] ?? null,
|
||||
$data['cellphone'] ?? null,
|
||||
$data['zipcode'] ?? null,
|
||||
$data['city'] ?? null,
|
||||
$data['country'] ?? null,
|
||||
$data['email'] ?? null,
|
||||
$data['password'] ?? null,
|
||||
$data['lang_id'] ?? $this->getSession()->getLang()->getId(),
|
||||
$data['reseller'] ?? null,
|
||||
$data['sponsor'] ?? null,
|
||||
$data['discount'] ?? null,
|
||||
$data['company'] ?? null,
|
||||
null,
|
||||
$data['state'] ?? null
|
||||
);
|
||||
|
||||
return $customerCreateEvent;
|
||||
}
|
||||
|
||||
protected function getRememberMeCookieName()
|
||||
{
|
||||
return ConfigQuery::read('customer_remember_me_cookie_name', 'crmcn');
|
||||
}
|
||||
|
||||
protected function getRememberMeCookieExpiration()
|
||||
{
|
||||
return ConfigQuery::read('customer_remember_me_cookie_expiration', 2592000 /* 1 month */);
|
||||
}
|
||||
}
|
||||
196
domokits/local/modules/Front/Controller/FeedController.php
Normal file
196
domokits/local/modules/Front/Controller/FeedController.php
Normal file
@@ -0,0 +1,196 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Thelia package.
|
||||
* http://www.thelia.net
|
||||
*
|
||||
* (c) OpenStudio <info@thelia.net>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace Front\Controller;
|
||||
|
||||
use Symfony\Component\Cache\Adapter\AdapterInterface;
|
||||
use Thelia\Controller\Front\BaseFrontController;
|
||||
use Thelia\Core\HttpFoundation\Request;
|
||||
use Thelia\Core\HttpFoundation\Response;
|
||||
use Thelia\Model\BrandQuery;
|
||||
use Thelia\Model\CategoryQuery;
|
||||
use Thelia\Model\ConfigQuery;
|
||||
use Thelia\Model\FolderQuery;
|
||||
use Thelia\Model\Lang;
|
||||
use Thelia\Model\LangQuery;
|
||||
|
||||
/**
|
||||
* Controller uses to generate RSS Feeds.
|
||||
*
|
||||
* A default cache of 2 hours is used to avoid attack. You can flush cache if you have `ADMIN` role and pass flush=1 in
|
||||
* query string parameter.
|
||||
*
|
||||
* @author Julien Chanséaume <jchanseaume@openstudio.fr>
|
||||
*/
|
||||
class FeedController extends BaseFrontController
|
||||
{
|
||||
/**
|
||||
* Folder name for feeds cache.
|
||||
*/
|
||||
public const FEED_CACHE_DIR = 'feeds';
|
||||
|
||||
/**
|
||||
* Key prefix for feed cache.
|
||||
*/
|
||||
public const FEED_CACHE_KEY = 'feed';
|
||||
|
||||
/**
|
||||
* render the RSS feed.
|
||||
*
|
||||
* @param $context string The context of the feed : catalog, content. default: catalog
|
||||
* @param $lang string The lang of the feed : fr_FR, en_US, ... default: default language of the site
|
||||
* @param $id string The id of the parent element. The id of the main parent category for catalog context.
|
||||
* The id of the content folder for content context
|
||||
*
|
||||
* @throws \RuntimeException
|
||||
*
|
||||
* @return Response
|
||||
*/
|
||||
public function generateAction($context, $lang, $id)
|
||||
{
|
||||
/** @var Request $request */
|
||||
$request = $this->getRequest();
|
||||
|
||||
// context
|
||||
if ('' === $context) {
|
||||
$context = 'catalog';
|
||||
} elseif (!\in_array($context, ['catalog', 'content', 'brand'])) {
|
||||
$this->pageNotFound();
|
||||
}
|
||||
|
||||
// the locale : fr_FR, en_US,
|
||||
if ('' !== $lang) {
|
||||
if (!$this->checkLang($lang)) {
|
||||
$this->pageNotFound();
|
||||
}
|
||||
} else {
|
||||
try {
|
||||
$lang = Lang::getDefaultLanguage();
|
||||
$lang = $lang->getLocale();
|
||||
} catch (\RuntimeException $ex) {
|
||||
// @todo generate error page
|
||||
throw new \RuntimeException('No default language is defined. Please define one.');
|
||||
}
|
||||
}
|
||||
if (null === $lang = LangQuery::create()->findOneByLocale($lang)) {
|
||||
$this->pageNotFound();
|
||||
}
|
||||
$lang = $lang->getId();
|
||||
|
||||
// check if element exists and is visible
|
||||
if ('' !== $id) {
|
||||
if (false === $this->checkId($context, $id)) {
|
||||
$this->pageNotFound();
|
||||
}
|
||||
}
|
||||
|
||||
$flush = $request->query->get('flush', '');
|
||||
|
||||
/** @var AdapterInterface $cacheAdapter */
|
||||
$cacheAdapter = $this->container->get('thelia.cache');
|
||||
|
||||
$cacheKey = self::FEED_CACHE_KEY.$lang.$context;
|
||||
|
||||
$cacheItem = $cacheAdapter->getItem($cacheKey);
|
||||
|
||||
if (!$cacheItem->isHit() || $flush) {
|
||||
$cacheExpire = (int) (ConfigQuery::read('feed_ttl', '7200')) ?: 7200;
|
||||
|
||||
// render the view
|
||||
$cacheContent = $this->renderRaw(
|
||||
'feed',
|
||||
[
|
||||
'_context_' => $context,
|
||||
'_lang_' => $lang,
|
||||
'_id_' => $id,
|
||||
]
|
||||
);
|
||||
|
||||
$cacheItem->expiresAfter($cacheExpire);
|
||||
$cacheItem->set($cacheContent);
|
||||
$cacheAdapter->save($cacheItem);
|
||||
}
|
||||
|
||||
$response = new Response();
|
||||
$response->setContent($cacheItem->get());
|
||||
$response->headers->set('Content-Type', 'application/rss+xml');
|
||||
|
||||
return $response;
|
||||
}
|
||||
|
||||
/**
|
||||
* get the cache directory for feeds.
|
||||
*
|
||||
* @return mixed|string
|
||||
*/
|
||||
protected function getCacheDir()
|
||||
{
|
||||
$cacheDir = $this->container->getParameter('kernel.cache_dir');
|
||||
$cacheDir = rtrim($cacheDir, '/');
|
||||
$cacheDir .= '/'.self::FEED_CACHE_DIR.'/';
|
||||
|
||||
return $cacheDir;
|
||||
}
|
||||
|
||||
/**
|
||||
* Check if current user has ADMIN role.
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
protected function checkAdmin()
|
||||
{
|
||||
return $this->getSecurityContext()->hasAdminUser();
|
||||
}
|
||||
|
||||
/**
|
||||
* Check if a lang is used.
|
||||
*
|
||||
* @param $lang string The lang code. e.g.: fr
|
||||
*
|
||||
* @return bool true if the language is used, otherwise false
|
||||
*/
|
||||
private function checkLang($lang)
|
||||
{
|
||||
// load locals
|
||||
$lang = LangQuery::create()
|
||||
->findOneByLocale($lang);
|
||||
|
||||
return null !== $lang;
|
||||
}
|
||||
|
||||
/**
|
||||
* Check if the element exists and is visible.
|
||||
*
|
||||
* @param $context string catalog or content
|
||||
* @param $id string id of the element
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
private function checkId($context, $id)
|
||||
{
|
||||
$ret = false;
|
||||
if (is_numeric($id)) {
|
||||
if ('catalog' === $context) {
|
||||
$cat = CategoryQuery::create()->findPk($id);
|
||||
$ret = (null !== $cat && $cat->getVisible());
|
||||
} elseif ('brand' === $context) {
|
||||
$brand = BrandQuery::create()->findPk($id);
|
||||
$ret = (null !== $brand && $brand->getVisible());
|
||||
} else {
|
||||
$folder = FolderQuery::create()->findPk($id);
|
||||
$ret = (null !== $folder && $folder->getVisible());
|
||||
}
|
||||
}
|
||||
|
||||
return $ret;
|
||||
}
|
||||
}
|
||||
154
domokits/local/modules/Front/Controller/NewsletterController.php
Normal file
154
domokits/local/modules/Front/Controller/NewsletterController.php
Normal file
@@ -0,0 +1,154 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Thelia package.
|
||||
* http://www.thelia.net
|
||||
*
|
||||
* (c) OpenStudio <info@thelia.net>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace Front\Controller;
|
||||
|
||||
use Front\Front;
|
||||
use Symfony\Component\HttpFoundation\JsonResponse;
|
||||
use Symfony\Contracts\EventDispatcher\EventDispatcherInterface;
|
||||
use Thelia\Controller\Front\BaseFrontController;
|
||||
use Thelia\Core\Event\Newsletter\NewsletterEvent;
|
||||
use Thelia\Core\Event\TheliaEvents;
|
||||
use Thelia\Form\Definition\FrontForm;
|
||||
use Thelia\Log\Tlog;
|
||||
use Thelia\Model\Customer;
|
||||
use Thelia\Model\NewsletterQuery;
|
||||
|
||||
/**
|
||||
* Class NewsletterController.
|
||||
*
|
||||
* @author Manuel Raynaud <manu@raynaud.io>, Franck Allimant <franck@cqfdev.fr>
|
||||
*/
|
||||
class NewsletterController extends BaseFrontController
|
||||
{
|
||||
/**
|
||||
* @since 2.3.0-alpha2
|
||||
*/
|
||||
public function unsubscribeAction(EventDispatcherInterface $eventDispatcher)
|
||||
{
|
||||
$errorMessage = false;
|
||||
|
||||
$newsletterForm = $this->createForm(FrontForm::NEWSLETTER_UNSUBSCRIBE);
|
||||
|
||||
try {
|
||||
$form = $this->validateForm($newsletterForm);
|
||||
|
||||
$email = $form->get('email')->getData();
|
||||
|
||||
if (null !== $newsletter = NewsletterQuery::create()->findOneByEmail($email)) {
|
||||
$event = new NewsletterEvent(
|
||||
$email,
|
||||
$this->getRequest()->getSession()->getLang()->getLocale()
|
||||
);
|
||||
|
||||
$event->setId($newsletter->getId());
|
||||
|
||||
$eventDispatcher->dispatch($event, TheliaEvents::NEWSLETTER_UNSUBSCRIBE);
|
||||
|
||||
// If a success URL is defined in the form, redirect to it, otherwise use the defaut view
|
||||
if ($newsletterForm->hasSuccessUrl() && !$this->getRequest()->isXmlHttpRequest()) {
|
||||
return $this->generateSuccessRedirect($newsletterForm);
|
||||
}
|
||||
}
|
||||
} catch (\Exception $e) {
|
||||
$errorMessage = $e->getMessage();
|
||||
|
||||
Tlog::getInstance()->error(sprintf('Error during newsletter unsubscription : %s', $errorMessage));
|
||||
|
||||
$newsletterForm->setErrorMessage($errorMessage);
|
||||
}
|
||||
|
||||
// If Ajax Request
|
||||
if ($this->getRequest()->isXmlHttpRequest()) {
|
||||
return new JsonResponse([
|
||||
'success' => ($errorMessage) ? false : true,
|
||||
'message' => ($errorMessage) ? $errorMessage : $this->getTranslator()->trans(
|
||||
'Your subscription to our newsletter has been canceled.',
|
||||
[],
|
||||
Front::MESSAGE_DOMAIN
|
||||
),
|
||||
], ($errorMessage) ? 500 : 200);
|
||||
}
|
||||
|
||||
$this->getParserContext()
|
||||
->setGeneralError($errorMessage)
|
||||
->addForm($newsletterForm);
|
||||
|
||||
// If an error URL is defined in the form, redirect to it, otherwise use the defaut view
|
||||
if ($errorMessage && $newsletterForm->hasErrorUrl()) {
|
||||
return $this->generateErrorRedirect($newsletterForm);
|
||||
}
|
||||
}
|
||||
|
||||
public function subscribeAction(EventDispatcherInterface $eventDispatcher)
|
||||
{
|
||||
$errorMessage = false;
|
||||
|
||||
$newsletterForm = $this->createForm(FrontForm::NEWSLETTER);
|
||||
|
||||
try {
|
||||
$form = $this->validateForm($newsletterForm);
|
||||
|
||||
$event = new NewsletterEvent(
|
||||
$form->get('email')->getData(),
|
||||
$this->getRequest()->getSession()->getLang()->getLocale()
|
||||
);
|
||||
|
||||
/** @var Customer $customer */
|
||||
if (null !== $customer = $this->getSecurityContext()->getCustomerUser()) {
|
||||
$event
|
||||
->setFirstname($customer->getFirstname())
|
||||
->setLastname($customer->getLastname())
|
||||
;
|
||||
} else {
|
||||
$event
|
||||
->setFirstname($form->get('firstname')->getData())
|
||||
->setLastname($form->get('lastname')->getData())
|
||||
;
|
||||
}
|
||||
|
||||
$eventDispatcher->dispatch($event, TheliaEvents::NEWSLETTER_SUBSCRIBE);
|
||||
|
||||
// If a success URL is defined in the form, redirect to it, otherwise use the defaut view
|
||||
if ($newsletterForm->hasSuccessUrl() && !$this->getRequest()->isXmlHttpRequest()) {
|
||||
return $this->generateSuccessRedirect($newsletterForm);
|
||||
}
|
||||
} catch (\Exception $e) {
|
||||
$errorMessage = $e->getMessage();
|
||||
|
||||
Tlog::getInstance()->error(sprintf('Error during newsletter subscription : %s', $errorMessage));
|
||||
|
||||
$newsletterForm->setErrorMessage($errorMessage);
|
||||
}
|
||||
|
||||
// If Ajax Request
|
||||
if ($this->getRequest()->isXmlHttpRequest()) {
|
||||
return new JsonResponse([
|
||||
'success' => ($errorMessage) ? false : true,
|
||||
'message' => ($errorMessage) ? $errorMessage : $this->getTranslator()->trans(
|
||||
"Thanks for signing up! We'll keep you posted whenever we have any new updates.",
|
||||
[],
|
||||
Front::MESSAGE_DOMAIN
|
||||
),
|
||||
], ($errorMessage) ? 500 : 200);
|
||||
}
|
||||
|
||||
$this->getParserContext()
|
||||
->setGeneralError($errorMessage)
|
||||
->addForm($newsletterForm);
|
||||
|
||||
// If an error URL is defined in the form, redirect to it, otherwise use the defaut view
|
||||
if ($errorMessage && $newsletterForm->hasErrorUrl()) {
|
||||
return $this->generateErrorRedirect($newsletterForm);
|
||||
}
|
||||
}
|
||||
}
|
||||
591
domokits/local/modules/Front/Controller/OrderController.php
Normal file
591
domokits/local/modules/Front/Controller/OrderController.php
Normal file
@@ -0,0 +1,591 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Thelia package.
|
||||
* http://www.thelia.net
|
||||
*
|
||||
* (c) OpenStudio <info@thelia.net>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace Front\Controller;
|
||||
|
||||
use Front\Front;
|
||||
use Propel\Runtime\ActiveQuery\Criteria;
|
||||
use Propel\Runtime\Exception\PropelException;
|
||||
use Symfony\Component\HttpFoundation\Response as BaseResponse;
|
||||
use Symfony\Component\HttpKernel\Exception\AccessDeniedHttpException;
|
||||
use Symfony\Contracts\EventDispatcher\EventDispatcherInterface;
|
||||
use Thelia\Controller\Front\BaseFrontController;
|
||||
use Thelia\Core\Event\Delivery\DeliveryPostageEvent;
|
||||
use Thelia\Core\Event\Order\OrderEvent;
|
||||
use Thelia\Core\Event\Product\VirtualProductOrderDownloadResponseEvent;
|
||||
use Thelia\Core\Event\TheliaEvents;
|
||||
use Thelia\Core\HttpFoundation\Request;
|
||||
use Thelia\Exception\TheliaProcessException;
|
||||
use Thelia\Form\Definition\FrontForm;
|
||||
use Thelia\Form\Exception\FormValidationException;
|
||||
use Thelia\Log\Tlog;
|
||||
use Thelia\Model\Address;
|
||||
use Thelia\Model\AddressQuery;
|
||||
use Thelia\Model\AreaDeliveryModuleQuery;
|
||||
use Thelia\Model\ConfigQuery;
|
||||
use Thelia\Model\ModuleQuery;
|
||||
use Thelia\Model\Order;
|
||||
use Thelia\Model\OrderProductQuery;
|
||||
use Thelia\Model\OrderQuery;
|
||||
use Thelia\Module\AbstractDeliveryModule;
|
||||
use Thelia\Module\Exception\DeliveryException;
|
||||
|
||||
/**
|
||||
* Class OrderController.
|
||||
*
|
||||
* @author Etienne Roudeix <eroudeix@openstudio.fr>
|
||||
*/
|
||||
class OrderController extends BaseFrontController
|
||||
{
|
||||
/**
|
||||
* Check if the cart contains only virtual products.
|
||||
*/
|
||||
public function deliverView(EventDispatcherInterface $eventDispatcher)
|
||||
{
|
||||
$this->checkAuth();
|
||||
$this->checkCartNotEmpty($eventDispatcher);
|
||||
|
||||
// check if the cart contains only virtual products
|
||||
$cart = $this->getSession()->getSessionCart($eventDispatcher);
|
||||
|
||||
$deliveryAddress = $this->getCustomerAddress();
|
||||
|
||||
if ($cart->isVirtual()) {
|
||||
if (null !== $deliveryAddress) {
|
||||
$deliveryModule = ModuleQuery::create()->retrieveVirtualProductDelivery($this->container);
|
||||
|
||||
if (false === $deliveryModule) {
|
||||
Tlog::getInstance()->error(
|
||||
$this->getTranslator()->trans(
|
||||
'To enable the virtual product feature, the VirtualProductDelivery module should be activated',
|
||||
[],
|
||||
Front::MESSAGE_DOMAIN
|
||||
)
|
||||
);
|
||||
} elseif (\count($deliveryModule) == 1) {
|
||||
return $this->registerVirtualProductDelivery($eventDispatcher, $deliveryModule[0], $deliveryAddress);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return $this->render(
|
||||
'order-delivery',
|
||||
[
|
||||
'delivery_address_id' => (null !== $deliveryAddress) ? $deliveryAddress->getId() : null,
|
||||
]
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param AbstractDeliveryModule $moduleInstance
|
||||
* @param Address $deliveryAddress
|
||||
*
|
||||
* @return \Symfony\Component\HttpFoundation\Response
|
||||
*/
|
||||
private function registerVirtualProductDelivery(EventDispatcherInterface $eventDispatcher, $moduleInstance, $deliveryAddress)
|
||||
{
|
||||
/* get postage amount */
|
||||
$deliveryModule = $moduleInstance->getModuleModel();
|
||||
$cart = $this->getSession()->getSessionCart($eventDispatcher);
|
||||
$deliveryPostageEvent = new DeliveryPostageEvent($moduleInstance, $cart, $deliveryAddress);
|
||||
|
||||
$eventDispatcher->dispatch(
|
||||
$deliveryPostageEvent,
|
||||
TheliaEvents::MODULE_DELIVERY_GET_POSTAGE
|
||||
);
|
||||
|
||||
$postage = $deliveryPostageEvent->getPostage();
|
||||
|
||||
$orderEvent = $this->getOrderEvent();
|
||||
$orderEvent->setDeliveryAddress($deliveryAddress->getId());
|
||||
$orderEvent->setDeliveryModule($deliveryModule->getId());
|
||||
$orderEvent->setPostage($postage->getAmount());
|
||||
$orderEvent->setPostageTax($postage->getAmountTax());
|
||||
$orderEvent->setPostageTaxRuleTitle($postage->getTaxRuleTitle());
|
||||
|
||||
$eventDispatcher->dispatch($orderEvent, TheliaEvents::ORDER_SET_DELIVERY_ADDRESS);
|
||||
$eventDispatcher->dispatch($orderEvent, TheliaEvents::ORDER_SET_DELIVERY_MODULE);
|
||||
$eventDispatcher->dispatch($orderEvent, TheliaEvents::ORDER_SET_POSTAGE);
|
||||
|
||||
return $this->generateRedirectFromRoute('order.invoice');
|
||||
}
|
||||
|
||||
/**
|
||||
* set delivery address
|
||||
* set delivery module.
|
||||
*/
|
||||
public function deliver(EventDispatcherInterface $eventDispatcher)
|
||||
{
|
||||
$this->checkAuth();
|
||||
$this->checkCartNotEmpty($eventDispatcher);
|
||||
|
||||
$message = false;
|
||||
|
||||
$orderDelivery = $this->createForm(FrontForm::ORDER_DELIVER);
|
||||
|
||||
try {
|
||||
$form = $this->validateForm($orderDelivery, 'post');
|
||||
|
||||
$deliveryAddressId = $form->get('delivery-address')->getData();
|
||||
$deliveryModuleId = $form->get('delivery-module')->getData();
|
||||
$deliveryAddress = AddressQuery::create()->findPk($deliveryAddressId);
|
||||
$deliveryModule = ModuleQuery::create()->findPk($deliveryModuleId);
|
||||
|
||||
/* check that the delivery address belongs to the current customer */
|
||||
if ($deliveryAddress->getCustomerId() !== $this->getSecurityContext()->getCustomerUser()->getId()) {
|
||||
throw new \Exception(
|
||||
$this->getTranslator()->trans(
|
||||
'Delivery address does not belong to the current customer',
|
||||
[],
|
||||
Front::MESSAGE_DOMAIN
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
/* check that the delivery module fetches the delivery address area */
|
||||
if (null === AreaDeliveryModuleQuery::create()->findByCountryAndModule(
|
||||
$deliveryAddress->getCountry(),
|
||||
$deliveryModule,
|
||||
$deliveryAddress->getState()
|
||||
)) {
|
||||
throw new \Exception(
|
||||
$this->getTranslator()->trans(
|
||||
'Delivery module cannot be use with selected delivery address',
|
||||
[],
|
||||
Front::MESSAGE_DOMAIN
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
/* get postage amount */
|
||||
$moduleInstance = $deliveryModule->getDeliveryModuleInstance($this->container);
|
||||
|
||||
$cart = $this->getSession()->getSessionCart($eventDispatcher);
|
||||
$deliveryPostageEvent = new DeliveryPostageEvent($moduleInstance, $cart, $deliveryAddress);
|
||||
|
||||
$eventDispatcher->dispatch(
|
||||
$deliveryPostageEvent,
|
||||
TheliaEvents::MODULE_DELIVERY_GET_POSTAGE
|
||||
);
|
||||
|
||||
if (!$deliveryPostageEvent->isValidModule() || null === $deliveryPostageEvent->getPostage()) {
|
||||
throw new DeliveryException(
|
||||
$this->getTranslator()->trans('The delivery module is not valid.', [], Front::MESSAGE_DOMAIN)
|
||||
);
|
||||
}
|
||||
|
||||
$postage = $deliveryPostageEvent->getPostage();
|
||||
|
||||
$orderEvent = $this->getOrderEvent();
|
||||
$orderEvent->setDeliveryAddress($deliveryAddressId);
|
||||
$orderEvent->setDeliveryModule($deliveryModuleId);
|
||||
$orderEvent->setPostage($postage->getAmount());
|
||||
$orderEvent->setPostageTax($postage->getAmountTax());
|
||||
$orderEvent->setPostageTaxRuleTitle($postage->getTaxRuleTitle());
|
||||
|
||||
$eventDispatcher->dispatch($orderEvent, TheliaEvents::ORDER_SET_DELIVERY_ADDRESS);
|
||||
$eventDispatcher->dispatch($orderEvent, TheliaEvents::ORDER_SET_DELIVERY_MODULE);
|
||||
$eventDispatcher->dispatch($orderEvent, TheliaEvents::ORDER_SET_POSTAGE);
|
||||
|
||||
return $this->generateRedirectFromRoute('order.invoice');
|
||||
} catch (FormValidationException $e) {
|
||||
$message = $this->getTranslator()->trans(
|
||||
'Please check your input: %s',
|
||||
['%s' => $e->getMessage()],
|
||||
Front::MESSAGE_DOMAIN
|
||||
);
|
||||
} catch (PropelException $e) {
|
||||
$this->getParserContext()->setGeneralError($e->getMessage());
|
||||
} catch (\Exception $e) {
|
||||
$message = $this->getTranslator()->trans(
|
||||
'Sorry, an error occured: %s',
|
||||
['%s' => $e->getMessage()],
|
||||
Front::MESSAGE_DOMAIN
|
||||
);
|
||||
}
|
||||
|
||||
if ($message !== false) {
|
||||
Tlog::getInstance()->error(
|
||||
sprintf('Error during order delivery process : %s. Exception was %s', $message, $e->getMessage())
|
||||
);
|
||||
|
||||
$orderDelivery->setErrorMessage($message);
|
||||
|
||||
$this->getParserContext()
|
||||
->addForm($orderDelivery)
|
||||
->setGeneralError($message)
|
||||
;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* set invoice address
|
||||
* set payment module.
|
||||
*/
|
||||
public function invoice(EventDispatcherInterface $eventDispatcher)
|
||||
{
|
||||
$this->checkAuth();
|
||||
$this->checkCartNotEmpty($eventDispatcher);
|
||||
$this->checkValidDelivery();
|
||||
|
||||
$message = false;
|
||||
|
||||
$orderPayment = $this->createForm(FrontForm::ORDER_PAYMENT);
|
||||
|
||||
try {
|
||||
$form = $this->validateForm($orderPayment, 'post');
|
||||
|
||||
$invoiceAddressId = $form->get('invoice-address')->getData();
|
||||
$paymentModuleId = $form->get('payment-module')->getData();
|
||||
|
||||
/* check that the invoice address belongs to the current customer */
|
||||
$invoiceAddress = AddressQuery::create()->findPk($invoiceAddressId);
|
||||
if ($invoiceAddress->getCustomerId() !== $this->getSecurityContext()->getCustomerUser()->getId()) {
|
||||
throw new \Exception(
|
||||
$this->getTranslator()->trans(
|
||||
'Invoice address does not belong to the current customer',
|
||||
[],
|
||||
Front::MESSAGE_DOMAIN
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
$orderEvent = $this->getOrderEvent();
|
||||
$orderEvent->setInvoiceAddress($invoiceAddressId);
|
||||
$orderEvent->setPaymentModule($paymentModuleId);
|
||||
|
||||
$eventDispatcher->dispatch($orderEvent, TheliaEvents::ORDER_SET_INVOICE_ADDRESS);
|
||||
$eventDispatcher->dispatch($orderEvent, TheliaEvents::ORDER_SET_PAYMENT_MODULE);
|
||||
|
||||
return $this->generateRedirectFromRoute('order.payment.process');
|
||||
} catch (FormValidationException $e) {
|
||||
$message = $this->getTranslator()->trans(
|
||||
'Please check your input: %s',
|
||||
['%s' => $e->getMessage()],
|
||||
Front::MESSAGE_DOMAIN
|
||||
);
|
||||
} catch (PropelException $e) {
|
||||
$this->getParserContext()->setGeneralError($e->getMessage());
|
||||
} catch (\Exception $e) {
|
||||
$message = $this->getTranslator()->trans(
|
||||
'Sorry, an error occured: %s',
|
||||
['%s' => $e->getMessage()],
|
||||
Front::MESSAGE_DOMAIN
|
||||
);
|
||||
}
|
||||
|
||||
if ($message !== false) {
|
||||
Tlog::getInstance()->error(
|
||||
sprintf('Error during order payment process : %s. Exception was %s', $message, $e->getMessage())
|
||||
);
|
||||
|
||||
$orderPayment->setErrorMessage($message);
|
||||
|
||||
$this->getParserContext()
|
||||
->addForm($orderPayment)
|
||||
->setGeneralError($message)
|
||||
;
|
||||
}
|
||||
|
||||
return $this->generateErrorRedirect($orderPayment);
|
||||
}
|
||||
|
||||
public function pay(EventDispatcherInterface $eventDispatcher)
|
||||
{
|
||||
/* check customer */
|
||||
$this->checkAuth();
|
||||
|
||||
/* check cart count */
|
||||
$this->checkCartNotEmpty($eventDispatcher);
|
||||
|
||||
/* check stock not empty */
|
||||
if (true === ConfigQuery::checkAvailableStock()) {
|
||||
if (null !== $response = $this->checkStockNotEmpty($eventDispatcher)) {
|
||||
return $response;
|
||||
}
|
||||
}
|
||||
|
||||
/* check delivery address and module */
|
||||
$this->checkValidDelivery();
|
||||
|
||||
/* check invoice address and payment module */
|
||||
$this->checkValidInvoice();
|
||||
|
||||
$orderEvent = $this->getOrderEvent();
|
||||
|
||||
$eventDispatcher->dispatch($orderEvent, TheliaEvents::ORDER_PAY);
|
||||
|
||||
$placedOrder = $orderEvent->getPlacedOrder();
|
||||
|
||||
if (null !== $placedOrder && null !== $placedOrder->getId()) {
|
||||
/* order has been placed */
|
||||
if ($orderEvent->hasResponse()) {
|
||||
return $orderEvent->getResponse();
|
||||
}
|
||||
|
||||
return $this->generateRedirectFromRoute(
|
||||
'order.placed',
|
||||
[],
|
||||
['order_id' => $orderEvent->getPlacedOrder()->getId()]
|
||||
);
|
||||
}
|
||||
|
||||
/* order has not been placed */
|
||||
return $this->generateRedirectFromRoute('cart.view');
|
||||
}
|
||||
|
||||
public function orderPlaced(EventDispatcherInterface $eventDispatcher, $order_id): void
|
||||
{
|
||||
/* check if the placed order matched the customer */
|
||||
$placedOrder = OrderQuery::create()->findPk(
|
||||
$this->getRequest()->attributes->get('order_id')
|
||||
);
|
||||
|
||||
if (null === $placedOrder) {
|
||||
throw new TheliaProcessException(
|
||||
$this->getTranslator()->trans(
|
||||
'No placed order',
|
||||
[],
|
||||
Front::MESSAGE_DOMAIN
|
||||
),
|
||||
TheliaProcessException::NO_PLACED_ORDER,
|
||||
$placedOrder
|
||||
);
|
||||
}
|
||||
|
||||
$customer = $this->getSecurityContext()->getCustomerUser();
|
||||
|
||||
if (null === $customer || $placedOrder->getCustomerId() !== $customer->getId()) {
|
||||
throw new TheliaProcessException(
|
||||
$this->getTranslator()->trans(
|
||||
'Received placed order id does not belong to the current customer',
|
||||
[],
|
||||
Front::MESSAGE_DOMAIN
|
||||
),
|
||||
TheliaProcessException::PLACED_ORDER_ID_BAD_CURRENT_CUSTOMER,
|
||||
$placedOrder
|
||||
);
|
||||
}
|
||||
|
||||
$eventDispatcher->dispatch($this->getOrderEvent(), TheliaEvents::ORDER_CART_CLEAR);
|
||||
|
||||
$this->getParserContext()->set('placed_order_id', $placedOrder->getId());
|
||||
}
|
||||
|
||||
public function orderFailed($order_id, $message): void
|
||||
{
|
||||
if (empty($order_id)) {
|
||||
// Fallback to request parameter if the method parameter is empty.
|
||||
$order_id = $this->getRequest()->get('order_id');
|
||||
}
|
||||
|
||||
$failedOrder = OrderQuery::create()->findPk($order_id);
|
||||
|
||||
if (null !== $failedOrder) {
|
||||
$customer = $this->getSecurityContext()->getCustomerUser();
|
||||
|
||||
if (null === $customer || $failedOrder->getCustomerId() !== $customer->getId()) {
|
||||
throw new TheliaProcessException(
|
||||
$this->getTranslator()->trans(
|
||||
'Received failed order id does not belong to the current customer',
|
||||
[],
|
||||
Front::MESSAGE_DOMAIN
|
||||
),
|
||||
TheliaProcessException::PLACED_ORDER_ID_BAD_CURRENT_CUSTOMER,
|
||||
$failedOrder
|
||||
);
|
||||
}
|
||||
} else {
|
||||
Tlog::getInstance()->warning("Failed order ID '$order_id' not found.");
|
||||
}
|
||||
|
||||
$this->getParserContext()
|
||||
->set('failed_order_id', $order_id)
|
||||
->set('failed_order_message', $message)
|
||||
;
|
||||
}
|
||||
|
||||
protected function getOrderEvent()
|
||||
{
|
||||
$order = $this->getOrder($this->getRequest());
|
||||
|
||||
return new OrderEvent($order);
|
||||
}
|
||||
|
||||
public function getOrder(Request $request)
|
||||
{
|
||||
$session = $request->getSession();
|
||||
|
||||
if (null !== $order = $session->getOrder()) {
|
||||
return $order;
|
||||
}
|
||||
|
||||
$order = new Order();
|
||||
|
||||
$session->setOrder($order);
|
||||
|
||||
return $order;
|
||||
}
|
||||
|
||||
public function viewAction($order_id)
|
||||
{
|
||||
$this->checkOrderCustomer($order_id);
|
||||
|
||||
return $this->render('account-order', ['order_id' => $order_id]);
|
||||
}
|
||||
|
||||
public function generateInvoicePdf(EventDispatcherInterface $eventDispatcher, $order_id)
|
||||
{
|
||||
$this->checkOrderCustomer($order_id);
|
||||
|
||||
return $this->generateOrderPdf($eventDispatcher, $order_id, ConfigQuery::read('pdf_invoice_file', 'invoice'));
|
||||
}
|
||||
|
||||
public function generateDeliveryPdf(EventDispatcherInterface $eventDispatcher, $order_id)
|
||||
{
|
||||
$this->checkOrderCustomer($order_id);
|
||||
|
||||
return $this->generateOrderPdf($eventDispatcher, $order_id, ConfigQuery::read('pdf_delivery_file', 'delivery'));
|
||||
}
|
||||
|
||||
public function downloadVirtualProduct(EventDispatcherInterface $eventDispatcher, $order_product_id)
|
||||
{
|
||||
if (null !== $orderProduct = OrderProductQuery::create()->findPk($order_product_id)) {
|
||||
$order = $orderProduct->getOrder();
|
||||
|
||||
if ($order->isPaid(false)) {
|
||||
// check customer
|
||||
$this->checkOrderCustomer($order->getId());
|
||||
|
||||
$virtualProductEvent = new VirtualProductOrderDownloadResponseEvent($orderProduct);
|
||||
$eventDispatcher->dispatch(
|
||||
$virtualProductEvent,
|
||||
TheliaEvents::VIRTUAL_PRODUCT_ORDER_DOWNLOAD_RESPONSE
|
||||
);
|
||||
|
||||
$response = $virtualProductEvent->getResponse();
|
||||
|
||||
if (!$response instanceof BaseResponse) {
|
||||
throw new \RuntimeException('A Response must be added in the event TheliaEvents::VIRTUAL_PRODUCT_ORDER_DOWNLOAD_RESPONSE');
|
||||
}
|
||||
|
||||
return $response;
|
||||
}
|
||||
}
|
||||
|
||||
throw new AccessDeniedHttpException();
|
||||
}
|
||||
|
||||
private function checkOrderCustomer($order_id): void
|
||||
{
|
||||
$this->checkAuth();
|
||||
|
||||
$order = OrderQuery::create()->findPk($order_id);
|
||||
$valid = true;
|
||||
if ($order) {
|
||||
$customerOrder = $order->getCustomer();
|
||||
$customer = $this->getSecurityContext()->getCustomerUser();
|
||||
|
||||
if ($customerOrder->getId() != $customer->getId()) {
|
||||
$valid = false;
|
||||
}
|
||||
} else {
|
||||
$valid = false;
|
||||
}
|
||||
|
||||
if (false === $valid) {
|
||||
throw new AccessDeniedHttpException();
|
||||
}
|
||||
}
|
||||
|
||||
public function getDeliveryModuleListAjaxAction()
|
||||
{
|
||||
$this->checkXmlHttpRequest();
|
||||
|
||||
// Change the delivery address if customer has changed it
|
||||
$address = null;
|
||||
$session = $this->getSession();
|
||||
$addressId = $this->getRequest()->get('address_id', null);
|
||||
if (null !== $addressId && $addressId !== $session->getOrder()->getChoosenDeliveryAddress()) {
|
||||
$address = AddressQuery::create()->findPk($addressId);
|
||||
if (null !== $address && $address->getCustomerId() === $session->getCustomerUser()->getId()) {
|
||||
$session->getOrder()->setChoosenDeliveryAddress($addressId);
|
||||
}
|
||||
}
|
||||
|
||||
$address = AddressQuery::create()->findPk($session->getOrder()->getChoosenDeliveryAddress());
|
||||
|
||||
$countryId = $address->getCountryId();
|
||||
$stateId = $address->getStateId();
|
||||
|
||||
$args = [
|
||||
'country' => $countryId,
|
||||
'state' => $stateId,
|
||||
'address' => $session->getOrder()->getChoosenDeliveryAddress(),
|
||||
];
|
||||
|
||||
return $this->render('ajax/order-delivery-module-list', $args);
|
||||
}
|
||||
|
||||
/**
|
||||
* Redirect to cart view if at least one non product is out of stock.
|
||||
*
|
||||
* @return BaseResponse|null
|
||||
*/
|
||||
private function checkStockNotEmpty(EventDispatcherInterface $eventDispatcher)
|
||||
{
|
||||
$cart = $this->getSession()->getSessionCart($eventDispatcher);
|
||||
|
||||
$cartItems = $cart->getCartItems();
|
||||
|
||||
foreach ($cartItems as $cartItem) {
|
||||
$pse = $cartItem->getProductSaleElements();
|
||||
|
||||
$product = $cartItem->getProduct();
|
||||
|
||||
if ($pse->getQuantity() <= 0 && $product->getVirtual() !== 1) {
|
||||
return $this->generateRedirectFromRoute('cart.view');
|
||||
}
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Retrieve the chosen delivery address for a cart or the default customer address if not exists.
|
||||
*
|
||||
* @return Address|null
|
||||
*/
|
||||
protected function getCustomerAddress()
|
||||
{
|
||||
$deliveryAddress = null;
|
||||
$addressId = $this->getSession()->getOrder()->getChoosenDeliveryAddress();
|
||||
if (null === $addressId) {
|
||||
$customer = $this->getSecurityContext()->getCustomerUser();
|
||||
|
||||
$deliveryAddress = AddressQuery::create()
|
||||
->filterByCustomerId($customer->getId())
|
||||
->orderByIsDefault(Criteria::DESC)
|
||||
->findOne();
|
||||
|
||||
if (null !== $deliveryAddress) {
|
||||
$this->getSession()->getOrder()->setChoosenDeliveryAddress(
|
||||
$deliveryAddress->getId()
|
||||
);
|
||||
}
|
||||
} else {
|
||||
$deliveryAddress = AddressQuery::create()->findPk($addressId);
|
||||
}
|
||||
|
||||
return $deliveryAddress;
|
||||
}
|
||||
}
|
||||
144
domokits/local/modules/Front/Controller/SitemapController.php
Normal file
144
domokits/local/modules/Front/Controller/SitemapController.php
Normal file
@@ -0,0 +1,144 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Thelia package.
|
||||
* http://www.thelia.net
|
||||
*
|
||||
* (c) OpenStudio <info@thelia.net>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace Front\Controller;
|
||||
|
||||
use Symfony\Component\Cache\Adapter\AdapterInterface;
|
||||
use Thelia\Controller\Front\BaseFrontController;
|
||||
use Thelia\Core\HttpFoundation\Request;
|
||||
use Thelia\Core\HttpFoundation\Response;
|
||||
use Thelia\Model\ConfigQuery;
|
||||
use Thelia\Model\LangQuery;
|
||||
|
||||
/**
|
||||
* Controller uses to generate sitemap.xml.
|
||||
*
|
||||
* A default cache of 2 hours is used to avoid attack. You can flush cache if you have `ADMIN` role and pass flush=1 in
|
||||
* query string parameter.
|
||||
*
|
||||
* You can generate sitemap according to specific language and/or specific context (catalog/content). You have to
|
||||
* use ```lang``` and ```context``` query string parameters to do so. If a language is not used in website or if the
|
||||
* context is not supported the page not found is displayed.
|
||||
*
|
||||
* {url}/sitemap?lang=fr&context=catalog will generate a sitemap for catalog (categories and products)
|
||||
* for french language.
|
||||
*
|
||||
* @author Julien Chanséaume <jchanseaume@openstudio.fr>
|
||||
*/
|
||||
class SitemapController extends BaseFrontController
|
||||
{
|
||||
/**
|
||||
* Folder name for sitemap cache.
|
||||
*/
|
||||
public const SITEMAP_CACHE_DIR = 'sitemap';
|
||||
|
||||
/**
|
||||
* Key prefix for sitemap cache.
|
||||
*/
|
||||
public const SITEMAP_CACHE_KEY = 'sitemap';
|
||||
|
||||
/**
|
||||
* @return Response
|
||||
*/
|
||||
public function generateAction()
|
||||
{
|
||||
/** @var Request $request */
|
||||
$request = $this->getRequest();
|
||||
|
||||
// the locale : fr, en,
|
||||
$lang = $request->query->get('lang', '');
|
||||
if ('' !== $lang) {
|
||||
if (!$this->checkLang($lang)) {
|
||||
$this->pageNotFound();
|
||||
}
|
||||
}
|
||||
|
||||
// specific content : product, category, cms
|
||||
$context = $request->query->get('context', '');
|
||||
if (!\in_array($context, ['', 'catalog', 'content'])) {
|
||||
$this->pageNotFound();
|
||||
}
|
||||
|
||||
$flush = $request->query->get('flush', '');
|
||||
|
||||
/** @var AdapterInterface $cacheAdapter */
|
||||
$cacheAdapter = $this->container->get('thelia.cache');
|
||||
|
||||
$cacheKey = self::SITEMAP_CACHE_KEY.$lang.$context;
|
||||
|
||||
$cacheItem = $cacheAdapter->getItem($cacheKey);
|
||||
|
||||
if (!$cacheItem->isHit() || $flush) {
|
||||
$cacheExpire = (int) (ConfigQuery::read('sitemap_ttl', '7200')) ?: 7200;
|
||||
|
||||
// Render the view. Compression causes problems and is deactivated.
|
||||
$cacheContent = $this->getParser(null)->render(
|
||||
'sitemap.html',
|
||||
[
|
||||
'_lang_' => $lang,
|
||||
'_context_' => $context,
|
||||
],
|
||||
false
|
||||
);
|
||||
|
||||
$cacheItem->expiresAfter($cacheExpire);
|
||||
$cacheItem->set($cacheContent);
|
||||
$cacheAdapter->save($cacheItem);
|
||||
}
|
||||
|
||||
$response = new Response();
|
||||
$response->setContent($cacheItem->get());
|
||||
$response->headers->set('Content-Type', 'application/xml');
|
||||
|
||||
return $response;
|
||||
}
|
||||
|
||||
/**
|
||||
* get the cache directory for sitemap.
|
||||
*
|
||||
* @return mixed|string
|
||||
*/
|
||||
protected function getCacheDir()
|
||||
{
|
||||
$cacheDir = $this->container->getParameter('kernel.cache_dir');
|
||||
$cacheDir = rtrim($cacheDir, '/');
|
||||
$cacheDir .= '/'.self::SITEMAP_CACHE_DIR.'/';
|
||||
|
||||
return $cacheDir;
|
||||
}
|
||||
|
||||
/**
|
||||
* Check if current user has ADMIN role.
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
protected function checkAdmin()
|
||||
{
|
||||
return $this->getSecurityContext()->hasAdminUser();
|
||||
}
|
||||
|
||||
/**
|
||||
* Check if a lang is used.
|
||||
*
|
||||
* @param $lang The lang code. e.g.: fr
|
||||
*
|
||||
* @return bool true if the language is used, otherwise false
|
||||
*/
|
||||
private function checkLang($lang)
|
||||
{
|
||||
// load locals
|
||||
$lang = LangQuery::create()
|
||||
->findOneByCode($lang);
|
||||
|
||||
return null !== $lang;
|
||||
}
|
||||
}
|
||||
32
domokits/local/modules/Front/Front.php
Normal file
32
domokits/local/modules/Front/Front.php
Normal file
@@ -0,0 +1,32 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Thelia package.
|
||||
* http://www.thelia.net
|
||||
*
|
||||
* (c) OpenStudio <info@thelia.net>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace Front;
|
||||
|
||||
use Symfony\Component\DependencyInjection\Loader\Configurator\ServicesConfigurator;
|
||||
use Thelia\Module\BaseModule;
|
||||
|
||||
class Front extends BaseModule
|
||||
{
|
||||
public const MESSAGE_DOMAIN = 'front';
|
||||
|
||||
/**
|
||||
* Defines how services are loaded in your modules.
|
||||
*/
|
||||
public static function configureServices(ServicesConfigurator $servicesConfigurator): void
|
||||
{
|
||||
$servicesConfigurator->load(self::getModuleCode().'\\', __DIR__)
|
||||
->exclude([THELIA_MODULE_DIR.ucfirst(self::getModuleCode()).'/I18n/*'])
|
||||
->autowire(true)
|
||||
->autoconfigure(true);
|
||||
}
|
||||
}
|
||||
32
domokits/local/modules/Front/I18n/de_DE.php
Normal file
32
domokits/local/modules/Front/I18n/de_DE.php
Normal file
@@ -0,0 +1,32 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Thelia package.
|
||||
* http://www.thelia.net
|
||||
*
|
||||
* (c) OpenStudio <info@thelia.net>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
return [
|
||||
'Coupon code can\'t be empty' => 'Gutschein-Code darf nicht leer sein',
|
||||
'Delivery address does not belong to the current customer' => 'Lieferadresse gehört nicht zum aktuellen Kunden',
|
||||
'Delivery module cannot be use with selected delivery address' => 'Lieferung-Modul kann nicht mit ausgewählten Lieferadresse verwendet werden',
|
||||
'Error during address deletion process' => 'Fehler beim Löschen der Adresse',
|
||||
'Failed to add this article to your cart, please try again' => 'Der Artikel konnte nicht zum Warenkorb hinzugefügt werden, bitte versuchen Sie es erneut',
|
||||
'Invoice address does not belong to the current customer' => 'Rechnungsadresse gehört nicht zum aktuellen Kunden',
|
||||
'No placed order' => 'Keine Bestellungen',
|
||||
'Please check your coupon code: %message' => 'Bitte überprüfen Sie Ihren Gutschein-Code: %message',
|
||||
'Please check your input: %s' => 'Bitte überprüfen Sie Ihre Eingabe: %s',
|
||||
'Received failed order id does not belong to the current customer' => 'Empfangene Id einer fehlgeschlagenen Bestellung gehört nicht zum aktuellen Kunden',
|
||||
'Received placed order id does not belong to the current customer' => 'Empfangene Bestellungs-Id gehört nicht zum aktuellen Kunden',
|
||||
'Sorry, an error occured: %s' => 'Leider ist ein Fehler aufgetreten: %s',
|
||||
'Sorry, an error occurred: %message' => 'Leider ist ein Fehler aufgetreten: %message',
|
||||
'Sorry, an error occurred: %s' => 'Es tut uns Leid, aber ein Fehler ist aufgetreten: %s',
|
||||
'Thanks for signing up! We\'ll keep you posted whenever we have any new updates.' => 'Vielen Dank für Ihre Anmeldung! Wir halten Ihnen auf dem Laufenden über neuen Updates.',
|
||||
'To enable the virtual product feature, the VirtualProductDelivery module should be activated' => 'Um das virtuelle Produkt-Feature zu aktivieren, sollte das VirtualProductDelivery-Modul aktiviert werden',
|
||||
'Wrong email or password. Please try again' => 'E-Mail oder Passwort falsch. Bitte erneut versuchen',
|
||||
'You\'re currently logged in. Please log out before requesting a new password.' => 'Sie sind derzeit angemeldet. Bitte melden Sie sich ab, bevor Sie ein neues Passwort anfordern.',
|
||||
];
|
||||
34
domokits/local/modules/Front/I18n/en_US.php
Normal file
34
domokits/local/modules/Front/I18n/en_US.php
Normal file
@@ -0,0 +1,34 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Thelia package.
|
||||
* http://www.thelia.net
|
||||
*
|
||||
* (c) OpenStudio <info@thelia.net>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
return [
|
||||
'Coupon code can\'t be empty' => 'Coupon code can\'t be empty',
|
||||
'Delivery address does not belong to the current customer' => 'Delivery address does not belong to the current customer',
|
||||
'Delivery module cannot be use with selected delivery address' => 'Delivery module cannot be use with selected delivery address',
|
||||
'Error during address deletion process' => 'Error during address deletion process',
|
||||
'Failed to add this article to your cart, please try again' => 'Failed to add this article to your cart, please try again',
|
||||
'Invoice address does not belong to the current customer' => 'Invoice address does not belong to the current customer',
|
||||
'No placed order' => 'No placed order',
|
||||
'Please check your coupon code: %message' => 'Please check your coupon code: %message',
|
||||
'Please check your input: %s' => 'Please check your input: %s',
|
||||
'Received failed order id does not belong to the current customer' => 'Received failed order id does not belong to the current customer',
|
||||
'Received placed order id does not belong to the current customer' => 'Received placed order id does not belong to the current customer',
|
||||
'Sorry, an error occured: %s' => 'Sorry, an error occured: %s',
|
||||
'Sorry, an error occurred: %message' => 'Sorry, an error occurred: %message',
|
||||
'Sorry, an error occurred: %s' => 'Sorry, an error occurred: %s',
|
||||
'Thanks for signing up! We\'ll keep you posted whenever we have any new updates.' => 'Thanks for signing up! We\'ll keep you posted whenever we have any new updates.',
|
||||
'To enable the virtual product feature, the VirtualProductDelivery module should be activated' => 'To enable the virtual product feature, the VirtualProductDelivery module should be activated',
|
||||
'Wrong email or password. Please try again' => 'Wrong email or password. Please try again',
|
||||
'You should <a href="%sign">sign in</a> or <a href="%register">register</a> to use this coupon' => 'You should <a href="%sign">sign in</a> or <a href="%register">register</a> to use this coupon',
|
||||
'You\'re currently logged in. Please log out before requesting a new password.' => 'You\'re currently logged in. Please log out before requesting a new password.',
|
||||
'Your account is not yet confirmed check out your mailbox' => 'Your account is not yet confirmed check out your mailbox',
|
||||
];
|
||||
33
domokits/local/modules/Front/I18n/fr_FR.php
Normal file
33
domokits/local/modules/Front/I18n/fr_FR.php
Normal file
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Thelia package.
|
||||
* http://www.thelia.net
|
||||
*
|
||||
* (c) OpenStudio <info@thelia.net>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
return [
|
||||
'Coupon code can\'t be empty' => 'Le code promo ne peut être vide',
|
||||
'Delivery address does not belong to the current customer' => 'L\'adresse de livraison n\'appartient pas au client en cours',
|
||||
'Delivery module cannot be use with selected delivery address' => 'Le module de livraison ne peut pas être utilisé avec cette adresse de livraison',
|
||||
'Error during address deletion process' => 'Désolé. Une erreur s\'est produite lors de la suppression de l\'adresse',
|
||||
'Failed to add this article to your cart, please try again' => 'Impossible d\'ajouter cet article à votre panier. Merci de ré-essayer.',
|
||||
'Invoice address does not belong to the current customer' => 'L\'adresse de facturation n\'appartient pas au client en cours',
|
||||
'No placed order' => 'Aucune commande passée',
|
||||
'Please check your coupon code: %message' => 'Merci de vérifier votre code promo : %message',
|
||||
'Please check your input: %s' => 'Merci de vérifier les informations indiquées : %s',
|
||||
'Received failed order id does not belong to the current customer' => 'L\'id de commande refusée n\'appartient pas au client en cours',
|
||||
'Received placed order id does not belong to the current customer' => 'L\'id de commande passée n\'appartient pas au client en cours',
|
||||
'Sorry, an error occured: %s' => 'Désolé. Une erreur s\'est produite : %s',
|
||||
'Sorry, an error occurred: %message' => 'Désolé. Une erreur s\'est produite : %message',
|
||||
'Sorry, an error occurred: %s' => 'Désolé, une erreur est survenue : %s',
|
||||
'Thanks for signing up! We\'ll keep you posted whenever we have any new updates.' => 'Merci de votre inscription ! Nous vous tiendrons informé dès qu\'il y aura des nouveautés.',
|
||||
'To enable the virtual product feature, the VirtualProductDelivery module should be activated' => 'Pour activer les produits virtuels, le module VirtualProductDelivery doit être activé',
|
||||
'Wrong email or password. Please try again' => 'Adresse email ou mot de passe incorrect. Merci de ré-essayer.',
|
||||
'You should <a href="%sign">sign in</a> or <a href="%register">register</a> to use this coupon' => 'Vous devez <a href="%sign"> vous connecter</a> ou <a href="%register"> vous inscrire</a> pour utiliser ce coupon',
|
||||
'You\'re currently logged in. Please log out before requesting a new password.' => 'Vous être actuellement connecté au site. Vous devez vous déconnecter pour demander un nouveau mot de passe.',
|
||||
];
|
||||
17
domokits/local/modules/Front/I18n/it_IT.php
Normal file
17
domokits/local/modules/Front/I18n/it_IT.php
Normal file
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Thelia package.
|
||||
* http://www.thelia.net
|
||||
*
|
||||
* (c) OpenStudio <info@thelia.net>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
return [
|
||||
'Coupon code can\'t be empty' => 'Il codice di sconto non può essere vuoto',
|
||||
'Thanks for signing up! We\'ll keep you posted whenever we have any new updates.' => 'Grazie per l\'inscrizione! Ti terremo aggiornato ogni volta che abbiamo eventuali nuovi aggiornamenti.',
|
||||
'You should <a href="%sign">sign in</a> or <a href="%register">register</a> to use this coupon' => 'Dovresti <a href="%sign"> accedere</a> o <a href="%register"> registrarti</a> per utilizzare questo coupon',
|
||||
];
|
||||
35
domokits/local/modules/Front/I18n/ru_RU.php
Normal file
35
domokits/local/modules/Front/I18n/ru_RU.php
Normal file
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Thelia package.
|
||||
* http://www.thelia.net
|
||||
*
|
||||
* (c) OpenStudio <info@thelia.net>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
return [
|
||||
'Coupon code can\'t be empty' => 'Код купона не может быть пустым',
|
||||
'Delivery address does not belong to the current customer' => 'Адрес доставки не пренадлежит текущему клиенту',
|
||||
'Delivery module cannot be use with selected delivery address' => 'Модуль доставки не может быть использован с текущим адресом доставки',
|
||||
'Error during address deletion process' => 'Ошибка удаления адреса',
|
||||
'Failed to add this article to your cart, please try again' => 'Ошибка при добавлении статьи в вашу корзину, попробуйте еще раз',
|
||||
'Invoice address does not belong to the current customer' => 'Адрес выставления счета не пренадлежит текущему клиенту',
|
||||
'No placed order' => 'Нет размещенного заказа',
|
||||
'Please check your coupon code: %message' => 'Пожалуйста, проверьте код купона: %message',
|
||||
'Please check your input: %s' => 'Пожалуйста, проверьте ваш ввод: %s',
|
||||
'Received failed order id does not belong to the current customer' => 'Полученный ошибочный заказ не пренадлежит текущему клиенту',
|
||||
'Received placed order id does not belong to the current customer' => 'Полученный размещенный заказ не пренадлежит текущему клиенту',
|
||||
'Sorry, an error occured: %s' => 'К сожалению произшла ошибка: %s',
|
||||
'Sorry, an error occurred: %message' => 'К сожалению произошла ошибка: %message ',
|
||||
'Sorry, an error occurred: %s' => 'К сожалению произошла ошибка: %s ',
|
||||
'Thanks for signing up! We\'ll keep you posted whenever we have any new updates.' => 'Спасибо за подписку! Мы будем держать вас в курсе обновлений.',
|
||||
'The delivery module is not valid.' => 'Некоректный модуль доставки',
|
||||
'To enable the virtual product feature, the VirtualProductDelivery module should be activated' => 'Для включения функции виртуальных продуктов, модуль VirtualProductDelivery должен быть включен',
|
||||
'Wrong email or password. Please try again' => 'Некоректный email или пароль. Пожалуйста, попробуйте еще раз',
|
||||
'You should <a href="%sign">sign in</a> or <a href="%register">register</a> to use this coupon' => 'Вы должны <a href="%sign">войти</a> или <a href="%register">зарегистрироваться</a> что использовать этот купон',
|
||||
'You\'re currently logged in. Please log out before requesting a new password.' => 'Вы сейчас авторизированы. Пожалуйста выйдите перед запросом нового пароля.',
|
||||
'Your subscription to our newsletter has been canceled.' => 'Ваша подписка на рассылку была отменена',
|
||||
];
|
||||
32
domokits/local/modules/Front/I18n/tr_TR.php
Normal file
32
domokits/local/modules/Front/I18n/tr_TR.php
Normal file
@@ -0,0 +1,32 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Thelia package.
|
||||
* http://www.thelia.net
|
||||
*
|
||||
* (c) OpenStudio <info@thelia.net>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
return [
|
||||
'Coupon code can\'t be empty' => 'Kupon şifre boş olamaz',
|
||||
'Delivery address does not belong to the current customer' => 'Teslimat adresi geçerli müşteriye ait değil',
|
||||
'Delivery module cannot be use with selected delivery address' => 'Teslim modülü seçili teslimat adresi kullanılamaz',
|
||||
'Error during address deletion process' => 'Adres silme işlemi sırasında bir hata oluştu',
|
||||
'Failed to add this article to your cart, please try again' => 'Sepetinize Bu ürün eklenemedi, lütfen tekrar deneyin',
|
||||
'Invoice address does not belong to the current customer' => 'Fatura adresi geçerli müşteriye ait değil',
|
||||
'No placed order' => 'Yerleştirilen hiçbir sipariş',
|
||||
'Please check your coupon code: %message' => 'Kupon kodunuzu gözden geçirin: %message',
|
||||
'Please check your input: %s' => 'Lütfen girişinizi denetleyin: %s',
|
||||
'Received failed order id does not belong to the current customer' => 'Alınan başarısız sipariş kimliği geçerli müşteriye ait değil',
|
||||
'Received placed order id does not belong to the current customer' => 'Alınmış yerleştirilmiş sipariş kimliği geçerli müşteriye ait değil',
|
||||
'Sorry, an error occured: %s' => 'Üzgünüz, bir hata oluştu: %s',
|
||||
'Sorry, an error occurred: %message' => 'Üzgünüz, bir hata oluştu: %message',
|
||||
'Sorry, an error occurred: %s' => 'Üzgünüz, bir hata oluştu: %s',
|
||||
'Thanks for signing up! We\'ll keep you posted whenever we have any new updates.' => 'Teşekkürler. Yeni güncelleştirmeler olduğunda sizi haberdar edeceğiz.',
|
||||
'To enable the virtual product feature, the VirtualProductDelivery module should be activated' => 'Sanal ürün özelliği etkinleştirmek için VirtualProductDelivery modülü etkinleştirilmesi',
|
||||
'Wrong email or password. Please try again' => 'Email adresi veya şifre hatalı. Lütfen tekrar deneyiniz',
|
||||
'You\'re currently logged in. Please log out before requesting a new password.' => 'Şu anda logged içinde. Lütfen yeni bir parola istemeden önce çıkış.',
|
||||
];
|
||||
674
domokits/local/modules/Front/LICENSE.txt
Normal file
674
domokits/local/modules/Front/LICENSE.txt
Normal file
@@ -0,0 +1,674 @@
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
Version 3, 29 June 2007
|
||||
|
||||
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
Preamble
|
||||
|
||||
The GNU General Public License is a free, copyleft license for
|
||||
software and other kinds of works.
|
||||
|
||||
The licenses for most software and other practical works are designed
|
||||
to take away your freedom to share and change the works. By contrast,
|
||||
the GNU General Public License is intended to guarantee your freedom to
|
||||
share and change all versions of a program--to make sure it remains free
|
||||
software for all its users. We, the Free Software Foundation, use the
|
||||
GNU General Public License for most of our software; it applies also to
|
||||
any other work released this way by its authors. You can apply it to
|
||||
your programs, too.
|
||||
|
||||
When we speak of free software, we are referring to freedom, not
|
||||
price. Our General Public Licenses are designed to make sure that you
|
||||
have the freedom to distribute copies of free software (and charge for
|
||||
them if you wish), that you receive source code or can get it if you
|
||||
want it, that you can change the software or use pieces of it in new
|
||||
free programs, and that you know you can do these things.
|
||||
|
||||
To protect your rights, we need to prevent others from denying you
|
||||
these rights or asking you to surrender the rights. Therefore, you have
|
||||
certain responsibilities if you distribute copies of the software, or if
|
||||
you modify it: responsibilities to respect the freedom of others.
|
||||
|
||||
For example, if you distribute copies of such a program, whether
|
||||
gratis or for a fee, you must pass on to the recipients the same
|
||||
freedoms that you received. You must make sure that they, too, receive
|
||||
or can get the source code. And you must show them these terms so they
|
||||
know their rights.
|
||||
|
||||
Developers that use the GNU GPL protect your rights with two steps:
|
||||
(1) assert copyright on the software, and (2) offer you this License
|
||||
giving you legal permission to copy, distribute and/or modify it.
|
||||
|
||||
For the developers' and authors' protection, the GPL clearly explains
|
||||
that there is no warranty for this free software. For both users' and
|
||||
authors' sake, the GPL requires that modified versions be marked as
|
||||
changed, so that their problems will not be attributed erroneously to
|
||||
authors of previous versions.
|
||||
|
||||
Some devices are designed to deny users access to install or run
|
||||
modified versions of the software inside them, although the manufacturer
|
||||
can do so. This is fundamentally incompatible with the aim of
|
||||
protecting users' freedom to change the software. The systematic
|
||||
pattern of such abuse occurs in the area of products for individuals to
|
||||
use, which is precisely where it is most unacceptable. Therefore, we
|
||||
have designed this version of the GPL to prohibit the practice for those
|
||||
products. If such problems arise substantially in other domains, we
|
||||
stand ready to extend this provision to those domains in future versions
|
||||
of the GPL, as needed to protect the freedom of users.
|
||||
|
||||
Finally, every program is threatened constantly by software patents.
|
||||
States should not allow patents to restrict development and use of
|
||||
software on general-purpose computers, but in those that do, we wish to
|
||||
avoid the special danger that patents applied to a free program could
|
||||
make it effectively proprietary. To prevent this, the GPL assures that
|
||||
patents cannot be used to render the program non-free.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow.
|
||||
|
||||
TERMS AND CONDITIONS
|
||||
|
||||
0. Definitions.
|
||||
|
||||
"This License" refers to version 3 of the GNU General Public License.
|
||||
|
||||
"Copyright" also means copyright-like laws that apply to other kinds of
|
||||
works, such as semiconductor masks.
|
||||
|
||||
"The Program" refers to any copyrightable work licensed under this
|
||||
License. Each licensee is addressed as "you". "Licensees" and
|
||||
"recipients" may be individuals or organizations.
|
||||
|
||||
To "modify" a work means to copy from or adapt all or part of the work
|
||||
in a fashion requiring copyright permission, other than the making of an
|
||||
exact copy. The resulting work is called a "modified version" of the
|
||||
earlier work or a work "based on" the earlier work.
|
||||
|
||||
A "covered work" means either the unmodified Program or a work based
|
||||
on the Program.
|
||||
|
||||
To "propagate" a work means to do anything with it that, without
|
||||
permission, would make you directly or secondarily liable for
|
||||
infringement under applicable copyright law, except executing it on a
|
||||
computer or modifying a private copy. Propagation includes copying,
|
||||
distribution (with or without modification), making available to the
|
||||
public, and in some countries other activities as well.
|
||||
|
||||
To "convey" a work means any kind of propagation that enables other
|
||||
parties to make or receive copies. Mere interaction with a user through
|
||||
a computer network, with no transfer of a copy, is not conveying.
|
||||
|
||||
An interactive user interface displays "Appropriate Legal Notices"
|
||||
to the extent that it includes a convenient and prominently visible
|
||||
feature that (1) displays an appropriate copyright notice, and (2)
|
||||
tells the user that there is no warranty for the work (except to the
|
||||
extent that warranties are provided), that licensees may convey the
|
||||
work under this License, and how to view a copy of this License. If
|
||||
the interface presents a list of user commands or options, such as a
|
||||
menu, a prominent item in the list meets this criterion.
|
||||
|
||||
1. Source Code.
|
||||
|
||||
The "source code" for a work means the preferred form of the work
|
||||
for making modifications to it. "Object code" means any non-source
|
||||
form of a work.
|
||||
|
||||
A "Standard Interface" means an interface that either is an official
|
||||
standard defined by a recognized standards body, or, in the case of
|
||||
interfaces specified for a particular programming language, one that
|
||||
is widely used among developers working in that language.
|
||||
|
||||
The "System Libraries" of an executable work include anything, other
|
||||
than the work as a whole, that (a) is included in the normal form of
|
||||
packaging a Major Component, but which is not part of that Major
|
||||
Component, and (b) serves only to enable use of the work with that
|
||||
Major Component, or to implement a Standard Interface for which an
|
||||
implementation is available to the public in source code form. A
|
||||
"Major Component", in this context, means a major essential component
|
||||
(kernel, window system, and so on) of the specific operating system
|
||||
(if any) on which the executable work runs, or a compiler used to
|
||||
produce the work, or an object code interpreter used to run it.
|
||||
|
||||
The "Corresponding Source" for a work in object code form means all
|
||||
the source code needed to generate, install, and (for an executable
|
||||
work) run the object code and to modify the work, including scripts to
|
||||
control those activities. However, it does not include the work's
|
||||
System Libraries, or general-purpose tools or generally available free
|
||||
programs which are used unmodified in performing those activities but
|
||||
which are not part of the work. For example, Corresponding Source
|
||||
includes interface definition files associated with source files for
|
||||
the work, and the source code for shared libraries and dynamically
|
||||
linked subprograms that the work is specifically designed to require,
|
||||
such as by intimate data communication or control flow between those
|
||||
subprograms and other parts of the work.
|
||||
|
||||
The Corresponding Source need not include anything that users
|
||||
can regenerate automatically from other parts of the Corresponding
|
||||
Source.
|
||||
|
||||
The Corresponding Source for a work in source code form is that
|
||||
same work.
|
||||
|
||||
2. Basic Permissions.
|
||||
|
||||
All rights granted under this License are granted for the term of
|
||||
copyright on the Program, and are irrevocable provided the stated
|
||||
conditions are met. This License explicitly affirms your unlimited
|
||||
permission to run the unmodified Program. The output from running a
|
||||
covered work is covered by this License only if the output, given its
|
||||
content, constitutes a covered work. This License acknowledges your
|
||||
rights of fair use or other equivalent, as provided by copyright law.
|
||||
|
||||
You may make, run and propagate covered works that you do not
|
||||
convey, without conditions so long as your license otherwise remains
|
||||
in force. You may convey covered works to others for the sole purpose
|
||||
of having them make modifications exclusively for you, or provide you
|
||||
with facilities for running those works, provided that you comply with
|
||||
the terms of this License in conveying all material for which you do
|
||||
not control copyright. Those thus making or running the covered works
|
||||
for you must do so exclusively on your behalf, under your direction
|
||||
and control, on terms that prohibit them from making any copies of
|
||||
your copyrighted material outside their relationship with you.
|
||||
|
||||
Conveying under any other circumstances is permitted solely under
|
||||
the conditions stated below. Sublicensing is not allowed; section 10
|
||||
makes it unnecessary.
|
||||
|
||||
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
||||
|
||||
No covered work shall be deemed part of an effective technological
|
||||
measure under any applicable law fulfilling obligations under article
|
||||
11 of the WIPO copyright treaty adopted on 20 December 1996, or
|
||||
similar laws prohibiting or restricting circumvention of such
|
||||
measures.
|
||||
|
||||
When you convey a covered work, you waive any legal power to forbid
|
||||
circumvention of technological measures to the extent such circumvention
|
||||
is effected by exercising rights under this License with respect to
|
||||
the covered work, and you disclaim any intention to limit operation or
|
||||
modification of the work as a means of enforcing, against the work's
|
||||
users, your or third parties' legal rights to forbid circumvention of
|
||||
technological measures.
|
||||
|
||||
4. Conveying Verbatim Copies.
|
||||
|
||||
You may convey verbatim copies of the Program's source code as you
|
||||
receive it, in any medium, provided that you conspicuously and
|
||||
appropriately publish on each copy an appropriate copyright notice;
|
||||
keep intact all notices stating that this License and any
|
||||
non-permissive terms added in accord with section 7 apply to the code;
|
||||
keep intact all notices of the absence of any warranty; and give all
|
||||
recipients a copy of this License along with the Program.
|
||||
|
||||
You may charge any price or no price for each copy that you convey,
|
||||
and you may offer support or warranty protection for a fee.
|
||||
|
||||
5. Conveying Modified Source Versions.
|
||||
|
||||
You may convey a work based on the Program, or the modifications to
|
||||
produce it from the Program, in the form of source code under the
|
||||
terms of section 4, provided that you also meet all of these conditions:
|
||||
|
||||
a) The work must carry prominent notices stating that you modified
|
||||
it, and giving a relevant date.
|
||||
|
||||
b) The work must carry prominent notices stating that it is
|
||||
released under this License and any conditions added under section
|
||||
7. This requirement modifies the requirement in section 4 to
|
||||
"keep intact all notices".
|
||||
|
||||
c) You must license the entire work, as a whole, under this
|
||||
License to anyone who comes into possession of a copy. This
|
||||
License will therefore apply, along with any applicable section 7
|
||||
additional terms, to the whole of the work, and all its parts,
|
||||
regardless of how they are packaged. This License gives no
|
||||
permission to license the work in any other way, but it does not
|
||||
invalidate such permission if you have separately received it.
|
||||
|
||||
d) If the work has interactive user interfaces, each must display
|
||||
Appropriate Legal Notices; however, if the Program has interactive
|
||||
interfaces that do not display Appropriate Legal Notices, your
|
||||
work need not make them do so.
|
||||
|
||||
A compilation of a covered work with other separate and independent
|
||||
works, which are not by their nature extensions of the covered work,
|
||||
and which are not combined with it such as to form a larger program,
|
||||
in or on a volume of a storage or distribution medium, is called an
|
||||
"aggregate" if the compilation and its resulting copyright are not
|
||||
used to limit the access or legal rights of the compilation's users
|
||||
beyond what the individual works permit. Inclusion of a covered work
|
||||
in an aggregate does not cause this License to apply to the other
|
||||
parts of the aggregate.
|
||||
|
||||
6. Conveying Non-Source Forms.
|
||||
|
||||
You may convey a covered work in object code form under the terms
|
||||
of sections 4 and 5, provided that you also convey the
|
||||
machine-readable Corresponding Source under the terms of this License,
|
||||
in one of these ways:
|
||||
|
||||
a) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by the
|
||||
Corresponding Source fixed on a durable physical medium
|
||||
customarily used for software interchange.
|
||||
|
||||
b) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by a
|
||||
written offer, valid for at least three years and valid for as
|
||||
long as you offer spare parts or customer support for that product
|
||||
model, to give anyone who possesses the object code either (1) a
|
||||
copy of the Corresponding Source for all the software in the
|
||||
product that is covered by this License, on a durable physical
|
||||
medium customarily used for software interchange, for a price no
|
||||
more than your reasonable cost of physically performing this
|
||||
conveying of source, or (2) access to copy the
|
||||
Corresponding Source from a network server at no charge.
|
||||
|
||||
c) Convey individual copies of the object code with a copy of the
|
||||
written offer to provide the Corresponding Source. This
|
||||
alternative is allowed only occasionally and noncommercially, and
|
||||
only if you received the object code with such an offer, in accord
|
||||
with subsection 6b.
|
||||
|
||||
d) Convey the object code by offering access from a designated
|
||||
place (gratis or for a charge), and offer equivalent access to the
|
||||
Corresponding Source in the same way through the same place at no
|
||||
further charge. You need not require recipients to copy the
|
||||
Corresponding Source along with the object code. If the place to
|
||||
copy the object code is a network server, the Corresponding Source
|
||||
may be on a different server (operated by you or a third party)
|
||||
that supports equivalent copying facilities, provided you maintain
|
||||
clear directions next to the object code saying where to find the
|
||||
Corresponding Source. Regardless of what server hosts the
|
||||
Corresponding Source, you remain obligated to ensure that it is
|
||||
available for as long as needed to satisfy these requirements.
|
||||
|
||||
e) Convey the object code using peer-to-peer transmission, provided
|
||||
you inform other peers where the object code and Corresponding
|
||||
Source of the work are being offered to the general public at no
|
||||
charge under subsection 6d.
|
||||
|
||||
A separable portion of the object code, whose source code is excluded
|
||||
from the Corresponding Source as a System Library, need not be
|
||||
included in conveying the object code work.
|
||||
|
||||
A "User Product" is either (1) a "consumer product", which means any
|
||||
tangible personal property which is normally used for personal, family,
|
||||
or household purposes, or (2) anything designed or sold for incorporation
|
||||
into a dwelling. In determining whether a product is a consumer product,
|
||||
doubtful cases shall be resolved in favor of coverage. For a particular
|
||||
product received by a particular user, "normally used" refers to a
|
||||
typical or common use of that class of product, regardless of the status
|
||||
of the particular user or of the way in which the particular user
|
||||
actually uses, or expects or is expected to use, the product. A product
|
||||
is a consumer product regardless of whether the product has substantial
|
||||
commercial, industrial or non-consumer uses, unless such uses represent
|
||||
the only significant mode of use of the product.
|
||||
|
||||
"Installation Information" for a User Product means any methods,
|
||||
procedures, authorization keys, or other information required to install
|
||||
and execute modified versions of a covered work in that User Product from
|
||||
a modified version of its Corresponding Source. The information must
|
||||
suffice to ensure that the continued functioning of the modified object
|
||||
code is in no case prevented or interfered with solely because
|
||||
modification has been made.
|
||||
|
||||
If you convey an object code work under this section in, or with, or
|
||||
specifically for use in, a User Product, and the conveying occurs as
|
||||
part of a transaction in which the right of possession and use of the
|
||||
User Product is transferred to the recipient in perpetuity or for a
|
||||
fixed term (regardless of how the transaction is characterized), the
|
||||
Corresponding Source conveyed under this section must be accompanied
|
||||
by the Installation Information. But this requirement does not apply
|
||||
if neither you nor any third party retains the ability to install
|
||||
modified object code on the User Product (for example, the work has
|
||||
been installed in ROM).
|
||||
|
||||
The requirement to provide Installation Information does not include a
|
||||
requirement to continue to provide support service, warranty, or updates
|
||||
for a work that has been modified or installed by the recipient, or for
|
||||
the User Product in which it has been modified or installed. Access to a
|
||||
network may be denied when the modification itself materially and
|
||||
adversely affects the operation of the network or violates the rules and
|
||||
protocols for communication across the network.
|
||||
|
||||
Corresponding Source conveyed, and Installation Information provided,
|
||||
in accord with this section must be in a format that is publicly
|
||||
documented (and with an implementation available to the public in
|
||||
source code form), and must require no special password or key for
|
||||
unpacking, reading or copying.
|
||||
|
||||
7. Additional Terms.
|
||||
|
||||
"Additional permissions" are terms that supplement the terms of this
|
||||
License by making exceptions from one or more of its conditions.
|
||||
Additional permissions that are applicable to the entire Program shall
|
||||
be treated as though they were included in this License, to the extent
|
||||
that they are valid under applicable law. If additional permissions
|
||||
apply only to part of the Program, that part may be used separately
|
||||
under those permissions, but the entire Program remains governed by
|
||||
this License without regard to the additional permissions.
|
||||
|
||||
When you convey a copy of a covered work, you may at your option
|
||||
remove any additional permissions from that copy, or from any part of
|
||||
it. (Additional permissions may be written to require their own
|
||||
removal in certain cases when you modify the work.) You may place
|
||||
additional permissions on material, added by you to a covered work,
|
||||
for which you have or can give appropriate copyright permission.
|
||||
|
||||
Notwithstanding any other provision of this License, for material you
|
||||
add to a covered work, you may (if authorized by the copyright holders of
|
||||
that material) supplement the terms of this License with terms:
|
||||
|
||||
a) Disclaiming warranty or limiting liability differently from the
|
||||
terms of sections 15 and 16 of this License; or
|
||||
|
||||
b) Requiring preservation of specified reasonable legal notices or
|
||||
author attributions in that material or in the Appropriate Legal
|
||||
Notices displayed by works containing it; or
|
||||
|
||||
c) Prohibiting misrepresentation of the origin of that material, or
|
||||
requiring that modified versions of such material be marked in
|
||||
reasonable ways as different from the original version; or
|
||||
|
||||
d) Limiting the use for publicity purposes of names of licensors or
|
||||
authors of the material; or
|
||||
|
||||
e) Declining to grant rights under trademark law for use of some
|
||||
trade names, trademarks, or service marks; or
|
||||
|
||||
f) Requiring indemnification of licensors and authors of that
|
||||
material by anyone who conveys the material (or modified versions of
|
||||
it) with contractual assumptions of liability to the recipient, for
|
||||
any liability that these contractual assumptions directly impose on
|
||||
those licensors and authors.
|
||||
|
||||
All other non-permissive additional terms are considered "further
|
||||
restrictions" within the meaning of section 10. If the Program as you
|
||||
received it, or any part of it, contains a notice stating that it is
|
||||
governed by this License along with a term that is a further
|
||||
restriction, you may remove that term. If a license document contains
|
||||
a further restriction but permits relicensing or conveying under this
|
||||
License, you may add to a covered work material governed by the terms
|
||||
of that license document, provided that the further restriction does
|
||||
not survive such relicensing or conveying.
|
||||
|
||||
If you add terms to a covered work in accord with this section, you
|
||||
must place, in the relevant source files, a statement of the
|
||||
additional terms that apply to those files, or a notice indicating
|
||||
where to find the applicable terms.
|
||||
|
||||
Additional terms, permissive or non-permissive, may be stated in the
|
||||
form of a separately written license, or stated as exceptions;
|
||||
the above requirements apply either way.
|
||||
|
||||
8. Termination.
|
||||
|
||||
You may not propagate or modify a covered work except as expressly
|
||||
provided under this License. Any attempt otherwise to propagate or
|
||||
modify it is void, and will automatically terminate your rights under
|
||||
this License (including any patent licenses granted under the third
|
||||
paragraph of section 11).
|
||||
|
||||
However, if you cease all violation of this License, then your
|
||||
license from a particular copyright holder is reinstated (a)
|
||||
provisionally, unless and until the copyright holder explicitly and
|
||||
finally terminates your license, and (b) permanently, if the copyright
|
||||
holder fails to notify you of the violation by some reasonable means
|
||||
prior to 60 days after the cessation.
|
||||
|
||||
Moreover, your license from a particular copyright holder is
|
||||
reinstated permanently if the copyright holder notifies you of the
|
||||
violation by some reasonable means, this is the first time you have
|
||||
received notice of violation of this License (for any work) from that
|
||||
copyright holder, and you cure the violation prior to 30 days after
|
||||
your receipt of the notice.
|
||||
|
||||
Termination of your rights under this section does not terminate the
|
||||
licenses of parties who have received copies or rights from you under
|
||||
this License. If your rights have been terminated and not permanently
|
||||
reinstated, you do not qualify to receive new licenses for the same
|
||||
material under section 10.
|
||||
|
||||
9. Acceptance Not Required for Having Copies.
|
||||
|
||||
You are not required to accept this License in order to receive or
|
||||
run a copy of the Program. Ancillary propagation of a covered work
|
||||
occurring solely as a consequence of using peer-to-peer transmission
|
||||
to receive a copy likewise does not require acceptance. However,
|
||||
nothing other than this License grants you permission to propagate or
|
||||
modify any covered work. These actions infringe copyright if you do
|
||||
not accept this License. Therefore, by modifying or propagating a
|
||||
covered work, you indicate your acceptance of this License to do so.
|
||||
|
||||
10. Automatic Licensing of Downstream Recipients.
|
||||
|
||||
Each time you convey a covered work, the recipient automatically
|
||||
receives a license from the original licensors, to run, modify and
|
||||
propagate that work, subject to this License. You are not responsible
|
||||
for enforcing compliance by third parties with this License.
|
||||
|
||||
An "entity transaction" is a transaction transferring control of an
|
||||
organization, or substantially all assets of one, or subdividing an
|
||||
organization, or merging organizations. If propagation of a covered
|
||||
work results from an entity transaction, each party to that
|
||||
transaction who receives a copy of the work also receives whatever
|
||||
licenses to the work the party's predecessor in interest had or could
|
||||
give under the previous paragraph, plus a right to possession of the
|
||||
Corresponding Source of the work from the predecessor in interest, if
|
||||
the predecessor has it or can get it with reasonable efforts.
|
||||
|
||||
You may not impose any further restrictions on the exercise of the
|
||||
rights granted or affirmed under this License. For example, you may
|
||||
not impose a license fee, royalty, or other charge for exercise of
|
||||
rights granted under this License, and you may not initiate litigation
|
||||
(including a cross-claim or counterclaim in a lawsuit) alleging that
|
||||
any patent claim is infringed by making, using, selling, offering for
|
||||
sale, or importing the Program or any portion of it.
|
||||
|
||||
11. Patents.
|
||||
|
||||
A "contributor" is a copyright holder who authorizes use under this
|
||||
License of the Program or a work on which the Program is based. The
|
||||
work thus licensed is called the contributor's "contributor version".
|
||||
|
||||
A contributor's "essential patent claims" are all patent claims
|
||||
owned or controlled by the contributor, whether already acquired or
|
||||
hereafter acquired, that would be infringed by some manner, permitted
|
||||
by this License, of making, using, or selling its contributor version,
|
||||
but do not include claims that would be infringed only as a
|
||||
consequence of further modification of the contributor version. For
|
||||
purposes of this definition, "control" includes the right to grant
|
||||
patent sublicenses in a manner consistent with the requirements of
|
||||
this License.
|
||||
|
||||
Each contributor grants you a non-exclusive, worldwide, royalty-free
|
||||
patent license under the contributor's essential patent claims, to
|
||||
make, use, sell, offer for sale, import and otherwise run, modify and
|
||||
propagate the contents of its contributor version.
|
||||
|
||||
In the following three paragraphs, a "patent license" is any express
|
||||
agreement or commitment, however denominated, not to enforce a patent
|
||||
(such as an express permission to practice a patent or covenant not to
|
||||
sue for patent infringement). To "grant" such a patent license to a
|
||||
party means to make such an agreement or commitment not to enforce a
|
||||
patent against the party.
|
||||
|
||||
If you convey a covered work, knowingly relying on a patent license,
|
||||
and the Corresponding Source of the work is not available for anyone
|
||||
to copy, free of charge and under the terms of this License, through a
|
||||
publicly available network server or other readily accessible means,
|
||||
then you must either (1) cause the Corresponding Source to be so
|
||||
available, or (2) arrange to deprive yourself of the benefit of the
|
||||
patent license for this particular work, or (3) arrange, in a manner
|
||||
consistent with the requirements of this License, to extend the patent
|
||||
license to downstream recipients. "Knowingly relying" means you have
|
||||
actual knowledge that, but for the patent license, your conveying the
|
||||
covered work in a country, or your recipient's use of the covered work
|
||||
in a country, would infringe one or more identifiable patents in that
|
||||
country that you have reason to believe are valid.
|
||||
|
||||
If, pursuant to or in connection with a single transaction or
|
||||
arrangement, you convey, or propagate by procuring conveyance of, a
|
||||
covered work, and grant a patent license to some of the parties
|
||||
receiving the covered work authorizing them to use, propagate, modify
|
||||
or convey a specific copy of the covered work, then the patent license
|
||||
you grant is automatically extended to all recipients of the covered
|
||||
work and works based on it.
|
||||
|
||||
A patent license is "discriminatory" if it does not include within
|
||||
the scope of its coverage, prohibits the exercise of, or is
|
||||
conditioned on the non-exercise of one or more of the rights that are
|
||||
specifically granted under this License. You may not convey a covered
|
||||
work if you are a party to an arrangement with a third party that is
|
||||
in the business of distributing software, under which you make payment
|
||||
to the third party based on the extent of your activity of conveying
|
||||
the work, and under which the third party grants, to any of the
|
||||
parties who would receive the covered work from you, a discriminatory
|
||||
patent license (a) in connection with copies of the covered work
|
||||
conveyed by you (or copies made from those copies), or (b) primarily
|
||||
for and in connection with specific products or compilations that
|
||||
contain the covered work, unless you entered into that arrangement,
|
||||
or that patent license was granted, prior to 28 March 2007.
|
||||
|
||||
Nothing in this License shall be construed as excluding or limiting
|
||||
any implied license or other defenses to infringement that may
|
||||
otherwise be available to you under applicable patent law.
|
||||
|
||||
12. No Surrender of Others' Freedom.
|
||||
|
||||
If conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot convey a
|
||||
covered work so as to satisfy simultaneously your obligations under this
|
||||
License and any other pertinent obligations, then as a consequence you may
|
||||
not convey it at all. For example, if you agree to terms that obligate you
|
||||
to collect a royalty for further conveying from those to whom you convey
|
||||
the Program, the only way you could satisfy both those terms and this
|
||||
License would be to refrain entirely from conveying the Program.
|
||||
|
||||
13. Use with the GNU Affero General Public License.
|
||||
|
||||
Notwithstanding any other provision of this License, you have
|
||||
permission to link or combine any covered work with a work licensed
|
||||
under version 3 of the GNU Affero General Public License into a single
|
||||
combined work, and to convey the resulting work. The terms of this
|
||||
License will continue to apply to the part which is the covered work,
|
||||
but the special requirements of the GNU Affero General Public License,
|
||||
section 13, concerning interaction through a network will apply to the
|
||||
combination as such.
|
||||
|
||||
14. Revised Versions of this License.
|
||||
|
||||
The Free Software Foundation may publish revised and/or new versions of
|
||||
the GNU General Public License from time to time. Such new versions will
|
||||
be similar in spirit to the present version, but may differ in detail to
|
||||
address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the
|
||||
Program specifies that a certain numbered version of the GNU General
|
||||
Public License "or any later version" applies to it, you have the
|
||||
option of following the terms and conditions either of that numbered
|
||||
version or of any later version published by the Free Software
|
||||
Foundation. If the Program does not specify a version number of the
|
||||
GNU General Public License, you may choose any version ever published
|
||||
by the Free Software Foundation.
|
||||
|
||||
If the Program specifies that a proxy can decide which future
|
||||
versions of the GNU General Public License can be used, that proxy's
|
||||
public statement of acceptance of a version permanently authorizes you
|
||||
to choose that version for the Program.
|
||||
|
||||
Later license versions may give you additional or different
|
||||
permissions. However, no additional obligations are imposed on any
|
||||
author or copyright holder as a result of your choosing to follow a
|
||||
later version.
|
||||
|
||||
15. Disclaimer of Warranty.
|
||||
|
||||
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
|
||||
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
|
||||
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
|
||||
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
|
||||
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
|
||||
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
|
||||
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||
|
||||
16. Limitation of Liability.
|
||||
|
||||
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
|
||||
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
|
||||
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
|
||||
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
|
||||
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
|
||||
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
|
||||
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
|
||||
SUCH DAMAGES.
|
||||
|
||||
17. Interpretation of Sections 15 and 16.
|
||||
|
||||
If the disclaimer of warranty and limitation of liability provided
|
||||
above cannot be given local legal effect according to their terms,
|
||||
reviewing courts shall apply local law that most closely approximates
|
||||
an absolute waiver of all civil liability in connection with the
|
||||
Program, unless a warranty or assumption of liability accompanies a
|
||||
copy of the Program in return for a fee.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Programs
|
||||
|
||||
If you develop a new program, and you want it to be of the greatest
|
||||
possible use to the public, the best way to achieve this is to make it
|
||||
free software which everyone can redistribute and change under these terms.
|
||||
|
||||
To do so, attach the following notices to the program. It is safest
|
||||
to attach them to the start of each source file to most effectively
|
||||
state the exclusion of warranty; and each file should have at least
|
||||
the "copyright" line and a pointer to where the full notice is found.
|
||||
|
||||
<one line to give the program's name and a brief idea of what it does.>
|
||||
Copyright (C) <year> <name of author>
|
||||
|
||||
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, or
|
||||
(at your option) any later version.
|
||||
|
||||
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/>.
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
If the program does terminal interaction, make it output a short
|
||||
notice like this when it starts in an interactive mode:
|
||||
|
||||
<program> Copyright (C) <year> <name of author>
|
||||
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||
This is free software, and you are welcome to redistribute it
|
||||
under certain conditions; type `show c' for details.
|
||||
|
||||
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||
parts of the General Public License. Of course, your program's commands
|
||||
might be different; for a GUI interface, you would use an "about box".
|
||||
|
||||
You should also get your employer (if you work as a programmer) or school,
|
||||
if any, to sign a "copyright disclaimer" for the program, if necessary.
|
||||
For more information on this, and how to apply and follow the GNU GPL, see
|
||||
<http://www.gnu.org/licenses/>.
|
||||
|
||||
The GNU General Public License does not permit incorporating your program
|
||||
into proprietary programs. If your program is a subroutine library, you
|
||||
may consider it more useful to permit linking proprietary applications with
|
||||
the library. If this is what you want to do, use the GNU Lesser General
|
||||
Public License instead of this License. But first, please read
|
||||
<http://www.gnu.org/philosophy/why-not-lgpl.html>.
|
||||
11
domokits/local/modules/Front/composer.json
Normal file
11
domokits/local/modules/Front/composer.json
Normal file
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"name": "thelia/front-module",
|
||||
"license": "LGPL-3.0+",
|
||||
"type": "thelia-module",
|
||||
"require": {
|
||||
"thelia/installer": "~1.1"
|
||||
},
|
||||
"extra": {
|
||||
"installer-name": "Front"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user