68 lines
1.6 KiB
PHP
68 lines
1.6 KiB
PHP
<?php
|
|
/**
|
|
* Created by IntelliJ IDEA.
|
|
* User: rocho
|
|
* Date: 2018.08.29.
|
|
* Time: 21:58
|
|
*/
|
|
|
|
namespace customerapi\controllers;
|
|
|
|
|
|
use common\manager\EventRegistrationManager;
|
|
use common\models\CardEventRegistrationForm;
|
|
use common\models\Customer;
|
|
use customerapi\models\available\EventInterval;
|
|
use customerapi\models\available\EventRegistrationAvailable;
|
|
use Throwable;
|
|
use Yii;
|
|
|
|
/** @noinspection PhpUnused */
|
|
|
|
class EventRegistrationController extends CustomerApiController
|
|
{
|
|
|
|
/** @noinspection PhpUnused */
|
|
public function actionIndex()
|
|
{
|
|
$interval = EventInterval::createInterval();
|
|
|
|
$registrations = EventRegistrationAvailable::find()
|
|
->innerJoinWith('event')
|
|
->andWhere(['and',
|
|
['>=', 'event.start', $interval->firstActiveDate->getTimestamp()],
|
|
['<', 'event.start', $interval->lastActiveDate->getTimestamp()],
|
|
['id_customer' => Yii::$app->user->getId()]
|
|
])->all();
|
|
|
|
return $this->asJson(
|
|
|
|
$registrations
|
|
);
|
|
|
|
}
|
|
|
|
/**
|
|
* @noinspection PhpUnused
|
|
* @param $idEvent
|
|
* @throws Throwable
|
|
*/
|
|
public function actionRegister($idEvent) {
|
|
/** @var Customer $customer */
|
|
$customer = Yii::$app->user->getIdentity();
|
|
$card =$customer->card;
|
|
|
|
$form = new CardEventRegistrationForm();
|
|
$form->event_id = $idEvent;
|
|
$form->card_number = $card->number;
|
|
|
|
$manager = new EventRegistrationManager();
|
|
$manager->registerCard($form);
|
|
|
|
return $form->registration;
|
|
|
|
}
|
|
|
|
|
|
}
|