| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!-- Reviewed: no -->
- <sect3 id="zend.controller.router.routes.rest">
- <title>Zend_Rest_Route</title>
- <para>
- The <classname>Zend_Rest</classname> component contains a RESTful route
- for <classname>Zend_Controller_Router_Rewrite</classname>. This route
- offers a standardized routing scheme that routes requests by translating
- the <acronym>HTTP</acronym> method and the <acronym>URI</acronym>
- to a module, controller, and action. The table below provides an overview
- of how request methods and <acronym>URI</acronym>'s are routed.
- </para>
- <table frame="all">
- <title>Zend_Rest_Route Behavior</title>
- <tgroup cols='3' align='left' colsep='1' rowsep='1'>
- <colspec colname='method' />
- <colspec colname='URI' />
- <colspec colname='route' />
- <thead>
- <row>
- <entry>Method</entry>
- <entry><acronym>URI</acronym></entry>
- <entry>Module_Controller::action</entry>
- </row>
- </thead>
- <tbody>
- <row>
- <entry><constant>GET</constant></entry>
- <entry><filename>/product/ratings/</filename></entry>
- <entry><methodname>Product_RatingsController::indexAction()</methodname></entry>
- </row>
- <row>
- <entry><constant>GET</constant></entry>
- <entry><filename>/product/ratings/:id</filename></entry>
- <entry><methodname>Product_RatingsController::getAction()</methodname></entry>
- </row>
- <row>
- <entry><constant>POST</constant></entry>
- <entry><filename>/product/ratings</filename></entry>
- <entry><methodname>Product_RatingsController::postAction()</methodname></entry>
- </row>
- <row>
- <entry><constant>PUT</constant></entry>
- <entry><filename>/product/ratings/:id</filename></entry>
- <entry><methodname>Product_RatingsController::putAction()</methodname></entry>
- </row>
- <row>
- <entry><constant>DELETE</constant></entry>
- <entry><filename>/product/ratings/:id</filename></entry>
- <entry>
- <methodname>Product_RatingsController::deleteAction()</methodname>
- </entry>
- </row>
- <row>
- <entry><constant>POST</constant></entry>
- <entry><filename>/product/ratings/:id?_method=PUT</filename></entry>
- <entry><methodname>Product_RatingsController::putAction()</methodname></entry>
- </row>
- <row>
- <entry><constant>POST</constant></entry>
- <entry><filename>/product/ratings/:id?_method=DELETE</filename></entry>
- <entry>
- <methodname>Product_RatingsController::deleteAction()</methodname>
- </entry>
- </row>
- </tbody>
- </tgroup>
- </table>
- <sect4 id="zend.rest.route_usage">
- <title>Zend_Rest_Route Usage</title>
- <para>
- To enable <classname>Zend_Rest_Route</classname> for an entire
- application, construct it with no config params and add it as the
- default route on the front controller:
- </para>
- <programlisting language="php"><![CDATA[
- $front = Zend_Controller_Front::getInstance();
- $restRoute = new Zend_Rest_Route($front);
- $front->getRouter()->addRoute('default', $restRoute);
- ]]></programlisting>
- <note>
- <para>
- If <classname>Zend_Rest_Route</classname> cannot match a valid
- module, controller, or action, it will return <constant>FALSE</constant> and the
- router will attempt to match using the next route in the router.
- </para>
- </note>
- <para>
- To enable <classname>Zend_Rest_Route</classname> for specific modules,
- construct it with an array of module names as the 3rd constructor argument:
- </para>
- <programlisting language="php"><![CDATA[
- $front = Zend_Controller_Front::getInstance();
- $restRoute = new Zend_Rest_Route($front, array(), array('product'));
- $front->getRouter()->addRoute('rest', $restRoute);
- ]]></programlisting>
- <para>
- To enable <classname>Zend_Rest_Route</classname> for specific
- controllers, add an array of controller names as the value of each module array element.
- </para>
- <programlisting language="php"><![CDATA[
- $front = Zend_Controller_Front::getInstance();
- $restRoute = new Zend_Rest_Route($front, array(), array(
- 'product' => array('ratings')
- ));
- $front->getRouter()->addRoute('rest', $restRoute);
- ]]></programlisting>
- </sect4>
- <sect4 id="zend.rest.route_config">
- <title>Zend_Rest_Route with Zend_Config_Ini</title>
- <para>
- To use <classname>Zend_Rest_Route</classname> from an <acronym>INI</acronym> config
- file, use a route type parameter and set the config options:
- </para>
- <programlisting language="ini"><![CDATA[
- routes.rest.type = Zend_Rest_Route
- routes.rest.defaults.controller = object
- routes.rest.mod = project,user
- ]]></programlisting>
- <para>
- The 'type' option designates the RESTful routing config type. The 'defaults' option is
- used to specify custom default module, controller, and/or actions for the route. All
- other options in the config group are treated as RESTful module names, and their values
- are RESTful controller names. The example config defines
- <classname>Mod_ProjectController</classname> and
- <classname>Mod_UserController</classname> as RESTful controllers.
- </para>
- <para>
- Then use the <methodname>addConfig()</methodname> method of the Rewrite router object:
- </para>
- <programlisting language="php"><![CDATA[
- $config = new Zend_Config_Ini('path/to/routes.ini');
- $router = new Zend_Controller_Router_Rewrite();
- $router->addConfig($config, 'routes');
- ]]></programlisting>
- </sect4>
- <sect4 id="zend.rest.controller">
- <title>Zend_Rest_Controller</title>
- <para>
- To help or guide development of Controllers for use with
- <classname>Zend_Rest_Route</classname>, extend your Controllers from
- <classname>Zend_Rest_Controller</classname>.
- <classname>Zend_Rest_Controller</classname> defines the 5 most-commonly
- needed operations for RESTful resources in the form of abstract action
- methods.
- </para>
- <itemizedlist>
- <listitem>
- <para>
- <emphasis><methodname>indexAction()</methodname></emphasis> -
- Should retrieve an index of resources and assign it to view.
- </para>
- </listitem>
- <listitem>
- <para>
- <emphasis><methodname>getAction()</methodname></emphasis> -
- Should retrieve a single resource identified by <acronym>URI</acronym>
- and assign it to view.
- </para>
- </listitem>
- <listitem>
- <para>
- <emphasis><methodname>postAction()</methodname></emphasis> -
- Should accept a new single resource and persist its state.
- </para>
- </listitem>
- <listitem>
- <para>
- <emphasis><methodname>putAction()</methodname></emphasis> -
- Should accept a single resource idenitifed by <acronym>URI</acronym>
- and persist its state.
- </para>
- </listitem>
- <listitem>
- <para>
- <emphasis><methodname>deleteAction()</methodname></emphasis> -
- Should delete a single resource identified by <acronym>URI</acronym>.
- </para>
- </listitem>
- </itemizedlist>
- </sect4>
- </sect3>
- <!--
- vim:se ts=4 sw=4 et:
- -->
|