Beispiel #1
0
 public function resource($route, $controller, $additionals = [])
 {
     $collection = new \Phalcon\Mvc\Micro\Collection();
     $collection->setPrefix($route);
     $collection->setHandler(new $controller());
     $collection->get('/', 'getAll');
     $collection->get('/{id}', 'get');
     $collection->post('/', 'create');
     $collection->put('/{id}', 'update');
     $collection->delete('/{id}', 'delete');
     $this->mount($collection);
 }
Beispiel #2
0
<?php

/**
 * Collections let us define groups of routes that will all use the same controller.
 * We can also set the handler to be lazy loaded.  Collections can share a common prefix.
 * @var $autocompleteCollection
 */
// This is an Immeidately Invoked Function in php.  The return value of the
// anonymous function will be returned to any file that "includes" it.
// e.g. $collection = include('autocomplete.php');
return call_user_func(function () {
    $userCollection = new \Phalcon\Mvc\Micro\Collection();
    $userCollection->setPrefix('/v1/user')->setHandler('\\Api\\Controllers\\UserController')->setLazy(true);
    // Set Access-Control-Allow headers.
    $userCollection->options('/', 'optionsBase');
    $userCollection->options('/{id,email,images}', 'optionsOne');
    // First paramter is the route, which with the collection prefix here would be GET /autocomplete/
    // Second paramter is the function name of the Controller.
    $userCollection->get('/', 'get');
    $userCollection->post('/', 'post');
    $userCollection->put('/{id:[a-zA-Z0-9_-]+}', 'put');
    // This is exactly the same execution as GET, but the Response has no body.
    $userCollection->head('/', 'get');
    return $userCollection;
});
<?php

/**
 * Collections let us define groups of routes that will all use the same controller.
 * We can also set the handler to be lazy loaded.  Collections can share a common prefix.
 * @var $autocompleteCollection
 */
return call_user_func(function () {
    $collection = new \Phalcon\Mvc\Micro\Collection();
    $collection->setPrefix('/v1/registerPersonal')->setHandler('\\Api\\Controllers\\RegisterPersonalController')->setLazy(true);
    // Set Access-Control-Allow headers.
    $collection->options('/', 'optionsBase');
    //    $collection->options('/{access_token}', 'optionsOne');
    // First paramter is the route, which with the collection prefix here would be GET /autocomplete/
    // Second paramter is the function name of the Controller.
    $collection->get('/', 'get', 'registerPersonal-authbasic');
    //    $collection->get('/{aacess}', 'get', 'registerPersonal-authbasic');
    $collection->post('/', 'post');
    $collection->put('/', 'put');
    // This is exactly the same execution as GET, but the Response has no body.
    $collection->head('/', 'get');
    return $collection;
});
Beispiel #4
0
<?php

/**
 * Define all routes to be used in module
 *
 * @package    Reddit_API
 * @subpackage Post_Routes_Collections
 * @author     Enrique Ojeda <*****@*****.**>
 */
return call_user_func(function () {
    /**
     * Instance collection from Phalcon Mvc
     */
    $collection = new \Phalcon\Mvc\Micro\Collection();
    /**
     * Define handler (Controller)
     */
    $handler = '\\Modules\\Post\\Controllers\\PostController';
    /**
     * Set prefix, handler and async process as true.
     */
    $collection->setPrefix('')->setHandler($handler)->setLazy(true);
    /**
     * Define urls (Routes) and link them with controller
     */
    $collection->post('/post/submit', 'submit');
    $collection->get('/posts/{page:[0-9]+}', 'fetch');
    $collection->get('/posts', 'fetch');
    $collection->post('/post/vote', 'vote');
    return $collection;
});
Beispiel #5
0
<?php

/**
 * Collections let us define groups of routes that will all use the same controller.
 * We can also set the handler to be lazy loaded.  Collections can share a common prefix.
 * @var $autocompleteCollection
 */
return call_user_func(function () {
    $loginCollection = new \Phalcon\Mvc\Micro\Collection();
    $loginCollection->setPrefix('/v1/login')->setHandler('\\Api\\Controllers\\LoginController')->setLazy(true);
    // Set Access-Control-Allow headers.
    $loginCollection->options('/', 'optionsBase');
    //    $loginCollection->options('/{access_token}', 'optionsOne');
    // First paramter is the route, which with the collection prefix here would be GET /autocomplete/
    // Second paramter is the function name of the Controller.
    $loginCollection->get('/', 'get', 'login-allow');
    $loginCollection->get('/me', 'me', 'login-me-allow');
    $loginCollection->get('/out', 'out', 'login-out-allow');
    $loginCollection->post('/', 'post', 'login-post--allow');
    // This is exactly the same execution as GET, but the Response has no body.
    $loginCollection->head('/', 'get', 'login-head-allow');
    return $loginCollection;
});
Beispiel #6
0
<?php

/**
 * Collections let us define groups of routes that will all use the same controller.
 * We can also set the handler to be lazy loaded.  Collections can share a common prefix.
 */
return call_user_func(function () {
    $exampleCollection = new \Phalcon\Mvc\Micro\Collection();
    $exampleCollection->setPrefix('/v1/access_token')->setHandler('\\Phalcon2Rest\\Modules\\V1\\Controllers\\AccessTokenController')->setLazy(true);
    // Set Access-Control-Allow headers.
    $exampleCollection->options('/', 'optionsBase');
    $exampleCollection->post('/', 'post');
    return $exampleCollection;
});
Beispiel #7
0
<?php

/**
 * Standard routes for resource
 * Refer to routes/collections/example.php for further details
 */
return call_user_func(function () {
    $routes = new \Phalcon\Mvc\Micro\Collection();
    // VERSION NUMBER SHOULD BE FIRST URL PARAMETER, ALWAYS
    // setHandler MUST be a string in order to support lazy loading
    $routes->setPrefix('/v1/events')->setHandler('\\PhalconRest\\Controllers\\EventController')->setLazy(true);
    $routes->options('/', 'optionsBase');
    $routes->options('/{id}', 'optionsOne');
    $routes->get('/', 'get');
    $routes->head('/', 'get');
    $routes->post('/', 'post');
    $routes->get('/{id:[0-9]+}', 'getOne');
    $routes->head('/{id:[0-9]+}', 'getOne');
    $routes->delete('/{id:[0-9]+}', 'delete');
    $routes->put('/{id:[0-9]+}', 'put');
    $routes->patch('/{id:[0-9]+}', 'patch');
    return $routes;
});
Beispiel #8
0
<?php

/**
 * Define all routes to be used in module
 *
 * @package    Reddit_API
 * @subpackage Index_Routes_Collections
 * @author     Enrique Ojeda <*****@*****.**>
 */
return call_user_func(function () {
    /**
     * Define handler (Controller)
     */
    $handler = '\\Modules\\Index\\Controllers\\IndexController';
    /**
     * Instance collection from Phalcon Mvc
     */
    $collection = new \Phalcon\Mvc\Micro\Collection();
    /**
     * Set prefix, handler and async process as false.
     */
    $collection->setPrefix('')->setHandler($handler)->setLazy(true);
    /**
     * Define urls (Routes) and link them with controller
     */
    $collection->get('/', 'index');
    $collection->get('/version', 'version');
    $collection->post('/version', 'version');
    return $collection;
});
Beispiel #9
0
<?php

/**
 * Created by PhpStorm.
 * User: Dapo
 * Date: 08-Dec-14
 * Time: 9:48 AM
 */
return call_user_func(function () {
    $userCollection = new \Phalcon\Mvc\Micro\Collection();
    $userCollection->setPrefix('/v1/users')->setHandler('\\PhalconRest\\Controllers\\UserController')->setLazy(true);
    $userCollection->get('/', 'index');
    $userCollection->post('/login', 'login');
    $userCollection->post('/login_jwt', 'login_jwt');
    $userCollection->options('/login_jwt', 'info');
    $userCollection->post('/register', 'register');
    return $userCollection;
});
Beispiel #10
0
<?php

/**
 * Define all routes to be used in module
 *
 * @package    Reddit_API
 * @subpackage User_Routes_Collections
 * @author     Enrique Ojeda <*****@*****.**>
 */
return call_user_func(function () {
    /**
     * Instance collection from Phalcon Mvc
     */
    $collection = new \Phalcon\Mvc\Micro\Collection();
    /**
     * Define handler (Controller)
     */
    $handler = '\\Modules\\User\\Controllers\\UserController';
    /**
     * Set prefix, handler and async process as true.
     */
    $collection->setPrefix('')->setHandler($handler)->setLazy(true);
    /**
     * Define routes
     */
    $collection->post('/user', 'register');
    $collection->post('/login', 'login');
    $collection->post('/login/status', 'loginStatus');
    return $collection;
});
Beispiel #11
0
<?php

/**
 * collection of routes to support for user controller
 */
return call_user_func(function () {
    $routes = new \Phalcon\Mvc\Micro\Collection();
    // VERSION NUMBER SHOULD BE FIRST URL PARAMETER, ALWAYS
    // setHandler MUST be a string in order to support lazy loading
    $routes->setPrefix('/v1/auth')->setHandler('\\PhalconRest\\Controllers\\AuthController')->setLazy(true);
    // Set Access-Control-Allow headers.
    $routes->options('/', 'optionsBase');
    $routes->options('/{id}', 'optionsOne');
    // First paramter is the route, which with the collection prefix here would be GET /user/
    // Second paramter is the function name of the Controller.
    // custom routes
    $routes->get('/session_check', 'session_check');
    $routes->get('/logout', 'logout');
    $routes->get('/scratch1', 'scratch1');
    $routes->post('/login', 'login');
    $routes->post('/create', 'create');
    $routes->post('/reminder', 'reminder');
    $routes->post('/activate', 'activate');
    $routes->post('/reset', 'reset');
    // copies used mostly for testing
    $routes->get('/login', 'login');
    // $routes->get('/activate', 'activate');
    // $routes->get('/reminder', 'reminder');
    // $routes->get('/reset', 'reset');
    return $routes;
});
Beispiel #12
0
/**
 * Collections let us define groups of routes that will all use the same controller.
 * We can also set the handler to be lazy loaded.  Collections can share a common prefix.
 * @var $adminUsersCollection
 */
// This is an Immediately Invoked Function in php.  The return value of the
// anonymous function will be returned to any file that "includes" it.
// e.g. $collection = include('admin_users.php');
return call_user_func(function () {
    $adminUsersCollection = new \Phalcon\Mvc\Micro\Collection();
    $adminUsersCollection->setPrefix('/' . $this->di->getConfig()->application->version . '/admin/users')->setHandler('\\App\\Modules\\Admin\\Controllers\\UsersController')->setLazy(true);
    // Set Access-Control-Allow headers.
    $adminUsersCollection->options('/', 'optionsBase');
    $adminUsersCollection->options('/{id}', 'optionsOne');
    // First paramter is the route, which with the collection prefix here would be GET /users/
    // Second paramter is the function name of the Controller.
    $adminUsersCollection->get('/', 'get');
    // This is exactly the same execution as GET, but the Response has no body.
    $adminUsersCollection->head('/', 'get');
    $adminUsersCollection->post('/search', 'search');
    $adminUsersCollection->post('/search/{id:' . $this->di->getConfig()->application->idRegExp . '+}', 'searchOne');
    $adminUsersCollection->post('/login', 'login');
    // $id will be passed as a parameter to the Controller's specified function
    $adminUsersCollection->get('/{id:' . $this->di->getConfig()->application->idRegExp . '+}', 'getOne');
    $adminUsersCollection->head('/{id:' . $this->di->getConfig()->application->idRegExp . '+}', 'getOne');
    $adminUsersCollection->post('/', 'post');
    $adminUsersCollection->delete('/{id:' . $this->di->getConfig()->application->idRegExp . '+}', 'delete');
    $adminUsersCollection->put('/{id:' . $this->di->getConfig()->application->idRegExp . '+}', 'put');
    return $adminUsersCollection;
});
Beispiel #13
0
<?php

/**
 * Collections let us define groups of routes that will all use the same controller.
 * We can also set the handler to be lazy loaded.  Collections can share a common prefix.
 * @var $autocompleteCollection
 */
return call_user_func(function () {
    $collection = new \Phalcon\Mvc\Micro\Collection();
    $collection->setPrefix('/v1/register')->setHandler('\\Api\\Controllers\\RegisterController')->setLazy(true);
    // Set Access-Control-Allow headers.
    $collection->options('/', 'optionsBase');
    //    $collection->options('/{access_token}', 'optionsOne');
    // First paramter is the route, which with the collection prefix here would be GET /autocomplete/
    // Second paramter is the function name of the Controller.
    $collection->get('/', 'get', 'register-authbasic');
    $collection->get('/{aacess}', 'get', 'register-authbasic');
    $collection->post('/', 'post', 'register-post-authbasic');
    $collection->put('/', 'put', 'register-put--authbasic');
    // This is exactly the same execution as GET, but the Response has no body.
    $collection->head('/', 'get', 'register-head-authbasic');
    return $collection;
});
Beispiel #14
0
<?php

/**
 * Collections let us define groups of routes that will all use the same controller.
 * We can also set the handler to be lazy loaded.  Collections can share a common prefix.
 * @var $attributesCollection
 */
// This is an Immediately Invoked Function in php.  The return value of the
// anonymous function will be returned to any file that "includes" it.
// e.g. $collection = include('attributes.php');
return call_user_func(function () {
    $attributesCollection = new \Phalcon\Mvc\Micro\Collection();
    $attributesCollection->setPrefix('/' . $this->di->getConfig()->application->version . '/attributes')->setHandler('\\App\\Modules\\Backend\\Controllers\\AttributesController')->setLazy(true);
    // Set Access-Control-Allow headers.
    $attributesCollection->options('/', 'optionsBase');
    $attributesCollection->options('/{id}', 'optionsOne');
    // First paramter is the route, which with the collection prefix here would be GET /attributes/
    // Second paramter is the function name of the Controller.
    $attributesCollection->get('/', 'get');
    // This is exactly the same execution as GET, but the Response has no body.
    $attributesCollection->head('/', 'get');
    // $id will be passed as a parameter to the Controller's specified function
    $attributesCollection->get('/{id:' . $this->di->getConfig()->application->idRegExp . '+}', 'getOne');
    $attributesCollection->head('/{id:' . $this->di->getConfig()->application->idRegExp . '+}', 'getOne');
    $attributesCollection->post('/', 'post');
    $attributesCollection->post('/search', 'searches');
    $attributesCollection->post('/search/{id:' . $this->di->getConfig()->application->idRegExp . '+}', 'searchOne');
    $attributesCollection->delete('/{id:' . $this->di->getConfig()->application->idRegExp . '+}', 'delete');
    $attributesCollection->put('/{id:' . $this->di->getConfig()->application->idRegExp . '+}', 'put');
    return $attributesCollection;
});
<?php

/**
 * Created by PhpStorm.
 * User: Dapo
 * Date: 09-Dec-14
 * Time: 1:43 PM
 */
return call_user_func(function () {
    $api = new \Phalcon\Mvc\Micro\Collection();
    $api->setPrefix('/v1/grouper')->setHandler('\\PhalconRest\\Controllers\\GrouperController')->setLazy(true);
    // Issues Handlers
    $api->get('/issues', 'issues');
    $api->options('/issues', 'info');
    $api->get('/issues/principles', 'issuePrinciples');
    $api->options('/issues/principles', 'info');
    $api->get('/issues/stats', 'issueStats');
    $api->options('/issues/stats', 'info');
    $api->put('/principles/{id:[0-9]+}', 'updatePrinciple');
    $api->options('/principles/{id:[0-9]+}', 'info');
    $api->get('/reviews', 'reviews');
    $api->options('/reviews', 'info');
    $api->post('/reviews', 'newReview');
    $api->put('/reviews/{id:[0-9]+}', 'updateReview');
    return $api;
});
Beispiel #16
0
 * Collections let us define groups of routes that will all use the same controller.
 * We can also set the handler to be lazy loaded.  Collections can share a common prefix.
 * @var $exampleCollection
 */
// This is an Immeidately Invoked Function in php.  The return value of the
// anonymous function will be returned to any file that "includes" it.
// e.g. $collection = include('example.php');
return call_user_func(function () {
    $exampleCollection = new \Phalcon\Mvc\Micro\Collection();
    $exampleCollection->setPrefix('/v1/user')->setHandler('\\PhalconRest\\Controllers\\UsersController')->setLazy(true);
    // Set Access-Control-Allow headers.
    $exampleCollection->options('/', 'optionsBase');
    $exampleCollection->options('/{id}', 'optionsOne');
    // First paramter is the route, which with the collection prefix here would be GET /example/
    // Second paramter is the function name of the Controller.
    $exampleCollection->get('/', 'get');
    // This is exactly the same execution as GET, but the Response has no body.
    $exampleCollection->head('/', 'get');
    // $id will be passed as a parameter to the Controller's specified function
    $exampleCollection->get('/{id:[0-9]+}', 'getOne');
    $exampleCollection->head('/{id:[0-9]+}', 'getOne');
    $exampleCollection->post('/', 'post');
    $exampleCollection->post('/login', 'login');
    $exampleCollection->post('/logout', 'logout');
    $exampleCollection->get('/profile', 'profile');
    $exampleCollection->get('/checkSession', 'checkSession');
    $exampleCollection->delete('/{id:[0-9]+}', 'delete');
    $exampleCollection->put('/{id:[0-9]+}', 'put');
    $exampleCollection->patch('/{id:[0-9]+}', 'patch');
    return $exampleCollection;
});
Beispiel #17
0
<?php

/**
 * Collections let us define groups of routes that will all use the same controller.
 * We can also set the handler to be lazy loaded.  Collections can share a common prefix.
 *
 * @link http://docs.phalconphp.com/en/latest/api/Phalcon_Mvc_Micro_Collection.html
 */
return call_user_func(function () {
    $testCollection = new \Phalcon\Mvc\Micro\Collection();
    $testCollection->setPrefix('/' . VERSION . '/posts')->setHandler('Phanbook\\Controllers\\PostsController')->setLazy(true);
    // First paramter is the route, which with the collection prefix here would be GET /example/
    // Second paramter is the function name of the Controller.
    $testCollection->get('/', 'index');
    // This is exactly the same execution as GET, but the Response has no body.
    $testCollection->head('/', 'index');
    // $id will be passed as a parameter to the Controller's specified function
    $testCollection->get('/{id:[0-9]+}', 'getOne');
    $testCollection->head('/{id:[0-9]+}', 'getOne');
    $testCollection->post('/', 'post');
    $testCollection->delete('/{id:[0-9]+}', 'delete');
    $testCollection->put('/{id:[0-9]+}', 'put');
    $testCollection->patch('/{id:[0-9]+}', 'patch');
    return $testCollection;
});
<?php

/**
 * Collections let us define groups of routes that will all use the same controller.
 * We can also set the handler to be lazy loaded.  Collections can share a common prefix.
 * @var $exampleCollection
 */
// This is an Immeidately Invoked Function in php.  The return value of the
// anonymous function will be returned to any file that "includes" it.
// e.g. $collection = include('example.php');
return call_user_func(function () {
    $collection = new \Phalcon\Mvc\Micro\Collection();
    $collection->setPrefix('/api/resource')->setHandler('\\Base\\Controllers\\Resources\\ResourceController')->setLazy(true);
    // Set Access-Control-Allow headers.
    $collection->options('/', 'optionsBase');
    $collection->options('/{id}', 'optionsOne');
    // First paramter is the route, which with the collection prefix here would be GET /example/
    // Second paramter is the function name of the Controller.
    $collection->get('/', 'get');
    // This is exactly the same execution as GET, but the Response has no body.
    $collection->head('/', 'get');
    // $id will be passed as a parameter to the Controller's specified function
    $collection->get('/{id:[0-9]+}', 'getOne');
    $collection->head('/{id:[0-9]+}', 'getOne');
    $collection->post('/create', 'create');
    $collection->post('/update', 'update');
    $collection->delete('/{id:[0-9]+}', 'delete');
    $collection->put('/{id:[0-9]+}', 'put');
    $collection->patch('/{id:[0-9]+}', 'patch');
    return $collection;
});
Beispiel #19
0
/**
 * Collections let us define groups of routes that will all use the same controller.
 * We can also set the handler to be lazy loaded.  Collections can share a common prefix.
 * @var $productsCollection
 */
// This is an Immediately Invoked Function in php.  The return value of the
// anonymous function will be returned to any file that "includes" it.
// e.g. $collection = include('products.php');
return call_user_func(function () {
    $productsCollection = new \Phalcon\Mvc\Micro\Collection();
    $productsCollection->setPrefix('/' . $this->di->getConfig()->application->version . '/products')->setHandler('\\App\\Modules\\Backend\\Controllers\\ProductsController')->setLazy(true);
    // Set Access-Control-Allow headers.
    $productsCollection->options('/', 'optionsBase');
    $productsCollection->options('/{id}', 'optionsOne');
    // First paramter is the route, which with the collection prefix here would be GET /products/
    // Second paramter is the function name of the Controller.
    $productsCollection->get('/', 'get');
    // This is exactly the same execution as GET, but the Response has no body.
    $productsCollection->head('/', 'get');
    // $id will be passed as a parameter to the Controller's specified function
    $productsCollection->get('/{id:' . $this->di->getConfig()->application->idRegExp . '+}', 'getOne');
    $productsCollection->head('/{id:' . $this->di->getConfig()->application->idRegExp . '+}', 'getOne');
    $productsCollection->post('/', 'post');
    $productsCollection->post('/search', 'search');
    $productsCollection->post('/search/{id:' . $this->di->getConfig()->application->idRegExp . '+}', 'searchOne');
    $productsCollection->post('/import', 'bulkImport');
    $productsCollection->delete('/{id:' . $this->di->getConfig()->application->idRegExp . '+}', 'delete');
    $productsCollection->put('/{id:' . $this->di->getConfig()->application->idRegExp . '+}', 'put');
    $productsCollection->put('/upload/{id:' . $this->di->getConfig()->application->idRegExp . '+}', 'upload');
    return $productsCollection;
});
Beispiel #20
0
<?php

/**
 * Standard routes for resource
 * Refer to routes/collections/example.php for further details
 */
return call_user_func(function () {
    $routes = new \Phalcon\Mvc\Micro\Collection();
    // VERSION NUMBER SHOULD BE FIRST URL PARAMETER, ALWAYS
    // setHandler MUST be a string in order to support lazy loading
    $routes->setPrefix('/v1/payments')->setHandler('\\PhalconRest\\Controllers\\PaymentController')->setLazy(true);
    $routes->options('/', 'optionsBase');
    $routes->options('/{id}', 'optionsOne');
    $routes->get('/', 'get');
    $routes->head('/', 'get');
    $routes->post('/', 'post');
    $routes->get('/{id:[0-9]+}', 'getOne');
    $routes->head('/{id:[0-9]+}', 'getOne');
    $routes->delete('/{id:[0-9]+}', 'delete');
    $routes->put('/{id:[0-9]+}', 'put');
    $routes->patch('/{id:[0-9]+}', 'patch');
    // custom action to post a one-time payment
    // complete with credit card to use
    $routes->post('/one-time', 'post');
    return $routes;
});
Beispiel #21
0
<?php

/**
 * Collections let us define groups of routes that will all use the same controller.
 * We can also set the handler to be lazy loaded.  Collections can share a common prefix.
 * @var $channelsCollection
 */
// This is an Immediately Invoked Function in php.  The return value of the
// anonymous function will be returned to any file that "includes" it.
// e.g. $collection = include('channels.php');
return call_user_func(function () {
    $channelsCollection = new \Phalcon\Mvc\Micro\Collection();
    $channelsCollection->setPrefix('/' . $this->di->getConfig()->application->version . '/channels')->setHandler('\\App\\Modules\\Backend\\Controllers\\ChannelsController')->setLazy(true);
    // Set Access-Control-Allow headers.
    $channelsCollection->options('/', 'optionsBase');
    $channelsCollection->options('/{id}', 'optionsOne');
    // First paramter is the route, which with the collection prefix here would be GET /channels/
    // Second paramter is the function name of the Controller.
    $channelsCollection->get('/', 'get');
    // This is exactly the same execution as GET, but the Response has no body.
    $channelsCollection->head('/', 'get');
    $channelsCollection->post('/search', 'search');
    $channelsCollection->post('/search/{id:' . $this->di->getConfig()->application->idRegExp . '+}', 'searchOne');
    // $id will be passed as a parameter to the Controller's specified function
    $channelsCollection->get('/{id:' . $this->di->getConfig()->application->idRegExp . '+}', 'getOne');
    $channelsCollection->head('/{id:' . $this->di->getConfig()->application->idRegExp . '+}', 'getOne');
    $channelsCollection->post('/', 'post');
    $channelsCollection->delete('/{id:' . $this->di->getConfig()->application->idRegExp . '+}', 'delete');
    $channelsCollection->put('/{id:' . $this->di->getConfig()->application->idRegExp . '+}', 'put');
    return $channelsCollection;
});
Beispiel #22
0
<?php

/**
 * Created by PhpStorm.
 * User: Dapo
 * Date: 09-Dec-14
 * Time: 1:43 PM
 */
return call_user_func(function () {
    $api = new \Phalcon\Mvc\Micro\Collection();
    $api->setPrefix('/v1')->setHandler('\\PhalconRest\\Controllers\\AppController')->setLazy(true);
    $api->get('/legalHeads', 'getLegalHeads');
    $api->post('/setStandard', 'setAsStandard');
    $api->post('/updateSubjectMatter', 'updateSubjectMatter');
    $api->post('/changeLegalHead', 'changeLegalHead');
    $api->post('/changeSubjectMatter', 'changeSubjectMatter');
    $api->post('/updateIssue', 'updateIssue');
    $api->post('/mergeSubjectMatters', 'mergeSubjectMatters');
    $api->post('/mergeIssues', 'mergeIssues');
    $api->post('/detachRatio', 'detachRatio');
    $api->post('/markDone', 'markDone');
    $api->post('/removeStandard', 'removeStandard');
    $api->post('/newBookCase/{id:[0-9]+}', 'newBookCase');
    $api->get('/bookCases/{id:[0-9]+}', 'getCases');
    $api->get('/alternateCitations/{id:[0-9]+}', 'getCaseAlternateCitations');
    $api->get('/fullCases', 'fullCases');
    $api->get('/fullCases/{id:[0-9]+}/{term}', 'fullCases');
    $api->get('/fullCases/{id:[0-9]+}/{term}/{type}', 'fullCases');
    $api->get('/caseList/{term}', 'caseList');
    $api->delete('/deleteCase/{id:[0-9]+}', 'deleteCase');
    return $api;
/**
 * Collections let us define groups of routes that will all use the same controller.
 * We can also set the handler to be lazy loaded.  Collections can share a common prefix.
 * @var $exampleCollection
 */
// This is an Immeidately Invoked Function in php.  The return value of the
// anonymous function will be returned to any file that "includes" it.
// e.g. $collection = include('example.php');
return call_user_func(function () {
    $collection = new \Phalcon\Mvc\Micro\Collection();
    $collection->setPrefix('/api/wordType')->setHandler('\\Base\\Controllers\\Dictionary\\WordTypeController')->setLazy(true);
    // Set Access-Control-Allow headers.
    $collection->options('/', 'optionsBase');
    $collection->options('/{id}', 'optionsOne');
    // First paramter is the route, which with the collection prefix here would be GET /example/
    // Second paramter is the function name of the Controller.
    $collection->get('/', 'get');
    // This is exactly the same execution as GET, but the Response has no body.
    $collection->head('/', 'get');
    // $id will be passed as a parameter to the Controller's specified function
    $collection->get('/{id:[0-9]+}', 'getOne');
    $collection->head('/{id:[0-9]+}', 'getOne');
    $collection->post('/create', 'create');
    $collection->post('/search', 'search');
    $collection->post('/update', 'update');
    $collection->delete('/{id:[0-9]+}', 'delete');
    $collection->put('/{id:[0-9]+}', 'put');
    $collection->patch('/{id:[0-9]+}', 'patch');
    return $collection;
});
Beispiel #24
0
<?php

/**
 * Collections let us define groups of routes that will all use the same controller.
 * We can also set the handler to be lazy loaded.  Collections can share a common prefix.
 * @var $autocompleteCollection
 */
return call_user_func(function () {
    $collection = new \Phalcon\Mvc\Micro\Collection();
    $collection->setPrefix('/v1/address')->setHandler('\\Api\\Controllers\\AddressController')->setLazy(true);
    // Set Access-Control-Allow headers.
    $collection->options('/', 'optionsBase');
    //    $collection->options('/{access_token}', 'optionsOne');
    // First paramter is the route, which with the collection prefix here would be GET /autocomplete/
    // Second paramter is the function name of the Controller.
    $collection->get('/', 'get', 'address-authbasic');
    $collection->get('/uf', 'uf', 'address-uf-authbasic');
    $collection->get('/city/{uf}', 'city', 'address-city-authbasic');
    $collection->get('/hood/{city_id}', 'hood', 'address-hood-authbasic');
    $collection->get('/street/{hood_id}', 'street', 'address-street-authbasic');
    $collection->get('/zipcode/{zip_code}', 'zipcode', 'address-zipcode-authbasic');
    $collection->get('/geographic/{zip_code}/{number}', 'geographicByZipCode', 'geographic-zipcode-number-authbasic');
    $collection->get('/geographic/{zip_code}', 'geographicByZipCode', 'geographic-zipcode-authbasic');
    $collection->post('/geographic', 'geographicByPost', 'geographic-post-authbasic');
    $collection->post('/', 'post');
    $collection->put('/', 'put');
    // This is exactly the same execution as GET, but the Response has no body.
    $collection->head('/', 'get');
    return $collection;
});