PostText/PostText.pl

67 lines
1.3 KiB
Perl
Raw Normal View History

#!/usr/bin/env perl
# PostText v0.1
# Jul 22
use Mojolicious::Lite -signatures;
2022-07-28 21:13:26 -04:00
use Mojo::Pg;
# Load the local modules too
use lib 'lib';
use PostText::Model::Thread;
#use Data::Dumper; # For your debugging pleasure
2022-07-28 21:13:26 -04:00
# Load Mojo plugins
plugin 'Config';
# Helpers
helper pg => sub {
state $pg = Mojo::Pg->new(app->config->{app->mode}{'pg_string'})
};
2022-08-03 23:44:34 -04:00
helper thread => sub {
state $thread = PostText::Model::Thread->new(pg => shift->pg)
};
2022-07-28 21:13:26 -04:00
# Begin routing
under sub ($c) {
2022-07-31 23:17:15 -04:00
$c->session(expires => time() + 31536000);
2022-07-28 21:13:26 -04:00
1;
};
# Root
get '/', sub ($c) { $c->redirect_to('view') };
# View
get '/view', sub ($c) {
my $threads = $c->thread->get_threads();
$c->stash(threads => $threads);
$c->render();
};
# Post
any [qw{GET POST}], '/post', sub ($c) {
my $thread_author = $c->param('name' );
2022-08-03 23:44:34 -04:00
my $thread_title = $c->param('title');
my $thread_body = $c->param('post' );
2022-08-03 23:44:34 -04:00
if ($thread_author && $thread_title && $thread_body) {
$c->thread->create_thread($thread_author, $thread_title, $thread_body);
return $c->redirect_to('view');
}
return $c->render();
};
# Configure things
2022-07-28 21:13:26 -04:00
app->secrets(app->config->{'secrets'}) || die $@;
app->pg->migrations->from_dir('migrations')->migrate(3);
2022-07-29 22:15:14 -04:00
# Send it
app->start();