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