Download .zip |
Info | Example | View files (17) | Download .zip | Reputation | Support forum | Blog | Links |
Last Updated | Ratings | Unique User Downloads | Download Rankings | |||||
2020-03-28 (20 hours ago) | Not yet rated by the users | Total: 70 This week: 3 | All time: 9,570 This week: 128 |
Version | License | PHP version | Categories | |||
routeone 1.0.1 | GNU Lesser Genera... | 5 | HTTP, PHP 5, Design Patterns |
Description | Author | |
This package can parse request URLs and route to a controller. |
|
Route for PHP
It reads the url route and parses the values, so it could be interpreted manually or automatically.
Unlikely other libraries, this library does not have dependencies and it is contained in a single class.
This library is based in CoC Convention over Configuration. It reduces the boilerplate but it has fixed functionalities. This library does not allow to change the "route" but it covers practically all cases, so it increases the performance and usability while it sacrifices flexibility.
This library is also as fast as possible and slim as possible.
Let's say we do the next operation:
An user calls the next website http://somedomain.com/Customer/Insert, he wants want to show a form to insert a customer
$route=new RouteOne('.',null,null); // Create the RouteOneClass
$route->fetch(); // fetch all the input values (from the route, get, post and such).
$route->callObject('somenamespace\\controller\\%sController'); // where it will call the class CustomerController*
or
$route=new RouteOne('.',null,null); // Create the RouteOneClass
$route->fetch(); // fetch all the input values (from the route, get, post and such).
$route->callObjectEx('somenamespace\\controller\\{controller}Controller'); // where it will call the class CustomerController*
This code calls to the method InsertActionGet (GET), InsertActionPost (POST) or InsertAction (GET/POST) inside the class Customer
The method called is written as follow:
class Customer {
public function insertAction($id="",$idparent="",$event="") {
// here we do our operation.
}
}
Let's se we want to Update a Customer number 20, then we could call the next page
> http://somedomain.com/Customer/Update/20
where 20 is the "$id" of the customer to edit (it could be a number of a string)
And what if we want to Update a Customer number 20 of the business APPL
> http://somedomain.com/Customer/Update/20/APPL
Where APPL is the idparent
Now, let's say we click on some button or we do some action. It could be captured by the field _event and it is read by the argument $event. This variable could be send via GET or POST.
> http://somedomain.com/Customer/Update/20/APPL?_event=click
Now, let's say our system is modular and we have several customers (interna customers, external, etc.)
$route=new RouteOne('.',null,true); // true indicates it is modular
$route->fetch();
$route->callObject('somenamespace\\%2s%\\controller\\%1sController');
> http://somedomain.com/Internal/Customer/Update/20/APPL?_event=click
Then, the first ramification is the name of the module (Internal) and it calls the class somenamespace\Internal\controller\CustomerController
1) Create a .htaccess file
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_URI} !-f
RewriteCond %{REQUEST_URI} !-d
RewriteCond %{REQUEST_URI} !-L
# l = last
RewriteRule ^(example|test|css|vendors|vendor|js|img|upload)($|/) - [L]
RewriteRule ^(.*)$ router.php?req=$1 [L,QSA]
</IfModule>
where test1.php is the file that it will work as router. ?req=$1 is important because the system will read the route from "req"
// router.php
$route=new RouteOne(); // Create the RouteOneClass
$route->fetch(); // fetch all the input values (from the route, get, post and such).
$route->callObject('somenamespace\\controller\\%sController'); // where it will call the class \somenamespace\controller\CustomerController
> https://localhost/api/controller/{action}/{id}/{idparent}
where https://localhost* is the base (it could be changed on the constructor) apiindicates we are calling an "api". This value could be changed via$this->setPath()* Controller*. It's the controller class to call. Action*. It's the action (method) to call id*. Some unique identifier. idparent*. Some unique identifier (of the parent of object)
// router.php https://locahost/api/Customer/Get/1
$route=new RouteOne(); // Create the RouteOneClass
$route->fetch(); // fetch all the input values (from the route, get, post and such).
if ($route->getType()=='api') {
var_dump($route->getController()); // Customer
var_dump($route->getAction()); // Get
var_dump($route->getId()); // 1
var_dump($route->getIdparent()); // null
$route->callFile("api/%s.php",true); // we call the file Customer.php
}
WS is an alternative to API. We could use API/WS or both. The difference is how is it called (/api/ versus /ws/)
> https://localhost/ws/controller/{action}/{id}/{idparent}
where https://localhost* is the base (it could be changed on the constructor) wsindicates we are calling an "ws". This value could be changed via$this->setPath()* Controller*. It's the controller class to call. Action*. It's the action (method) to call id*. Some unique identifier. idparent*. Some unique identifier (of the parent of object)
// router.php https://locahost/ws/Customer/Get/1
$route=new RouteOne(); // Create the RouteOne Class
$route->fetch(); // fetch all the input values (from the route, get, post and such).
if ($route->getType()=='ws') {
var_dump($route->getController()); // Customer
var_dump($route->getAction()); // Get
var_dump($route->getId()); // 1
var_dump($route->getIdparent()); // null
$route->callFile("ws/%s.php",true); // we call the file Customer.php
}
Unlikely "api" and "ws" route, the controller route doesn't have a prefix in the route.
> https://localhost/controller/{action}/{id}/{idparent}
where https://localhost* is the base (it could be changed on the constructor) Controller*. It's the controller class to call. Action*. It's the action (method) to call id*. Some unique identifier. idparent*. Some unique identifier (of the parent of object)
router.php:
// router.php https://locahost/Customer/Get/1
$route=new RouteOne(); // Create the RouteOne Class
$route->fetch(); // fetch all the input values (from the route, get, post and such).
if ($route->getType()=='controller') {
var_dump($route->getController()); // Customer
var_dump($route->getAction()); // Get
var_dump($route->getId()); // 1
var_dump($route->getIdparent()); // null
$route->callObject('\\somenamespace\\controller\\%sController'); // we call CustomerController class and we call the method "getAction" / "getActionGet" or "getActionPost"
}
file CustomerController.php:
namespace somenamespace\controller;
class CustomerController {
// any action GET or POST
public function GetAction($id="",$idparent="",$event="") {
// my code goes here.
// $event (optional) is read from REQUEST or POST
}
// GET only action (optional)
public function GetActionGet($id="",$idparent="",$event="") {
// my code goes here.
}
// POST only action (optional)
public function GetActionPOST($id="",$idparent="",$event="") {
// my code goes here.
}
}
The front route (for the front-end) is different than other routes. Syntactically it is distributed on category, subcategory and subsubcategory.
> This route is not identified automatically so it must be set in the constructor
> https://localhost/category/{subcategory}/{subsubcategory}/{id}
where https://localhost* is the base (it could be changed on the constructor) category* The category that we are calling. subcategory*. (optional) The subcategory subsubcategory*. (optional) The sub-subcategory id. Some unique identifier. (id* is always the last element of the chain, so /category/20, category/subc/20 and /category/subc/subc/20 always returns 20).
Example: (isModule=false)
> http://localhost/Toys/GoodSmileCompany/Nendoroid/Thanos
Example: (isModule=true)
> http://localhost/Retail/Toys/GoodSmileCompany/Nendoroid/Thanos
Example: (isModule=false)
> http://localhost/Toys/GoodSmileCompany/Thanos
// router.php https://locahost/Products/New/123
$route=new RouteOne('.','front'); // Create the RouteOne Class for the front end. It is required to indicate the type as "front". Otherwise it will be interpreted as a "controller route".
$route->fetch(); // fetch all the input values.
if ($route->getType()=='front') {
var_dump($route->getCategory()); // Products
var_dump($route->getSubCategory()); // New
var_dump($route->getSubSubCategory()); // null
var_dump($route->getId()); // 123
}
It gets a query value (URL).
>Note: This query does not include the values "req","_event" and "_extra"
Example:
// http://localhost/..../?id=hi
$id=$router->getQuery("id"); // hi
$nf=$router->getQuery("something","not found"); // not found
It sets a query value
Example:
$route->setQuery("id","hi");
$id=$router->getQuery("id"); // hi
Fetch the values from the route, and the values are processed.
Call a method inside an object using the current route.
$classStructure
* The first %s (or %1s) is the name of the controller.<br> * The second %s (or %2s) is the name of the module (if any and if ->isModule=true)<br> * Example: namespace/%sClass if the controller=Example then it calls namespace/ExampleClass<br> * Example: namespace/%2s/%1sClass it calls namespace/Module/ExampleClass<br>
The name of the method is obtained via the current action
1) {nameaction}Action exists then it's called. 2) Otherwise, if $istpostback=false then it calls the method {nameaction}ActionGet 3) Otherwise, if $istpostback=true then it calls the method {nameaction}ActionPost
It creates and object (for example, a Controller object) and calls the method.<br> Note: It is an advanced version of this::callObject()<br> This method uses {} to replace values based in the next variables:<br>
| Tag | Description | |------------------|----------------------------------------------------| | {controller} | The name of the controller | | {action} | The current action | | {event} | The current event | | {type} | The current type of path (ws,controller,front,api) | | {module} | The current module (if module is active) | | {id} | The current id | | {idparent} | The current idparent | | {category} | The current category | | {subcategory} | The current subcategory | | {subsubcategory} | The current subsubcategory |
<b>Example:</b>
// controller example http://somedomain/Customer/Insert/23
$this->callObjectEx('cocacola\controller\{controller}Controller');
// it calls the method cocacola\controller\Customer::InsertAction(23,'','');
// front example: http://somedomain/product/coffee/nescafe/1
$this->callObjectEx('cocacola\controller\{category}Controller' // the class to call
,false // if error then it throw an error
,'{subcategory}' // the method to call (get or post)
,null // the method to call (method get)
,null // the method to call (method post)
,['subsubcategory','id']); // the arguments to call the method
// it calls the method cocacola\controller\product::coffee('nescafe','1');
Call a method inside an object using the current route.
It calls (include) a php file using the current name of the controller
Returns the current base url without traling space, paremters or queries
> <b>Note</b>: this function relies on $_SERVER['SERVER_NAME'] and it could be modified by the end-user
It returns the current server without trailing slash.
$route->getCurrentServer(); // http://somedomain
It gets the (full) url based in the information in the class.
$route->getUrl(); // http://somedomain/controller/action/id
$route->getUrl('id=20'); // http://somedomain/controller/action/id?id=20
$route->getUrl('id=20',true); // http://somedomain/controller/action/id?id=20&field=20&field2=40
It builds an url based in custom values
$route->url(null,"Customer","Update",20); // Customer/Update/20
It builds an url (front) based in custom values
$route->url(null,"Daily","Milk",20); // Daily/Milk/20
If the subdomain is empty or different to www, then it redirect to www.domain.com.<br> <b>Note: It doesn't work with localhost, domain without TLD (netbios) or ip domains. It is on purpose.</b><br> <b>Note: If this code needs to redirect, then it stops the execution of the code. Usually it must be called at the top of the code</b>
$route->alwaysWWW(); // if the domain is somedomain.dom/url, then it redirects to www.somedomain.dom/url
$route->alwaysWWW(true); // if the domain is http: somedomain.dom/url, then it redirects to https: www.somedomain.dom/url
If the page is loaded as http, then it redirects to https. <b>Note: It doesn't work with localhost, domain without TLD (netbios) or ip domains. It is on purpose.</b><br> <b>Note: If this code needs to redirect, then it stops the execution of the code. Usually it must be called at the top of the code</b>
$route->alwaysHTTPS(); // http://somedomain.com ---> https://somedomain.com
$route->alwaysHTTPS(); // http://localhost ---> // http://localhost
$route->alwaysHTTPS(); // http://127.0.0.1 ---> // http://127.0.0.1
$route->alwaysHTTPS(); // http://mypc ---> // http://mypc
If the subdomain is www (example www.domain.dom) then it redirect to a naked domain domain.dom<br> <b>Note: It doesn't work with localhost, domain without TLD (netbios) or ip domains. It is on purpose.</b><br> <b>Note: If this code needs to redirect, then it stops the execution of the code. Usually, it must be called at the top of the code</b>
$route->alwaysNakedDomain(); // if the domain is www.somedomain.dom/url, then it redirects to somedomain.dom/url
$route->alwaysNakedDomain(true); // if the domain is http: www.somedomain.dom/url, then it redirects to https: somedomain.dom/url
if true then the form is called as POST (i.e. a submit button).
it returns the current type
> Also obtained via getType()
|type|url expected|description| |----|------------|------------| | api |domain.dom/api/controller/action/id | {module}\api\controller\action\id\{idparent}?_event=event | | ws |domain.dom/ws/controller/action/id | {module}\ws\controller\action\id\{idparent}?_event=event | | controller |domain.dom/controller/action/id | {module}\controller\action\id\{idparent}?_event=event | | front |domain.dom/cat/subcat/subsubcat/id | {module}\category\subcategory\subsubcategory\id?_event=event |
Example:
$route=new RouteOne('.',null,false); // null means automatic type
$route->fetch();
if($route->type==='api') {
$route->callObject('somenamespace\\api\\%sApi');
} else {
$route->callObject('somenamespace\\controller\\%sController');
}
Example:
$route=new RouteOne('.',null,false); // null means automatic type
$route->fetch();
$route->callObject('somenamespace\\%3s%\\%sController'); // somespace/api/UserController , somespace/controller/UserController, etc.
Files |
File | Role | Description | ||
---|---|---|---|---|
examples (3 files, 1 directory) | ||||
lib (1 file) | ||||
tests (3 files) | ||||
.travis.yml | Data | Auxiliary data | ||
composer.json | Data | Auxiliary data | ||
LICENSE | Lic. | License text | ||
phpunit.xml | Data | Auxiliary data | ||
README.md | Doc. | Documentation |
Files | / | examples |
File | Role | Description | ||
---|---|---|---|---|
fullexample (3 files, 1 directory) | ||||
.htaccess | Data | Auxiliary data | ||
MiController.php | Class | Class source | ||
router.php | Example | Example script |
Files | / | examples | / | fullexample |
File | Role | Description | ||
---|---|---|---|---|
controller (2 files) | ||||
.htaccess | Data | Auxiliary data | ||
BootstrapUtil.php | Class | Class source | ||
router.php | Example | Example script |
Files | / | examples | / | fullexample | / | controller |
File | Role | Description |
---|---|---|
CustomerController.php | Class | Class source |
HomeController.php | Class | Class source |
Files | / | tests |
File | Role | Description |
---|---|---|
bootstrap.php | Aux. | Auxiliary script |
MyController.php | Aux. | Auxiliary script |
RouterOneTest.php | Class | Class source |
Version Control | Unique User Downloads | Download Rankings | |||||||||||||||
100% |
|
|
Applications that use this package |
If you know an application of this package, send a message to the author to add a link here.