aboutsummaryrefslogblamecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Controller/DeveloperController.php
blob: edbcec4b52ebbc20c4433c1adb6cd39d1d8eab01 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14













                                                           

                                                         









                                                                             

                                                         










                                                                                          
                                                    

           











                                                                                 
 
<?php

namespace Wallabag\CoreBundle\Controller;

use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;

class DeveloperController extends Controller
{
    /**
     * @param Request $request
     *
     * @Route("/developer", name="developer")
     *
     * @return \Symfony\Component\HttpFoundation\Response
     */
    public function indexAction(Request $request)
    {
        return $this->render('WallabagCoreBundle:Developer:index.html.twig');
    }

    /**
     * @param Request $request
     *
     * @Route("/developer/client/create", name="create_client")
     *
     * @return \Symfony\Component\HttpFoundation\Response
     */
    public function createClientAction(Request $request)
    {
        $clientManager = $this->container->get('fos_oauth_server.client_manager.default');
        $client = $clientManager->createClient();
        $client->setRedirectUris(array('http://www.example.com'));
        $client->setAllowedGrantTypes(array('token', 'authorization_code'));
        $clientManager->updateClient($client);

        return $this->render('WallabagCoreBundle:Developer:client.html.twig', array(
            'client_id' => $client->getPublicId(),
            'client_secret' => $client->getSecret(),
        ));
    }

    /**
     * @param Request $request
     *
     * @Route("/developer/howto/first-app", name="howto-firstapp")
     *
     * @return \Symfony\Component\HttpFoundation\Response
     */
    public function howtoFirstAppAction(Request $request)
    {
        return $this->render('WallabagCoreBundle:Developer:howto_app.html.twig');
    }
}