update resp of poll display

This commit is contained in:
tykayn 2021-04-28 15:05:20 +02:00 committed by Baptiste Lemoine
parent 747ebb9d2f
commit 9781c2be2c
2 changed files with 666 additions and 653 deletions

View File

@ -1,22 +1,31 @@
<?php
use App\Kernel;
use Symfony\Component\Dotenv\Dotenv;
use Symfony\Component\ErrorHandler\Debug;
use Symfony\Component\HttpFoundation\Request;
use App\Kernel;
use Symfony\Component\Dotenv\Dotenv;
use Symfony\Component\ErrorHandler\Debug;
use Symfony\Component\HttpFoundation\Request;
require dirname(__DIR__).'/vendor/autoload.php';
header( 'Access-Control-Allow-Origin: *' );
header( "Access-Control-Allow-Headers: X-API-KEY, Origin, X-Requested-With, Content-Type, Accept, Access-Control-Request-Method" );
header( "Access-Control-Allow-Methods: GET, POST, OPTIONS, PUT, DELETE" );
header( "Allow: GET, POST, OPTIONS, PUT, DELETE" );
$method = $_SERVER[ 'REQUEST_METHOD' ];
if ( $method == "OPTIONS" ) {
die();
}
(new Dotenv())->bootEnv(dirname(__DIR__).'/.env');
require dirname( __DIR__ ) . '/vendor/autoload.php';
if ($_SERVER['APP_DEBUG']) {
umask(0000);
( new Dotenv() )->bootEnv( dirname( __DIR__ ) . '/.env' );
if ( $_SERVER[ 'APP_DEBUG' ] ) {
umask( 0000 );
Debug::enable();
}
}
$kernel = new Kernel($_SERVER['APP_ENV'], (bool) $_SERVER['APP_DEBUG']);
$request = Request::createFromGlobals();
$response = $kernel->handle($request);
$response->send();
$kernel->terminate($request, $response);
$kernel = new Kernel( $_SERVER[ 'APP_ENV' ], (bool) $_SERVER[ 'APP_DEBUG' ] );
$request = Request::createFromGlobals();
$response = $kernel->handle( $request );
$response->send();
$kernel->terminate( $request, $response );

View File

@ -1,22 +1,22 @@
<?php
namespace App\Entity;
namespace App\Entity;
use App\Traits\RandomTrait;
use App\Traits\TimeStampableTrait;
use DateTime;
use DateTimeInterface;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\Common\Collections\Collection;
use Doctrine\ORM\Mapping as ORM;
use ErrorException;
use JMS\Serializer\Annotation as Serializer;
use App\Traits\RandomTrait;
use App\Traits\TimeStampableTrait;
use DateTime;
use DateTimeInterface;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\Common\Collections\Collection;
use Doctrine\ORM\Mapping as ORM;
use ErrorException;
use JMS\Serializer\Annotation as Serializer;
/**
/**
* @ORM\Entity(repositoryClass="App\Repository\PollRepository")
* @Serializer\ExclusionPolicy("all")
*/
class Poll {
class Poll {
use RandomTrait;
@ -251,12 +251,13 @@ class Poll {
}
return [
$resp = [
'title' => $this->getTitle(),
'description' => $this->getDescription(),
'created_at' => $this->getCreatedAt()->format( 'c' ),
'expiracy_date' => $this->getExpiracyDate()->format( 'c' ),
'votes_max' => $this->getVotesMax(),
'custom_url' => $this->getCustomUrl(),
'choices_max' => $this->getChoicesMax(),
'kind' => $this->getKind(),
'allowed_answers' => $this->getAllowedAnswers(),
@ -274,6 +275,9 @@ class Poll {
'stacks' => $displayedStackOfVotes,
'comments' => $displayedComments,
];
return $resp;
}
public function computeAnswers() {
@ -698,4 +702,4 @@ class Poll {
return $this;
}
}
}