
GET /api/v1/summits/{id}/rsvp-templates/questions/metadata Change-Id: Ide18c7312f991cd15ffc0d6d1b173762cf53c7b3
143 lines
4.6 KiB
PHP
143 lines
4.6 KiB
PHP
<?php namespace App\Repositories\Summit;
|
|
/**
|
|
* 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\RSVPCheckBoxListQuestionTemplate;
|
|
use App\Models\Foundation\Summit\Events\RSVP\RSVPDropDownQuestionTemplate;
|
|
use App\Models\Foundation\Summit\Events\RSVP\RSVPLiteralContentQuestionTemplate;
|
|
use App\Models\Foundation\Summit\Events\RSVP\RSVPMemberEmailQuestionTemplate;
|
|
use App\Models\Foundation\Summit\Events\RSVP\RSVPMemberFirstNameQuestionTemplate;
|
|
use App\Models\Foundation\Summit\Events\RSVP\RSVPMemberLastNameQuestionTemplate;
|
|
use App\Models\Foundation\Summit\Events\RSVP\RSVPRadioButtonListQuestionTemplate;
|
|
use App\Models\Foundation\Summit\Events\RSVP\RSVPTemplate;
|
|
use App\Models\Foundation\Summit\Events\RSVP\RSVPTextAreaQuestionTemplate;
|
|
use App\Models\Foundation\Summit\Events\RSVP\RSVPTextBoxQuestionTemplate;
|
|
use App\Models\Foundation\Summit\Repositories\IRSVPTemplateRepository;
|
|
use App\Repositories\SilverStripeDoctrineRepository;
|
|
use Doctrine\ORM\Tools\Pagination\Paginator;
|
|
use models\summit\Summit;
|
|
use utils\Filter;
|
|
use utils\Order;
|
|
use utils\PagingInfo;
|
|
use utils\PagingResponse;
|
|
/**
|
|
* Class DoctrineRSVPTemplateRepository
|
|
* @package App\Repositories\Summit
|
|
*/
|
|
final class DoctrineRSVPTemplateRepository
|
|
extends SilverStripeDoctrineRepository
|
|
implements IRSVPTemplateRepository
|
|
{
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
protected function getBaseEntity()
|
|
{
|
|
return RSVPTemplate::class;
|
|
}
|
|
|
|
protected function getFilterMappings()
|
|
{
|
|
return [
|
|
'title' => 't.title:json_string',
|
|
'is_enabled' => 't.is_enabled:json_boolean',
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
protected function getOrderMappings()
|
|
{
|
|
return [
|
|
'id' => 't.id',
|
|
'title' => 't.title',
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @param Summit $summit
|
|
* @param PagingInfo $paging_info
|
|
* @param Filter|null $filter
|
|
* @param Order|null $order
|
|
* @return mixed
|
|
*/
|
|
public function getBySummit
|
|
(
|
|
Summit $summit,
|
|
PagingInfo $paging_info,
|
|
Filter $filter = null,
|
|
Order $order = null
|
|
)
|
|
{
|
|
$query = $this->getEntityManager()
|
|
->createQueryBuilder()
|
|
->select("t")
|
|
->from(RSVPTemplate::class, "t")
|
|
->leftJoin('t.summit', 's')
|
|
->leftJoin('t.created_by', 'o')
|
|
->where("s.id = :summit_id");
|
|
|
|
$query->setParameter("summit_id", $summit->getId());
|
|
|
|
if(!is_null($filter)){
|
|
$filter->apply2Query($query, $this->getFilterMappings());
|
|
}
|
|
|
|
if (!is_null($order)) {
|
|
$order->apply2Query($query, $this->getOrderMappings());
|
|
} else {
|
|
//default order
|
|
$query = $query->addOrderBy("t.id",'ASC');
|
|
}
|
|
|
|
$query = $query
|
|
->setFirstResult($paging_info->getOffset())
|
|
->setMaxResults($paging_info->getPerPage());
|
|
|
|
$paginator = new Paginator($query, $fetchJoinCollection = true);
|
|
$total = $paginator->count();
|
|
$data = [];
|
|
|
|
foreach($paginator as $entity)
|
|
$data[] = $entity;
|
|
|
|
return new PagingResponse
|
|
(
|
|
$total,
|
|
$paging_info->getPerPage(),
|
|
$paging_info->getCurrentPage(),
|
|
$paging_info->getLastPage($total),
|
|
$data
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @param Summit $summit
|
|
* @return array
|
|
*/
|
|
public function getQuestionsMetadata(Summit $summit)
|
|
{
|
|
return [
|
|
RSVPMemberEmailQuestionTemplate::getMetadata(),
|
|
RSVPMemberFirstNameQuestionTemplate::getMetadata(),
|
|
RSVPMemberLastNameQuestionTemplate::getMetadata(),
|
|
RSVPTextBoxQuestionTemplate::getMetadata(),
|
|
RSVPTextAreaQuestionTemplate::getMetadata(),
|
|
RSVPCheckBoxListQuestionTemplate::getMetadata(),
|
|
RSVPRadioButtonListQuestionTemplate::getMetadata(),
|
|
RSVPDropDownQuestionTemplate::getMetadata(),
|
|
RSVPLiteralContentQuestionTemplate::getMetadata(),
|
|
];
|
|
}
|
|
} |