Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ZF2 optional route constraints in child routes

I'm having an issue with an optional constraint in a route that is non-optional in it's children. My routing structure is as follows:

'profile' => [
    'type' => 'segment',
    'options' => [
        'route' => '/profile[/:id]',
        'constraints' => ['id' => '[0-9]*'],
        'defaults' => [
            'controller' => 'User\Controller\User',
            'action' => 'profile'
        ]
    ],
    'may_terminate' => true,
    'child_routes' => [
        'sessions' => [
            'type' => 'literal',
            'options' => [
                'route' => '/sessions',
                'defaults' => ['action' => 'sessions']
            ]
        ]
    ]
]

Which to my mind should give me the following routes:

  1. /profile - works
  2. /profile/123 - works
  3. /profile/sessions - doesn't work
  4. /profile/123/sessions - works

When I use route 3 in the URL view helper I get the following error:

$this->url('profile/sessions');

Zend\Mvc\Router\Exception\InvalidArgumentException: Missing parameter "id"

I originally had [0-9]+ as my constraint but making it optional (*) doesn't seem to have helped. Has anyone experienced this case before?

like image 925
Ross Avatar asked Oct 03 '12 16:10

Ross


2 Answers

Add it to your parent route.

'profile' => [
    'type' => 'segment',
    'options' => [                 // ↓ 
        'route' => '/profile[/:id][/:action]',
        'constraints' => [ 'id' => '[0-9]*', 'action' => '[a-zA-Z][a-zA-Z0-9_-]*' ],
        'defaults' => [
            'controller' => 'User\Controller\User',
            'action' => 'profile',
        ],
    ],
]

This will make it optional to have id and/or action. At least in theory it should make all your listed routes possible, there have been some issues with this.

like image 141
Matsemann Avatar answered Sep 28 '22 09:09

Matsemann


I had the same issue once, the only solution I found was to create a separate route (in your case for /profile/sessions) as the optional parameter for the base route, seems to become obligatory when accessing a child route.

like image 24
Andreas Linden Avatar answered Sep 28 '22 09:09

Andreas Linden