NAME
Mojolicious::Plugin::Model - Model for Mojolicious applications
SYNOPSIS
Model Users
package MyApp::Model::Users;
use Mojo::Base 'MyApp::Model';
sub check {
my ($self, $name, $pass) = @_;
# Constant
return int rand 2;
# Or Mojo::Pg
return $self->app->pg->db->query('...')->array->[0];
# Or HTTP check
return $self->app->ua->post($url => json => {user => $name, pass => $pass})
->rex->tx->json('/result');
}
1;
Mojolicious::Lite application
#!/usr/bin/env perl
use Mojolicious::Lite;
use lib 'lib';
plugin 'Model';
# /?user=sebastian&pass=secr3t
any '/' => sub {
my $c = shift;
my $user = $c->param('user') || '';
my $pass = $c->param('pass') || '';
return $c->render(text => "Welcome $user.") if $c->model('users')->check($user, $pass);
$c->render(text => 'Wrong username or password.');
};
app->start;
DESCRIPTION
Mojolicious::Plugin::Model is a Model (M in MVC architecture) for Mojolicious applications. Each model has an app
attribute.
HELPERS
Mojolicious::Plugin::Model implements the following helpers.
model
my $model = $c->model('users');
Create and cache a model object with given name.
METHODS
Mojolicious::Plugin::Model inherits all methods from Mojolicious::Plugin and implements the following new ones.
register
$plugin->register(Mojolicious->new);
Register plugin in Mojolicious application.
SEE ALSO
Mojolicious, Mojolicious::Guides, http://mojolicio.us.
AUTHOR
Andrey Khozov, avkhozov@googlemail.com
.
COPYRIGHT AND LICENSE
Copyright (C) 2015, Andrey Khozov.
This program is free software, you can redistribute it and/or modify it under the terms of the Artistic License version 2.0.