103 lines
2.2 KiB
Perl
Executable file
103 lines
2.2 KiB
Perl
Executable file
#!/usr/bin/env perl
|
|
|
|
# PostText v0.1
|
|
# Jul 22
|
|
|
|
use Mojolicious::Lite -signatures;
|
|
use Mojo::Pg;
|
|
use Data::Dumper; # For your debugging pleasure
|
|
|
|
# Load the local modules too
|
|
use lib 'lib';
|
|
use PostText::Model::Thread;
|
|
|
|
# Load Mojo plugins
|
|
plugin 'Config';
|
|
plugin 'TagHelpers::Pagination';
|
|
|
|
# Helpers
|
|
helper pg => sub {
|
|
state $pg = Mojo::Pg->new(app->config->{app->mode}{'pg_string'})
|
|
};
|
|
|
|
helper thread => sub {
|
|
state $thread = PostText::Model::Thread->new(pg => shift->pg)
|
|
};
|
|
|
|
# Begin routing
|
|
under sub ($c) {
|
|
$c->session(expires => time() + 31536000);
|
|
|
|
$c->stash(status => 400) if $c->flash('invalid_input');
|
|
|
|
1;
|
|
};
|
|
|
|
# Root
|
|
get '/', sub ($c) { $c->redirect_to('view') };
|
|
|
|
# View
|
|
group {
|
|
under 'view';
|
|
|
|
get '/:page', [page => qr/[0-9]+/], {page => 1}, sub ($c) {
|
|
my $base_path = '/view';
|
|
my $this_page = $c->param('page');
|
|
my $last_page = $c->thread->get_last_page();
|
|
my $threads = $c->thread->get_threads_by_page($this_page);
|
|
|
|
$c->stash(
|
|
threads => $threads,
|
|
this_page => $this_page,
|
|
last_page => $last_page,
|
|
base_path => $base_path
|
|
);
|
|
|
|
$c->render();
|
|
};
|
|
};
|
|
|
|
# Post
|
|
any [qw{GET POST}], '/post', sub ($c) {
|
|
my $v;
|
|
|
|
$v = $c->validation() if $c->req->method eq 'POST';
|
|
|
|
if ($v && $v->has_data) {
|
|
my $thread_author = $c->param('name' ) || 'Anonymous';
|
|
my $thread_title = $c->param('title');
|
|
my $thread_body = $c->param('post' );
|
|
|
|
$v->required('name' )->size(1, 63 );
|
|
$v->required('title')->size(1, 127 );
|
|
$v->required('post' )->size(2, 4000);
|
|
|
|
if ($v->has_error) {
|
|
$c->flash(invalid_input => 'Invalid thread title/text.')
|
|
}
|
|
else {
|
|
$c->thread->create_thread(
|
|
$thread_author,
|
|
$thread_title,
|
|
$thread_body
|
|
)
|
|
}
|
|
|
|
return $c->redirect_to('view');
|
|
}
|
|
|
|
return $c->render();
|
|
};
|
|
|
|
# Configure things
|
|
app->secrets(app->config->{'secrets'}) || die $@;
|
|
|
|
app->pg->migrations->from_dir('migrations')->migrate(3);
|
|
|
|
if (my $threads_per_page = app->config->{'threads_per_page'}) {
|
|
app->thread->threads_per_page($threads_per_page)
|
|
}
|
|
|
|
# Send it
|
|
app->start();
|