1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211
|
# Copyright (C) 2008-2010, Sebastian Riedel.
package Mojo;
use strict;
use warnings;
use base 'Mojo::Base';
use Carp 'croak';
use Mojo::Client;
use Mojo::Commands;
use Mojo::Home;
use Mojo::Log;
use Mojo::Transaction::HTTP;
use Mojo::Transaction::WebSocket;
__PACKAGE__->attr(
build_tx_cb => sub {
sub { return Mojo::Transaction::HTTP->new }
}
);
__PACKAGE__->attr(client => sub { Mojo::Client->singleton });
__PACKAGE__->attr(home => sub { Mojo::Home->new });
__PACKAGE__->attr(log => sub { Mojo::Log->new });
__PACKAGE__->attr(
websocket_handshake_cb => sub {
sub {
my ($self, $tx) = @_;
# Request
my $req = $tx->req;
# Response
my $res = $tx->res;
# Handshake
$res->code(101);
$res->headers->upgrade('WebSocket');
$res->headers->connection('Upgrade');
my $scheme = $req->url->to_abs->scheme eq 'https' ? 'wss' : 'ws';
$res->headers->sec_websocket_origin($req->headers->origin);
$res->headers->sec_websocket_location(
$tx->req->url->to_abs->scheme($scheme)->to_string);
$res->headers->sec_websocket_protocol(
$req->headers->sec_websocket_protocol);
$res->body(
$self->client->websocket_challenge(
scalar $req->headers->sec_websocket_key1,
scalar $req->headers->sec_websocket_key2,
$req->body
)
);
# WebSocket transaction
return Mojo::Transaction::WebSocket->new(handshake => $tx);
}
}
);
# DEPRECATED in Snowman!
# Use $Mojolicious::VERSION instead.
our $VERSION = '0.999926';
# Oh, so they have internet on computers now!
sub new {
my $self = shift->SUPER::new(@_);
# Home
$self->home->detect(ref $self);
# Client logger
$self->client->log($self->log);
# Log directory
$self->log->path($self->home->rel_file('log/mojo.log'))
if -w $self->home->rel_file('log');
return $self;
}
# Bart, stop pestering Satan!
sub handler { croak 'Method "handler" not implemented in subclass' }
# Start command system
sub start {
my $class = shift;
# We can be called on class or instance
$class = ref $class || $class;
# We are the application
$ENV{MOJO_APP} ||= $class;
# Start!
return Mojo::Commands->start(@_);
}
1;
__END__
=head1 NAME
Mojo - The Box!
=head1 SYNOPSIS
use base 'Mojo';
# All the complexities of CGI, FastCGI, PSGI, HTTP and WebSocket get
# reduced to a single method call!
sub handler {
my ($self, $tx) = @_;
# Request
my $method = $tx->req->method;
my $path = $tx->req->url->path;
# Response
$tx->res->headers->content_type('text/plain');
$tx->res->body("$method request for $path!");
}
=head1 DESCRIPTION
Mojo provides a flexible runtime environment for Perl web frameworks.
It provides all the basic tools and helpers needed to write simple web
applications and higher level web frameworks such as L<Mojolicious>.
See L<Mojolicious> for more!
=head1 ATTRIBUTES
L<Mojo> implements the following attributes.
=head2 C<build_tx_cb>
my $cb = $mojo->build_tx_cb;
$mojo = $mojo->build_tx_cb(sub { ... });
The transaction builder callback, by default it builds a
L<Mojo::Transaction::HTTP> object.
=head2 C<client>
my $client = $mojo->client;
$mojo = $mojo->client(Mojo::Client->new);
A full featured HTTP 1.1 client for use in your applications, by default a
L<Mojo::Client> object.
=head2 C<home>
my $home = $mojo->home;
$mojo = $mojo->home(Mojo::Home->new);
The home directory of your application, by default a L<Mojo::Home> object
which stringifies to the actual path.
=head2 C<log>
my $log = $mojo->log;
$mojo = $mojo->log(Mojo::Log->new);
The logging layer of your application, by default a L<Mojo::Log> object.
=head2 C<websocket_handshake_cb>
my $cb = $mojo->websocket_handshake_cb;
$mojo = $mojo->websocket_handshake_cb(sub { ... });
The websocket handshake callback, by default it builds a
L<Mojo::Transaction::WebSocket> object and handles the response for the
handshake request.
=head1 METHODS
L<Mojo> inherits all methods from L<Mojo::Base> and implements the following
new ones.
=head2 C<new>
my $mojo = Mojo->new;
Construct a new L<Mojo> application.
Will automatically detect your home directory and set up logging to
C<log/mojo.log> if there's a log directory.
=head2 C<handler>
$tx = $mojo->handler($tx);
The handler is the main entry point to your application or framework and
will be called for each new transaction.
sub handler {
my ($self, $tx) = @_;
}
=head2 C<start>
Mojo->start;
Mojo->start('daemon');
Start the L<Mojo::Commands> command line interface for your application.
=head1 SEE ALSO
L<Mojolicious>, L<Mojolicious::Guides>, L<http://mojolicious.org>.
=cut
|