2019-11-05 12:16:16 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Controller;
|
|
|
|
|
2019-11-06 12:27:46 +01:00
|
|
|
use App\Entity\Owner;
|
2019-11-05 16:31:27 +01:00
|
|
|
use App\Entity\Poll;
|
2019-11-05 12:16:16 +01:00
|
|
|
use FOS\RestBundle\Controller\Annotations\Get;
|
2019-11-05 16:31:27 +01:00
|
|
|
use FOS\RestBundle\Controller\Annotations\Post;
|
|
|
|
use FOS\RestBundle\Controller\Annotations\Route;
|
2019-11-06 12:27:46 +01:00
|
|
|
use JMS\Serializer\SerializerBuilder;
|
2019-11-05 12:16:16 +01:00
|
|
|
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
|
2019-11-06 11:23:43 +01:00
|
|
|
use Symfony\Component\HttpFoundation\Request;
|
2019-11-05 12:16:16 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Class DefaultController
|
|
|
|
* @package App\Controller
|
2019-11-06 11:23:43 +01:00
|
|
|
* @Route("/api/v1",name="api_")
|
2019-11-05 12:16:16 +01:00
|
|
|
*/
|
|
|
|
class DefaultController extends AbstractController {
|
|
|
|
/**
|
|
|
|
* @Get(path ="/",
|
2019-11-05 16:31:27 +01:00
|
|
|
* name = "get_default")
|
2019-11-05 12:16:16 +01:00
|
|
|
*/
|
|
|
|
public function index() {
|
|
|
|
return $this->json( [
|
|
|
|
'message' => 'Welcome to your new controller!',
|
|
|
|
'path' => 'src/Controller/DefaultController.php',
|
|
|
|
] );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @Get(
|
|
|
|
* path = "/my-polls",
|
2019-11-05 16:31:27 +01:00
|
|
|
* name = "get_my_polls",
|
2019-11-05 12:16:16 +01:00
|
|
|
* requirements = {"access_token"="\w+"}
|
|
|
|
* )
|
|
|
|
*/
|
|
|
|
public function showMyPollsAction() {
|
|
|
|
return $this->json( [
|
|
|
|
'message' => 'here are your polls',
|
2019-11-05 16:31:27 +01:00
|
|
|
'data' => new Poll(),
|
2019-11-05 12:16:16 +01:00
|
|
|
] );
|
|
|
|
}
|
2019-11-05 16:31:27 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @Get(
|
|
|
|
* path = "/poll/{id}/comments",
|
|
|
|
* name = "get_poll_comment",
|
|
|
|
* requirements = {"id"="\d+"}
|
|
|
|
* )
|
|
|
|
*/
|
|
|
|
public function getPollCommentsAction() {
|
|
|
|
return $this->json( [
|
|
|
|
'message' => 'here are your comments of the poll',
|
|
|
|
] );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @Get(
|
|
|
|
* path = "/poll/all",
|
|
|
|
* name = "get_all_polls"
|
|
|
|
* )
|
|
|
|
*/
|
|
|
|
public function getAllPollsAction() {
|
|
|
|
$repository = $this->getDoctrine()->getRepository( Poll::class );
|
2019-11-05 17:31:07 +01:00
|
|
|
$data = $repository->findall();
|
2019-11-05 16:31:27 +01:00
|
|
|
|
|
|
|
|
|
|
|
return $this->json( [
|
|
|
|
'message' => 'here are your polls',
|
2019-11-05 17:31:07 +01:00
|
|
|
'data' => $data,
|
2019-11-05 16:31:27 +01:00
|
|
|
] );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @Post(
|
|
|
|
* path = "/poll/new",
|
|
|
|
* name = "new_polls",
|
|
|
|
* requirements = {"creator"="\w+"}
|
|
|
|
* )
|
2019-11-06 11:23:43 +01:00
|
|
|
* @param Request $request
|
|
|
|
*
|
|
|
|
* @return \Symfony\Component\HttpFoundation\JsonResponse
|
2019-11-05 16:31:27 +01:00
|
|
|
*/
|
2019-11-06 11:23:43 +01:00
|
|
|
public function newPollAction( Request $request ) {
|
|
|
|
|
|
|
|
$data = $request->getContent();
|
2019-11-05 16:31:27 +01:00
|
|
|
|
2019-11-06 12:27:46 +01:00
|
|
|
$serializer = SerializerBuilder::create()->build();
|
|
|
|
$newpoll = $serializer->deserialize( $data, 'App\Entity\Poll', 'json' );
|
|
|
|
|
|
|
|
$newpoll->setAdminKey( uniqid() );
|
|
|
|
$newpoll->setCreationDate( new \DateTime() );
|
|
|
|
$newpoll->setModificationPolicy( 'none' );
|
|
|
|
$timeStamp = time() + ( 3600 * 24 * 90 ); // 90 days by default
|
|
|
|
$newpoll->setExpiracyDate( ( new \DateTime() )->setTimestamp( $timeStamp ),
|
|
|
|
new \DateTimeZone( 'Europe/Paris' ) );
|
|
|
|
$data = json_decode( $data, true );
|
|
|
|
// die( $data );
|
|
|
|
$em = $this->getDoctrine()->getRepository( Owner::class );
|
|
|
|
$foundOwner = $em->findByEmail( $data[ 'owner' ][ 'email' ] );
|
|
|
|
die( $foundOwner );
|
|
|
|
$userWasFound = false;
|
|
|
|
if ( ! $foundOwner ) {
|
|
|
|
//create a new owner
|
|
|
|
$owner = new Owner();
|
|
|
|
|
|
|
|
$owner->setPseudo( $data[ 'owner' ][ 'pseudo' ] );
|
|
|
|
$owner->setEmail( $data[ 'owner' ][ 'email' ] );
|
|
|
|
$foundOwner = $owner;
|
|
|
|
} else {
|
|
|
|
$userWasFound = true;
|
|
|
|
}
|
|
|
|
// link the owner and the poll
|
|
|
|
$newpoll->setOwner( $foundOwner );
|
|
|
|
$foundOwner->addPoll( $newpoll );
|
|
|
|
$em->persist( $newpoll );
|
2019-11-05 16:31:27 +01:00
|
|
|
$em->flush();
|
2019-11-06 12:27:46 +01:00
|
|
|
$precision = '';
|
|
|
|
if ( $userWasFound ) {
|
|
|
|
$precision = 'from an existing user : ' . $foundOwner->getEmail();
|
|
|
|
}
|
2019-11-05 16:31:27 +01:00
|
|
|
|
2019-11-06 11:23:43 +01:00
|
|
|
return $this->json( [
|
2019-11-06 12:27:46 +01:00
|
|
|
'message' => 'you created a poll ' . $precision,
|
|
|
|
// 'data' => $jsonContent,
|
|
|
|
|
2019-11-06 11:23:43 +01:00
|
|
|
],
|
|
|
|
203 );
|
2019-11-05 16:31:27 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @Get(
|
|
|
|
* path = "/poll/{id}",
|
|
|
|
* name = "get_poll",
|
|
|
|
* requirements = {"id"="\d+"}
|
|
|
|
* )
|
|
|
|
*/
|
|
|
|
public function getPollConfig( Poll $poll ) {
|
|
|
|
return $this->json( [
|
|
|
|
'message' => 'your poll config',
|
|
|
|
'data' => $poll,
|
|
|
|
] );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @Post(
|
|
|
|
* path = "/poll/{id}/up",
|
|
|
|
* name = "up_poll",
|
|
|
|
* requirements = {"content"="\w+"}
|
|
|
|
* )
|
|
|
|
*/
|
|
|
|
public function updatePollConfig( Poll $poll ) {
|
|
|
|
return $this->json( [
|
|
|
|
'message' => 'you updated the poll',
|
|
|
|
] );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @Post(
|
|
|
|
* path = "/comment/new",
|
|
|
|
* name = "new_comment",
|
|
|
|
* requirements = {"content"="\w+"}
|
|
|
|
* )
|
|
|
|
*/
|
|
|
|
public function newCommentAction() {
|
|
|
|
return $this->json( [
|
|
|
|
'message' => 'you created a comment',
|
|
|
|
] );
|
|
|
|
}
|
|
|
|
|
2019-11-05 17:22:30 +01:00
|
|
|
|
|
|
|
public function deletePollAction() {
|
|
|
|
return $this->json( [
|
|
|
|
'message' => 'boom',
|
|
|
|
] );
|
|
|
|
}
|
|
|
|
|
|
|
|
public function deletePollCommentsAction() {
|
|
|
|
return $this->json( [
|
|
|
|
'message' => 'boom',
|
|
|
|
] );
|
|
|
|
}
|
|
|
|
|
|
|
|
public function deletePollVotesAction() {
|
|
|
|
return $this->json( [
|
|
|
|
'message' => 'boom',
|
|
|
|
] );
|
|
|
|
}
|
|
|
|
|
2019-11-05 12:16:16 +01:00
|
|
|
}
|