Session verification-related changes

This commit is contained in:
ngoomie 2024-08-23 22:41:52 -06:00
parent cf91c02ba0
commit 6cf65a8edd
3 changed files with 35 additions and 26 deletions

View File

@ -106,13 +106,15 @@ sub startup {
$self->helper(session_verify => sub { $self->helper(session_verify => sub {
my $self = shift; my $self = shift;
# get info from user's session cookie and store it in vars
my $_user_id = $self->session('user_id');
my $_session_key = $self->session('session_key');
my $_validity = 1; my $_validity = 1;
my $_catch_error; my $_catch_error;
# get info from user's session cookie and store it in vars
my $_user_id = $self->session('user_id');
my $_session_key = $self->session('session_key');
my $_is_auth = $self->session('is_auth');
if ($_is_auth) {
try { try {
# check to see if session with this id is present in db # check to see if session with this id is present in db
($self->schema->resultset('Session')->search ($self->schema->resultset('Session')->search
@ -135,6 +137,9 @@ sub startup {
$_validity = undef; $_validity = undef;
$self->session_destroy; $self->session_destroy;
} }
} else {
$_validity = 0;
}
return $_validity; return $_validity;
}); });

View File

@ -12,6 +12,10 @@ use Tree::Simple;
sub index { sub index {
my $self = shift; my $self = shift;
if ($self->session_verify eq undef) {
$self->redirect_to('/')
}
$self->render( $self->render(
template => 'index', template => 'index',
category_tree => $self->model('forums')->list_full category_tree => $self->model('forums')->list_full

View File

@ -2,8 +2,8 @@
my $userControls; my $userControls;
# TODO: once implemented, put username + profile link first # TODO: once implemented, put username + profile link first
if ($self->session('is_auth') == 1) { if ($self->session('is_auth')) {
my $username = my $username = '';
$userControls = "<a href=\"/logout\">logout</a>"} $userControls = "<a href=\"/logout\">logout</a>"}
else { else {
$userControls = $userControls =