| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!-- EN-Revision: 16595 -->
- <!-- 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>GET</entry>
- <entry><filename>/product/ratings/</filename></entry>
- <entry><methodname>Product_RatingsController::indexAction()</methodname></entry>
- </row>
- <row>
- <entry>GET</entry>
- <entry><filename>/product/ratings/:id</filename></entry>
- <entry><methodname>Product_RatingsController::getAction()</methodname></entry>
- </row>
- <row>
- <entry>POST</entry>
- <entry><filename>/product/ratings</filename></entry>
- <entry><methodname>Product_RatingsController::postAction()</methodname></entry>
- </row>
- <row>
- <entry>PUT</entry>
- <entry><filename>/product/ratings/:id</filename></entry>
- <entry><methodname>Product_RatingsController::putAction()</methodname></entry>
- </row>
- <row>
- <entry>DELETE</entry>
- <entry><filename>/product/ratings/:id</filename></entry>
- <entry>
- <methodname>Product_RatingsController::deleteAction()</methodname>
- </entry>
- </row>
- <row>
- <entry>POST</entry>
- <entry><filename>/product/ratings/:id?_method="PUT"</filename></entry>
- <entry><methodname>Product_RatingsController::putAction()</methodname></entry>
- </row>
- <row>
- <entry>POST</entry>
- <entry><filename>/product/ratings/:id?_method="DELETE"</filename></entry>
- <entry>
- <methodname>Product_RatingsController::deleteAction()</methodname>
- </entry>
- </row>
- </tbody>
- </tgroup>
- </table>
- <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 false 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 id="zend.rest.controller">
- <title>Zend_Rest_Controller</title>
- <para>
- To help 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:
- -->
|