Giter Site home page Giter Site logo

catalyst-action-rest's Introduction

NAME
    Catalyst::Action::REST - Automated REST Method Dispatching

SYNOPSIS
        sub foo :Local :ActionClass('REST') {
          ... do setup for HTTP method specific handlers ...
        }

        sub foo_GET {
          ... do something for GET requests ...
        }

        # alternatively use an Action
        sub foo_PUT : Action {
          ... do something for PUT requests ...
        }

DESCRIPTION
    This Action handles doing automatic method dispatching for REST
    requests. It takes a normal Catalyst action, and changes the dispatch to
    append an underscore and method name. First it will try dispatching to
    an action with the generated name, and failing that it will try to
    dispatch to a regular method.

    For example, in the synopsis above, calling GET on "/foo" would result
    in the foo_GET method being dispatched.

    If a method is requested that is not implemented, this action will
    return a status 405 (Method Not Found). It will populate the "Allow"
    header with the list of implemented request methods. You can override
    this behavior by implementing a custom 405 handler like so:

       sub foo_not_implemented {
          ... handle not implemented methods ...
       }

    If you do not provide an _OPTIONS subroutine, we will automatically
    respond with a 200 OK. The "Allow" header will be populated with the
    list of implemented request methods. If you do not provide an _HEAD
    either, we will auto dispatch to the _GET one in case it exists.

    It is likely that you really want to look at Catalyst::Controller::REST,
    which brings this class together with automatic Serialization of
    requests and responses.

    When you use this module, it adds the Catalyst::TraitFor::Request::REST
    role to your request class.

METHODS
    dispatch
        This method overrides the default dispatch mechanism to the
        re-dispatching mechanism described above.

SEE ALSO
    You likely want to look at Catalyst::Controller::REST, which implements
    a sensible set of defaults for a controller doing REST.

    This class automatically adds the Catalyst::TraitFor::Request::REST role
    to your request class. If you're writing a web application which
    provides RESTful responses and still needs to accommodate web browsers,
    you may prefer to use Catalyst::TraitFor::Request::REST::ForBrowsers
    instead.

    Catalyst::Action::Serialize, Catalyst::Action::Deserialize

TROUBLESHOOTING
    Q: I'm getting a "415 Unsupported Media Type" error. What gives?!
        A: Most likely, you haven't set Content-type equal to
        "application/json", or one of the accepted return formats. You can
        do this by setting it in your query accepted return formats. You can
        do this by setting it in your query string thusly:
        "?content-type=application%2Fjson (where %2F == / uri escaped)."

        NOTE Apache will refuse %2F unless configured otherwise. Make sure
        "AllowEncodedSlashes On" is in your httpd.conf file in order for
        this to run smoothly.

AUTHOR
    Adam Jacob <[email protected]>, with lots of help from mst and
    jrockway

    Marchex, Inc. paid me while I developed this module.
    (<http://www.marchex.com>)

CONTRIBUTORS
    Tomas Doran (t0m) <[email protected]>

    John Goulah

    Christopher Laco

    Daisuke Maki <[email protected]>

    Hans Dieter Pearcey

    Brian Phillips <[email protected]>

    Dave Rolsky <[email protected]>

    Luke Saunders

    Arthur Axel "fREW" Schmidt <[email protected]>

    J. Shirley <[email protected]>

    Gavin Henry <[email protected]>

    Gerv http://www.gerv.net/

    Colin Newell <[email protected]>

    Wallace Reis <[email protected]>

COPYRIGHT
    Copyright (c) 2006-2012 the above named AUTHOR and CONTRIBUTORS

LICENSE
    You may distribute this code under the same terms as Perl itself.

catalyst-action-rest's People

Contributors

agladdish avatar ap avatar arcanez avatar autarch avatar bobtfish avatar dandv avatar fcuny avatar ilmari avatar jshirley avatar nebulous avatar plu avatar rafl avatar shlevy avatar wreis avatar xenoterracide avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.