guestbook-ng/guestbook-ng.pl

74 lines
1.8 KiB
Perl
Raw Normal View History

2021-12-04 05:11:37 +00:00
#!/usr/bin/env perl
# Dec 2021
# Daniel Bowling <swaggboi@slackware.uk>
use Mojolicious::Lite -signatures;
2021-12-04 23:34:35 +00:00
use Mojo::Pg;
2021-12-04 07:26:25 +00:00
use lib 'lib';
use GuestbookNg::Model::Message;
use Data::Dumper; # Uncomment for debugging
2021-12-04 07:26:25 +00:00
2021-12-04 23:34:35 +00:00
# Plugins
plugin 'Config';
2021-12-12 02:02:54 +00:00
plugin 'TagHelpers::Pagination';
2021-12-04 23:34:35 +00:00
# Helpers
helper pg => sub {
2021-12-12 06:50:07 +00:00
my $env = app->mode eq 'development' ? 'dev_env' : 'prod_env';
2021-12-11 23:48:00 +00:00
2021-12-04 23:34:35 +00:00
state $pg = Mojo::Pg->new(
2021-12-11 23:48:00 +00:00
'postgres://' .
app->config->{$env}->{'pg_user'} .
':' .
app->config->{$env}->{'pg_pw'} .
'@' .
app->config->{$env}->{'pg_host'} .
'/' .
app->config->{$env}->{'pg_db'}
2021-12-04 23:34:35 +00:00
);
};
2021-12-05 04:06:05 +00:00
helper message => sub {
state $message = GuestbookNg::Model::Message->new(pg => shift->pg)
2021-12-05 04:06:05 +00:00
};
# Routes
2021-12-04 05:11:37 +00:00
get '/' => sub ($c) {
2021-12-12 02:02:54 +00:00
my $posts = $c->message->get_posts();
2021-12-12 06:50:07 +00:00
my $last_page = $c->message->get_last_page(@$posts);
2021-12-12 02:02:54 +00:00
my $this_page = $c->param('page') || $last_page;
2021-12-12 06:50:07 +00:00
my @view_posts = $c->message->view_posts($this_page, $last_page, @$posts);
2021-12-12 02:02:54 +00:00
$c->stash(
view_posts => \@view_posts,
this_page => $this_page,
last_page => $last_page
);
$c->render();
2021-12-04 07:26:25 +00:00
} => 'index';
2021-12-12 00:01:43 +00:00
any '/sign' => sub ($c) {
if ($c->req->method() eq 'POST') {
my $name = $c->param('name');
my $message = $c->param('message');
$c->message->send_post($name, $message);
$c->redirect_to('index');
}
else {
$c->render()
}
};
2021-12-04 23:34:35 +00:00
# Send it
2021-12-05 08:32:22 +00:00
app->secrets(app->config->{'secrets'}) || die $@;
2021-12-12 06:50:07 +00:00
app->message->max_posts(app->config->{'max_posts'})
if app->config->{'max_posts'};
app->pg->migrations->from_dir('migrations')->migrate(1);
2021-12-04 05:11:37 +00:00
app->start();