package DBInfoscreen::Controller::Static; use Mojo::Base 'Mojolicious::Controller'; # Copyright (C) 2011-2019 Daniel Friesel # License: 2-Clause BSD my %default = ( mode => 'app', admode => 'deparr', ); my $dbf_version = qx{git describe --dirty} || 'experimental'; sub redirect { my ($self) = @_; my $station = $self->param('station'); my $params = $self->req->params; $params->remove('station'); for my $param (qw(platforms mode admode via)) { if ( not $params->param($param) or ( exists $default{$param} and $params->param($param) eq $default{$param} ) ) { $params->remove($param); } } $params = $params->to_string; $self->redirect_to("/${station}?${params}"); } sub geolocation { my ($self) = @_; $self->render( 'geolocation', with_geolocation => 1, hide_opts => 1 ); } sub about { my ($self) = @_; $self->render( 'about', hide_opts => 1, version => $dbf_version ); } sub privacy { my ($self) = @_; $self->render( 'privacy', hide_opts => 1 ); } sub imprint { my ($self) = @_; $self->render( 'imprint', hide_opts => 1 ); } 1;