guestbook-ng/guestbook-ng.pl

102 lines
2.6 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;
2022-01-01 03:32:39 +00:00
use List::Util qw{shuffle};
use Data::Dumper; # Uncomment for debugging
# Load the model
2021-12-04 07:26:25 +00:00
use lib 'lib';
use GuestbookNg::Model::Message;
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-23 04:18:35 +00:00
plugin AssetPack => {pipes => [qw{Css JavaScript Combine}]};
2021-12-04 23:34:35 +00:00
# Helpers
helper pg => sub {
2021-12-19 05:43:18 +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-19 22:43:58 +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-19 04:03:53 +00:00
under sub ($c) {
# Opt out of Google FLoC
# https://paramdeo.com/blog/opting-your-website-out-of-googles-floc-network
$c->res->headers->header('Permissions-Policy', 'interest-cohort=()');
1;
};
2021-12-04 05:11:37 +00:00
get '/' => sub ($c) {
my $this_page = $c->param('page') || 1;
2021-12-23 03:23:10 +00:00
my $last_page = $c->message->get_last_page();
my $view_posts = $c->message->get_posts($this_page);
2021-12-12 02:02:54 +00:00
$c->stash(
2021-12-23 03:23:10 +00:00
view_posts => $view_posts,
2021-12-12 02:02:54 +00:00
this_page => $this_page,
last_page => $last_page
);
$c->render();
2021-12-04 07:26:25 +00:00
} => 'index';
2021-12-19 05:43:18 +00:00
any [qw{GET POST}], '/sign' => sub ($c) {
2021-12-20 00:09:16 +00:00
if ($c->param('name') && $c->param('message')) {
my $name = $c->param('name');
my $message = $c->param('message');
2021-12-19 04:03:53 +00:00
my $answer = $c->param('answer');
2021-12-19 22:56:45 +00:00
$c->message->create_post($name, $message) if $answer;
$c->redirect_to('index');
}
else {
2022-01-01 03:32:39 +00:00
my @answers = shuffle(0, 'false', undef);
my $right_answer_label = 'I\'m ready to sign (choose this one)';
my @wrong_answer_labels = shuffle(
'I don\'t want to sign (wrong answer)',
'This is spam/I\'m a bot, do not sign'
);
$c->stash(
answers => \@answers,
right_answer_label => $right_answer_label,
wrong_answer_labels => \@wrong_answer_labels
);
$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(3);
2021-12-12 06:50:07 +00:00
2021-12-23 04:18:35 +00:00
app->asset->store->paths(['assets']);
app->asset->process('swagg.css', 'css/swagg.css');
2021-12-04 05:11:37 +00:00
app->start();