reformat src folder

This commit is contained in:
Tykayn 2021-04-27 10:22:16 +02:00 committed by tykayn
parent 56c8b0a5c4
commit 7f7265c851
27 changed files with 1179 additions and 1203 deletions

View File

@ -2,14 +2,9 @@
namespace App\Controller; namespace App\Controller;
use App\Entity\Owner;
use App\Entity\Poll; use App\Entity\Poll;
use App\Repository\PollRepository;
use App\Service\MailService;
use FOS\RestBundle\Controller\Annotations\Get; use FOS\RestBundle\Controller\Annotations\Get;
use FOS\RestBundle\Controller\Annotations\Route; use FOS\RestBundle\Controller\Annotations\Route;
use JMS\Serializer\Type\Exception\Exception;
use Symfony\Component\HttpFoundation\JsonResponse;
use Symfony\Component\Mailer\Exception\TransportExceptionInterface; use Symfony\Component\Mailer\Exception\TransportExceptionInterface;
/** /**

View File

@ -5,8 +5,10 @@ namespace App\Controller;
use App\Entity\Owner; use App\Entity\Owner;
use App\Entity\Poll; use App\Entity\Poll;
use JMS\Serializer\Type\Exception\Exception; use JMS\Serializer\Type\Exception\Exception;
use Swift_Mailer;
use Swift_Message; use Swift_Message;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController; use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\Mailer\Exception\TransportExceptionInterface;
/** /**
* sending emails controller * sending emails controller
@ -18,16 +20,37 @@ class EmailsController extends AbstractController {
private $mail_service; private $mail_service;
public function __construct( \Swift_Mailer $mailer ) { public function __construct( Swift_Mailer $mailer ) {
$this->mail_service = $mailer; $this->mail_service = $mailer;
} }
/**
* send created polls to an owner
*
* @param Owner $owner
*
* @return int|void
* @throws Exception
* @throws TransportExceptionInterface
*/
public function sendOwnerPollsAction( Owner $owner ) {
$config = [
'owner' => $owner,
'title' => $this->getParameter( 'WEBSITE_NAME' ) . ' | Mes sondages',
'email_template' => 'emails/owner-list.html.twig',
];
$this->sendMailWithVars( $config );
return 1;
}
/** /**
* generic way to send email with html template * generic way to send email with html template
* *
* @param $config * @param $config
* *
* @throws \Symfony\Component\Mailer\Exception\TransportExceptionInterface * @throws TransportExceptionInterface
*/ */
public function sendMailWithVars( $config ) { public function sendMailWithVars( $config ) {
@ -72,33 +95,11 @@ class EmailsController extends AbstractController {
} }
/**
* send created polls to an owner
*
* @param Owner $owner
*
* @return int|void
* @throws Exception
* @throws \Symfony\Component\Mailer\Exception\TransportExceptionInterface
*/
public function sendOwnerPollsAction( Owner $owner ) {
$config = [
'owner' => $owner,
'title' => $this->getParameter( 'WEBSITE_NAME' ) . ' | Mes sondages',
'email_template' => 'emails/owner-list.html.twig',
];
$this->sendMailWithVars( $config );
return 1;
}
/** /**
* @param Owner $foundOwner * @param Owner $foundOwner
* @param Poll|null $poll * @param Poll|null $poll
* *
* @throws \Symfony\Component\Mailer\Exception\TransportExceptionInterface * @throws TransportExceptionInterface
*/ */
public function sendCreationMailAction( Owner $foundOwner, Poll $poll = null ) { public function sendCreationMailAction( Owner $foundOwner, Poll $poll = null ) {
@ -120,7 +121,7 @@ class EmailsController extends AbstractController {
* @param $comment * @param $comment
* *
* @return int * @return int
* @throws \Symfony\Component\Mailer\Exception\TransportExceptionInterface * @throws TransportExceptionInterface
*/ */
public function sendCommentNotificationAction( Owner $owner, $comment ) { public function sendCommentNotificationAction( Owner $owner, $comment ) {
@ -141,7 +142,7 @@ class EmailsController extends AbstractController {
* @param $stackOfVotes * @param $stackOfVotes
* *
* @return int * @return int
* @throws \Symfony\Component\Mailer\Exception\TransportExceptionInterface * @throws TransportExceptionInterface
*/ */
public function sendVoteNotificationAction( Owner $owner, $stackOfVotes ) { public function sendVoteNotificationAction( Owner $owner, $stackOfVotes ) {

View File

@ -1,20 +1,19 @@
<?php <?php
namespace App\Controller; namespace App\Controller;
//use FOS\RestBundle\Controller\Annotations\Get; //use FOS\RestBundle\Controller\Annotations\Get;
//use FOS\RestBundle\Controller\Annotations\Route; //use FOS\RestBundle\Controller\Annotations\Route;
use App\Entity\Choice; use App\Entity\Choice;
use App\Entity\Comment; use App\Entity\Comment;
use App\Entity\StackOfVotes;
use App\Entity\Vote;
use App\Repository\PollRepository;
use App\Service\MailService;
use FOS\RestBundle\Controller\Annotations\Get;
use FOS\RestBundle\Controller\Annotations\Route;
use JMS\Serializer\Type\Exception\Exception;
use Symfony\Component\HttpFoundation\JsonResponse;
use App\Entity\Owner; use App\Entity\Owner;
use App\Entity\Poll; use App\Entity\Poll;
use App\Entity\StackOfVotes;
use App\Entity\Vote;
use FOS\RestBundle\Controller\Annotations\Get;
use FOS\RestBundle\Controller\Annotations\Route;
use PDO;
use Symfony\Component\HttpFoundation\JsonResponse;
/** /**
* Class DefaultController * Class DefaultController
@ -34,7 +33,7 @@ class MigrationController extends EmailsController {
return new JsonResponse( [ return new JsonResponse( [
'error' => 'NOPE! veuillez vérifier votre fichier .env', 'error' => 'NOPE! veuillez vérifier votre fichier .env',
] ); ] );
}; }
// fetch old Database // fetch old Database
@ -45,13 +44,13 @@ class MigrationController extends EmailsController {
$pollsBySlug = []; $pollsBySlug = [];
$pdo_options[ \PDO::ATTR_ERRMODE ] = \PDO::ERRMODE_EXCEPTION; $pdo_options[ PDO::ATTR_ERRMODE ] = PDO::ERRMODE_EXCEPTION;
$bdd = new \PDO( 'mysql:host=localhost;dbname=' . $this->getParameter( 'OLD_DATABASE_NAME' ), $bdd = new PDO( 'mysql:host=localhost;dbname=' . $this->getParameter( 'OLD_DATABASE_NAME' ),
$this->getParameter( 'OLD_DATABASE_USER' ), $this->getParameter( 'OLD_DATABASE_USER' ),
$this->getParameter( 'OLD_DATABASE_PASS' ), $this->getParameter( 'OLD_DATABASE_PASS' ),
$pdo_options ); $pdo_options );
$res_polls = $bdd->query( 'SELECT * FROM fd_poll' ); $res_polls = $bdd->query( 'SELECT * FROM fd_poll' );
while ( $d = $res_polls->fetch( \PDO::FETCH_OBJ ) ) { while ( $d = $res_polls->fetch( PDO::FETCH_OBJ ) ) {
$debug .= " <br> ajout de sondage : " . $d->title . ' - ' . $d->id; $debug .= " <br> ajout de sondage : " . $d->title . ' - ' . $d->id;
@ -88,7 +87,7 @@ class MigrationController extends EmailsController {
$pollChoicesOrderedBySlug = []; $pollChoicesOrderedBySlug = [];
$choicesCreated = []; $choicesCreated = [];
while ( $d = $res_slots->fetch( \PDO::FETCH_OBJ ) ) { while ( $d = $res_slots->fetch( PDO::FETCH_OBJ ) ) {
$debug .= " <br> ajout de slot, converti en choix de réponse : " . $d->poll_id . ' : ' . $d->moments; $debug .= " <br> ajout de slot, converti en choix de réponse : " . $d->poll_id . ' : ' . $d->moments;
@ -115,7 +114,7 @@ class MigrationController extends EmailsController {
// get votes // get votes
$stacksOfVote = []; $stacksOfVote = [];
$res_votes = $bdd->query( 'SELECT * FROM fd_vote' ); $res_votes = $bdd->query( 'SELECT * FROM fd_vote' );
while ( $d = $res_votes->fetch( \PDO::FETCH_OBJ ) ) { while ( $d = $res_votes->fetch( PDO::FETCH_OBJ ) ) {
$debug .= " <br> ajout de stack de vote : " . $d->name; $debug .= " <br> ajout de stack de vote : " . $d->name;
$pollSlug = $d->poll_id; $pollSlug = $d->poll_id;
@ -126,13 +125,11 @@ class MigrationController extends EmailsController {
$newOwner $newOwner
->setPseudo( $d->name ) ->setPseudo( $d->name )
->setEmail( 'the_anonymous_email_from_@_migration_offramadate.org' ) ->setEmail( 'the_anonymous_email_from_@_migration_offramadate.org' )
->setModifierToken($d->uniqId) ->setModifierToken( $d->uniqId );
;
$newStack->setPoll( $poll ) $newStack->setPoll( $poll )
->setOwner( $newOwner ) ->setOwner( $newOwner )
->setPseudo($d->name) ->setPseudo( $d->name );
;
// each choice answer is encoded in a value : // each choice answer is encoded in a value :
@ -150,8 +147,7 @@ class MigrationController extends EmailsController {
->setChoice( $choice ) ->setChoice( $choice )
->setStacksOfVotes( $newStack ) ->setStacksOfVotes( $newStack )
->setPoll( $poll ) ->setPoll( $poll )
->setValue( $this->mapAnswerNumberToWord($vote_code)) ->setValue( $this->mapAnswerNumberToWord( $vote_code ) );
;
$newStack->addVote( $newVote ); $newStack->addVote( $newVote );
$em->persist( $newVote ); $em->persist( $newVote );
@ -169,7 +165,7 @@ class MigrationController extends EmailsController {
$comments = []; $comments = [];
$res_comments = $bdd->query( 'SELECT * FROM fd_comment' ); $res_comments = $bdd->query( 'SELECT * FROM fd_comment' );
while ( $d = $res_comments->fetch( \PDO::FETCH_OBJ ) ) { while ( $d = $res_comments->fetch( PDO::FETCH_OBJ ) ) {
$debug .= " <br> ajout de commentaire : " . $d->name . ' ' . $d->comment; $debug .= " <br> ajout de commentaire : " . $d->name . ' ' . $d->comment;
@ -194,7 +190,8 @@ class MigrationController extends EmailsController {
// failure notice // failure notice
$debug .= " <br> <br> ça c'est fait. "; $debug .= " <br> <br> ça c'est fait. ";
return $this->render('pages/migration.html.twig' , [ return $this->render( 'pages/migration.html.twig',
[
"message" => "welcome to the framadate migration endpoint, it has yet to be done", "message" => "welcome to the framadate migration endpoint, it has yet to be done",
"debug" => $debug, "debug" => $debug,
"OLD_DATABASE_NAME" => $this->getParameter( 'OLD_DATABASE_NAME' ), "OLD_DATABASE_NAME" => $this->getParameter( 'OLD_DATABASE_NAME' ),
@ -205,13 +202,15 @@ class MigrationController extends EmailsController {
'choices' => count( $choicesCreated ), 'choices' => count( $choicesCreated ),
'stacks_of_votes' => count( $stacksOfVote ), 'stacks_of_votes' => count( $stacksOfVote ),
'votes' => count( $votes ), 'votes' => count( $votes ),
] ],
] ); ] );
} }
/** /**
* @param $numberToConvert * @param $numberToConvert
* conversion of answer: * conversion of answer:
* space character : no answer, 0 : no , 1 : maybe , 2 : yes * space character : no answer, 0 : no , 1 : maybe , 2 : yes
*
* @return string * @return string
*/ */
public function mapAnswerNumberToWord( $numberToConvert ) { public function mapAnswerNumberToWord( $numberToConvert ) {
@ -229,6 +228,7 @@ class MigrationController extends EmailsController {
default: default:
$word = 'no'; $word = 'no';
} }
return $word; return $word;
} }

View File

@ -9,25 +9,24 @@ use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route; use Symfony\Component\Routing\Annotation\Route;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\ParamConverter;
/** /**
* @Route("/poll") * @Route("/poll")
*/ */
class PollController extends AbstractController class PollController extends AbstractController {
{
/** /**
* @Route("/", name="poll_index", methods={"GET"}) * @Route("/", name="poll_index", methods={"GET"})
*/ */
public function index(PollRepository $pollRepository): Response public function index( PollRepository $pollRepository ): Response {
{
$polls = $pollRepository->findAll(); $polls = $pollRepository->findAll();
$titles = []; $titles = [];
foreach ( $polls as $poll ) { foreach ( $polls as $poll ) {
$titles[] = $poll->getTitle(); $titles[] = $poll->getTitle();
} }
return $this->render('poll/index.html.twig', [
return $this->render( 'poll/index.html.twig',
[
'count' => count( $polls ), 'count' => count( $polls ),
'titles' => $titles, 'titles' => $titles,
'polls' => $polls, 'polls' => $polls,
@ -37,8 +36,7 @@ class PollController extends AbstractController
/** /**
* @Route("/new", name="poll_new", methods={"GET","POST"}) * @Route("/new", name="poll_new", methods={"GET","POST"})
*/ */
public function new(Request $request): Response public function new( Request $request ): Response {
{
$poll = new Poll(); $poll = new Poll();
$form = $this->createForm( PollType::class, $poll ); $form = $this->createForm( PollType::class, $poll );
$form->handleRequest( $request ); $form->handleRequest( $request );
@ -51,7 +49,8 @@ class PollController extends AbstractController
return $this->redirectToRoute( 'poll_index' ); return $this->redirectToRoute( 'poll_index' );
} }
return $this->render('poll/new.html.twig', [ return $this->render( 'poll/new.html.twig',
[
'poll' => $poll, 'poll' => $poll,
'form' => $form->createView(), 'form' => $form->createView(),
] ); ] );
@ -61,17 +60,18 @@ class PollController extends AbstractController
* on cherche un sondage par son url personnalisée * on cherche un sondage par son url personnalisée
* @Route("/{id}", name="poll_show", methods={"GET"}) * @Route("/{id}", name="poll_show", methods={"GET"})
*/ */
public function show($id): Response public function show( $id ): Response {
{
$repository = $this->getDoctrine()->getRepository( Poll::class ); $repository = $this->getDoctrine()->getRepository( Poll::class );
$foundPoll = $repository->findOneByCustomUrl( $id ); $foundPoll = $repository->findOneByCustomUrl( $id );
if ( ! $foundPoll ) { if ( ! $foundPoll ) {
return $this->json( [ return $this->json( [
'message' => $id.' : not found' 'message' => $id . ' : not found',
], 404); ],
404 );
} }
return $this->render('poll/show.html.twig', [ return $this->render( 'poll/show.html.twig',
[
'poll' => $foundPoll, 'poll' => $foundPoll,
] ); ] );
} }
@ -79,8 +79,7 @@ class PollController extends AbstractController
/** /**
* @Route("/{id}/edit", name="poll_edit", methods={"GET","POST"}) * @Route("/{id}/edit", name="poll_edit", methods={"GET","POST"})
*/ */
public function edit(Request $request, Poll $poll): Response public function edit( Request $request, Poll $poll ): Response {
{
$form = $this->createForm( PollType::class, $poll ); $form = $this->createForm( PollType::class, $poll );
$form->handleRequest( $request ); $form->handleRequest( $request );
@ -90,7 +89,8 @@ class PollController extends AbstractController
return $this->redirectToRoute( 'poll_index' ); return $this->redirectToRoute( 'poll_index' );
} }
return $this->render('poll/edit.html.twig', [ return $this->render( 'poll/edit.html.twig',
[
'poll' => $poll, 'poll' => $poll,
'form' => $form->createView(), 'form' => $form->createView(),
] ); ] );
@ -99,8 +99,7 @@ class PollController extends AbstractController
/** /**
* @Route("/{id}", name="poll_delete", methods={"DELETE"}) * @Route("/{id}", name="poll_delete", methods={"DELETE"})
*/ */
public function delete(Request $request, Poll $poll): Response public function delete( Request $request, Poll $poll ): Response {
{
if ( $this->isCsrfTokenValid( 'delete' . $poll->getId(), $request->request->get( '_token' ) ) ) { if ( $this->isCsrfTokenValid( 'delete' . $poll->getId(), $request->request->get( '_token' ) ) ) {
$entityManager = $this->getDoctrine()->getManager(); $entityManager = $this->getDoctrine()->getManager();
$entityManager->remove( $poll ); $entityManager->remove( $poll );

View File

@ -38,7 +38,9 @@ class CommentController extends EmailsController {
) { ) {
$jsonResponse = $serializer->serialize( [ $jsonResponse = $serializer->serialize( [
'message' => 'here are your comments of the poll', 'message' => 'here are your comments of the poll',
'data' => $poll->getComments()], 'json'); 'data' => $poll->getComments(),
],
'json' );
$response = new Response( $jsonResponse ); $response = new Response( $jsonResponse );
$response->headers->set( 'Content-Type', 'application/json' ); $response->headers->set( 'Content-Type', 'application/json' );

View File

@ -7,6 +7,11 @@ use App\Entity\Choice;
use App\Entity\Owner; use App\Entity\Owner;
use App\Entity\Poll; use App\Entity\Poll;
use App\Repository\PollRepository; use App\Repository\PollRepository;
use FOS\RestBundle\Controller\Annotations\Delete;
use FOS\RestBundle\Controller\Annotations\Get;
use FOS\RestBundle\Controller\Annotations\Post;
use FOS\RestBundle\Controller\Annotations\Put;
use FOS\RestBundle\Controller\Annotations\Route;
use JMS\Serializer\Exception\RuntimeException; use JMS\Serializer\Exception\RuntimeException;
use JMS\Serializer\SerializerBuilder; use JMS\Serializer\SerializerBuilder;
use JMS\Serializer\SerializerInterface; use JMS\Serializer\SerializerInterface;
@ -14,13 +19,6 @@ use Swift_Mailer;
use Symfony\Component\HttpFoundation\JsonResponse; use Symfony\Component\HttpFoundation\JsonResponse;
use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpFoundation\Response;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\ParamConverter;
use FOS\RestBundle\Controller\Annotations\Get;
use FOS\RestBundle\Controller\Annotations\Put;
use FOS\RestBundle\Controller\Annotations\Delete;
use FOS\RestBundle\Controller\Annotations\Post;
use FOS\RestBundle\Controller\Annotations\Route;
/** /**
* Class DefaultController * Class DefaultController
@ -63,19 +61,6 @@ class PollController extends EmailsController {
} }
/**
* @param $id
* message when the poll is not found
*
* @return JsonResponse
*/
public function notFoundPoll( $id ): Response {
return $this->json( [
'message' => $id . ' : poll not found',
],
404 );
}
/** /**
* get a poll config by its custom URL, we do not want polls to be reachable by their numeric id * get a poll config by its custom URL, we do not want polls to be reachable by their numeric id
* @Get( * @Get(
@ -104,7 +89,6 @@ class PollController extends EmailsController {
$stacks = $poll->getStacksOfVotes(); $stacks = $poll->getStacksOfVotes();
$pass = $poll->getPassword(); $pass = $poll->getPassword();
@ -125,6 +109,19 @@ class PollController extends EmailsController {
} }
/**
* @param $id
* message when the poll is not found
*
* @return JsonResponse
*/
public function notFoundPoll( $id ): Response {
return $this->json( [
'message' => $id . ' : poll not found',
],
404 );
}
/** /**
* get a poll config by its custom URL, we do not want polls to be reachable by their numeric id * get a poll config by its custom URL, we do not want polls to be reachable by their numeric id
* @Get( * @Get(

View File

@ -31,6 +31,7 @@ class VoteController extends EmailsController {
* name = "new_vote_stack", * name = "new_vote_stack",
* requirements = {"content"="\w+", "poll_id"="\d+"} * requirements = {"content"="\w+", "poll_id"="\d+"}
* ) * )
*
* @param SerializerInterface $serializer * @param SerializerInterface $serializer
* @param Poll $poll * @param Poll $poll
* @param Request $request * @param Request $request
@ -139,6 +140,7 @@ class VoteController extends EmailsController {
* name = "update_vote_stack", * name = "update_vote_stack",
* requirements = { "id"="\d+"} * requirements = { "id"="\d+"}
* ) * )
*
* @param SerializerInterface $serializer * @param SerializerInterface $serializer
* @param StackOfVotes $id * @param StackOfVotes $id
* @param $modifierToken * @param $modifierToken
@ -175,7 +177,8 @@ class VoteController extends EmailsController {
'message' => 'ok', 'message' => 'ok',
'modifier_token' => $voteStack->getOwner()->getModifierToken(), 'modifier_token' => $voteStack->getOwner()->getModifierToken(),
'vote_stack' => $voteStack, 'vote_stack' => $voteStack,
], 'json'); ],
'json' );
$response = new Response( $jsonResponse ); $response = new Response( $jsonResponse );
$response->headers->set( 'Content-Type', 'application/json' ); $response->headers->set( 'Content-Type', 'application/json' );
@ -207,11 +210,13 @@ class VoteController extends EmailsController {
return $this->json( [ return $this->json( [
'message' => 'boom! les ' . $length . ' votes du sondage ont été supprimés', 'message' => 'boom! les ' . $length . ' votes du sondage ont été supprimés',
],200 ); ],
200 );
} else { } else {
return $this->json( [ return $this->json( [
'message' => 'le token d\'autorisation est invalide, vous ne pouvez pas modifier ce sondage' 'message' => 'le token d\'autorisation est invalide, vous ne pouvez pas modifier ce sondage',
],403 ); ],
403 );
} }
} }
} }

View File

@ -6,10 +6,8 @@ use Doctrine\Bundle\FixturesBundle\Fixture;
use Doctrine\Persistence\ObjectManager; use Doctrine\Persistence\ObjectManager;
class AppFixtures extends Fixture class AppFixtures extends Fixture {
{ public function load( ObjectManager $manager ) {
public function load(ObjectManager $manager)
{
// $product = new Product(); // $product = new Product();
// $manager->persist($product); // $manager->persist($product);

View File

@ -3,7 +3,6 @@
namespace App\DataFixtures; namespace App\DataFixtures;
use App\Entity\Owner; use App\Entity\Owner;
use App\Entity\Poll;
use App\Entity\StackOfVotes; use App\Entity\StackOfVotes;
use App\Entity\Vote; use App\Entity\Vote;
use Doctrine\Bundle\FixturesBundle\Fixture; use Doctrine\Bundle\FixturesBundle\Fixture;
@ -11,8 +10,7 @@ use Doctrine\Common\DataFixtures\DependentFixtureInterface;
use Doctrine\Persistence\ObjectManager; use Doctrine\Persistence\ObjectManager;
class VotesStacksFixtures extends Fixture implements DependentFixtureInterface { class VotesStacksFixtures extends Fixture implements DependentFixtureInterface {
public function getDependencies() public function getDependencies() {
{
return [ return [
AppPollFixtures::class, AppPollFixtures::class,
]; ];

View File

@ -95,6 +95,16 @@
return $this; return $this;
} }
public function getUrl(): ?string {
return $this->url;
}
public function setUrl( ?string $url ): self {
$this->url = $url;
return $this;
}
public function getPoll(): ?Poll { public function getPoll(): ?Poll {
return $this->poll; return $this->poll;
} }
@ -132,14 +142,4 @@
return $this; return $this;
} }
public function getUrl(): ?string {
return $this->url;
}
public function setUrl( ?string $url ): self {
$this->url = $url;
return $this;
}
} }

View File

@ -2,6 +2,7 @@
namespace App\Entity; namespace App\Entity;
use DateTime;
use DateTimeInterface; use DateTimeInterface;
use Doctrine\ORM\Mapping as ORM; use Doctrine\ORM\Mapping as ORM;
use JMS\Serializer\Annotation as Serializer; use JMS\Serializer\Annotation as Serializer;
@ -51,6 +52,10 @@ class Comment {
*/ */
private $poll; private $poll;
function __construct() {
$this->setCreatedAt( new DateTime() );
}
function display() { function display() {
return [ return [
'id' => $this->getId(), 'id' => $this->getId(),
@ -60,24 +65,10 @@ class Comment {
]; ];
} }
function __construct() {
$this->setCreatedAt( new \DateTime() );
}
public function getId(): ?int { public function getId(): ?int {
return $this->id; return $this->id;
} }
public function getOwner(): ?Owner {
return $this->owner;
}
public function setOwner( ?Owner $owner ): self {
$this->owner = $owner;
return $this;
}
public function getText(): ?string { public function getText(): ?string {
return $this->text; return $this->text;
} }
@ -88,6 +79,16 @@ class Comment {
return $this; return $this;
} }
public function getOwner(): ?Owner {
return $this->owner;
}
public function setOwner( ?Owner $owner ): self {
$this->owner = $owner;
return $this;
}
public function getCreatedAt(): ?DateTimeInterface { public function getCreatedAt(): ?DateTimeInterface {
return $this->createdAt; return $this->createdAt;
} }
@ -108,13 +109,11 @@ class Comment {
return $this; return $this;
} }
public function getPseudo(): ?string public function getPseudo(): ?string {
{
return $this->pseudo; return $this->pseudo;
} }
public function setPseudo(string $pseudo): self public function setPseudo( string $pseudo ): self {
{
$this->pseudo = $pseudo; $this->pseudo = $pseudo;
return $this; return $this;

View File

@ -2,6 +2,8 @@
namespace App\Entity; namespace App\Entity;
use DateTime;
use DateTimeInterface;
use Doctrine\Common\Collections\ArrayCollection; use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\Common\Collections\Collection; use Doctrine\Common\Collections\Collection;
use Doctrine\ORM\Mapping as ORM; use Doctrine\ORM\Mapping as ORM;
@ -17,18 +19,18 @@ class Owner {
* @Serializer\Expose() * @Serializer\Expose()
*/ */
public $pseudo; public $pseudo;
/**
* @ORM\Id()
* @ORM\GeneratedValue()
* @ORM\Column(type="integer")
*/
private $id;
/** /**
* @ORM\Column(type="string", length=255) * @ORM\Column(type="string", length=255)
* @Serializer\Type("string") * @Serializer\Type("string")
* @Serializer\Expose() * @Serializer\Expose()
*/ */
public $email; public $email;
/**
* @ORM\Id()
* @ORM\GeneratedValue()
* @ORM\Column(type="integer")
*/
private $id;
/** /**
* @ORM\OneToMany(targetEntity="App\Entity\Poll", mappedBy="owner",cascade={"persist","remove"},orphanRemoval=true) * @ORM\OneToMany(targetEntity="App\Entity\Poll", mappedBy="owner",cascade={"persist","remove"},orphanRemoval=true)
* @Serializer\Type("App\Entity\Poll") * @Serializer\Type("App\Entity\Poll")
@ -62,7 +64,7 @@ class Owner {
$this->polls = new ArrayCollection(); $this->polls = new ArrayCollection();
$this->comments = new ArrayCollection(); $this->comments = new ArrayCollection();
$this->stackOfVotes = new ArrayCollection(); $this->stackOfVotes = new ArrayCollection();
$this->setCreatedAt( new \DateTime() ); $this->setCreatedAt( new DateTime() );
$this->setModifierToken( uniqid() ); $this->setModifierToken( uniqid() );
} }
@ -206,11 +208,11 @@ class Owner {
return $this; return $this;
} }
public function getCreatedAt(): ?\DateTimeInterface { public function getCreatedAt(): ?DateTimeInterface {
return $this->createdAt; return $this->createdAt;
} }
public function setCreatedAt( \DateTimeInterface $createdAt ): self { public function setCreatedAt( DateTimeInterface $createdAt ): self {
$this->createdAt = $createdAt; $this->createdAt = $createdAt;
return $this; return $this;

View File

@ -2,11 +2,14 @@
namespace App\Entity; namespace App\Entity;
use DateTime;
use DateTimeInterface; use DateTimeInterface;
use Doctrine\Common\Collections\ArrayCollection; use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\Common\Collections\Collection; use Doctrine\Common\Collections\Collection;
use Doctrine\ORM\Mapping as ORM; use Doctrine\ORM\Mapping as ORM;
use ErrorException;
use JMS\Serializer\Annotation as Serializer; use JMS\Serializer\Annotation as Serializer;
use RangeException;
/** /**
* @ORM\Entity(repositoryClass="App\Repository\PollRepository") * @ORM\Entity(repositoryClass="App\Repository\PollRepository")
@ -168,6 +171,12 @@ class Poll {
* @Serializer\Type("ArrayCollection<App\Entity\Comment>") * @Serializer\Type("ArrayCollection<App\Entity\Comment>")
*/ */
public $comments; public $comments;
/**
* number of days from now for default expiracy date
* @var int
* @Serializer\Expose()
*/
public $defaultExpiracyDaysFromNow = 60;
/** /**
* vote restricted by a password in md5 format * vote restricted by a password in md5 format
* @ORM\Column(type="string", length=255, nullable=true) * @ORM\Column(type="string", length=255, nullable=true)
@ -179,14 +188,122 @@ class Poll {
* @Serializer\Type("string") * @Serializer\Type("string")
*/ */
private $adminKey; private $adminKey;
private $maxChoicesLimit = 25;
public function __construct() {
$this->initiate();
}
private function initiate() {
$this->votes = new ArrayCollection();
$this->stacksOfVotes = new ArrayCollection();
$this->choices = new ArrayCollection();
$this->comments = new ArrayCollection();
$this->setAdminKey( $this->generateAdminKey() );
$this->setCreationDate( new DateTime() );
$this->setExpiracyDate( $this->addDaysToDate(
new DateTime(),
$this->defaultExpiracyDaysFromNow
) );
$this->setAllowedAnswers( [ 'yes', 'maybe', 'no' ] );
}
public function generateAdminKey() {
$rand = random_int( PHP_INT_MIN, PHP_INT_MAX );
return str_shuffle( md5( $rand ) . $rand . $this->random_str() );
}
/** /**
* number of days from now for default expiracy date * Generate a random string, using a cryptographically secure
* @var int * pseudorandom number generator (random_int)
* @Serializer\Expose() *
* This function uses type hints now (PHP 7+ only), but it was originally
* written for PHP 5 as well.
*
* For PHP 7, random_int is a PHP core function
* For PHP 5.x, depends on https://github.com/paragonie/random_compat
*
* @param int $length How many characters do we want?
* @param string $keyspace A string of all possible characters
* to select from
*
* @return string
*/ */
public $defaultExpiracyDaysFromNow = 60; public function random_str(
private $maxChoicesLimit = 25; int $length = 64,
string $keyspace = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'
): string {
if ( $length < 1 ) {
throw new RangeException( "Length must be a positive integer" );
}
$pieces = [];
$max = mb_strlen( $keyspace, '8bit' ) - 1;
for ( $i = 0 ; $i < $length ; ++ $i ) {
$pieces [] = $keyspace[ random_int( 0, $max ) ];
}
return implode( '', $pieces );
}
public function addDaysToDate( DateTime $date, int $days ) {
$st = strtotime( $date->getTimestamp() );
return new DateTime( $st );
}
public function displayForAdmin() {
$content = $this->display();
$content[ 'owner_modifier_token' ] = $this->getOwner()->getModifierToken();
$content[ 'admin_key' ] = $this->getAdminKey();
$content[ 'password_hash' ] = $this->getPassword();
$content[ 'id' ] = $this->getId();
return $content;
}
public function display() {
$computedAnswers = $this->computeAnswers();
$displayedStackOfVotes = [];
foreach ( $this->getStacksOfVotes() as $stack ) {
$displayedStackOfVotes[] = $stack->display();
}
$displayedChoices = [];
foreach ( $this->getChoices() as $choice ) {
$displayedChoices[] = $choice->display();
}
$displayedComments = [];
foreach ( $this->getComments() as $comment ) {
$displayedComments[] = $comment->display();
}
return [
'title' => $this->getTitle(),
'creation_date' => $this->getCreationDate()->format( 'c' ),
'expiracy_date' => $this->getExpiracyDate()->format( 'c' ),
'votes_max' => $this->getVotesMax(),
'choices_max' => $this->getChoicesMax(),
'kind' => $this->getKind(),
'allowed_answers' => $this->getAllowedAnswers(),
'votes_allowed' => $this->getVotesAllowed(),
'modification_policy' => $this->getModificationPolicy(),
'hide_results' => $this->getHideResults(),
'show_results_even_if_password' => $this->getShowResultEvenIfPasswords(),
'owner' => [
'pseudo' => $this->getOwner()->getPseudo(),
]
,
'password_protected' => $this->getPassword() ? 'yes' : 'no',
'max_score' => $computedAnswers[ 'max_score' ],
'choices' => $displayedChoices,
'choices_stats' => $computedAnswers[ 'answersWithStats' ],
'stacks' => $displayedStackOfVotes,
'comments' => $displayedComments,
];
}
public function computeAnswers() { public function computeAnswers() {
// counts each number of answer for this choice // counts each number of answer for this choice
@ -237,6 +354,7 @@ class Poll {
foreach ( $computedArray as $choice_stat ) { foreach ( $computedArray as $choice_stat ) {
$answersWithStats[] = $choice_stat; $answersWithStats[] = $choice_stat;
} }
return [ return [
'answers' => $computedArray, 'answers' => $computedArray,
'answersWithStats' => $answersWithStats, 'answersWithStats' => $answersWithStats,
@ -244,142 +362,28 @@ class Poll {
]; ];
} }
public function displayForAdmin() { public function getStacksOfVotes() {
$content = $this->display(); return $this->stacksOfVotes;
$content['owner_modifier_token'] = $this->getOwner()->getModifierToken();
$content['admin_key'] = $this->getAdminKey();
$content['password_hash'] = $this->getPassword();
$content['id'] = $this->getId();
return $content;
}
public function display() {
$computedAnswers = $this->computeAnswers();
$displayedStackOfVotes = [];
foreach ( $this->getStacksOfVotes() as $stack ) {
$displayedStackOfVotes[] = $stack->display();
}
$displayedChoices = [];
foreach ( $this->getChoices() as $choice ) {
$displayedChoices[] = $choice->display();
}
$displayedComments = [];
foreach ( $this->getComments() as $comment ) {
$displayedComments[] = $comment->display();
} }
public function setStacksOfVotes( ?StackOfVotes $stacksOfVotes ): self {
$this->stacksOfVotes = $stacksOfVotes;
return $this;
return [
'title' => $this->getTitle(),
'creation_date' => $this->getCreationDate()->format('c'),
'expiracy_date' => $this->getExpiracyDate()->format('c'),
'votes_max' => $this->getVotesMax(),
'choices_max' => $this->getChoicesMax(),
'kind' => $this->getKind(),
'allowed_answers' => $this->getAllowedAnswers(),
'votes_allowed' => $this->getVotesAllowed(),
'modification_policy' => $this->getModificationPolicy(),
'hide_results' => $this->getHideResults(),
'show_results_even_if_password' => $this->getShowResultEvenIfPasswords(),
'owner' => [
'pseudo' => $this->getOwner()->getPseudo()]
,
'password_protected' => $this->getPassword() ? 'yes' : 'no',
'max_score' => $computedAnswers['max_score'],
'choices' => $displayedChoices,
'choices_stats' => $computedAnswers['answersWithStats'],
'stacks' => $displayedStackOfVotes,
'comments' => $displayedComments,
];
}
public function __construct() {
$this->initiate();
}
private function initiate() {
$this->votes = new ArrayCollection();
$this->stacksOfVotes = new ArrayCollection();
$this->choices = new ArrayCollection();
$this->comments = new ArrayCollection();
$this->setAdminKey( $this->generateAdminKey() );
$this->setCreationDate( new \DateTime() );
$this->setExpiracyDate( $this->addDaysToDate(
new \DateTime(),
$this->defaultExpiracyDaysFromNow
) );
$this->setAllowedAnswers( [ 'yes', 'maybe', 'no' ] );
}
public function generateAdminKey() {
$rand = random_int( PHP_INT_MIN, PHP_INT_MAX );
return str_shuffle( md5( $rand ) . $rand . $this->random_str() );
} }
/** /**
* Generate a random string, using a cryptographically secure * @return Collection|Choice[]
* pseudorandom number generator (random_int)
*
* This function uses type hints now (PHP 7+ only), but it was originally
* written for PHP 5 as well.
*
* For PHP 7, random_int is a PHP core function
* For PHP 5.x, depends on https://github.com/paragonie/random_compat
*
* @param int $length How many characters do we want?
* @param string $keyspace A string of all possible characters
* to select from
*
* @return string
*/ */
public function random_str( public function getChoices(): Collection {
int $length = 64, return $this->choices;
string $keyspace = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'
): string {
if ( $length < 1 ) {
throw new \RangeException( "Length must be a positive integer" );
}
$pieces = [];
$max = mb_strlen( $keyspace, '8bit' ) - 1;
for ( $i = 0 ; $i < $length ; ++ $i ) {
$pieces [] = $keyspace[ random_int( 0, $max ) ];
} }
return implode( '', $pieces ); /**
} * @return Collection|Comment[]
*/
public function findChoiceById( int $id ) { public function getComments(): Collection {
return $this->comments;
$choices = $this->getChoices();
$counter = 0;
// there must be something cleaner than this in Doctrine ArrayCollection
foreach ( $choices as $choice ) {
$counter ++;
if ( $counter > $this->maxChoicesLimit ) {
throw new \ErrorException( "max number of choices reached for this poll" );
}
if ( $choice && $choice->getId() == $id ) {
return $choice;
}
}
return null;
}
public function addDaysToDate( \DateTime $date, int $days ) {
$st = strtotime( $date->getTimestamp() );
return new \DateTime( $st );
}
public function getId(): ?int {
return $this->id;
} }
public function getTitle(): ?string { public function getTitle(): ?string {
@ -402,46 +406,32 @@ class Poll {
return $this; return $this;
} }
public function getExpiracyDate(): ?DateTimeInterface {
return $this->expiracyDate;
}
public function setExpiracyDate( DateTimeInterface $expiracyDate ): self { public function setExpiracyDate( DateTimeInterface $expiracyDate ): self {
$this->expiracyDate = $expiracyDate; $this->expiracyDate = $expiracyDate;
return $this; return $this;
} }
public function getOwner(): ?Owner { public function getVotesMax() {
return $this->owner; return $this->votesMax;
} }
public function setOwner( ?Owner $owner ): self { public function setVotesMax( $votesMax ): self {
$this->owner = $owner; $this->votesMax = $votesMax;
return $this; return $this;
} }
/** public function getChoicesMax() {
* @return Collection|Vote[] return $this->choicesMax;
*/
public function getVotes(): Collection {
return $this->votes;
} }
public function setChoicesMax( $choicesMax ): self {
public function getAdminKey(): ?string { $this->choicesMax = $choicesMax;
return $this->adminKey;
}
public function setAdminKey( string $adminKey ): self {
$this->adminKey = $adminKey;
return $this;
}
public function getDescription(): ?string {
return $this->description;
}
public function setDescription( string $description ): self {
$this->description = $description;
return $this; return $this;
} }
@ -456,22 +446,22 @@ class Poll {
return $this; return $this;
} }
public function getCustomUrl(): ?string { public function getAllowedAnswers(): ?array {
return $this->customUrl; return $this->allowedAnswers;
} }
public function setCustomUrl( string $customUrl ): self { public function setAllowedAnswers( array $allowedAnswers ): self {
$this->customUrl = $customUrl; $this->allowedAnswers = $allowedAnswers;
return $this; return $this;
} }
public function getPassword(): ?string { public function getVotesAllowed(): ?bool {
return $this->password; return $this->votesAllowed;
} }
public function setPassword( string $password ): self { public function setVotesAllowed( ?bool $votesAllowed ): self {
$this->password = md5( $password ); $this->votesAllowed = $votesAllowed;
return $this; return $this;
} }
@ -486,26 +476,6 @@ class Poll {
return $this; return $this;
} }
public function getMailOnComment(): ?bool {
return $this->mailOnComment;
}
public function setMailOnComment( bool $mailOnComment ): self {
$this->mailOnComment = $mailOnComment;
return $this;
}
public function getMailOnVote(): ?bool {
return $this->mailOnVote;
}
public function setMailOnVote( bool $mailOnVote ): self {
$this->mailOnVote = $mailOnVote;
return $this;
}
public function getHideResults(): ?bool { public function getHideResults(): ?bool {
return $this->hideResults; return $this->hideResults;
} }
@ -526,12 +496,104 @@ class Poll {
return $this; return $this;
} }
public function getOwner(): ?Owner {
return $this->owner;
}
public function setOwner( ?Owner $owner ): self {
$this->owner = $owner;
return $this;
}
public function getPassword(): ?string {
return $this->password;
}
public function setPassword( string $password ): self {
$this->password = md5( $password );
return $this;
}
public function getAdminKey(): ?string {
return $this->adminKey;
}
public function setAdminKey( string $adminKey ): self {
$this->adminKey = $adminKey;
return $this;
}
public function getId(): ?int {
return $this->id;
}
public function findChoiceById( int $id ) {
$choices = $this->getChoices();
$counter = 0;
// there must be something cleaner than this in Doctrine ArrayCollection
foreach ( $choices as $choice ) {
$counter ++;
if ( $counter > $this->maxChoicesLimit ) {
throw new ErrorException( "max number of choices reached for this poll" );
}
if ( $choice && $choice->getId() == $id ) {
return $choice;
}
}
return null;
}
/** /**
* @return Collection|Comment[] * @return Collection|Vote[]
*/ */
public function getComments(): Collection { public function getVotes(): Collection {
return $this->comments; return $this->votes;
}
public function getDescription(): ?string {
return $this->description;
}
public function setDescription( string $description ): self {
$this->description = $description;
return $this;
}
public function getCustomUrl(): ?string {
return $this->customUrl;
}
public function setCustomUrl( string $customUrl ): self {
$this->customUrl = $customUrl;
return $this;
}
public function getMailOnComment(): ?bool {
return $this->mailOnComment;
}
public function setMailOnComment( bool $mailOnComment ): self {
$this->mailOnComment = $mailOnComment;
return $this;
}
public function getMailOnVote(): ?bool {
return $this->mailOnVote;
}
public function setMailOnVote( bool $mailOnVote ): self {
$this->mailOnVote = $mailOnVote;
return $this;
} }
public function addComment( Comment $comment ): self { public function addComment( Comment $comment ): self {
@ -555,17 +617,6 @@ class Poll {
return $this; return $this;
} }
public function getStacksOfVotes() {
return $this->stacksOfVotes;
}
public function setStacksOfVotes( ?StackOfVotes $stacksOfVotes ): self {
$this->stacksOfVotes = $stacksOfVotes;
return $this;
}
public function addStackOfVote( StackOfVotes $stackOfVote ): self { public function addStackOfVote( StackOfVotes $stackOfVote ): self {
if ( ! $this->stacksOfVotes->contains( $stackOfVote ) ) { if ( ! $this->stacksOfVotes->contains( $stackOfVote ) ) {
$this->stacksOfVotes[] = $stackOfVote; $this->stacksOfVotes[] = $stackOfVote;
@ -587,10 +638,6 @@ class Poll {
return $this; return $this;
} }
public function getExpiracyDate(): ?\DateTimeInterface {
return $this->expiracyDate;
}
public function addVote( Vote $vote ): self { public function addVote( Vote $vote ): self {
if ( ! $this->votes->contains( $vote ) ) { if ( ! $this->votes->contains( $vote ) ) {
$this->votes[] = $vote; $this->votes[] = $vote;
@ -612,13 +659,6 @@ class Poll {
return $this; return $this;
} }
/**
* @return Collection|Choice[]
*/
public function getChoices(): Collection {
return $this->choices;
}
public function addTextChoiceArray( array $choiceTextArray ): self { public function addTextChoiceArray( array $choiceTextArray ): self {
foreach ( $choiceTextArray as $text ) { foreach ( $choiceTextArray as $text ) {
$newChoice = new Choice(); $newChoice = new Choice();
@ -629,13 +669,17 @@ class Poll {
return $this; return $this;
} }
public function addChoice( Choice $choice ): self {
public function getAllowedAnswers(): ?array { if ( ! is_null( $this->choices ) ) {
return $this->allowedAnswers; if ( ! $this->choices->contains( $choice ) ) {
$this->choices[] = $choice;
$choice->setPoll( $this );
}
} else {
$this->choices[] = $choice;
$choice->setPoll( $this );
} }
public function setAllowedAnswers( array $allowedAnswers ): self {
$this->allowedAnswers = $allowedAnswers;
return $this; return $this;
} }
@ -661,21 +705,6 @@ class Poll {
return $this; return $this;
} }
public function addChoice( Choice $choice ): self {
if ( ! is_null( $this->choices ) ) {
if ( ! $this->choices->contains( $choice ) ) {
$this->choices[] = $choice;
$choice->setPoll( $this );
}
} else {
$this->choices[] = $choice;
$choice->setPoll( $this );
}
return $this;
}
public function removeChoice( Choice $choice ): self { public function removeChoice( Choice $choice ): self {
if ( $this->choices->contains( $choice ) ) { if ( $this->choices->contains( $choice ) ) {
$this->choices->removeElement( $choice ); $this->choices->removeElement( $choice );
@ -688,36 +717,6 @@ class Poll {
return $this; return $this;
} }
public function getVotesAllowed(): ?bool {
return $this->votesAllowed;
}
public function setVotesAllowed( ?bool $votesAllowed ): self {
$this->votesAllowed = $votesAllowed;
return $this;
}
public function getVotesMax() {
return $this->votesMax;
}
public function setVotesMax( $votesMax ): self {
$this->votesMax = $votesMax;
return $this;
}
public function getChoicesMax() {
return $this->choicesMax;
}
public function setChoicesMax( $choicesMax ): self {
$this->choicesMax = $choicesMax;
return $this;
}
public function getCommentsAllowed(): ?bool { public function getCommentsAllowed(): ?bool {
return $this->commentsAllowed; return $this->commentsAllowed;
} }

View File

@ -18,12 +18,6 @@ class StackOfVotes {
use TimeStampableTrait; use TimeStampableTrait;
/**
* @ORM\Id()
* @ORM\GeneratedValue()
* @ORM\Column(type="integer")
*/
private $id;
/** /**
* @ORM\Column(type="string", length=255) * @ORM\Column(type="string", length=255)
* @Serializer\Type("string") * @Serializer\Type("string")
@ -35,6 +29,12 @@ class StackOfVotes {
* @Serializer\Expose() * @Serializer\Expose()
*/ */
public $votes; public $votes;
/**
* @ORM\Id()
* @ORM\GeneratedValue()
* @ORM\Column(type="integer")
*/
private $id;
/** /**
* @ORM\ManyToOne(targetEntity="App\Entity\Poll", inversedBy="stacksOfVotes", cascade={"persist"}) * @ORM\ManyToOne(targetEntity="App\Entity\Poll", inversedBy="stacksOfVotes", cascade={"persist"})
*/ */
@ -46,6 +46,9 @@ class StackOfVotes {
*/ */
private $owner; private $owner;
public function __construct() {
$this->votes = new ArrayCollection();
}
public function display() { public function display() {
$votes = $this->getVotes(); $votes = $this->getVotes();
@ -72,6 +75,23 @@ class StackOfVotes {
return $tab; return $tab;
} }
/**
* @return Collection|poll[]
*/
public function getVotes(): Collection {
return $this->votes;
}
public function getPseudo(): ?string {
return $this->pseudo;
}
public function setPseudo( ?string $pseudo ): self {
$this->pseudo = $pseudo;
return $this;
}
/** /**
* @ORM\PrePersist * @ORM\PrePersist
*/ */
@ -79,21 +99,20 @@ class StackOfVotes {
$this->setPseudo( $this->getOwner()->getPseudo() ); $this->setPseudo( $this->getOwner()->getPseudo() );
} }
public function __construct() { public function getOwner(): ?Owner {
$this->votes = new ArrayCollection(); return $this->owner;
}
public function setOwner( ?Owner $owner ): self {
$this->owner = $owner;
return $this;
} }
public function getId(): ?int { public function getId(): ?int {
return $this->id; return $this->id;
} }
/**
* @return Collection|poll[]
*/
public function getVotes(): Collection {
return $this->votes;
}
public function addVote( Vote $vote ): self { public function addVote( Vote $vote ): self {
if ( ! $this->votes->contains( $vote ) ) { if ( ! $this->votes->contains( $vote ) ) {
$vote->setPoll( $this->getPoll() ); $vote->setPoll( $this->getPoll() );
@ -105,6 +124,16 @@ class StackOfVotes {
return $this; return $this;
} }
public function getPoll(): ?Poll {
return $this->poll;
}
public function setPoll( ?Poll $poll ): self {
$this->poll = $poll;
return $this;
}
public function removeVote( Vote $vote ): self { public function removeVote( Vote $vote ): self {
if ( $this->votes->contains( $vote ) ) { if ( $this->votes->contains( $vote ) ) {
$this->votes->removeElement( $vote ); $this->votes->removeElement( $vote );
@ -116,34 +145,4 @@ class StackOfVotes {
return $this; return $this;
} }
public function getPseudo(): ?string {
return $this->pseudo;
}
public function setPseudo( ?string $pseudo ): self {
$this->pseudo = $pseudo;
return $this;
}
public function getOwner(): ?Owner {
return $this->owner;
}
public function setOwner( ?Owner $owner ): self {
$this->owner = $owner;
return $this;
}
public function getPoll(): ?Poll {
return $this->poll;
}
public function setPoll( ?Poll $poll ): self {
$this->poll = $poll;
return $this;
}
} }

View File

@ -2,6 +2,7 @@
namespace App\Entity; namespace App\Entity;
use DateTime;
use DateTimeInterface; use DateTimeInterface;
use Doctrine\ORM\Mapping as ORM; use Doctrine\ORM\Mapping as ORM;
use JMS\Serializer\Annotation as Serializer; use JMS\Serializer\Annotation as Serializer;
@ -52,6 +53,10 @@ class Vote {
*/ */
private $stacksOfVotes; private $stacksOfVotes;
public function __construct() {
$this->setCreationDate( new DateTime() );
}
public function display() { public function display() {
$value = $this->getValue(); $value = $this->getValue();
if ( ! $value ) { if ( ! $value ) {
@ -67,27 +72,20 @@ class Vote {
} }
} }
public function __construct() { public function getValue(): ?string {
$this->setCreationDate( new \DateTime() ); return $this->value;
}
public function setValue( ?string $value ): self {
$this->value = $value;
return $this;
} }
public function getId(): ?int { public function getId(): ?int {
return $this->id; return $this->id;
} }
public function getPoll(): ?Poll {
return $this->poll;
}
public function setPoll( ?Poll $poll ): self {
$this->poll = $poll;
if ( $poll ) {
$poll->addVote( $this );
}
return $this;
}
public function getChoice(): ?Choice { public function getChoice(): ?Choice {
return $this->choice; return $this->choice;
} }
@ -98,12 +96,15 @@ class Vote {
return $this; return $this;
} }
public function getValue(): ?string { public function getPoll(): ?Poll {
return $this->value; return $this->poll;
} }
public function setValue( ?string $value ): self { public function setPoll( ?Poll $poll ): self {
$this->value = $value; $this->poll = $poll;
if ( $poll ) {
$poll->addVote( $this );
}
return $this; return $this;
} }

View File

@ -7,10 +7,8 @@ use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\FormBuilderInterface; use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\OptionsResolver\OptionsResolver; use Symfony\Component\OptionsResolver\OptionsResolver;
class PollType extends AbstractType class PollType extends AbstractType {
{ public function buildForm( FormBuilderInterface $builder, array $options ) {
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder $builder
->add( 'title' ) ->add( 'title' )
->add( 'customUrl' ) ->add( 'customUrl' )
@ -26,12 +24,10 @@ class PollType extends AbstractType
->add( 'showResultEvenIfPasswords' ) ->add( 'showResultEvenIfPasswords' )
->add( 'password' ) ->add( 'password' )
->add( 'adminKey' ) ->add( 'adminKey' )
->add('owner') ->add( 'owner' );
;
} }
public function configureOptions(OptionsResolver $resolver) public function configureOptions( OptionsResolver $resolver ) {
{
$resolver->setDefaults( [ $resolver->setDefaults( [
'data_class' => Poll::class, 'data_class' => Poll::class,
] ); ] );

View File

@ -6,32 +6,30 @@ use Symfony\Bundle\FrameworkBundle\Kernel\MicroKernelTrait;
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator; use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
use Symfony\Component\HttpKernel\Kernel as BaseKernel; use Symfony\Component\HttpKernel\Kernel as BaseKernel;
use Symfony\Component\Routing\Loader\Configurator\RoutingConfigurator; use Symfony\Component\Routing\Loader\Configurator\RoutingConfigurator;
use function dirname;
class Kernel extends BaseKernel class Kernel extends BaseKernel {
{
use MicroKernelTrait; use MicroKernelTrait;
protected function configureContainer(ContainerConfigurator $container): void protected function configureContainer( ContainerConfigurator $container ): void {
{
$container->import( '../config/{packages}/*.yaml' ); $container->import( '../config/{packages}/*.yaml' );
$container->import( '../config/{packages}/' . $this->environment . '/*.yaml' ); $container->import( '../config/{packages}/' . $this->environment . '/*.yaml' );
if (is_file(\dirname(__DIR__).'/config/services.yaml')) { if ( is_file( dirname( __DIR__ ) . '/config/services.yaml' ) ) {
$container->import( '../config/services.yaml' ); $container->import( '../config/services.yaml' );
$container->import( '../config/{services}_' . $this->environment . '.yaml' ); $container->import( '../config/{services}_' . $this->environment . '.yaml' );
} elseif (is_file($path = \dirname(__DIR__).'/config/services.php')) { } elseif ( is_file( $path = dirname( __DIR__ ) . '/config/services.php' ) ) {
( require $path )( $container->withPath( $path ), $this ); ( require $path )( $container->withPath( $path ), $this );
} }
} }
protected function configureRoutes(RoutingConfigurator $routes): void protected function configureRoutes( RoutingConfigurator $routes ): void {
{
$routes->import( '../config/{routes}/' . $this->environment . '/*.yaml' ); $routes->import( '../config/{routes}/' . $this->environment . '/*.yaml' );
$routes->import( '../config/{routes}/*.yaml' ); $routes->import( '../config/{routes}/*.yaml' );
if (is_file(\dirname(__DIR__).'/config/routes.yaml')) { if ( is_file( dirname( __DIR__ ) . '/config/routes.yaml' ) ) {
$routes->import( '../config/routes.yaml' ); $routes->import( '../config/routes.yaml' );
} elseif (is_file($path = \dirname(__DIR__).'/config/routes.php')) { } elseif ( is_file( $path = dirname( __DIR__ ) . '/config/routes.php' ) ) {
( require $path )( $routes->withPath( $path ), $this ); ( require $path )( $routes->withPath( $path ), $this );
} }
} }

View File

@ -12,10 +12,8 @@ use Doctrine\Common\Persistence\ManagerRegistry;
* @method Choice[] findAll() * @method Choice[] findAll()
* @method Choice[] findBy( array $criteria, array $orderBy = null, $limit = null, $offset = null ) * @method Choice[] findBy( array $criteria, array $orderBy = null, $limit = null, $offset = null )
*/ */
class ChoiceRepository extends ServiceEntityRepository class ChoiceRepository extends ServiceEntityRepository {
{ public function __construct( ManagerRegistry $registry ) {
public function __construct(ManagerRegistry $registry)
{
parent::__construct( $registry, Choice::class ); parent::__construct( $registry, Choice::class );
} }

View File

@ -12,10 +12,8 @@ use Doctrine\Common\Persistence\ManagerRegistry;
* @method Comment[] findAll() * @method Comment[] findAll()
* @method Comment[] findBy( array $criteria, array $orderBy = null, $limit = null, $offset = null ) * @method Comment[] findBy( array $criteria, array $orderBy = null, $limit = null, $offset = null )
*/ */
class CommentRepository extends ServiceEntityRepository class CommentRepository extends ServiceEntityRepository {
{ public function __construct( ManagerRegistry $registry ) {
public function __construct(ManagerRegistry $registry)
{
parent::__construct( $registry, Comment::class ); parent::__construct( $registry, Comment::class );
} }

View File

@ -12,10 +12,8 @@ use Doctrine\Common\Persistence\ManagerRegistry;
* @method Owner[] findAll() * @method Owner[] findAll()
* @method Owner[] findBy( array $criteria, array $orderBy = null, $limit = null, $offset = null ) * @method Owner[] findBy( array $criteria, array $orderBy = null, $limit = null, $offset = null )
*/ */
class OwnerRepository extends ServiceEntityRepository class OwnerRepository extends ServiceEntityRepository {
{ public function __construct( ManagerRegistry $registry ) {
public function __construct(ManagerRegistry $registry)
{
parent::__construct( $registry, Owner::class ); parent::__construct( $registry, Owner::class );
} }

View File

@ -5,7 +5,6 @@ namespace App\Repository;
use App\Entity\Poll; use App\Entity\Poll;
use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository; use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
use Doctrine\Persistence\ManagerRegistry; use Doctrine\Persistence\ManagerRegistry;
use MongoDB\Driver\Manager;
/** /**
* @method Poll|null find( $id, $lockMode = null, $lockVersion = null ) * @method Poll|null find( $id, $lockMode = null, $lockVersion = null )
@ -13,11 +12,10 @@ use MongoDB\Driver\Manager;
* @method Poll[] findAll() * @method Poll[] findAll()
* @method Poll[] findBy( array $criteria, array $orderBy = null, $limit = null, $offset = null ) * @method Poll[] findBy( array $criteria, array $orderBy = null, $limit = null, $offset = null )
*/ */
class PollRepository extends ServiceEntityRepository class PollRepository extends ServiceEntityRepository {
{ public function __construct(
public function __construct(ManagerRegistry ManagerRegistry $registry
$registry) ) {
{
parent::__construct( $registry, Poll::class ); parent::__construct( $registry, Poll::class );
} }

View File

@ -12,10 +12,8 @@ use Doctrine\Common\Persistence\ManagerRegistry;
* @method StackOfVotes[] findAll() * @method StackOfVotes[] findAll()
* @method StackOfVotes[] findBy( array $criteria, array $orderBy = null, $limit = null, $offset = null ) * @method StackOfVotes[] findBy( array $criteria, array $orderBy = null, $limit = null, $offset = null )
*/ */
class StackOfVotesRepository extends ServiceEntityRepository class StackOfVotesRepository extends ServiceEntityRepository {
{ public function __construct( ManagerRegistry $registry ) {
public function __construct(ManagerRegistry $registry)
{
parent::__construct( $registry, StackOfVotes::class ); parent::__construct( $registry, StackOfVotes::class );
} }

View File

@ -12,10 +12,8 @@ use Doctrine\Common\Persistence\ManagerRegistry;
* @method Vote[] findAll() * @method Vote[] findAll()
* @method Vote[] findBy( array $criteria, array $orderBy = null, $limit = null, $offset = null ) * @method Vote[] findBy( array $criteria, array $orderBy = null, $limit = null, $offset = null )
*/ */
class VoteRepository extends ServiceEntityRepository class VoteRepository extends ServiceEntityRepository {
{ public function __construct( ManagerRegistry $registry ) {
public function __construct(ManagerRegistry $registry)
{
parent::__construct( $registry, Vote::class ); parent::__construct( $registry, Vote::class );
} }

View File

@ -12,6 +12,7 @@ use Exception;
use Swift_Mailer; use Swift_Mailer;
use Swift_Message; use Swift_Message;
use Swift_SmtpTransport; use Swift_SmtpTransport;
use Symfony\Component\Mailer\Exception\TransportExceptionInterface;
class MailService { class MailService {
@ -49,7 +50,7 @@ class MailService {
* @param Owner $foundOwner * @param Owner $foundOwner
* @param Poll|null $poll * @param Poll|null $poll
* *
* @throws \Symfony\Component\Mailer\Exception\TransportExceptionInterface * @throws TransportExceptionInterface
*/ */
public function sendCreationMailAction( Owner $foundOwner, Poll $poll = null ) { public function sendCreationMailAction( Owner $foundOwner, Poll $poll = null ) {
@ -66,74 +67,12 @@ class MailService {
return $this->sendMailWithVars( $config ); return $this->sendMailWithVars( $config );
} }
/**
* anti spam , limit to every minute TODO
*
* @param Owner $owner
*
* @return bool
*/
public function antispamCheck( Owner $owner ) {
// $lastSend = $admin_user->getRequestedPollsDate();
// $now = new \DateTime();
// if ( date_diff( $lastSend, $now ) < 60 ) {
// // too soon!
// die( 'too soon!' );
// }
// $admin_user->setRequestedPollsDate( $now );
// $em->persist( $admin_user );
// $em->flush();
return true;
}
/**
* send created polls to an owner
*
* @param Owner $owner
*
* @return int|void
* @throws Exception
* @throws \Symfony\Component\Mailer\Exception\TransportExceptionInterface
*/
public function sendOwnerPollsAction( Owner $owner ) {
$config = [
'owner' => $owner,
'title' => 'Framadate | Mes sondages',
'email_template' => 'emails/owner-list.html.twig',
];
$this->sendMailWithVars( $config );
return 1;
}
/**
* @param Comment $comment
*
* @throws \Symfony\Component\Mailer\Exception\TransportExceptionInterface
*/
public function sendCommentNotification( Comment $comment ) {
$config = [
'comment' => $comment,
'owner' => $comment->getOwner(),
'title' => 'Framadate | commentaire de ' . $comment->getOwner()->getPseudo() . ' _ sondage ' . $comment->getPoll()->getTitle(),
'email_template' => 'emails/comment-notification.html.twig',
];
$this->sendMailWithVars( $config );
}
/** /**
* generic way to send email with html template * generic way to send email with html template
* *
* @param $config * @param $config
* *
* @throws \Symfony\Component\Mailer\Exception\TransportExceptionInterface * @throws TransportExceptionInterface
*/ */
public function sendMailWithVars( $config ) { public function sendMailWithVars( $config ) {
@ -209,4 +148,64 @@ class MailService {
} }
/**
* anti spam , limit to every minute TODO
*
* @param Owner $owner
*
* @return bool
*/
public function antispamCheck( Owner $owner ) {
// $lastSend = $admin_user->getRequestedPollsDate();
// $now = new \DateTime();
// if ( date_diff( $lastSend, $now ) < 60 ) {
// // too soon!
// die( 'too soon!' );
// }
// $admin_user->setRequestedPollsDate( $now );
// $em->persist( $admin_user );
// $em->flush();
return true;
}
/**
* send created polls to an owner
*
* @param Owner $owner
*
* @return int|void
* @throws Exception
* @throws TransportExceptionInterface
*/
public function sendOwnerPollsAction( Owner $owner ) {
$config = [
'owner' => $owner,
'title' => 'Framadate | Mes sondages',
'email_template' => 'emails/owner-list.html.twig',
];
$this->sendMailWithVars( $config );
return 1;
}
/**
* @param Comment $comment
*
* @throws TransportExceptionInterface
*/
public function sendCommentNotification( Comment $comment ) {
$config = [
'comment' => $comment,
'owner' => $comment->getOwner(),
'title' => 'Framadate | commentaire de ' . $comment->getOwner()->getPseudo() . ' _ sondage ' . $comment->getPoll()->getTitle(),
'email_template' => 'emails/comment-notification.html.twig',
];
$this->sendMailWithVars( $config );
}
} }

View File

@ -4,7 +4,6 @@ namespace App\Traits;
use DateTimeInterface; use DateTimeInterface;
use Doctrine\ORM\Mapping as ORM; use Doctrine\ORM\Mapping as ORM;
use PhpParser\Node\Scalar\String_;
trait TimeStampableTrait { trait TimeStampableTrait {
/** /**
@ -15,9 +14,6 @@ trait TimeStampableTrait {
public function getCreatedAt(): ?DateTimeInterface { public function getCreatedAt(): ?DateTimeInterface {
return $this->createdAt; return $this->createdAt;
} }
public function getCreatedAtAsString(): string {
return $this->createdAt->format('c');
}
public function setCreatedAt( DateTimeInterface $createdAt ): self { public function setCreatedAt( DateTimeInterface $createdAt ): self {
$this->createdAt = $createdAt; $this->createdAt = $createdAt;
@ -25,4 +21,8 @@ trait TimeStampableTrait {
return $this; return $this;
} }
public function getCreatedAtAsString(): string {
return $this->createdAt->format( 'c' );
}
} }