109 lines
4.0 KiB
PHP
109 lines
4.0 KiB
PHP
<?php
|
|
/*************************************************************************************/
|
|
/* This file is part of the Thelia package. */
|
|
/* */
|
|
/* Copyright (c) OpenStudio */
|
|
/* email : dev@thelia.net */
|
|
/* web : http://www.thelia.net */
|
|
/* */
|
|
/* For the full copyright and license information, please view the LICENSE.txt */
|
|
/* file that was distributed with this source code. */
|
|
/*************************************************************************************/
|
|
|
|
namespace Thelia\Action;
|
|
|
|
use Propel\Runtime\Exception\PropelException;
|
|
use Propel\Runtime\Propel;
|
|
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
|
|
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
|
|
use Thelia\Core\Event\Address\AddressCreateOrUpdateEvent;
|
|
use Thelia\Core\Event\Address\AddressEvent;
|
|
use Thelia\Core\Event\TheliaEvents;
|
|
use Thelia\Model\Address as AddressModel;
|
|
use Thelia\Model\Map\AddressTableMap;
|
|
|
|
/**
|
|
* Class Address
|
|
* @package Thelia\Action
|
|
* @author Manuel Raynaud <manu@raynaud.io>
|
|
*/
|
|
class Address extends BaseAction implements EventSubscriberInterface
|
|
{
|
|
public function create(AddressCreateOrUpdateEvent $event, $eventName, EventDispatcherInterface $dispatcher)
|
|
{
|
|
$address = new AddressModel();
|
|
$address->setCustomer($event->getCustomer());
|
|
$this->createOrUpdate($address, $event, $dispatcher);
|
|
}
|
|
|
|
public function update(AddressCreateOrUpdateEvent $event, $eventName, EventDispatcherInterface $dispatcher)
|
|
{
|
|
$addressModel = $event->getAddress();
|
|
|
|
$this->createOrUpdate($addressModel, $event, $dispatcher);
|
|
}
|
|
|
|
public function delete(AddressEvent $event)
|
|
{
|
|
$address = $event->getAddress();
|
|
|
|
$address->delete();
|
|
}
|
|
|
|
public function useDefault(AddressEvent $event)
|
|
{
|
|
$address = $event->getAddress();
|
|
|
|
$address->makeItDefault();
|
|
}
|
|
|
|
protected function createOrUpdate(AddressModel $addressModel, AddressCreateOrUpdateEvent $event, $dispatcher)
|
|
{
|
|
$addressModel->setDispatcher($dispatcher);
|
|
$con = Propel::getWriteConnection(AddressTableMap::DATABASE_NAME);
|
|
$con->beginTransaction();
|
|
try {
|
|
$addressModel
|
|
->setLabel($event->getLabel())
|
|
->setTitleId($event->getTitle())
|
|
->setFirstname($event->getFirstname())
|
|
->setLastname($event->getLastname())
|
|
->setAddress1($event->getAddress1())
|
|
->setAddress2($event->getAddress2())
|
|
->setAddress3($event->getAddress3())
|
|
->setZipcode($event->getZipcode())
|
|
->setCity($event->getCity())
|
|
->setCountryId($event->getCountry())
|
|
->setStateId($event->getState())
|
|
->setCellphone($event->getCellphone())
|
|
->setPhone($event->getPhone())
|
|
->setCompany($event->getCompany())
|
|
->save()
|
|
;
|
|
|
|
if ($event->getIsDefault() && !$addressModel->getIsDefault()) {
|
|
$addressModel->makeItDefault();
|
|
}
|
|
|
|
$event->setAddress($addressModel);
|
|
$con->commit();
|
|
} catch (PropelException $e) {
|
|
$con->rollback();
|
|
throw $e;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public static function getSubscribedEvents()
|
|
{
|
|
return array(
|
|
TheliaEvents::ADDRESS_CREATE => array("create", 128),
|
|
TheliaEvents::ADDRESS_UPDATE => array("update", 128),
|
|
TheliaEvents::ADDRESS_DELETE => array("delete", 128),
|
|
TheliaEvents::ADDRESS_DEFAULT => array('useDefault', 128),
|
|
);
|
|
}
|
|
}
|