| Mojolicious documentation | Contained in the Mojolicious distribution. |
ojo - Fun Oneliners With Mojo!
perl -Mojo -e 'b(g("mojolicio.us")->dom->at("title")->text)->say'
A collection of automatically exported functions for fun Perl oneliners.
ojo implements the following functions.
a my $app = a('/' => sub { shift->render(json => {hello => 'world'}) });
Create a Mojolicious::Lite route accepting all request methods and return the application.
perl -Mojo -e 'a("/" => {text => "Hello Mojo!"})->start' daemon
b my $stream = b('lalala');
Turn input into a Mojo::ByteStream object.
perl -Mojo -e 'b(g("mojolicio.us")->body)->html_unescape->say'
d my $res = d('http://mojolicio.us');
my $res = d('http://mojolicio.us', {'X-Bender' => 'X_x'});
my $res = d(
'http://mojolicio.us',
{'Content-Type' => 'text/plain'},
'Hello!'
);
Perform DELETE request and turn response into a Mojo::Message::Response
object.
f my $res = f('http://kraih.com/foo' => {test => 123});
my $res = f('http://kraih.com/foo', 'UTF-8', {test => 123});
my $res = f(
'http://kraih.com/foo',
{test => 123},
{'Content-Type' => 'multipart/form-data'}
);
my $res = f(
'http://kraih.com/foo',
'UTF-8',
{test => 123},
{'Content-Type' => 'multipart/form-data'}
);
my $res = f('http://kraih.com/foo', {file => {file => '/foo/bar.txt'}});
my $res = f('http://kraih.com/foo', {file => {content => 'lalala'}});
my $res = f(
'http://kraih.com/foo',
{myzip => {file => $asset, filename => 'foo.zip'}}
);
Perform a POST request for a form and turn response into a
Mojo::Message::Response object.
g my $res = g('http://mojolicio.us');
my $res = g('http://mojolicio.us', {'X-Bender' => 'X_x'});
my $res = g(
'http://mojolicio.us',
{'Content-Type' => 'text/plain'},
'Hello!'
);
Perform GET request and turn response into a Mojo::Message::Response
object.
One redirect will be followed by default, you can change this behavior with
the MOJO_MAX_REDIRECTS environment variable.
MOJO_MAX_REDIRECTS=0 perl -Mojo -e 'b(g("mojolicio.us")->code)->say'
h my $res = h('http://mojolicio.us');
my $res = h('http://mojolicio.us', {'X-Bender' => 'X_x'});
my $res = h(
'http://mojolicio.us',
{'Content-Type' => 'text/plain'},
'Hello!'
);
Perform HEAD request and turn response into a Mojo::Message::Response
object.
p my $res = p('http://mojolicio.us');
my $res = p('http://mojolicio.us', {'X-Bender' => 'X_x'});
my $res = p(
'http://mojolicio.us',
{'Content-Type' => 'text/plain'},
'Hello!'
);
Perform POST request and turn response into a Mojo::Message::Response
object.
u my $res = u('http://mojolicio.us');
my $res = u('http://mojolicio.us', {'X-Bender' => 'X_x'});
my $res = u(
'http://mojolicio.us',
{'Content-Type' => 'text/plain'},
'Hello!'
);
Perform PUT request and turn response into a Mojo::Message::Response
object.
x my $dom = x('<div>Hello!</div>');
Turn HTML5/XML input into Mojo::DOM object.
print x('<div>Hello!</div>')->at('div')->text;
Mojolicious, Mojolicious::Guides, http://mojolicio.us.
| Mojolicious documentation | Contained in the Mojolicious distribution. |
package ojo; use strict; use warnings; # "I heard beer makes you stupid. # No I'm... doesn't." use Mojo::ByteStream 'b'; use Mojo::DOM; use Mojo::UserAgent; # Silent oneliners $ENV{MOJO_LOG_LEVEL} ||= 'fatal'; # User agent my $UA = Mojo::UserAgent->new; # "I'm sorry, guys. I never meant to hurt you. # Just to destroy everything you ever believed in." sub import { # Prepare exports my $caller = caller; no strict 'refs'; no warnings 'redefine'; # Executable $ENV{MOJO_EXE} ||= (caller)[1]; # Mojolicious::Lite eval "package $caller; use Mojolicious::Lite;"; # Allow redirects $UA->max_redirects(1) unless defined $ENV{MOJO_MAX_REDIRECTS}; # Application $UA->app(*{"${caller}::app"}->()); # Functions *{"${caller}::Oo"} = *{"${caller}::b"} = \&b; *{"${caller}::oO"} = sub { _request(@_) }; *{"${caller}::a"} = sub { *{"${caller}::any"}->(@_) and return *{"${caller}::app"}->() }; *{"${caller}::d"} = sub { _request('delete', @_) }; *{"${caller}::f"} = sub { _request('post_form', @_) }; *{"${caller}::g"} = sub { _request('get', @_) }; *{"${caller}::h"} = sub { _request('head', @_) }; *{"${caller}::p"} = sub { _request('post', @_) }; *{"${caller}::u"} = sub { _request('put', @_) }; *{"${caller}::x"} = sub { Mojo::DOM->new(@_) }; } # "I wonder what the shroud of Turin tastes like." sub _request { # Method my $method = $_[0] =~ /:|\// ? 'get' : lc shift; # Transaction my $tx = $method eq 'post_form' ? $UA->build_form_tx(@_) : $UA->build_tx($method, @_); # Process $tx = $UA->start($tx); # Error my ($message, $code) = $tx->error; warn qq/Problem loading URL "$_[0]". ($message)\n/ if $message && !$code; $tx->res; } 1; __END__