PostText/lib/PostText.pm

263 lines
7.3 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;
use Text::Markdown qw{markdown};
use HTML::Restrict;
# 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');
2023-06-17 22:29:21 +00:00
$self->plugin(AssetPack => {pipes => [qw{Css Combine}]});
2022-09-15 23:14:40 +00:00
# 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) {
2023-06-15 15:04:47 +00:00
state $authenticator = Crypt::Passphrase->new(encoder => 'Argon2')
});
$self->helper(hr => sub ($c) {
2023-05-06 04:01:34 +00:00
state $hr = HTML::Restrict->new(
filter_text => 0,
2023-05-27 17:04:15 +00:00
strip_enclosed_content => [],
rules => {
br => [],
s => []
2023-05-27 17:09:41 +00:00
})
});
2022-10-13 03:58:46 +00:00
$self->helper(thread => sub ($c) {
state $thread = PostText::Model::Thread->new(
pg => $c->pg,
hr => $c->hr
)
});
2022-10-13 03:58:46 +00:00
$self->helper(remark => sub ($c) {
state $remark = PostText::Model::Remark->new(
pg => $c->pg,
hr => $c->hr
)
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 = 299 < length($input_text)
? substr($input_text, 0, 299) . '…' : $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
});
2023-04-25 15:56:42 +00:00
$self->helper(markdown => sub ($c, $input_text) {
markdown($input_text, {empty_element_suffix => '>'})
2023-04-25 15:56:42 +00:00
});
2022-09-15 23:14:40 +00:00
# Finish configuring some things
$self->secrets($self->config->{'secrets'}) || die $@;
$self->pg->migrations->from_dir('migrations')->migrate(12);
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)
}
$self->asset->process;
2022-09-15 23:14:40 +00:00
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(expires => time + 3600) if $c->is_mod;
$c->session(expires => time + 1800) if $c->is_admin;
2022-09-15 23:14:40 +00:00
$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
# Shortcut to new session cookie/identity
$r->get('/new', sub ($c) {
$c->session(expires => 1);
$c->redirect_to('threads_list');
});
2023-04-26 02:28:11 +00:00
# Static pages
$r->get('/about')->to('page#about')->name('about_page');
$r->get('/rules')->to('page#rules')->name('rules_page');
2022-09-15 23:14:40 +00:00
# Thread
2023-04-24 16:14:04 +00:00
my $thread = $r->any('/thread');
2022-10-13 03:21:13 +00:00
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');
2023-04-24 16:14:04 +00:00
$thread->any('/single/:thread_id', [thread_id => qr/\d+/])
2023-06-27 05:30:32 +00:00
->any('/:thread_page', [thread_page => qr/\d+/], {thread_page => 0})
->get('/', [format => [qw{html txt}]], {format => undef})
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');
2023-04-24 18:25:32 +00:00
$thread->get('feed', [format => [qw{rss xml}]])
->to('thread#feed')
->name('threads_feed');
2023-04-24 17:26:29 +00:00
2022-09-15 23:14:40 +00:00
# Remark
2023-04-24 16:14:04 +00:00
my $remark = $r->any('/remark');
2022-10-13 03:06:26 +00:00
2022-12-08 05:15:46 +00:00
$remark->any([qw{GET POST}], '/post/:thread_id', [thread_id => qr/\d+/])
->any('/:remark_id', [remark_id => qr/\d+/], {remark_id => 0})
2022-10-01 22:00:23 +00:00
->to('remark#create')
->name('post_remark');
2023-06-27 05:30:32 +00:00
$remark->any('/single/:remark_id', [remark_id => qr/\d+/])
->get('/', [format => [qw{html txt}]], {format => undef})
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
2023-04-24 16:14:04 +00:00
my $moderator = $r->under('/moderator')->to('moderator#check');
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');
2023-04-24 16:14:04 +00:00
my $mod_thread = $moderator->any('/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');
$mod_thread->get('/single/:thread_id', [thread_id => qr/\d+/])
->to('moderator#thread_by_id')
->name('hidden_thread');
2023-04-24 16:14:04 +00:00
my $mod_remark = $moderator->any('/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');
$mod_remark->get('/single/:remark_id', [remark_id => qr/\d+/])
->to('moderator#remark_by_id')
->name('hidden_remark');
2023-04-24 16:14:04 +00:00
# Admin
my $mod_admin = $moderator->under('/admin')->to('moderator#admin_check');
2023-04-21 21:32:16 +00:00
$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');
2023-04-22 02:25:05 +00:00
# lock() is a builtin so use _acct suffix
$mod_admin->any([qw{GET POST}], '/lock')
->to('moderator#lock_acct')
->name('lock_mod');
2023-04-22 02:25:05 +00:00
$mod_admin->any([qw{GET POST}], '/unlock')
->to('moderator#unlock_acct')
->name('unlock_mod');
2023-04-22 03:21:12 +00:00
$mod_admin->any([qw{GET POST}], '/promote')
->to('moderator#promote')
->name('promote_mod');
$mod_admin->any([qw{GET POST}], '/demote')
->to('moderator#demote')
->name('demote_admin');
2022-09-15 23:14:40 +00:00
}
1;