Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support for route names in Phalcon\Mvc\Micro\Collection #1944

Merged
merged 3 commits into from Jan 31, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,7 @@
- When phalcon.register_psr3_classes php.ini option is set, Phalcon\Logger\Adapter and derived classes throw Psr\Log\InvalidArgumentException
instead of Phalcon\Logger\Exception when the arguments are not valid (#1888)
- Phalcon\Mvc:
- Added support for route names in Phalcon\Mvc\Micro\Collection (#1868)
- Phalcon\Mvc\Application::handle() now checks whether the class exists before include()'ing its file (#812, #818)
- Phalcon\Mvc\Model\Criteria::fromInput() now sets _modelName (#866, #873)
- Phalcon\Mvc\Model\Query\Builder may now use both integer and string placeholders (#701)
Expand Down
65 changes: 29 additions & 36 deletions ext/mvc/micro.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
*/

#include "mvc/micro.h"
#include "mvc/micro/collectioninterface.h"
#include "mvc/micro/exception.h"
#include "mvc/micro/lazyloader.h"
#include "mvc/micro/middlewareinterface.h"
Expand Down Expand Up @@ -433,8 +434,8 @@ PHP_METHOD(Phalcon_Mvc_Micro, options){
PHP_METHOD(Phalcon_Mvc_Micro, mount){

zval *collection, *main_handler, *handlers, *lazy;
zval *lazy_handler = NULL, *prefix, *handler = NULL, *methods = NULL;
zval *pattern = NULL, *sub_handler = NULL, *real_handler = NULL, *prefixed_pattern = NULL;
zval *lazy_handler = NULL, *prefix, *handler = NULL;
zval *real_handler = NULL, *prefixed_pattern = NULL;
zval *route = NULL;
HashTable *ah0;
HashPosition hp0;
Expand All @@ -443,15 +444,9 @@ PHP_METHOD(Phalcon_Mvc_Micro, mount){
PHALCON_MM_GROW();

phalcon_fetch_params(1, 1, 0, &collection);
PHALCON_VERIFY_INTERFACE_EX(collection, phalcon_mvc_micro_collectioninterface_ce, phalcon_mvc_micro_exception_ce, 1);

if (Z_TYPE_P(collection) != IS_OBJECT) {
PHALCON_THROW_EXCEPTION_STR(phalcon_mvc_micro_exception_ce, "The collection is not valid");
return;
}

/**
* Get the main handler
*/
/* Get the main handler */
PHALCON_INIT_VAR(main_handler);
phalcon_call_method(main_handler, collection, "gethandler");
if (PHALCON_IS_EMPTY(main_handler)) {
Expand All @@ -468,9 +463,7 @@ PHP_METHOD(Phalcon_Mvc_Micro, mount){

if (Z_TYPE_P(handlers) == IS_ARRAY) {

/**
* Check if handler is lazy
*/
/* Check if handler is lazy */
PHALCON_INIT_VAR(lazy);
phalcon_call_method(lazy, collection, "islazy");
if (zend_is_true(lazy)) {
Expand All @@ -482,39 +475,37 @@ PHP_METHOD(Phalcon_Mvc_Micro, mount){
PHALCON_CPY_WRT(lazy_handler, main_handler);
}

/**
* Get the main prefix for the collection
*/
/* Get the main prefix for the collection */
PHALCON_INIT_VAR(prefix);
phalcon_call_method(prefix, collection, "getprefix");

phalcon_is_iterable(handlers, &ah0, &hp0, 0, 0);

while (zend_hash_get_current_data_ex(ah0, (void**) &hd, &hp0) == SUCCESS) {

zval *methods, *pattern, *sub_handler, *name;

PHALCON_GET_HVALUE(handler);

if (Z_TYPE_P(handler) != IS_ARRAY) {
PHALCON_THROW_EXCEPTION_STR(phalcon_mvc_micro_exception_ce, "One of the registered handlers is invalid");
return;
}

if (
!phalcon_array_isset_long_fetch(&methods, handler, 0)
|| !phalcon_array_isset_long_fetch(&pattern, handler, 1)
|| !phalcon_array_isset_long_fetch(&sub_handler, handler, 2)
|| !phalcon_array_isset_long_fetch(&name, handler, 3)
) {
PHALCON_THROW_EXCEPTION_STR(phalcon_mvc_micro_exception_ce, "One of the registered handlers is invalid");
return;
}

PHALCON_OBS_NVAR(methods);
phalcon_array_fetch_long(&methods, handler, 0, PH_NOISY);

PHALCON_OBS_NVAR(pattern);
phalcon_array_fetch_long(&pattern, handler, 1, PH_NOISY);

PHALCON_OBS_NVAR(sub_handler);
phalcon_array_fetch_long(&sub_handler, handler, 2, PH_NOISY);

/**
* Create a real handler
*/
/* Create a real handler */
PHALCON_INIT_NVAR(real_handler);
array_init_size(real_handler, 2);
phalcon_array_append(&real_handler, lazy_handler, PH_SEPARATE);
phalcon_array_append(&real_handler, sub_handler, PH_SEPARATE);
phalcon_array_append(&real_handler, lazy_handler, 0);
phalcon_array_append(&real_handler, sub_handler, 0);
if (PHALCON_IS_NOT_EMPTY(prefix)) {
if (PHALCON_IS_STRING(pattern, "/")) {
PHALCON_CPY_WRT(prefixed_pattern, prefix);
Expand All @@ -526,14 +517,16 @@ PHP_METHOD(Phalcon_Mvc_Micro, mount){
PHALCON_CPY_WRT(prefixed_pattern, pattern);
}

/**
* Map the route manually
*/
/* Map the route manually */
PHALCON_INIT_NVAR(route);
phalcon_call_method_p2(route, this_ptr, "map", prefixed_pattern, real_handler);
if (zend_is_true(methods)) {
if (Z_TYPE_P(methods) != IS_NULL) {
phalcon_call_method_p1_noret(route, "via", methods);
}

if (Z_TYPE_P(name) != IS_NULL) {
phalcon_call_method_p1_noret(route, "setname", name);
}

zend_hash_move_forward_ex(ah0, &hp0);
}
Expand Down Expand Up @@ -1184,7 +1177,7 @@ PHALCON_DOC_METHOD(Phalcon_Mvc_Micro, offsetSet);
* Alias for Phalcon\Mvc\Micro::getService()
*
*<code>
* var_dump($di['request']);
* var_dump($app['request']);
*</code>
*
* @param string $alias
Expand Down
110 changes: 55 additions & 55 deletions ext/mvc/micro/collection.c
Original file line number Diff line number Diff line change
Expand Up @@ -105,25 +105,41 @@ PHALCON_INIT_CLASS(Phalcon_Mvc_Micro_Collection){
/**
* Internal function to add a handler to the group
*
* @param string|array $method
* @param string|null $method
* @param string $routePattern
* @param mixed $handler
* @param string $name
*/
void phalcon_mvc_collection_addmap(zval *this_ptr, zval *method, zval *route_pattern, zval *handler TSRMLS_DC) {

void phalcon_mvc_collection_addmap(zval *this_ptr, const char *method, zval *route_pattern, zval *handler, zval *name TSRMLS_DC)
{
zval *handler_definition;
zval *z_method;

MAKE_STD_ZVAL(z_method);
if (method) {
PHALCON_ZVAL_MAYBE_INTERNED_STRING(z_method, method);
}
else {
ZVAL_NULL(z_method);
}

Z_ADDREF_P(method);
Z_ADDREF_P(route_pattern);
Z_ADDREF_P(handler);

MAKE_STD_ZVAL(handler_definition);
array_init_size(handler_definition, 3);
add_next_index_zval(handler_definition, method);
PHALCON_ALLOC_GHOST_ZVAL(handler_definition);
array_init_size(handler_definition, 3 + (name != NULL ? 1 : 0));
add_next_index_zval(handler_definition, z_method);
add_next_index_zval(handler_definition, route_pattern);
add_next_index_zval(handler_definition, handler);
if (name) {
Z_ADDREF_P(name);
add_next_index_zval(handler_definition, name);
}
else {
add_next_index_null(handler_definition);
}

phalcon_update_property_array_append(this_ptr, SL("_handlers"), handler_definition TSRMLS_CC);
zval_ptr_dtor(&handler_definition);
}

/**
Expand Down Expand Up @@ -233,13 +249,11 @@ PHP_METHOD(Phalcon_Mvc_Micro_Collection, getHandler){
*/
PHP_METHOD(Phalcon_Mvc_Micro_Collection, map){

zval *route_pattern, *handler, *method;
zval *route_pattern, *handler, *name = NULL;

phalcon_fetch_params(0, 2, 0, &route_pattern, &handler);
phalcon_fetch_params(0, 2, 1, &route_pattern, &handler, &name);

ALLOC_INIT_ZVAL(method);
phalcon_mvc_collection_addmap(getThis(), method, route_pattern, handler TSRMLS_CC);
zval_ptr_dtor(&method);
phalcon_mvc_collection_addmap(getThis(), NULL, route_pattern, handler, name TSRMLS_CC);
RETURN_ZVAL(getThis(), 1, 0);
}

Expand All @@ -248,18 +262,16 @@ PHP_METHOD(Phalcon_Mvc_Micro_Collection, map){
*
* @param string $routePattern
* @param callable $handler
* @param string $name
* @return Phalcon\Mvc\Micro\CollectionInterface
*/
PHP_METHOD(Phalcon_Mvc_Micro_Collection, get){

zval *route_pattern, *handler, *method;
zval *route_pattern, *handler, *name = NULL;

phalcon_fetch_params(0, 2, 0, &route_pattern, &handler);
phalcon_fetch_params(0, 2, 1, &route_pattern, &handler, &name);

ALLOC_INIT_ZVAL(method);
PHALCON_ZVAL_MAYBE_INTERNED_STRING(method, phalcon_interned_GET);
phalcon_mvc_collection_addmap(getThis(), method, route_pattern, handler TSRMLS_CC);
zval_ptr_dtor(&method);
phalcon_mvc_collection_addmap(getThis(), phalcon_interned_GET, route_pattern, handler, name TSRMLS_CC);
RETURN_ZVAL(getThis(), 1, 0);
}

Expand All @@ -268,18 +280,16 @@ PHP_METHOD(Phalcon_Mvc_Micro_Collection, get){
*
* @param string $routePattern
* @param callable $handler
* @param string $name
* @return Phalcon\Mvc\Micro\CollectionInterface
*/
PHP_METHOD(Phalcon_Mvc_Micro_Collection, post){

zval *route_pattern, *handler, *method;
zval *route_pattern, *handler, *name = NULL;

phalcon_fetch_params(0, 2, 0, &route_pattern, &handler);
phalcon_fetch_params(0, 2, 0, &route_pattern, &handler, &name);

ALLOC_INIT_ZVAL(method);
PHALCON_ZVAL_MAYBE_INTERNED_STRING(method, phalcon_interned_POST);
phalcon_mvc_collection_addmap(getThis(), method, route_pattern, handler TSRMLS_CC);
zval_ptr_dtor(&method);
phalcon_mvc_collection_addmap(getThis(), phalcon_interned_POST, route_pattern, handler, name TSRMLS_CC);
RETURN_ZVAL(getThis(), 1, 0);
}

Expand All @@ -288,18 +298,16 @@ PHP_METHOD(Phalcon_Mvc_Micro_Collection, post){
*
* @param string $routePattern
* @param callable $handler
* @param string $name
* @return Phalcon\Mvc\Micro\CollectionInterface
*/
PHP_METHOD(Phalcon_Mvc_Micro_Collection, put){

zval *route_pattern, *handler, *method;
zval *route_pattern, *handler, *name = NULL;

phalcon_fetch_params(0, 2, 0, &route_pattern, &handler);
phalcon_fetch_params(0, 2, 0, &route_pattern, &handler, &name);

ALLOC_INIT_ZVAL(method);
PHALCON_ZVAL_MAYBE_INTERNED_STRING(method, phalcon_interned_PUT);
phalcon_mvc_collection_addmap(getThis(), method, route_pattern, handler TSRMLS_CC);
zval_ptr_dtor(&method);
phalcon_mvc_collection_addmap(getThis(), phalcon_interned_PUT, route_pattern, handler, name TSRMLS_CC);
RETURN_ZVAL(getThis(), 1, 0);
}

Expand All @@ -308,18 +316,16 @@ PHP_METHOD(Phalcon_Mvc_Micro_Collection, put){
*
* @param string $routePattern
* @param callable $handler
* @param string $name
* @return Phalcon\Mvc\Micro\CollectionInterface
*/
PHP_METHOD(Phalcon_Mvc_Micro_Collection, patch){

zval *route_pattern, *handler, *method;
zval *route_pattern, *handler, *name = NULL;

phalcon_fetch_params(0, 2, 0, &route_pattern, &handler);
phalcon_fetch_params(0, 2, 0, &route_pattern, &handler, &name);

ALLOC_INIT_ZVAL(method);
PHALCON_ZVAL_MAYBE_INTERNED_STRING(method, phalcon_interned_PATCH);
phalcon_mvc_collection_addmap(getThis(), method, route_pattern, handler TSRMLS_CC);
zval_ptr_dtor(&method);
phalcon_mvc_collection_addmap(getThis(), phalcon_interned_PATCH, route_pattern, handler, name TSRMLS_CC);
RETURN_ZVAL(getThis(), 1, 0);
}

Expand All @@ -328,18 +334,16 @@ PHP_METHOD(Phalcon_Mvc_Micro_Collection, patch){
*
* @param string $routePattern
* @param callable $handler
* @param string $name
* @return Phalcon\Mvc\Micro\CollectionInterface
*/
PHP_METHOD(Phalcon_Mvc_Micro_Collection, head){

zval *route_pattern, *handler, *method;
zval *route_pattern, *handler, *name = NULL;

phalcon_fetch_params(0, 2, 0, &route_pattern, &handler);
phalcon_fetch_params(0, 2, 0, &route_pattern, &handler, &name);

ALLOC_INIT_ZVAL(method);
PHALCON_ZVAL_MAYBE_INTERNED_STRING(method, phalcon_interned_HEAD);
phalcon_mvc_collection_addmap(getThis(), method, route_pattern, handler TSRMLS_CC);
zval_ptr_dtor(&method);
phalcon_mvc_collection_addmap(getThis(), phalcon_interned_HEAD, route_pattern, handler, name TSRMLS_CC);
RETURN_ZVAL(getThis(), 1, 0);
}

Expand All @@ -348,18 +352,16 @@ PHP_METHOD(Phalcon_Mvc_Micro_Collection, head){
*
* @param string $routePattern
* @param callable $handler
* @param string $name
* @return Phalcon\Mvc\Micro\CollectionInterface
*/
PHP_METHOD(Phalcon_Mvc_Micro_Collection, delete){

zval *route_pattern, *handler, *method;
zval *route_pattern, *handler, *name = NULL;

phalcon_fetch_params(0, 2, 0, &route_pattern, &handler);
phalcon_fetch_params(0, 2, 0, &route_pattern, &handler, &name);

ALLOC_INIT_ZVAL(method);
PHALCON_ZVAL_MAYBE_INTERNED_STRING(method, phalcon_interned_DELETE);
phalcon_mvc_collection_addmap(getThis(), method, route_pattern, handler TSRMLS_CC);
zval_ptr_dtor(&method);
phalcon_mvc_collection_addmap(getThis(), phalcon_interned_DELETE, route_pattern, handler, name TSRMLS_CC);
RETURN_ZVAL(getThis(), 1, 0);
}

Expand All @@ -368,17 +370,15 @@ PHP_METHOD(Phalcon_Mvc_Micro_Collection, delete){
*
* @param string $routePattern
* @param callable $handler
* @param string $name
* @return Phalcon\Mvc\Micro\CollectionInterface
*/
PHP_METHOD(Phalcon_Mvc_Micro_Collection, options){

zval *route_pattern, *handler, *method;
zval *route_pattern, *handler, *name = NULL;

phalcon_fetch_params(0, 2, 0, &route_pattern, &handler);
phalcon_fetch_params(0, 2, 0, &route_pattern, &handler, &name);

ALLOC_INIT_ZVAL(method);
PHALCON_ZVAL_MAYBE_INTERNED_STRING(method, phalcon_interned_OPTIONS);
phalcon_mvc_collection_addmap(getThis(), method, route_pattern, handler TSRMLS_CC);
zval_ptr_dtor(&method);
phalcon_mvc_collection_addmap(getThis(), phalcon_interned_OPTIONS, route_pattern, handler, name TSRMLS_CC);
RETURN_ZVAL(getThis(), 1, 0);
}
11 changes: 6 additions & 5 deletions unit-tests/MicroMvcCollectionsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,18 +72,19 @@ public function testMicroCollections()

$collection->setHandler($controller);

$collection->map('/', 'index');
$collection->map('/', 'index', 'index_route');

$collection->map('/edit/{number}', 'edit');
$collection->map('/edit/{number}', 'edit', 'edit_route');

$app->mount($collection);

$app->handle('/');
$this->assertEquals($controller->getEntered(), 1);
$this->assertEquals(1, $controller->getEntered());
$this->assertEquals('index_route', $app->getRouter()->getMatchedRoute()->getName());

$app->handle('/edit/100');
$this->assertEquals($controller->getEntered(), 101);

$this->assertEquals(101, $controller->getEntered());
$this->assertEquals('edit_route', $app->getRouter()->getMatchedRoute()->getName());
}

public function testMicroCollectionsPrefixed()
Expand Down