PostText/lib/PostText.pm

212 lines
5.9 KiB
Perl
Raw Normal View History

package PostText;
2022-09-15 23:14:40 +00:00
2023-01-09 04:54:58 +00:00
# Sep 22 2022
2022-09-15 23:14:40 +00:00
use Mojo::Base 'Mojolicious', -signatures;
use Mojo::Pg;
use Crypt::Passphrase;
# The local libs
2022-09-15 23:14:40 +00:00
use PostText::Model::Thread;
use PostText::Model::Remark;
use PostText::Model::Moderator;
2022-09-15 23:14:40 +00:00
sub startup($self) {
$self->plugin('Config');
$self->plugin('TagHelpers::Pagination');
$self->plugin(AssetPack => {pipes => [qw{Css Combine}]});
# Helpers
2022-10-13 03:58:46 +00:00
$self->helper(pg => sub ($c) {
state $pg = Mojo::Pg->new($c->config->{$self->mode}{'pg_string'})
2022-09-15 23:14:40 +00:00
});
$self->helper(authenticator => sub ($c) {
state $authenticator = Crypt::Passphrase->new(
encoder => 'Argon2',
validators => ['Bcrypt'], # For old passphrases
)
});
2022-10-13 03:58:46 +00:00
$self->helper(thread => sub ($c) {
state $thread = PostText::Model::Thread->new(pg => $c->pg)
});
2022-10-13 03:58:46 +00:00
$self->helper(remark => sub ($c) {
state $remark = PostText::Model::Remark->new(pg => $c->pg)
2022-09-15 23:14:40 +00:00
});
$self->helper(moderator => sub ($c) {
state $moderator = PostText::Model::Moderator->new(
pg => $c->pg,
authenticator => $c->authenticator
)
});
$self->helper(truncate_text => sub ($c, $input_text) {
my $truncated_text = 500 < length($input_text)
2022-11-22 04:02:25 +00:00
? substr($input_text, 0, 500) . '…' : $input_text;
return $truncated_text;
2022-09-15 23:14:40 +00:00
});
$self->helper(is_mod => sub ($c) {
if (my $mod_id = $c->session->{'mod_id'}) {
2023-01-09 04:53:30 +00:00
return 1 unless $c->moderator->lock_status($mod_id)
}
return undef;
});
2023-04-16 19:15:39 +00:00
$self->helper(is_admin => sub ($c) {
$c->session->{'is_admin'} || undef
});
2022-09-15 23:14:40 +00:00
# Finish configuring some things
$self->secrets($self->config->{'secrets'}) || die $@;
2022-12-18 02:46:29 +00:00
$self->pg->migrations->from_dir('migrations')->migrate(11);
2022-09-15 23:14:40 +00:00
if (my $threads_per_page = $self->config->{'threads_per_page'}) {
$self->thread->per_page($threads_per_page)
}
if (my $remarks_per_page = $self->config->{'remarks_per_page'}) {
$self->remark->per_page($remarks_per_page)
}
if (my $date_format = $self->config->{'date_format'}) {
$self->thread->date_format($date_format);
$self->remark->date_format($date_format);
}
2022-09-15 23:14:40 +00:00
$self->asset->process('main.css', 'css/PostText.css');
2022-10-19 01:28:18 +00:00
push @{$self->commands->namespaces}, 'PostText::Command';
2022-09-15 23:14:40 +00:00
# Begin routing
my $r = $self->routes->under(sub ($c) {
$c->session(expires => time + 31536000);
$c->session(author => 'Anonymous') unless $c->session('author');
2022-09-15 23:14:40 +00:00
1;
});
# Root redirect
2022-10-01 22:00:23 +00:00
$r->get('/', sub ($c) { $c->redirect_to('threads_list') });
2022-09-15 23:14:40 +00:00
# Thread
2022-10-13 03:21:13 +00:00
my $thread = $r->under('/thread');
2022-12-08 05:15:46 +00:00
$thread->get('/list/:list_page', [list_page => qr/\d+/], {list_page => 1})
2022-10-01 22:00:23 +00:00
->to('thread#by_page')
->name('threads_list');
2022-10-13 03:21:13 +00:00
$thread->any([qw{GET POST}], '/post')
->to('thread#create')
2022-10-01 22:00:23 +00:00
->name('post_thread');
$thread->under('/single/:thread_id', [thread_id => qr/\d+/])
->get('/:thread_page', [thread_page => qr/\d+/], {thread_page => 1})
2022-10-01 22:00:23 +00:00
->to('thread#by_id')
->name('single_thread');
2022-09-15 23:14:40 +00:00
2022-12-08 05:15:46 +00:00
$thread->get('/bump/:thread_id', [thread_id => qr/\d+/])
2022-10-13 02:14:28 +00:00
->to('thread#bump')
->name('bump_thread');
2022-12-08 05:15:46 +00:00
$thread->get('/flag/:thread_id', [thread_id => qr/\d+/])
2022-10-14 03:57:58 +00:00
->to('thread#flag')
->name('flag_thread');
2022-09-15 23:14:40 +00:00
# Remark
2022-10-13 03:06:26 +00:00
my $remark = $r->under('/remark');
2022-12-08 05:15:46 +00:00
$remark->any([qw{GET POST}], '/post/:thread_id', [thread_id => qr/\d+/])
2022-10-01 22:00:23 +00:00
->to('remark#create')
->name('post_remark');
2022-12-08 05:15:46 +00:00
$remark->get('/single/:remark_id', [remark_id => qr/\d+/])
2022-10-01 22:00:23 +00:00
->to('remark#by_id')
->name('single_remark');
2022-10-14 03:57:58 +00:00
2022-12-08 05:15:46 +00:00
$remark->get('/flag/:remark_id', [remark_id => qr/\d+/])
2022-10-14 03:57:58 +00:00
->to('remark#flag')
->name('flag_remark');
2022-11-20 04:55:03 +00:00
# Login/out
2022-11-20 04:55:03 +00:00
$r->any([qw{GET POST}], '/login')
->to('moderator#login')
->name('mod_login');
$r->get('/logout')
->to('moderator#logout')
->name('mod_logout');
2022-11-20 04:55:03 +00:00
# Moderator
my $moderator = $r->under('/moderator', sub ($c) {
return 1 if $c->is_mod;
2022-11-20 04:55:03 +00:00
# Return undef otherwise a body is rendered with the redirect...
return $c->redirect_to('mod_login'), undef;
2022-11-20 04:55:03 +00:00
});
$moderator->get('/flagged')
->to('moderator#flagged')
->name('flagged_list');
2022-12-09 00:50:21 +00:00
$moderator->get('/hidden')
->to('moderator#hidden')
->name('hidden_list');
2023-04-22 01:40:39 +00:00
$moderator->any([qw{GET POST}], '/reset')
->to('moderator#mod_reset')
->name('mod_reset');
my $mod_thread = $moderator->under('/thread');
$mod_thread->get('/unflag/:thread_id', [thread_id => qr/\d+/])
->to('moderator#unflag_thread')
->name('unflag_thread');
$mod_thread->get('/hide/:thread_id', [thread_id => qr/\d+/])
->to('moderator#hide_thread')
->name('hide_thread');
$mod_thread->get('/unhide/:thread_id', [thread_id => qr/\d+/])
->to('moderator#unhide_thread')
->name('unhide_thread');
my $mod_remark = $moderator->under('/remark');
$mod_remark->get('/unflag/:remark_id', [remark_id => qr/\d+/])
->to('moderator#unflag_remark')
->name('unflag_remark');
$mod_remark->get('/hide/:remark_id', [remark_id => qr/\d+/])
->to('moderator#hide_remark')
->name('hide_remark');
$mod_remark->get('/unhide/:remark_id', [remark_id => qr/\d+/])
->to('moderator#unhide_remark')
->name('unhide_remark');
2023-04-21 21:32:16 +00:00
my $mod_admin = $moderator->under('/admin', sub ($c) {
return 1 if $c->is_admin;
# Return undef otherwise a body is rendered with the redirect...
return $c->redirect_to('mod_login'), undef;
});
$mod_admin->any([qw{GET POST}], '/create')
->to('moderator#create')
->name('create_mod');
2023-04-22 01:40:39 +00:00
$mod_admin->any([qw{GET POST}], '/reset')
->to('moderator#admin_reset')
->name('admin_reset');
2022-09-15 23:14:40 +00:00
}
1;