
Get all track questions GET /api/v1/track-question-templates params 'page' => 'integer|min:1' 'per_page' => 'required_with:page|integer|min:5|max:100' filter 'name' => ['=@', '=='] 'label' => ['=@', '=='] 'class_name' => ['=='] order * id * name * label expand * tracks scopes %s/summits/read/all Add track question POST /api/v1/track-question-templates payload 'name' => 'sometimes|alpha_dash|max:255' 'label' => 'sometimes|string' 'is_mandatory' => 'sometimes|boolean' 'is_read_only' => 'sometimes|boolean' 'tracks' => 'sometimes|int_array' for TrackCheckBoxQuestionTemplate and TrackTextBoxQuestionTemplate 'initial_value' => 'string|sometimes' for TrackDropDownQuestionTemplate 'is_multiselect' => 'sometimes|boolean' 'is_country_selector' => 'sometimes|boolean' scopes %s/summits/write %s/track-question-templates/write PUT /api/v1/track-question-templates/{track_question_template_id} payload same as POST scopes %s/summits/write %s/track-question-templates/write delete track question DELETE /api/v1/track-question-templates/{track_question_template_id} scopes %s/summits/write %s/track-question-templates/write get track question metadata GET /api/v1/track-question-templates/metadata scopes %s/summits/read/all add track question value POST /api/v1/track-question-templates/{track_question_template_id}/values payload 'value' => 'required|string|max:255' 'label' => 'required|string' scopes %s/summits/write %s/track-question-templates/write update track question value /api/v1/track-question-templates/{track_question_template_id}/values/{track_question_template_value_id} payload 'value' => 'sometimes|string|max:255' 'label' => 'sometimes|string' 'order' => 'sometimes|integer|min:1' delete track question value DELETE /api/v1/track-question-templates/{track_question_template_id}/values/{track_question_template_value_id} scopes %s/summits/write %s/track-question-templates/write get track question template value GET /api/v1/track-question-templates/{track_question_template_id}/values/{track_question_template_value_id} scopes '%s/summits/read/all' Change-Id: I663bccf3987cb0b7e337e0fe5b92f3723fac5cd6
614 lines
22 KiB
PHP
614 lines
22 KiB
PHP
<?php namespace App\Services\Model;
|
|
/**
|
|
* Copyright 2018 OpenStack Foundation
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
**/
|
|
use App\Models\Foundation\Summit\Events\RSVP\RSVPMultiValueQuestionTemplate;
|
|
use App\Models\Foundation\Summit\Events\RSVP\RSVPQuestionTemplate;
|
|
use App\Models\Foundation\Summit\Events\RSVP\RSVPQuestionValueTemplate;
|
|
use App\Models\Foundation\Summit\Events\RSVP\RSVPTemplate;
|
|
use App\Models\Foundation\Summit\Factories\SummitRSVPTemplateFactory;
|
|
use App\Models\Foundation\Summit\Factories\SummitRSVPTemplateQuestionFactory;
|
|
use App\Models\Foundation\Summit\Factories\SummitRSVPTemplateQuestionValueFactory;
|
|
use App\Models\Foundation\Summit\Repositories\IRSVPTemplateRepository;
|
|
use libs\utils\ITransactionService;
|
|
use models\exceptions\EntityNotFoundException;
|
|
use models\exceptions\ValidationException;
|
|
use models\main\Member;
|
|
use models\summit\Summit;
|
|
/**
|
|
* Class RSVPTemplateService
|
|
* @package App\Services\Model
|
|
*/
|
|
final class RSVPTemplateService
|
|
extends AbstractService
|
|
implements IRSVPTemplateService
|
|
{
|
|
/**
|
|
* @var IRSVPTemplateRepository
|
|
*/
|
|
private $rsvp_template_repository;
|
|
|
|
/**
|
|
* RSVPTemplateService constructor.
|
|
* @param IRSVPTemplateRepository $rsvp_template_repository
|
|
* @param ITransactionService $tx_service
|
|
*/
|
|
public function __construct(IRSVPTemplateRepository $rsvp_template_repository, ITransactionService $tx_service)
|
|
{
|
|
parent::__construct($tx_service);
|
|
$this->rsvp_template_repository = $rsvp_template_repository;
|
|
}
|
|
|
|
/**
|
|
* @param Summit $summit
|
|
* @param Member|null $creator
|
|
* @param array $payload
|
|
* @return RSVPTemplate
|
|
* @throws EntityNotFoundException
|
|
* @throws ValidationException
|
|
*/
|
|
public function addTemplate(Summit $summit, Member $creator, array $payload)
|
|
{
|
|
return $this->tx_service->transaction(function() use($summit, $creator, $payload){
|
|
|
|
$former_template = $summit->getRSVPTemplateByTitle($payload['title']);
|
|
|
|
if(!is_null($former_template)){
|
|
throw new ValidationException
|
|
(
|
|
trans('validation_errors.RSVPTemplateService.addTemplate.TitleAlreadyExists'),
|
|
[
|
|
'title' => $payload['title'],
|
|
'summit_id' => $summit->getId()
|
|
]
|
|
);
|
|
}
|
|
|
|
$template = SummitRSVPTemplateFactory::build($payload);
|
|
|
|
if(!is_null($creator))
|
|
$template->setCreatedBy($creator);
|
|
|
|
$summit->addRSVPTemplate($template);
|
|
|
|
return $template;
|
|
});
|
|
}
|
|
|
|
/**
|
|
* @param Summit $summit
|
|
* @param int $template_id
|
|
* @param array $payload
|
|
* @return RSVPTemplate
|
|
* @throws EntityNotFoundException
|
|
* @throws ValidationException
|
|
*/
|
|
public function updateTemplate(Summit $summit, $template_id, array $payload)
|
|
{
|
|
return $this->tx_service->transaction(function() use($summit, $template_id, $payload){
|
|
|
|
if(isset($payload['title'])) {
|
|
$former_template = $summit->getRSVPTemplateByTitle($payload['title']);
|
|
|
|
if (!is_null($former_template) && $former_template->getId() != $template_id) {
|
|
throw new ValidationException
|
|
(
|
|
trans('validation_errors.RSVPTemplateService.updateTemplate.TitleAlreadyExists',
|
|
[
|
|
'title' => $payload['title'],
|
|
'summit_id' => $summit->getId()
|
|
]
|
|
)
|
|
);
|
|
}
|
|
}
|
|
|
|
$template = $summit->getRSVPTemplateById($template_id);
|
|
|
|
if(is_null($template)){
|
|
throw new EntityNotFoundException
|
|
(
|
|
trans('not_found_errors.RSVPTemplateService.updateTemplate.TemplateNotFound',
|
|
[
|
|
'template_id' => $template_id,
|
|
'summit_id' => $summit->getId()
|
|
]
|
|
)
|
|
);
|
|
}
|
|
|
|
return SummitRSVPTemplateFactory::populate($template, $payload);
|
|
});
|
|
}
|
|
|
|
/**
|
|
* @param Summit $summit
|
|
* @param int $template_id
|
|
* @return void
|
|
* @throws EntityNotFoundException
|
|
* @throws ValidationException
|
|
*/
|
|
public function deleteTemplate(Summit $summit, $template_id)
|
|
{
|
|
$this->tx_service->transaction(function() use($summit, $template_id){
|
|
$template = $summit->getRSVPTemplateById($template_id);
|
|
if(is_null($template))
|
|
throw new EntityNotFoundException
|
|
(
|
|
trans
|
|
(
|
|
'not_found_errors.RSVPTemplateService.deleteTemplate.TemplateNotFound',
|
|
[
|
|
'summit_id' => $summit->getId(),
|
|
'template_id' => $template_id,
|
|
]
|
|
)
|
|
);
|
|
|
|
$summit->removeRSVPTemplate($template);
|
|
});
|
|
}
|
|
|
|
/**
|
|
* @param Summit $summit
|
|
* @param $template_id
|
|
* @param array $data
|
|
* @return RSVPQuestionTemplate
|
|
* @throws EntityNotFoundException
|
|
* @throws ValidationException
|
|
*/
|
|
public function addQuestion(Summit $summit, $template_id, array $data)
|
|
{
|
|
return $this->tx_service->transaction(function() use($summit, $template_id, $data){
|
|
|
|
$template = $summit->getRSVPTemplateById($template_id);
|
|
|
|
if(is_null($template))
|
|
throw new EntityNotFoundException
|
|
(
|
|
trans
|
|
(
|
|
'not_found_errors.RSVPTemplateService.addQuestion.TemplateNotFound',
|
|
[
|
|
'summit_id' => $summit->getId(),
|
|
'template_id' => $template_id,
|
|
]
|
|
)
|
|
);
|
|
|
|
$former_question = $template->getQuestionByName($data['name']);
|
|
if(!is_null($former_question)){
|
|
throw new ValidationException
|
|
(
|
|
trans
|
|
(
|
|
'validation_errors.RSVPTemplateService.addQuestion.QuestionNameAlreadyExists',
|
|
[
|
|
'template_id' => $template_id,
|
|
'name' => $data['name']
|
|
]
|
|
)
|
|
);
|
|
}
|
|
|
|
$question = SummitRSVPTemplateQuestionFactory::build($data);
|
|
|
|
$template->addQuestion($question);
|
|
|
|
return $question;
|
|
});
|
|
}
|
|
|
|
/**
|
|
* @param Summit $summit
|
|
* @param int $template_id
|
|
* @param int $question_id
|
|
* @param array $data
|
|
* @return RSVPQuestionTemplate
|
|
* @throws EntityNotFoundException
|
|
* @throws ValidationException
|
|
*/
|
|
public function updateQuestion(Summit $summit, $template_id, $question_id, array $data)
|
|
{
|
|
return $this->tx_service->transaction(function() use($summit, $template_id, $question_id, $data){
|
|
|
|
$template = $summit->getRSVPTemplateById($template_id);
|
|
|
|
if(is_null($template))
|
|
throw new EntityNotFoundException
|
|
(
|
|
trans
|
|
(
|
|
'not_found_errors.RSVPTemplateService.updateQuestion.TemplateNotFound',
|
|
[
|
|
'summit_id' => $summit->getId(),
|
|
'template_id' => $template_id,
|
|
]
|
|
)
|
|
);
|
|
|
|
$question = $template->getQuestionById($question_id);
|
|
if(is_null($question))
|
|
throw new EntityNotFoundException
|
|
(
|
|
trans
|
|
(
|
|
'not_found_errors.RSVPTemplateService.updateQuestion.QuestionNotFound',
|
|
[
|
|
'summit_id' => $summit->getId(),
|
|
'template_id' => $template_id,
|
|
'question_id' => $question_id,
|
|
]
|
|
)
|
|
);
|
|
|
|
$class_name = $data['class_name'];
|
|
$reflect = new \ReflectionClass($question);
|
|
if ($reflect->getShortName() !== $class_name) {
|
|
throw new EntityNotFoundException
|
|
(
|
|
trans
|
|
(
|
|
'not_found_errors.RSVPTemplateService.updateQuestion.QuestionNotFound',
|
|
[
|
|
'summit_id' => $summit->getId(),
|
|
'template_id' => $template_id,
|
|
'question_id' => $question_id,
|
|
]
|
|
)
|
|
);
|
|
}
|
|
|
|
if(isset($data['name'])) {
|
|
$former_question = $template->getQuestionByName($data['name']);
|
|
if (!is_null($former_question) && $former_question->getId() != $question_id) {
|
|
throw new ValidationException
|
|
(
|
|
trans
|
|
(
|
|
'validation_errors.RSVPTemplateService.updateQuestion.QuestionNameAlreadyExists',
|
|
[
|
|
'template_id' => $template_id,
|
|
'name' => $data['name']
|
|
]
|
|
)
|
|
);
|
|
}
|
|
}
|
|
|
|
if (isset($data['order']) && intval($data['order']) != $question->getOrder()) {
|
|
// request to update order
|
|
$template->recalculateQuestionOrder($question, intval($data['order']));
|
|
}
|
|
|
|
return SummitRSVPTemplateQuestionFactory::populate($question, $data);
|
|
|
|
});
|
|
}
|
|
|
|
/**
|
|
* @param Summit $summit
|
|
* @param int $template_id
|
|
* @param int $question_id
|
|
* @return void
|
|
* @throws EntityNotFoundException
|
|
* @throws ValidationException
|
|
*/
|
|
public function deleteQuestion(Summit $summit, $template_id, $question_id)
|
|
{
|
|
return $this->tx_service->transaction(function() use($summit, $template_id, $question_id){
|
|
|
|
$template = $summit->getRSVPTemplateById($template_id);
|
|
|
|
if(is_null($template))
|
|
throw new EntityNotFoundException
|
|
(
|
|
trans
|
|
(
|
|
'not_found_errors.RSVPTemplateService.deleteQuestion.TemplateNotFound',
|
|
[
|
|
'summit_id' => $summit->getId(),
|
|
'template_id' => $template_id,
|
|
]
|
|
)
|
|
);
|
|
|
|
$question = $template->getQuestionById($question_id);
|
|
if(is_null($question))
|
|
throw new EntityNotFoundException
|
|
(
|
|
trans
|
|
(
|
|
'not_found_errors.RSVPTemplateService.deleteQuestion.QuestionNotFound',
|
|
[
|
|
'summit_id' => $summit->getId(),
|
|
'template_id' => $template_id,
|
|
'question_id' => $question_id,
|
|
]
|
|
)
|
|
);
|
|
|
|
$template->removeQuestion($question);
|
|
});
|
|
}
|
|
|
|
/**
|
|
* @param Summit $summit
|
|
* @param int $template_id
|
|
* @param int $question_id
|
|
* @param array $data
|
|
* @return RSVPQuestionValueTemplate
|
|
* @throws EntityNotFoundException
|
|
* @throws ValidationException
|
|
*/
|
|
public function addQuestionValue($summit, $template_id, $question_id, $data)
|
|
{
|
|
return $this->tx_service->transaction(function() use($summit, $template_id, $question_id, $data){
|
|
|
|
$template = $summit->getRSVPTemplateById($template_id);
|
|
|
|
if(is_null($template))
|
|
throw new EntityNotFoundException
|
|
(
|
|
trans
|
|
(
|
|
'not_found_errors.RSVPTemplateService.addQuestionValue.TemplateNotFound',
|
|
[
|
|
'summit_id' => $summit->getId(),
|
|
'template_id' => $template_id,
|
|
]
|
|
)
|
|
);
|
|
|
|
$question = $template->getQuestionById($question_id);
|
|
if(is_null($question))
|
|
throw new EntityNotFoundException
|
|
(
|
|
trans
|
|
(
|
|
'not_found_errors.RSVPTemplateService.addQuestionValue.QuestionNotFound',
|
|
[
|
|
'summit_id' => $summit->getId(),
|
|
'template_id' => $template_id,
|
|
'question_id' => $question_id,
|
|
]
|
|
)
|
|
);
|
|
|
|
if(!$question instanceof RSVPMultiValueQuestionTemplate){
|
|
throw new EntityNotFoundException
|
|
(
|
|
trans
|
|
(
|
|
'not_found_errors.RSVPTemplateService.addQuestionValue.QuestionNotFound',
|
|
[
|
|
'summit_id' => $summit->getId(),
|
|
'template_id' => $template_id,
|
|
'question_id' => $question_id,
|
|
]
|
|
)
|
|
);
|
|
}
|
|
|
|
$former_value = $question->getValueByValue($data['value']);
|
|
if(!is_null($former_value)){
|
|
throw new ValidationException
|
|
(
|
|
trans
|
|
(
|
|
'validation_errors.RSVPTemplateService.addQuestionValue.ValueAlreadyExist',
|
|
[
|
|
'summit_id' => $summit->getId(),
|
|
'template_id' => $template_id,
|
|
'question_id' => $question_id,
|
|
'value' => $data['value']
|
|
]
|
|
)
|
|
);
|
|
}
|
|
|
|
$value = SummitRSVPTemplateQuestionValueFactory::build($data);
|
|
|
|
$question->addValue($value);
|
|
|
|
return $value;
|
|
});
|
|
}
|
|
|
|
/**
|
|
* @param Summit $summit
|
|
* @param int $template_id
|
|
* @param int $question_id
|
|
* @param int $value_id
|
|
* @param array $data
|
|
* @return RSVPQuestionValueTemplate
|
|
* @throws EntityNotFoundException
|
|
* @throws ValidationException
|
|
*/
|
|
public function updateQuestionValue($summit, $template_id, $question_id, $value_id, $data)
|
|
{
|
|
return $this->tx_service->transaction(function() use($summit, $template_id, $question_id, $value_id, $data){
|
|
|
|
$template = $summit->getRSVPTemplateById($template_id);
|
|
|
|
if(is_null($template))
|
|
throw new EntityNotFoundException
|
|
(
|
|
trans
|
|
(
|
|
'not_found_errors.RSVPTemplateService.updateQuestionValue.TemplateNotFound',
|
|
[
|
|
'summit_id' => $summit->getId(),
|
|
'template_id' => $template_id,
|
|
]
|
|
)
|
|
);
|
|
|
|
$question = $template->getQuestionById($question_id);
|
|
if(is_null($question))
|
|
throw new EntityNotFoundException
|
|
(
|
|
trans
|
|
(
|
|
'not_found_errors.RSVPTemplateService.updateQuestionValue.QuestionNotFound',
|
|
[
|
|
'summit_id' => $summit->getId(),
|
|
'template_id' => $template_id,
|
|
'question_id' => $question_id,
|
|
]
|
|
)
|
|
);
|
|
|
|
if(!$question instanceof RSVPMultiValueQuestionTemplate){
|
|
throw new EntityNotFoundException
|
|
(
|
|
trans
|
|
(
|
|
'not_found_errors.RSVPTemplateService.updateQuestionValue.QuestionNotFound',
|
|
[
|
|
'summit_id' => $summit->getId(),
|
|
'template_id' => $template_id,
|
|
'question_id' => $question_id,
|
|
]
|
|
)
|
|
);
|
|
}
|
|
|
|
if(isset($data['value'])) {
|
|
$former_value = $question->getValueByValue($data['value']);
|
|
if (!is_null($former_value) && $former_value->getId() != $value_id) {
|
|
throw new ValidationException
|
|
(
|
|
trans
|
|
(
|
|
'validation_errors.RSVPTemplateService.updateQuestionValue.ValueAlreadyExist',
|
|
[
|
|
'summit_id' => $summit->getId(),
|
|
'template_id' => $template_id,
|
|
'question_id' => $question_id,
|
|
'value' => $data['value']
|
|
]
|
|
)
|
|
);
|
|
}
|
|
}
|
|
|
|
$value = $question->getValueById($value_id);
|
|
if(is_null($value))
|
|
throw new EntityNotFoundException
|
|
(
|
|
trans
|
|
(
|
|
'not_found_errors.RSVPTemplateService.updateQuestionValue.ValueNotFound',
|
|
[
|
|
'summit_id' => $summit->getId(),
|
|
'template_id' => $template_id,
|
|
'question_id' => $question_id,
|
|
'value_id' => $value_id,
|
|
]
|
|
)
|
|
);
|
|
|
|
$value = SummitRSVPTemplateQuestionValueFactory::populate($value, $data);
|
|
|
|
|
|
if (isset($data['order']) && intval($data['order']) != $value->getOrder()) {
|
|
// request to update order
|
|
$question->recalculateValueOrder($value, intval($data['order']));
|
|
}
|
|
|
|
|
|
return $value;
|
|
});
|
|
}
|
|
|
|
/**
|
|
* @param Summit $summit
|
|
* @param int $template_id
|
|
* @param int $question_id
|
|
* @param int $value_id
|
|
* @return void
|
|
* @throws EntityNotFoundException
|
|
* @throws ValidationException
|
|
*/
|
|
public function deleteQuestionValue($summit, $template_id, $question_id, $value_id)
|
|
{
|
|
return $this->tx_service->transaction(function() use($summit, $template_id, $question_id, $value_id){
|
|
|
|
$template = $summit->getRSVPTemplateById($template_id);
|
|
|
|
if(is_null($template))
|
|
throw new EntityNotFoundException
|
|
(
|
|
trans
|
|
(
|
|
'not_found_errors.RSVPTemplateService.deleteQuestionValue.TemplateNotFound',
|
|
[
|
|
'summit_id' => $summit->getId(),
|
|
'template_id' => $template_id,
|
|
]
|
|
)
|
|
);
|
|
|
|
$question = $template->getQuestionById($question_id);
|
|
if(is_null($question))
|
|
throw new EntityNotFoundException
|
|
(
|
|
trans
|
|
(
|
|
'not_found_errors.RSVPTemplateService.deleteQuestionValue.QuestionNotFound',
|
|
[
|
|
'summit_id' => $summit->getId(),
|
|
'template_id' => $template_id,
|
|
'question_id' => $question_id,
|
|
]
|
|
)
|
|
);
|
|
|
|
if(!$question instanceof RSVPMultiValueQuestionTemplate)
|
|
throw new EntityNotFoundException
|
|
(
|
|
trans
|
|
(
|
|
'not_found_errors.RSVPTemplateService.deleteQuestionValue.QuestionNotFound',
|
|
[
|
|
'summit_id' => $summit->getId(),
|
|
'template_id' => $template_id,
|
|
'question_id' => $question_id,
|
|
]
|
|
)
|
|
);
|
|
|
|
$value = $question->getValueById($value_id);
|
|
|
|
if(is_null($value)){
|
|
throw new EntityNotFoundException
|
|
(
|
|
trans
|
|
(
|
|
'not_found_errors.RSVPTemplateService.deleteQuestionValue.ValueNotFound',
|
|
[
|
|
'summit_id' => $summit->getId(),
|
|
'template_id' => $template_id,
|
|
'question_id' => $question_id,
|
|
'value_id' => $value_id
|
|
]
|
|
)
|
|
);
|
|
}
|
|
|
|
$question->removeValue($value);
|
|
|
|
});
|
|
}
|
|
|
|
} |