NAME Net::Jifty - interface to online Jifty applications VERSION Version 0.02 released 21 Nov 07 SYNOPSIS use Net::Jifty; my $j = Net::Jifty->new(site => 'http://mushroom.mu/', cookie_name => 'MUSHROOM_KINGDOM_SID', appname => 'MushroomKingdom', email => 'god@mushroom.mu', password => 'melange'); # the story begins $j->create(Hero => name => 'Mario', job => 'Plumber'); # find the hero whose job is Plumber and change his name to Luigi and color # to green $j->update(Hero => job => 'Plumber', name => 'Luigi', color => 'Green'); # win! $j->delete(Enemy => name => 'Bowser'); DESCRIPTION Jifty is a full-stack web framework. It provides an optional REST interface for applications. Using this module, you can interact with that REST interface to write client-side utilities. You can use this module directly, but you'll be better off subclassing it, such as what we've done for Net::Hiveminder. BUILD Each Net::Jifty object will do the following upon creation: Read config ..but only if you "use_config" is set to true. Log in ..unless a sid is available, in which case we're already logged in. login This assumes your site is using Jifty::Plugin::Authentication::Password. If that's not the case, override this in your subclass. This is called automatically when each Net::Jifty object is constructed (unless a session ID is passed in). call Action, Args This uses the Jifty "web services" API to perform an action. This is NOT the REST interface, though it resembles it to some degree. This module currently only uses this to log in. method Method, URL[, Args] This will perform a GET, POST, PUT, DELETE, etc using the internal LWP::UserAgent object. Your URL may be a string or an array reference (which will have its parts properly escaped and joined with "/"). Your URL already has "http://your.site/=/" prepended to it, and ".yml" appended to it, so you only need to pass something like "model/YourApp.Model.Foo/name", or "[qw/model YourApp.Model.Foo name]". This will return the data structure returned by the Jifty application, or throw an error. post URL, Args This will post the arguments to the specified URL. See the documentation for "method". get URL, Args This will get the specified URL, using the arguments. See the documentation for "method". act Action, Args Perform the specified action, using the specified arguments. create Model, FIELDS Create a new object of type Model with the FIELDS set. delete Model, Key => Value Find some Model where Key => Value and delete it update Model, Key => Value, FIELDS Find some Model where Key => Value and set FIELDS on it. read Model, Key => Value Find some Model where Key => Value and return it. canonicalize_package Type, Package Prepends "$appname.$Type." to $Package unless it's there already. canonicalize_action Action Prepends "$appname.Action." unless it's there already. canonicalize_model Model Prepends "$appname.Model." unless it's there already. get_sid Retrieves the SID from the LWP::UserAgent object join_url Fragments Encodes the fragments and joins them with "/". escape Strings URI escapes each string load_date Date Loads a yyyy-mm-dd date into a DateTime object. email_eq Email, Email Compares two email address. Returns true if they're equal, false if they're not. is_me Email Returns true if the given email looks like it is the current user's. load_config This will return a hash reference of the user's preferences. Because this method is designed for use in small standalone scripts, it has a few peculiarities. * It will "warn" if the permissions are too liberal on the config file, and fix them. * It will prompt the user for an email and password if necessary. Given the email and password, it will attempt to log in using them. If that fails, then it will try again. * Upon successful login, it will write a new config consisting of the options already in the config plus session ID, email, and password. config_permissions This will warn about (and fix) config files being readable by group or others. read_config_file This transforms the config file to a hashref. It also does any postprocessing needed, such as transforming localhost to 127.0.0.1 (due to an obscure bug, probably in HTTP::Cookies) write_config_file This will write the config to disk. This is usually only done when a sid is discovered, but may happen any time. prompt_login_info This will ask the user for her email and password. It may do so repeatedly until login is successful. SEE ALSO Jifty, Net::Hiveminder AUTHOR Shawn M Moore, "" BUGS Please report any bugs or feature requests to "bug-net-jifty at rt.cpan.org", or through the web interface at . COPYRIGHT & LICENSE Copyright 2007 Best Practical Solutions. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.