Nils Diewald | 2fe12e1 | 2015-03-06 16:47:06 +0000 | [diff] [blame] | 1 | package Kalamar; |
Nils Diewald | 5d1ffb4 | 2014-05-21 17:45:34 +0000 | [diff] [blame] | 2 | use Mojo::Base 'Mojolicious'; |
Nils Diewald | e2c8381 | 2014-11-11 21:13:18 +0000 | [diff] [blame] | 3 | use Mojo::ByteStream 'b'; |
Akron | c7656e9 | 2018-08-30 13:33:25 +0200 | [diff] [blame] | 4 | use Mojo::URL; |
Akron | f65ad6c | 2017-02-01 14:36:38 +0100 | [diff] [blame] | 5 | use Mojo::File; |
Akron | 2c2ddbd | 2021-03-05 12:10:27 +0100 | [diff] [blame] | 6 | use Mojo::JSON qw/decode_json encode_json/; |
Akron | 0c4cd22 | 2019-07-19 16:33:34 +0200 | [diff] [blame] | 7 | use Mojo::Util qw/url_escape deprecated slugify/; |
Akron | d8db672 | 2022-12-06 10:05:24 +0100 | [diff] [blame] | 8 | use List::Util qw!none uniq!; |
Nils Diewald | 5d1ffb4 | 2014-05-21 17:45:34 +0000 | [diff] [blame] | 9 | |
Nils Diewald | 709f52f | 2015-05-21 18:32:58 +0000 | [diff] [blame] | 10 | # Minor version - may be patched from package.json |
Akron | 006ddc6 | 2024-02-19 08:49:43 +0100 | [diff] [blame] | 11 | our $VERSION = '0.53'; |
Akron | c7656e9 | 2018-08-30 13:33:25 +0200 | [diff] [blame] | 12 | |
| 13 | # Supported version of Backend API |
| 14 | our $API_VERSION = '1.0'; |
Nils Diewald | 7cad840 | 2014-07-08 17:06:56 +0000 | [diff] [blame] | 15 | |
Nils Diewald | 7148c6f | 2015-05-04 15:07:53 +0000 | [diff] [blame] | 16 | # TODO: The FAQ-Page has a contact form for new questions |
Nils Diewald | 709f52f | 2015-05-21 18:32:58 +0000 | [diff] [blame] | 17 | # TODO: Embed query serialization |
| 18 | # TODO: Embed collection statistics |
| 19 | # TODO: Implement tab opener for matches and the tutorial |
Nils Diewald | 709f52f | 2015-05-21 18:32:58 +0000 | [diff] [blame] | 20 | # TODO: Implement a "projects" system |
Nils Diewald | 7148c6f | 2015-05-04 15:07:53 +0000 | [diff] [blame] | 21 | |
Nils Diewald | 002e8fb | 2014-06-22 14:27:01 +0000 | [diff] [blame] | 22 | # Start the application and register all routes and plugins |
Nils Diewald | 5d1ffb4 | 2014-05-21 17:45:34 +0000 | [diff] [blame] | 23 | sub startup { |
| 24 | my $self = shift; |
| 25 | |
Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 26 | # Set version based on package file |
Nils Diewald | 709f52f | 2015-05-21 18:32:58 +0000 | [diff] [blame] | 27 | # This may introduce a SemVer patch number |
Akron | f65ad6c | 2017-02-01 14:36:38 +0100 | [diff] [blame] | 28 | my $pkg_path = $self->home->child('package.json'); |
Akron | e40933b | 2022-12-21 09:56:55 +0100 | [diff] [blame] | 29 | if ($ENV{KALAMAR_VERSION}) { |
| 30 | $Kalamar::VERSION = $ENV{KALAMAR_VERSION}; |
| 31 | } |
| 32 | elsif (-e $pkg_path->to_abs) { |
Akron | f65ad6c | 2017-02-01 14:36:38 +0100 | [diff] [blame] | 33 | my $pkg = $pkg_path->slurp; |
| 34 | $Kalamar::VERSION = decode_json($pkg)->{version}; |
| 35 | }; |
Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 36 | |
Akron | 656c5d9 | 2015-11-13 21:17:03 +0100 | [diff] [blame] | 37 | # Lift maximum template cache |
| 38 | $self->renderer->cache->max_keys(200); |
| 39 | |
Nils Diewald | ab4d3ca | 2015-04-17 01:48:43 +0000 | [diff] [blame] | 40 | # Add additional plugin path |
| 41 | push(@{$self->plugins->namespaces}, __PACKAGE__ . '::Plugin'); |
| 42 | |
Akron | 3340ae7 | 2022-11-22 12:20:13 +0100 | [diff] [blame] | 43 | # Add additional commands |
| 44 | push(@{$self->commands->namespaces}, __PACKAGE__ . '::Command'); |
| 45 | |
Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 46 | # Set secrets for signed cookies |
Akron | 2c2ddbd | 2021-03-05 12:10:27 +0100 | [diff] [blame] | 47 | my $secret_file = $self->home->rel_file('kalamar.secret.json'); |
| 48 | |
| 49 | # Support old secrets file |
| 50 | # This is deprecated 2021-03-05 |
| 51 | if (-e (my $old_secret = $self->home->child('kalamar.secret'))) { |
Nils Diewald | a79b268 | 2015-05-18 18:34:06 +0000 | [diff] [blame] | 52 | |
| 53 | # Load file and split lines for multiple secrets |
Akron | 2c2ddbd | 2021-03-05 12:10:27 +0100 | [diff] [blame] | 54 | my $secrets = [b($old_secret->slurp)->split("\n")]; |
Akron | 3d68ac3 | 2022-01-04 14:40:30 +0100 | [diff] [blame] | 55 | |
Akron | 2c2ddbd | 2021-03-05 12:10:27 +0100 | [diff] [blame] | 56 | $self->secrets($secrets); |
| 57 | |
Akron | 3d68ac3 | 2022-01-04 14:40:30 +0100 | [diff] [blame] | 58 | for (@$secrets) { |
| 59 | if (length($secrets) > 22) { |
| 60 | $self->log->warn( |
| 61 | 'Unable to automatically switch to Autosecrets, as secret is too long (> 22 chars)' |
| 62 | ); |
| 63 | goto CONF; |
| 64 | }; |
| 65 | } |
| 66 | |
Akron | 2c2ddbd | 2021-03-05 12:10:27 +0100 | [diff] [blame] | 67 | eval { |
Akron | 889bc20 | 2024-03-15 17:16:55 +0100 | [diff] [blame] | 68 | $secret_file->spew(encode_json(@$secrets)); |
Akron | 2c2ddbd | 2021-03-05 12:10:27 +0100 | [diff] [blame] | 69 | $secret_file->chmod(0600); |
| 70 | if (-w $secret_file) { |
| 71 | $self->log->warn( |
| 72 | "Please delete $old_secret file " . |
| 73 | "- $secret_file was created instead" |
| 74 | ); |
| 75 | } |
| 76 | }; |
| 77 | if ($@) { |
| 78 | $self->log->error("Please make $secret_file accessible"); |
| 79 | }; |
Nils Diewald | 4347ee9 | 2015-05-04 20:32:48 +0000 | [diff] [blame] | 80 | } |
Nils Diewald | 709f52f | 2015-05-21 18:32:58 +0000 | [diff] [blame] | 81 | |
| 82 | # File not found ... |
| 83 | # Kalamar needs secrets in a file to be easily deployable |
| 84 | # and publishable at the same time. |
Nils Diewald | 4347ee9 | 2015-05-04 20:32:48 +0000 | [diff] [blame] | 85 | else { |
Akron | 2c2ddbd | 2021-03-05 12:10:27 +0100 | [diff] [blame] | 86 | $self->plugin(AutoSecrets => { |
| 87 | path => $secret_file |
| 88 | }); |
Nils Diewald | 1940214 | 2015-04-30 15:44:52 +0000 | [diff] [blame] | 89 | }; |
Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 90 | |
Akron | 3d68ac3 | 2022-01-04 14:40:30 +0100 | [diff] [blame] | 91 | CONF: |
Akron | 2c2ddbd | 2021-03-05 12:10:27 +0100 | [diff] [blame] | 92 | |
Akron | cba9f32 | 2016-02-29 23:12:45 +0100 | [diff] [blame] | 93 | # Configuration framework |
Akron | 09a567c | 2016-04-11 22:49:20 +0300 | [diff] [blame] | 94 | $self->plugin('Config'); |
Nils Diewald | 709f52f | 2015-05-21 18:32:58 +0000 | [diff] [blame] | 95 | |
Akron | 741b2b1 | 2017-04-13 22:15:59 +0200 | [diff] [blame] | 96 | $self->log->info('Mode is ' . $self->mode); |
| 97 | |
Akron | 63d963b | 2019-07-05 15:35:51 +0200 | [diff] [blame] | 98 | # Get configuration |
Akron | 47787ca | 2017-05-17 16:00:10 +0200 | [diff] [blame] | 99 | my $conf = $self->config('Kalamar'); |
Akron | 63d963b | 2019-07-05 15:35:51 +0200 | [diff] [blame] | 100 | unless ($conf) { |
| 101 | $self->config(Kalamar => {}); |
| 102 | $conf = $self->config('Kalamar'); |
| 103 | }; |
| 104 | |
Akron | f260e6e | 2023-05-16 16:36:10 +0200 | [diff] [blame] | 105 | # Set log file. All precedng logs where send to stderr |
| 106 | if ($conf->{log_file}) { |
| 107 | Mojo::File->new(Mojo::File->new($conf->{log_file})->dirname)->make_path; |
| 108 | $self->log(Mojo::Log->new( |
| 109 | path => $conf->{log_file}, |
| 110 | )); |
| 111 | }; |
| 112 | |
| 113 | |
Akron | 63d963b | 2019-07-05 15:35:51 +0200 | [diff] [blame] | 114 | # Check for API endpoint and set the endpoint accordingly |
| 115 | if ($conf->{api}) { |
| 116 | |
| 117 | # The api endpoint should be defined as a separated path |
| 118 | # and version string |
| 119 | $self->log->warn( |
| 120 | 'Kalamar.api is no longer supported in configurations '. |
| 121 | 'in favor of Kalamar.api_path' |
| 122 | ); |
| 123 | }; |
| 124 | |
Akron | 0c4cd22 | 2019-07-19 16:33:34 +0200 | [diff] [blame] | 125 | $self->sessions->cookie_name('kalamar'); |
| 126 | |
| 127 | # Require HTTPS |
| 128 | if ($conf->{https_only}) { |
| 129 | |
| 130 | # ... for cookie transport |
| 131 | $self->sessions->secure(1); |
Akron | 1bee5a4 | 2021-01-13 17:44:18 +0100 | [diff] [blame] | 132 | |
Akron | 26244a7 | 2021-04-28 00:17:56 +0200 | [diff] [blame] | 133 | # Temporary for session riding |
| 134 | $self->sessions->samesite('None'); |
| 135 | |
Akron | 1bee5a4 | 2021-01-13 17:44:18 +0100 | [diff] [blame] | 136 | # For all pages |
| 137 | $self->hook( |
| 138 | before_dispatch => sub { |
| 139 | shift->res->headers->header('Strict-Transport-Security' => 'max-age=3600; includeSubDomains'); |
| 140 | } |
| 141 | ); |
Akron | 0c4cd22 | 2019-07-19 16:33:34 +0200 | [diff] [blame] | 142 | }; |
| 143 | |
| 144 | # Run the app from a subdirectory |
Akron | 63d963b | 2019-07-05 15:35:51 +0200 | [diff] [blame] | 145 | if ($conf->{proxy_prefix}) { |
Akron | 47787ca | 2017-05-17 16:00:10 +0200 | [diff] [blame] | 146 | |
Akron | f3d856c | 2017-06-21 17:07:40 +0200 | [diff] [blame] | 147 | for ($self->sessions) { |
Akron | 1a39472 | 2017-06-21 16:25:30 +0200 | [diff] [blame] | 148 | $_->cookie_path($conf->{proxy_prefix}); |
Akron | 0c4cd22 | 2019-07-19 16:33:34 +0200 | [diff] [blame] | 149 | $_->cookie_name('kalamar-' . slugify($conf->{proxy_prefix})); |
Akron | 1a39472 | 2017-06-21 16:25:30 +0200 | [diff] [blame] | 150 | }; |
| 151 | |
Akron | 47787ca | 2017-05-17 16:00:10 +0200 | [diff] [blame] | 152 | # Set prefix in stash |
| 153 | $self->defaults(prefix => $conf->{proxy_prefix}); |
| 154 | |
| 155 | # Create base path |
| 156 | $self->hook( |
| 157 | before_dispatch => sub { |
| 158 | shift->req->url->base->path($conf->{proxy_prefix} . '/'); |
| 159 | }); |
| 160 | }; |
| 161 | |
Akron | 807225b | 2021-01-13 18:00:13 +0100 | [diff] [blame] | 162 | $self->hook( |
| 163 | before_dispatch => sub { |
Akron | 5b6d727 | 2021-01-21 11:26:02 +0100 | [diff] [blame] | 164 | my $h = shift->res->headers; |
| 165 | $h->header('X-Content-Type-Options' => 'nosniff'); |
Akron | 52b32d0 | 2021-01-21 17:37:19 +0100 | [diff] [blame] | 166 | $h->header('X-XSS-Protection' => '1; mode=block'); |
Akron | 5b6d727 | 2021-01-21 11:26:02 +0100 | [diff] [blame] | 167 | $h->header( |
| 168 | 'Access-Control-Allow-Methods' => |
| 169 | $h->header('Access-Control-Allow-Methods') // 'GET, POST, OPTIONS' |
| 170 | ); |
Akron | 807225b | 2021-01-13 18:00:13 +0100 | [diff] [blame] | 171 | } |
| 172 | ); |
| 173 | |
Akron | 90be03b | 2020-02-03 16:13:37 +0100 | [diff] [blame] | 174 | $conf->{proxy_host} //= 1; |
| 175 | |
| 176 | # Take proxy host |
| 177 | if ($conf->{proxy_host}) { |
| 178 | $self->hook( |
| 179 | before_dispatch => sub { |
| 180 | my $c = shift; |
Akron | 409f6b8 | 2023-05-08 10:42:36 +0200 | [diff] [blame] | 181 | my $h = $c->req->headers; |
| 182 | if (my $host = $h->header('X-Forwarded-Host')) { |
| 183 | |
| 184 | my $proto = $h->header('X-Forwarded-Proto') // ($conf->{https_only} ? 'https' : undef); |
| 185 | |
Akron | 90be03b | 2020-02-03 16:13:37 +0100 | [diff] [blame] | 186 | foreach ($c->req->url->base) { |
| 187 | $_->host($host); |
Akron | 409f6b8 | 2023-05-08 10:42:36 +0200 | [diff] [blame] | 188 | $_->scheme($proto); |
Akron | 90be03b | 2020-02-03 16:13:37 +0100 | [diff] [blame] | 189 | $_->port(undef); |
| 190 | }; |
| 191 | }; |
| 192 | } |
| 193 | ); |
| 194 | }; |
| 195 | |
Akron | 8f8deda | 2021-01-15 12:55:06 +0100 | [diff] [blame] | 196 | # API is not yet set - define the default Kustvakt api endpoint |
| 197 | $conf->{api_path} //= $ENV{KALAMAR_API} || 'https://korap.ids-mannheim.de/api/'; |
Akron | 63d963b | 2019-07-05 15:35:51 +0200 | [diff] [blame] | 198 | $conf->{api_version} //= $API_VERSION; |
Akron | c7656e9 | 2018-08-30 13:33:25 +0200 | [diff] [blame] | 199 | |
Akron | 4036d54 | 2018-02-12 13:17:09 +0100 | [diff] [blame] | 200 | # Add development path |
Akron | 0e1ed24 | 2018-10-11 13:22:00 +0200 | [diff] [blame] | 201 | if ($self->mode eq 'development') { |
Akron | 4036d54 | 2018-02-12 13:17:09 +0100 | [diff] [blame] | 202 | push @{$self->static->paths}, 'dev'; |
Akron | be9d5b3 | 2017-04-05 20:48:24 +0200 | [diff] [blame] | 203 | }; |
| 204 | |
Akron | 23ab047 | 2019-12-17 16:55:55 +0100 | [diff] [blame] | 205 | # Set proxy timeouts |
| 206 | if ($conf->{proxy_inactivity_timeout}) { |
| 207 | $self->ua->inactivity_timeout($conf->{proxy_inactivity_timeout}); |
| 208 | }; |
| 209 | if ($conf->{proxy_connect_timeout}) { |
| 210 | $self->ua->connect_timeout($conf->{proxy_connect_timeout}); |
| 211 | }; |
| 212 | |
Akron | 09a567c | 2016-04-11 22:49:20 +0300 | [diff] [blame] | 213 | # Client notifications |
Akron | 0504a18 | 2016-04-10 21:13:42 +0200 | [diff] [blame] | 214 | $self->plugin(Notifications => { |
| 215 | 'Kalamar::Plugin::Notifications' => 1, |
Akron | 8ea8429 | 2018-10-24 13:41:52 +0200 | [diff] [blame] | 216 | JSON => 1, |
Akron | 3c390c4 | 2020-03-30 09:06:21 +0200 | [diff] [blame] | 217 | HTML => 1 |
Akron | 0504a18 | 2016-04-10 21:13:42 +0200 | [diff] [blame] | 218 | }); |
| 219 | |
Akron | c4ea2e5 | 2021-01-27 18:34:05 +0100 | [diff] [blame] | 220 | # Establish content security policy |
Akron | 0a4d36e | 2021-01-18 17:50:48 +0100 | [diff] [blame] | 221 | # This needs to be defined prior to Kalamar::Plugin::Piwik! |
Akron | c4ea2e5 | 2021-01-27 18:34:05 +0100 | [diff] [blame] | 222 | $self->plugin(CSP => { |
| 223 | 'default-src' => 'self', |
Akron | 0a4d36e | 2021-01-18 17:50:48 +0100 | [diff] [blame] | 224 | 'style-src' => ['self','unsafe-inline'], |
Akron | 1871f03 | 2021-01-29 10:35:53 +0100 | [diff] [blame] | 225 | # Hash for korap-overview.svg script |
| 226 | 'script-src' => ['self','sha256-VGXK99kFz+zmAQ0kxgleFrBWZgybFAPOl3GQtS7FQkI='], |
Akron | 5b6d727 | 2021-01-21 11:26:02 +0100 | [diff] [blame] | 227 | 'connect-src' => 'self', |
Akron | 0a4d36e | 2021-01-18 17:50:48 +0100 | [diff] [blame] | 228 | 'frame-src' => '*', |
Akron | aef5cf2 | 2021-06-21 11:45:54 +0200 | [diff] [blame] | 229 | 'frame-ancestors' => 'self', |
Akron | 0a4d36e | 2021-01-18 17:50:48 +0100 | [diff] [blame] | 230 | 'media-src' => 'none', |
| 231 | 'object-src' => 'self', |
| 232 | 'font-src' => 'self', |
| 233 | 'img-src' => ['self', 'data:'], |
Akron | b7b91c5 | 2021-01-27 17:46:52 +0100 | [diff] [blame] | 234 | -with_nonce => 1 |
Akron | c4ea2e5 | 2021-01-27 18:34:05 +0100 | [diff] [blame] | 235 | }); |
| 236 | |
Akron | 09a567c | 2016-04-11 22:49:20 +0300 | [diff] [blame] | 237 | # Localization framework |
| 238 | $self->plugin(Localize => { |
Akron | dbb448c | 2018-02-14 17:02:36 +0100 | [diff] [blame] | 239 | dict => { |
| 240 | Q => { |
| 241 | _ => sub { shift->config('Kalamar')->{'examplecorpus'} }, |
| 242 | } |
| 243 | }, |
Akron | a7cfd90 | 2017-12-21 19:28:36 +0100 | [diff] [blame] | 244 | resources => ['kalamar.dict', 'kalamar.queries.dict'] |
Akron | 09a567c | 2016-04-11 22:49:20 +0300 | [diff] [blame] | 245 | }); |
| 246 | |
| 247 | # Pagination widget |
| 248 | $self->plugin('TagHelpers::Pagination' => { |
| 249 | prev => '<span><span><</span></span>', |
Akron | 86e63a9 | 2019-02-27 17:35:04 +0100 | [diff] [blame] | 250 | next => '<span><span>></span></span>', |
Akron | a4b17f7 | 2021-11-04 15:37:02 +0100 | [diff] [blame] | 251 | ellipsis => '<a class="ellipsis inactive"><span><span>...</span></span></a>', |
Akron | 09a567c | 2016-04-11 22:49:20 +0300 | [diff] [blame] | 252 | separator => '', |
| 253 | current => '<span>{current}</span>', |
| 254 | page => '<span>{page}</span>' |
| 255 | }); |
| 256 | |
Akron | 1011daf | 2021-03-01 12:34:58 +0100 | [diff] [blame] | 257 | # Obfuscate email addresses |
| 258 | $self->plugin('TagHelpers::MailToChiffre' => { |
| 259 | method_name => 'PArok', |
| 260 | pattern_rotate => 673, |
| 261 | no_inline => 1 |
| 262 | }); |
| 263 | |
Nils Diewald | ab4d3ca | 2015-04-17 01:48:43 +0000 | [diff] [blame] | 264 | # Load plugins |
Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 265 | foreach ( |
Akron | e8235be | 2016-06-27 11:02:18 +0200 | [diff] [blame] | 266 | 'KalamarHelpers', # Specific Helpers for Kalamar |
Akron | b7b91c5 | 2021-01-27 17:46:52 +0100 | [diff] [blame] | 267 | 'KalamarPages', # Page Helpers for Kalamar |
Akron | 7093b81 | 2018-10-19 17:28:21 +0200 | [diff] [blame] | 268 | 'KalamarErrors', # Specific Errors for Kalamar |
| 269 | 'KalamarUser', # Specific Helpers for Kalamar Users |
Akron | 429aeda | 2018-03-19 16:02:29 +0100 | [diff] [blame] | 270 | 'ClientIP', # Get client IP from X-Forwarded-For |
Akron | 51757cb | 2018-05-16 13:10:08 +0200 | [diff] [blame] | 271 | 'ClosedRedirect', # Redirect with OpenRedirect protection |
Akron | afeca25 | 2018-05-23 15:54:28 +0200 | [diff] [blame] | 272 | 'TagHelpers::ContentBlock', # Flexible content blocks |
Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 273 | ) { |
Nils Diewald | ab4d3ca | 2015-04-17 01:48:43 +0000 | [diff] [blame] | 274 | $self->plugin($_); |
| 275 | }; |
| 276 | |
Akron | 751e9e4 | 2019-03-13 09:54:55 +0100 | [diff] [blame] | 277 | my $serializer = 'JSON'; |
| 278 | |
| 279 | if (my $chi = $self->config('CHI')) { |
| 280 | if ($chi->{default}) { |
| 281 | $chi->{default}->{serializer} = $serializer; |
| 282 | }; |
| 283 | if ($chi->{user}) { |
| 284 | $chi->{user}->{serializer} = $serializer; |
| 285 | }; |
| 286 | }; |
| 287 | |
Akron | 05c6dd6 | 2018-10-11 17:05:06 +0200 | [diff] [blame] | 288 | # Global caching mechanism |
| 289 | $self->plugin('CHI' => { |
| 290 | default => { |
| 291 | driver => 'Memory', |
Akron | 751e9e4 | 2019-03-13 09:54:55 +0100 | [diff] [blame] | 292 | global => 1, |
| 293 | serializer => $serializer |
Akron | 05c6dd6 | 2018-10-11 17:05:06 +0200 | [diff] [blame] | 294 | }, |
| 295 | user => { |
| 296 | driver => 'Memory', |
Akron | 751e9e4 | 2019-03-13 09:54:55 +0100 | [diff] [blame] | 297 | global => 1, |
| 298 | serializer => $serializer |
Akron | 05c6dd6 | 2018-10-11 17:05:06 +0200 | [diff] [blame] | 299 | } |
| 300 | }); |
Nils Diewald | 709f52f | 2015-05-21 18:32:58 +0000 | [diff] [blame] | 301 | |
Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 302 | # Configure mail exception |
Akron | 40cc1d8 | 2017-05-10 17:58:16 +0200 | [diff] [blame] | 303 | if ($self->config('MailException')) { |
| 304 | $self->plugin('MailException' => $self->config('MailException')); |
| 305 | }; |
Nils Diewald | 709f52f | 2015-05-21 18:32:58 +0000 | [diff] [blame] | 306 | |
Akron | d8db672 | 2022-12-06 10:05:24 +0100 | [diff] [blame] | 307 | # Load plugins defined in environment variables |
| 308 | if ($ENV{'KALAMAR_PLUGINS'}) { |
| 309 | $conf->{'plugins'} //= []; |
| 310 | push @{$conf->{'plugins'}}, split(/\s*,\s*/, $ENV{'KALAMAR_PLUGINS'} // ''); |
| 311 | }; |
| 312 | |
Akron | cdfd9d5 | 2019-07-23 11:35:00 +0200 | [diff] [blame] | 313 | # Load further plugins, |
| 314 | # that can override core functions, |
| 315 | # therefore order may be of importance |
Akron | 4c33c62 | 2018-11-12 13:43:27 +0100 | [diff] [blame] | 316 | if (exists $conf->{'plugins'}) { |
Akron | d8db672 | 2022-12-06 10:05:24 +0100 | [diff] [blame] | 317 | foreach (uniq @{$conf->{'plugins'}}) { |
Akron | 4c33c62 | 2018-11-12 13:43:27 +0100 | [diff] [blame] | 318 | $self->plugin('Kalamar::Plugin::' . $_); |
| 319 | }; |
| 320 | }; |
| 321 | |
Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 322 | # Configure documentation navigation |
Akron | d512ea6 | 2019-10-24 15:50:04 +0200 | [diff] [blame] | 323 | my $doc_navi = Mojo::File->new($self->home->child('templates','doc','navigation.json'))->slurp; |
| 324 | $doc_navi = $doc_navi ? decode_json($doc_navi) : []; |
Akron | 1b1a271 | 2018-12-21 14:59:05 +0100 | [diff] [blame] | 325 | |
Akron | f7ec444 | 2019-10-27 20:01:05 +0100 | [diff] [blame] | 326 | # TODO: |
| 327 | # Use navi->add() |
Akron | 1b1a271 | 2018-12-21 14:59:05 +0100 | [diff] [blame] | 328 | if ($conf->{navi_ext}) { |
Akron | d512ea6 | 2019-10-24 15:50:04 +0200 | [diff] [blame] | 329 | push @$doc_navi, @{$conf->{navi_ext}}; |
Akron | 1b1a271 | 2018-12-21 14:59:05 +0100 | [diff] [blame] | 330 | }; |
| 331 | |
Akron | f7ec444 | 2019-10-27 20:01:05 +0100 | [diff] [blame] | 332 | # TODO: |
| 333 | # Remove navi entry |
Akron | d512ea6 | 2019-10-24 15:50:04 +0200 | [diff] [blame] | 334 | $self->config(doc_navi => $doc_navi); |
Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 335 | |
Akron | f7ec444 | 2019-10-27 20:01:05 +0100 | [diff] [blame] | 336 | $self->navi->set(doc => $doc_navi); |
| 337 | |
Akron | 63d963b | 2019-07-05 15:35:51 +0200 | [diff] [blame] | 338 | $self->log->info('API expected at ' . $self->korap->api); |
Nils Diewald | 709f52f | 2015-05-21 18:32:58 +0000 | [diff] [blame] | 339 | |
Akron | 3cd391e | 2017-03-29 23:42:54 +0200 | [diff] [blame] | 340 | # Establish routes with authentification |
Akron | 7d75ee3 | 2017-05-02 13:42:41 +0200 | [diff] [blame] | 341 | my $r = $self->routes; |
Akron | 3cd391e | 2017-03-29 23:42:54 +0200 | [diff] [blame] | 342 | |
Akron | afeca25 | 2018-05-23 15:54:28 +0200 | [diff] [blame] | 343 | # Set footer value |
Akron | ef6d5f1 | 2018-05-28 17:54:58 +0200 | [diff] [blame] | 344 | $self->content_block(footer => { |
Akron | 3cfa26d | 2019-10-24 15:17:34 +0200 | [diff] [blame] | 345 | inline => '<%= embedded_link_to "doc", "V ' . $Kalamar::VERSION . '", "korap", "kalamar" %>', |
Akron | afeca25 | 2018-05-23 15:54:28 +0200 | [diff] [blame] | 346 | position => 100 |
Akron | ef6d5f1 | 2018-05-28 17:54:58 +0200 | [diff] [blame] | 347 | }); |
Akron | afeca25 | 2018-05-23 15:54:28 +0200 | [diff] [blame] | 348 | |
Akron | b7b91c5 | 2021-01-27 17:46:52 +0100 | [diff] [blame] | 349 | # Add nonce script |
| 350 | $self->content_block(nonce_js => { |
| 351 | inline => <<'NONCE_JS' |
| 352 | // Remove the no-js class from the body |
| 353 | document.body.classList.remove('no-js'); |
| 354 | NONCE_JS |
| 355 | }); |
| 356 | |
Nils Diewald | a79b268 | 2015-05-18 18:34:06 +0000 | [diff] [blame] | 357 | # Base query route |
Akron | fb6d87d | 2018-10-24 18:10:20 +0200 | [diff] [blame] | 358 | $r->get('/')->to('search#query')->name('index'); |
Nils Diewald | ab4d3ca | 2015-04-17 01:48:43 +0000 | [diff] [blame] | 359 | |
Nils Diewald | a79b268 | 2015-05-18 18:34:06 +0000 | [diff] [blame] | 360 | # Documentation routes |
hebasta | da903dd | 2021-07-20 15:58:48 +0200 | [diff] [blame] | 361 | $r->get('/doc')->to('documentation#page', page => 'ql')->name('doc_start'); |
Akron | 254fe21 | 2019-10-24 14:33:28 +0200 | [diff] [blame] | 362 | $r->get('/doc/:scope/:page')->to('documentation#page', scope => undef)->name('doc'); |
Nils Diewald | ab4d3ca | 2015-04-17 01:48:43 +0000 | [diff] [blame] | 363 | |
Akron | 5999212 | 2019-10-29 11:28:45 +0100 | [diff] [blame] | 364 | # Settings routes |
| 365 | if ($self->navi->exists('settings')) { |
| 366 | $r->get('/settings')->to( |
| 367 | cb => sub { |
Akron | 88c26b1 | 2020-09-07 12:44:18 +0200 | [diff] [blame] | 368 | my $c = shift; |
| 369 | $c->res->headers->header('X-Robots' => 'noindex'); |
| 370 | return $c->render('settings'); |
Akron | 5999212 | 2019-10-29 11:28:45 +0100 | [diff] [blame] | 371 | } |
| 372 | )->name('settings_start'); |
| 373 | $r->get('/settings/:scope/:page')->to( |
| 374 | scope => undef, |
| 375 | page => undef |
| 376 | )->name('settings'); |
| 377 | }; |
Akron | f7ec444 | 2019-10-27 20:01:05 +0100 | [diff] [blame] | 378 | |
Nils Diewald | c46003b | 2015-05-07 15:55:35 +0000 | [diff] [blame] | 379 | # Contact route |
| 380 | $r->get('/contact')->to('documentation#contact'); |
| 381 | $r->get('/contact')->mail_to_chiffre('documentation#contact'); |
| 382 | |
Akron | 63d963b | 2019-07-05 15:35:51 +0200 | [diff] [blame] | 383 | # API proxy route |
Akron | 8a21b4d | 2020-04-16 16:17:42 +0200 | [diff] [blame] | 384 | $r->any('/api/v#apiv' => [apiv => ['1.0']])->name('proxy')->to('Proxy#pass'); |
Akron | 03c3c9d | 2021-02-15 07:41:27 +0100 | [diff] [blame] | 385 | $r->any('/api/v#apiv/*api_path' => [apiv => ['1.0']])->to('Proxy#pass'); |
Akron | 63d963b | 2019-07-05 15:35:51 +0200 | [diff] [blame] | 386 | |
Nils Diewald | 7148c6f | 2015-05-04 15:07:53 +0000 | [diff] [blame] | 387 | # Match route |
Akron | 80a84b2 | 2018-10-24 17:44:24 +0200 | [diff] [blame] | 388 | # Corpus route |
Akron | fb6d87d | 2018-10-24 18:10:20 +0200 | [diff] [blame] | 389 | my $corpus = $r->get('/corpus')->to('search#corpus_info')->name('corpus'); |
Akron | 4e413fb | 2023-09-26 13:11:11 +0200 | [diff] [blame] | 390 | my $doc = $r->any('/corpus/#corpus_id/#doc_id'); |
| 391 | my $text = $doc->get('/#text_id')->to('search#text_info')->name('text'); |
| 392 | my $match = $doc->get('/#text_id/#match_id')->to('search#match_info')->name('match'); |
Nils Diewald | 996aa55 | 2014-12-02 03:26:44 +0000 | [diff] [blame] | 393 | }; |
| 394 | |
| 395 | |
| 396 | 1; |
| 397 | |
| 398 | |
| 399 | __END__ |
Nils Diewald | a898dac | 2015-05-06 21:04:16 +0000 | [diff] [blame] | 400 | |
| 401 | =pod |
| 402 | |
Nils Diewald | eb5f307 | 2015-05-20 09:32:42 +0000 | [diff] [blame] | 403 | =encoding utf8 |
Nils Diewald | a898dac | 2015-05-06 21:04:16 +0000 | [diff] [blame] | 404 | |
Nils Diewald | eb5f307 | 2015-05-20 09:32:42 +0000 | [diff] [blame] | 405 | =head1 NAME |
| 406 | |
| 407 | Kalamar |
Nils Diewald | a0defc4 | 2015-05-07 23:54:17 +0000 | [diff] [blame] | 408 | |
| 409 | |
Nils Diewald | eb5f307 | 2015-05-20 09:32:42 +0000 | [diff] [blame] | 410 | =head1 DESCRIPTION |
Nils Diewald | a0defc4 | 2015-05-07 23:54:17 +0000 | [diff] [blame] | 411 | |
Nils Diewald | eb5f307 | 2015-05-20 09:32:42 +0000 | [diff] [blame] | 412 | L<Kalamar> is a L<Mojolicious|http://mojolicio.us/> based user interface |
Akron | 87468c2 | 2021-02-08 09:30:01 +0100 | [diff] [blame] | 413 | frontend for the L<KorAP Corpus Analysis Platform|https://korap.ids-mannheim.de/>. |
Nils Diewald | eb5f307 | 2015-05-20 09:32:42 +0000 | [diff] [blame] | 414 | |
Akron | 456abd9 | 2015-06-02 15:07:21 +0200 | [diff] [blame] | 415 | B<See the README for further information!> |
Nils Diewald | eb5f307 | 2015-05-20 09:32:42 +0000 | [diff] [blame] | 416 | |
Akron | 456abd9 | 2015-06-02 15:07:21 +0200 | [diff] [blame] | 417 | =head2 COPYRIGHT AND LICENSE |
Nils Diewald | a748b0e | 2015-05-19 22:54:06 +0000 | [diff] [blame] | 418 | |
Akron | 006ddc6 | 2024-02-19 08:49:43 +0100 | [diff] [blame] | 419 | Copyright (C) 2015-2024, L<IDS Mannheim|https://www.ids-mannheim.de/> |
Akron | 87468c2 | 2021-02-08 09:30:01 +0100 | [diff] [blame] | 420 | Author: L<Nils Diewald|https://www.nils-diewald.de/> |
Nils Diewald | a748b0e | 2015-05-19 22:54:06 +0000 | [diff] [blame] | 421 | |
| 422 | Kalamar is developed as part of the L<KorAP|http://korap.ids-mannheim.de/> |
| 423 | Corpus Analysis Platform at the |
Akron | 87468c2 | 2021-02-08 09:30:01 +0100 | [diff] [blame] | 424 | L<Leibniz Institute for the German Language (IDS)|https://www.ids-mannheim.de/>, |
Nils Diewald | a748b0e | 2015-05-19 22:54:06 +0000 | [diff] [blame] | 425 | member of the |
hebasta | 21b7baf | 2019-12-16 10:32:43 +0100 | [diff] [blame] | 426 | L<Leibniz-Gemeinschaft|http://www.leibniz-gemeinschaft.de> |
Nils Diewald | a748b0e | 2015-05-19 22:54:06 +0000 | [diff] [blame] | 427 | and supported by the L<KobRA|http://www.kobra.tu-dortmund.de> project, |
| 428 | funded by the |
| 429 | L<Federal Ministry of Education and Research (BMBF)|http://www.bmbf.de/en/>. |
| 430 | |
| 431 | Kalamar is free software published under the |
Akron | 87468c2 | 2021-02-08 09:30:01 +0100 | [diff] [blame] | 432 | L<BSD-2 License|https://opensource.org/licenses/BSD-2-Clause>. |
Nils Diewald | a748b0e | 2015-05-19 22:54:06 +0000 | [diff] [blame] | 433 | |
| 434 | =cut |