Simon Sessingø
fc4fd0edf1
[FEATURE] Added ExceptionHandling functionality + tests.
...
- Somehow the ExceptionHandling functionality never really get implemented and/or got lost in translation, it's back whup!
- Added some basic tests for Middleware + routing.
2016-04-09 07:05:49 +02:00
Simon Sessingø
2f2c3ca3ca
[OPTIMISATIONS] Optimised code and removed unused references
2016-04-09 05:58:18 +02:00
Simon Sessingø
b34738a51a
[OPTIMISATION] Optimised CSRF-token management.
2016-04-09 05:51:27 +02:00
Simon Sessingø
975c27659c
[BUGFIX] Bugfixes and optimisations
...
- Fixed issue causing nested groups not merging namespace correctly.
- Fixed issue causing longer urls (for example: /route) to have higher priority than (/route/match) in some cases.
2016-04-07 23:16:50 +02:00
Simon Sessingø
27371dfa11
[FEATURE] Added support for multiple aliases
2016-04-07 19:33:04 +02:00
Simon Sessingø
6e102711a8
[BUGFIX] Fixed nested groups not merging settings to routes
2016-04-07 01:38:03 +02:00
Simon Sessingø
4d58fbf7b5
[TASK] Added rewrite_uri parameter to Request class
2016-03-19 19:14:07 +01:00
Simon Sessingø
35bb58818e
[BUGFIX] Readded rendering of groups
2016-03-19 19:00:23 +01:00
Simon Sessingø
438d3c258b
[TASK] Readded merging
2016-03-19 17:11:54 +01:00
Simon Sessingø
1bafbab56b
[TASK] Moved RouterException. Readded lost stuff from Request.
2016-03-19 16:27:25 +01:00
Simon Sessingø
b29f2ce37d
[FEATURE] Added custom boot managers
2016-03-19 16:14:36 +01:00
Simon Sessingø
5483ffe458
[TASK] Readded group match inheritence .
...
- Settings on routes now have higher priority when merging settings from
group.
2016-03-18 17:43:57 +01:00
Simon Sessingø
6d8e95fcaa
[TASK] Match on group are no longer merged to child routes.
2016-03-18 15:21:45 +01:00
Simon Sessingø
db78135d19
[BUGFIX] Only render group if prefix matches.
2016-03-16 19:57:54 +01:00
Simon Sessingø
c4fcf750d4
Added support for x-forwarded-proto http header
2016-03-14 01:09:35 +01:00
Simon Sessingø
a92b6008fa
[TASK] Added http code to redirect method.
2016-03-14 01:00:19 +01:00
Simon Sessingø
115c8e510a
[BUGFIX] Added urldecode to RouterRessource, RouterRoute and
...
RouterController class to ensure that urls with special letters can be
picked up by a custom regular expression (read documentation: match).
2016-03-01 22:50:26 +01:00
Simon Sessingø
35ee79d02c
[TASK] Fixed regex causing optional parameters to sometimes catch required
...
parameters value.
2016-01-23 16:10:44 +01:00
Simon Sessingø
4dd0739df9
[BUGFIX] Fixed minor errors with optional parameter when using getRoute().
2016-01-17 04:56:29 +01:00
Simon Sessingø
27d24758b1
[OPTIMISATION] Ensured action parameter was set before using it.
2016-01-15 11:55:01 +01:00
Simon Sessingø
aeacda1812
[FEATURE] Added option to change route and get information about current
...
route through the Request object.
- Updated documentation to relfect new changes.
2016-01-15 11:06:13 +01:00
Simon Sessingø
765204f552
[FEATURE] Moved loadedRoute to request so it can be easily overwritten
...
from middleware.
2016-01-15 10:34:59 +01:00
Simon Sessingø
714edf7902
[OPTIMISATION] Parameters matching optimisations.
2016-01-15 10:20:50 +01:00
Simon Sessingø
b096742d6b
[BUGFIX] Enchanched regular expression for optinal parameters to
...
completely ignore path seperators (/).
2016-01-15 10:06:13 +01:00
Simon Sessingø
bb6f56ef8c
[BUGFIX] Fixed some ressources not working after latest update.
...
- Optimisations + cleanup.
2016-01-15 09:37:23 +01:00
Simon Sessingø
14a030294e
[BUGFIX] Minor bugfixes and optimisations
...
- Fixed getRoute sometimes not passing current loaded route.
- Fixed optional parameters in some occasions not working properly.
2016-01-14 16:37:36 +01:00
Simon Sessingø
1332ef7139
[TASK] Optimised regex for matching parameters.
2016-01-05 04:52:12 +01:00
Simon Sessingø
69b0f4320e
[BUGFIX] Fixed show not always called if using nested ressources.
2015-12-24 00:39:21 +01:00
Simon Sessingø
4c60055c7e
[BUGFIX] Custom parameters regex is now working again.
...
- Fixed custom parameters regex not working.
- Renamed setting "parameterRegex" to "match" to match the Laravel
documentation.
2015-12-23 20:25:26 +01:00
Simon Sessingø
849749969d
[OPTIMISATION] Made getAllHeaders protected.
2015-12-19 20:20:42 +01:00
Simon Sessingø
c37a7159d2
[OPTIMISATION] No reason to str_replace twice.
2015-12-19 20:18:35 +01:00
Simon Sessingø
df2545dd37
[TASK]
...
- Added support for setups where getallheaders function is not availible.
- Made matchDomain method in RouterGroup always return boolean.
2015-12-19 20:15:10 +01:00
Simon Sessingø
3510c4c5a4
[BUGFIX] Wrong validation on domain
2015-12-19 18:25:18 +01:00
Simon Sessingø
ce27196083
[BUGFIX] Bugfixes.
...
- Fixed not validating domain on
- Other small changes.
2015-12-19 18:07:18 +01:00
Simon Sessingø
cbaa0bcaac
[FEATURE] getRoute now support domains.
...
- Optimisations + bugfixes.
2015-12-19 09:21:12 +01:00
Simon Sessingø
b9be7695a7
[TASK] Fixed parameter matching regex when using multiple optional parameters.
2015-12-19 07:15:32 +01:00
Simon Sessingø
97e2edd207
[FEATURE] ResourceControllers now support nested ressources
2015-12-17 14:39:47 +01:00
Simon Sessingø
5a501db767
[TASK] Csrf-token fixes + readded BaseCsrfVerifier.
...
- Readded BaseCsrfVerifier middleware.
- Csrf-token expire time is now updated on each page refresh.
- CSRF-token update now happens after the route has been loaded, to ensure
no faulty "Invalid csrf-token" exceptions.
2015-12-14 13:36:38 +01:00
Simon Sessingø
4f07f38cf5
[BUGFIX] Fixed getting current route not always returning current url.
2015-12-12 23:38:48 +01:00
Simon Sessingø
c67ab20ddd
[BUGFIX] Merge current parameters with new provided ones.
2015-12-12 22:53:25 +01:00
Simon Sessingø
ad1ce21c66
[BUGFIX] Fixed getParams not being passed when using getRoute on current
...
route.
2015-12-12 20:42:06 +01:00
Simon Sessingø
23ee53060e
Merge branch 'development' of https://github.com/skipperbent/simple-php-router into development
...
Conflicts:
src/Pecee/SimpleRouter/RouterBase.php
2015-12-11 18:23:19 +01:00
Simon Sessingø
77ba9f165e
[BUGFIX] Fixed get params warning.
2015-12-11 18:21:00 +01:00
Simon Sessingø
0bec524606
[OPTIMISATION] Optimisations + bugfixes.
...
- Fixed references to Pecee framework.
- Fixed variables not being initialised before usage.
- Cleaned up duplicate checks.
- Other small optimisations and bugfixes.
2015-12-11 18:06:52 +01:00
Simon Sessingø
cede827a45
[BUGFIX] Fixed error with RouterGroup.
2015-12-10 21:22:14 +01:00
Simon Sessingø
e1c549bfdb
[OPTIMISATION] Added missing return statement
2015-12-10 19:55:48 +01:00
Simon Sessingø
6c56947792
[FEATURE] Added support for domains array on group.
...
- Group will not render if one or more domain does not match.
2015-12-10 04:42:50 +01:00
Simon Sessingø
59956d5fca
[BUGFIX] Optimisations + bugfixes.
2015-12-10 04:12:44 +01:00
Simon Sessingø
3ba2cec8af
[OPTIMISATION] Optimised more foreach loops to improve performance.
2015-12-10 03:41:10 +01:00
Simon Sessingø
d36880e9a0
[OPTIMISATION] Optimised routes loop.
2015-12-10 03:36:50 +01:00