date-poll-api/src/Controller/DefaultController.php

135 lines
2.6 KiB
PHP

<?php
namespace App\Controller;
use App\Entity\Poll;
use FOS\RestBundle\Controller\Annotations\Get;
use FOS\RestBundle\Controller\Annotations\Post;
use FOS\RestBundle\Controller\Annotations\Route;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
/**
* Class DefaultController
* @package App\Controller
* @Route("/api",name="api_")
*/
class DefaultController extends AbstractController {
/**
* @Get(path ="/",
* name = "get_default")
*/
public function index() {
return $this->json( [
'message' => 'Welcome to your new controller!',
'path' => 'src/Controller/DefaultController.php',
] );
}
/**
* @Get(
* path = "/my-polls",
* name = "get_my_polls",
* requirements = {"access_token"="\w+"}
* )
*/
public function showMyPollsAction() {
return $this->json( [
'message' => 'here are your polls',
'data' => new Poll(),
] );
}
/**
* @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 );
$polls = $repository->findall();
return $this->json( [
'message' => 'here are your polls',
'data' => $polls,
] );
}
/**
* @Post(
* path = "/poll/new",
* name = "new_polls",
* requirements = {"creator"="\w+"}
* )
*/
public function newPollAction( Poll $poll ) {
$em = $this->getDoctrine()->getManager();
$em->persist( $poll );
$em->flush();
// return $poll;
return $this->json( $poll );
// return $this->json( [
// 'message' => 'you created a poll',
// ] );
}
/**
* @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',
] );
}
}