blob: b6a5db03307ff714fb9a9e576f53ab99cd9bd83e [file] [log] [blame]
Nils Diewald2fe12e12015-03-06 16:47:06 +00001package Kalamar;
Nils Diewald5d1ffb42014-05-21 17:45:34 +00002use Mojo::Base 'Mojolicious';
Nils Diewalde2c83812014-11-11 21:13:18 +00003use Mojo::ByteStream 'b';
Akronc7656e92018-08-30 13:33:25 +02004use Mojo::URL;
Akronf65ad6c2017-02-01 14:36:38 +01005use Mojo::File;
Akron2c2ddbd2021-03-05 12:10:27 +01006use Mojo::JSON qw/decode_json encode_json/;
Akron0c4cd222019-07-19 16:33:34 +02007use Mojo::Util qw/url_escape deprecated slugify/;
Akron4c33c622018-11-12 13:43:27 +01008use List::Util 'none';
Nils Diewald5d1ffb42014-05-21 17:45:34 +00009
Nils Diewald709f52f2015-05-21 18:32:58 +000010# Minor version - may be patched from package.json
Akrona7258cb2021-09-13 12:27:25 +020011our $VERSION = '0.43';
Akronc7656e92018-08-30 13:33:25 +020012
13# Supported version of Backend API
14our $API_VERSION = '1.0';
Nils Diewald7cad8402014-07-08 17:06:56 +000015
Nils Diewald7148c6f2015-05-04 15:07:53 +000016# TODO: The FAQ-Page has a contact form for new questions
Nils Diewald709f52f2015-05-21 18:32:58 +000017# TODO: Embed query serialization
18# TODO: Embed collection statistics
19# TODO: Implement tab opener for matches and the tutorial
Nils Diewald709f52f2015-05-21 18:32:58 +000020# TODO: Implement a "projects" system
Nils Diewald7148c6f2015-05-04 15:07:53 +000021
Nils Diewald002e8fb2014-06-22 14:27:01 +000022# Start the application and register all routes and plugins
Nils Diewald5d1ffb42014-05-21 17:45:34 +000023sub startup {
24 my $self = shift;
25
Nils Diewalda944fab2015-04-08 21:02:04 +000026 # Set version based on package file
Nils Diewald709f52f2015-05-21 18:32:58 +000027 # This may introduce a SemVer patch number
Akronf65ad6c2017-02-01 14:36:38 +010028 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 Diewalda944fab2015-04-08 21:02:04 +000033
Akron656c5d92015-11-13 21:17:03 +010034 # Lift maximum template cache
35 $self->renderer->cache->max_keys(200);
36
Nils Diewaldab4d3ca2015-04-17 01:48:43 +000037 # Add additional plugin path
38 push(@{$self->plugins->namespaces}, __PACKAGE__ . '::Plugin');
39
Nils Diewaldfccfbcb2015-04-29 20:48:19 +000040 # Set secrets for signed cookies
Akron2c2ddbd2021-03-05 12:10:27 +010041 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 Diewalda79b2682015-05-18 18:34:06 +000046
47 # Load file and split lines for multiple secrets
Akron2c2ddbd2021-03-05 12:10:27 +010048 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 Diewald4347ee92015-05-04 20:32:48 +000064 }
Nils Diewald709f52f2015-05-21 18:32:58 +000065
66 # File not found ...
67 # Kalamar needs secrets in a file to be easily deployable
68 # and publishable at the same time.
Nils Diewald4347ee92015-05-04 20:32:48 +000069 else {
Akron2c2ddbd2021-03-05 12:10:27 +010070 $self->plugin(AutoSecrets => {
71 path => $secret_file
72 });
Nils Diewald19402142015-04-30 15:44:52 +000073 };
Nils Diewaldfccfbcb2015-04-29 20:48:19 +000074
Akron2c2ddbd2021-03-05 12:10:27 +010075
Akroncba9f322016-02-29 23:12:45 +010076 # Configuration framework
Akron09a567c2016-04-11 22:49:20 +030077 $self->plugin('Config');
Nils Diewald709f52f2015-05-21 18:32:58 +000078
Akron741b2b12017-04-13 22:15:59 +020079 $self->log->info('Mode is ' . $self->mode);
80
Akron63d963b2019-07-05 15:35:51 +020081 # Get configuration
Akron47787ca2017-05-17 16:00:10 +020082 my $conf = $self->config('Kalamar');
Akron63d963b2019-07-05 15:35:51 +020083 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
Akron0c4cd222019-07-19 16:33:34 +020099 $self->sessions->cookie_name('kalamar');
100
101 # Require HTTPS
102 if ($conf->{https_only}) {
103
104 # ... for cookie transport
105 $self->sessions->secure(1);
Akron1bee5a42021-01-13 17:44:18 +0100106
Akron26244a72021-04-28 00:17:56 +0200107 # Temporary for session riding
108 $self->sessions->samesite('None');
109
Akron1bee5a42021-01-13 17:44:18 +0100110 # For all pages
111 $self->hook(
112 before_dispatch => sub {
113 shift->res->headers->header('Strict-Transport-Security' => 'max-age=3600; includeSubDomains');
114 }
115 );
Akron0c4cd222019-07-19 16:33:34 +0200116 };
117
118 # Run the app from a subdirectory
Akron63d963b2019-07-05 15:35:51 +0200119 if ($conf->{proxy_prefix}) {
Akron47787ca2017-05-17 16:00:10 +0200120
Akronf3d856c2017-06-21 17:07:40 +0200121 for ($self->sessions) {
Akron1a394722017-06-21 16:25:30 +0200122 $_->cookie_path($conf->{proxy_prefix});
Akron0c4cd222019-07-19 16:33:34 +0200123 $_->cookie_name('kalamar-' . slugify($conf->{proxy_prefix}));
Akron1a394722017-06-21 16:25:30 +0200124 };
125
Akron47787ca2017-05-17 16:00:10 +0200126 # 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
Akron807225b2021-01-13 18:00:13 +0100136 $self->hook(
137 before_dispatch => sub {
Akron5b6d7272021-01-21 11:26:02 +0100138 my $h = shift->res->headers;
139 $h->header('X-Content-Type-Options' => 'nosniff');
Akron52b32d02021-01-21 17:37:19 +0100140 $h->header('X-XSS-Protection' => '1; mode=block');
Akron5b6d7272021-01-21 11:26:02 +0100141 $h->header(
142 'Access-Control-Allow-Methods' =>
143 $h->header('Access-Control-Allow-Methods') // 'GET, POST, OPTIONS'
144 );
Akron807225b2021-01-13 18:00:13 +0100145 }
146 );
147
Akron90be03b2020-02-03 16:13:37 +0100148 $conf->{proxy_host} //= 1;
149
150 # Take proxy host
151 if ($conf->{proxy_host}) {
152 $self->hook(
153 before_dispatch => sub {
154 my $c = shift;
155 if (my $host = $c->req->headers->header('X-Forwarded-Host')) {
156 foreach ($c->req->url->base) {
157 $_->host($host);
158 $_->scheme(undef);
159 $_->port(undef);
160 };
161 };
162 }
163 );
164 };
165
Akron8f8deda2021-01-15 12:55:06 +0100166 # API is not yet set - define the default Kustvakt api endpoint
167 $conf->{api_path} //= $ENV{KALAMAR_API} || 'https://korap.ids-mannheim.de/api/';
Akron63d963b2019-07-05 15:35:51 +0200168 $conf->{api_version} //= $API_VERSION;
Akronc7656e92018-08-30 13:33:25 +0200169
Akron4036d542018-02-12 13:17:09 +0100170 # Add development path
Akron0e1ed242018-10-11 13:22:00 +0200171 if ($self->mode eq 'development') {
Akron4036d542018-02-12 13:17:09 +0100172 push @{$self->static->paths}, 'dev';
Akronbe9d5b32017-04-05 20:48:24 +0200173 };
174
Akron23ab0472019-12-17 16:55:55 +0100175 # Set proxy timeouts
176 if ($conf->{proxy_inactivity_timeout}) {
177 $self->ua->inactivity_timeout($conf->{proxy_inactivity_timeout});
178 };
179 if ($conf->{proxy_connect_timeout}) {
180 $self->ua->connect_timeout($conf->{proxy_connect_timeout});
181 };
182
Akron09a567c2016-04-11 22:49:20 +0300183 # Client notifications
Akron0504a182016-04-10 21:13:42 +0200184 $self->plugin(Notifications => {
185 'Kalamar::Plugin::Notifications' => 1,
Akron8ea84292018-10-24 13:41:52 +0200186 JSON => 1,
Akron3c390c42020-03-30 09:06:21 +0200187 HTML => 1
Akron0504a182016-04-10 21:13:42 +0200188 });
189
Akronc4ea2e52021-01-27 18:34:05 +0100190 # Establish content security policy
Akron0a4d36e2021-01-18 17:50:48 +0100191 # This needs to be defined prior to Kalamar::Plugin::Piwik!
Akronc4ea2e52021-01-27 18:34:05 +0100192 $self->plugin(CSP => {
193 'default-src' => 'self',
Akron0a4d36e2021-01-18 17:50:48 +0100194 'style-src' => ['self','unsafe-inline'],
Akron1871f032021-01-29 10:35:53 +0100195 # Hash for korap-overview.svg script
196 'script-src' => ['self','sha256-VGXK99kFz+zmAQ0kxgleFrBWZgybFAPOl3GQtS7FQkI='],
Akron5b6d7272021-01-21 11:26:02 +0100197 'connect-src' => 'self',
Akron0a4d36e2021-01-18 17:50:48 +0100198 'frame-src' => '*',
Akronaef5cf22021-06-21 11:45:54 +0200199 'frame-ancestors' => 'self',
Akron0a4d36e2021-01-18 17:50:48 +0100200 'media-src' => 'none',
201 'object-src' => 'self',
202 'font-src' => 'self',
203 'img-src' => ['self', 'data:'],
Akronb7b91c52021-01-27 17:46:52 +0100204 -with_nonce => 1
Akronc4ea2e52021-01-27 18:34:05 +0100205 });
206
Akron09a567c2016-04-11 22:49:20 +0300207 # Localization framework
208 $self->plugin(Localize => {
Akrondbb448c2018-02-14 17:02:36 +0100209 dict => {
210 Q => {
211 _ => sub { shift->config('Kalamar')->{'examplecorpus'} },
212 }
213 },
Akrona7cfd902017-12-21 19:28:36 +0100214 resources => ['kalamar.dict', 'kalamar.queries.dict']
Akron09a567c2016-04-11 22:49:20 +0300215 });
216
217 # Pagination widget
218 $self->plugin('TagHelpers::Pagination' => {
219 prev => '<span><span>&lt;</span></span>',
Akron86e63a92019-02-27 17:35:04 +0100220 next => '<span><span>&gt;</span></span>',
Akrona4b17f72021-11-04 15:37:02 +0100221 ellipsis => '<a class="ellipsis inactive"><span><span>...</span></span></a>',
Akron09a567c2016-04-11 22:49:20 +0300222 separator => '',
223 current => '<span>{current}</span>',
224 page => '<span>{page}</span>'
225 });
226
Akron1011daf2021-03-01 12:34:58 +0100227 # Obfuscate email addresses
228 $self->plugin('TagHelpers::MailToChiffre' => {
229 method_name => 'PArok',
230 pattern_rotate => 673,
231 no_inline => 1
232 });
233
Nils Diewaldab4d3ca2015-04-17 01:48:43 +0000234 # Load plugins
Nils Diewaldfccfbcb2015-04-29 20:48:19 +0000235 foreach (
Akrone8235be2016-06-27 11:02:18 +0200236 'KalamarHelpers', # Specific Helpers for Kalamar
Akronb7b91c52021-01-27 17:46:52 +0100237 'KalamarPages', # Page Helpers for Kalamar
Akron7093b812018-10-19 17:28:21 +0200238 'KalamarErrors', # Specific Errors for Kalamar
239 'KalamarUser', # Specific Helpers for Kalamar Users
Akron429aeda2018-03-19 16:02:29 +0100240 'ClientIP', # Get client IP from X-Forwarded-For
Akron51757cb2018-05-16 13:10:08 +0200241 'ClosedRedirect', # Redirect with OpenRedirect protection
Akronafeca252018-05-23 15:54:28 +0200242 'TagHelpers::ContentBlock', # Flexible content blocks
Nils Diewaldfccfbcb2015-04-29 20:48:19 +0000243 ) {
Nils Diewaldab4d3ca2015-04-17 01:48:43 +0000244 $self->plugin($_);
245 };
246
Akron751e9e42019-03-13 09:54:55 +0100247 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
Akron05c6dd62018-10-11 17:05:06 +0200258 # Global caching mechanism
259 $self->plugin('CHI' => {
260 default => {
261 driver => 'Memory',
Akron751e9e42019-03-13 09:54:55 +0100262 global => 1,
263 serializer => $serializer
Akron05c6dd62018-10-11 17:05:06 +0200264 },
265 user => {
266 driver => 'Memory',
Akron751e9e42019-03-13 09:54:55 +0100267 global => 1,
268 serializer => $serializer
Akron05c6dd62018-10-11 17:05:06 +0200269 }
270 });
Nils Diewald709f52f2015-05-21 18:32:58 +0000271
Nils Diewaldfccfbcb2015-04-29 20:48:19 +0000272 # Configure mail exception
Akron40cc1d82017-05-10 17:58:16 +0200273 if ($self->config('MailException')) {
274 $self->plugin('MailException' => $self->config('MailException'));
275 };
Nils Diewald709f52f2015-05-21 18:32:58 +0000276
Akroncdfd9d52019-07-23 11:35:00 +0200277 # Load further plugins,
278 # that can override core functions,
279 # therefore order may be of importance
Akron4c33c622018-11-12 13:43:27 +0100280 if (exists $conf->{'plugins'}) {
281 foreach (@{$conf->{'plugins'}}) {
282 $self->plugin('Kalamar::Plugin::' . $_);
283 };
284 };
285
Akron864c2932018-11-16 17:18:55 +0100286 # Deprecated Legacy code
Akron864c2932018-11-16 17:18:55 +0100287 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')
Akron4c33c622018-11-12 13:43:27 +0100293 };
294
Nils Diewaldfccfbcb2015-04-29 20:48:19 +0000295 # Configure documentation navigation
Akrond512ea62019-10-24 15:50:04 +0200296 my $doc_navi = Mojo::File->new($self->home->child('templates','doc','navigation.json'))->slurp;
297 $doc_navi = $doc_navi ? decode_json($doc_navi) : [];
Akron1b1a2712018-12-21 14:59:05 +0100298
Akronf7ec4442019-10-27 20:01:05 +0100299 # TODO:
300 # Use navi->add()
Akron1b1a2712018-12-21 14:59:05 +0100301 if ($conf->{navi_ext}) {
Akrond512ea62019-10-24 15:50:04 +0200302 push @$doc_navi, @{$conf->{navi_ext}};
Akron1b1a2712018-12-21 14:59:05 +0100303 };
304
Akronf7ec4442019-10-27 20:01:05 +0100305 # TODO:
306 # Remove navi entry
Akrond512ea62019-10-24 15:50:04 +0200307 $self->config(doc_navi => $doc_navi);
Nils Diewaldfccfbcb2015-04-29 20:48:19 +0000308
Akronf7ec4442019-10-27 20:01:05 +0100309 $self->navi->set(doc => $doc_navi);
310
Akron63d963b2019-07-05 15:35:51 +0200311 $self->log->info('API expected at ' . $self->korap->api);
Nils Diewald709f52f2015-05-21 18:32:58 +0000312
Akron3cd391e2017-03-29 23:42:54 +0200313 # Establish routes with authentification
Akron7d75ee32017-05-02 13:42:41 +0200314 my $r = $self->routes;
Akron3cd391e2017-03-29 23:42:54 +0200315
Akronafeca252018-05-23 15:54:28 +0200316 # Set footer value
Akronef6d5f12018-05-28 17:54:58 +0200317 $self->content_block(footer => {
Akron3cfa26d2019-10-24 15:17:34 +0200318 inline => '<%= embedded_link_to "doc", "V ' . $Kalamar::VERSION . '", "korap", "kalamar" %>',
Akronafeca252018-05-23 15:54:28 +0200319 position => 100
Akronef6d5f12018-05-28 17:54:58 +0200320 });
Akronafeca252018-05-23 15:54:28 +0200321
Akronb7b91c52021-01-27 17:46:52 +0100322 # 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');
327NONCE_JS
328 });
329
Nils Diewalda79b2682015-05-18 18:34:06 +0000330 # Base query route
Akronfb6d87d2018-10-24 18:10:20 +0200331 $r->get('/')->to('search#query')->name('index');
Nils Diewaldab4d3ca2015-04-17 01:48:43 +0000332
Nils Diewalda79b2682015-05-18 18:34:06 +0000333 # Documentation routes
hebastada903dd2021-07-20 15:58:48 +0200334 $r->get('/doc')->to('documentation#page', page => 'ql')->name('doc_start');
Akron254fe212019-10-24 14:33:28 +0200335 $r->get('/doc/:scope/:page')->to('documentation#page', scope => undef)->name('doc');
Nils Diewaldab4d3ca2015-04-17 01:48:43 +0000336
Akron59992122019-10-29 11:28:45 +0100337 # Settings routes
338 if ($self->navi->exists('settings')) {
339 $r->get('/settings')->to(
340 cb => sub {
Akron88c26b12020-09-07 12:44:18 +0200341 my $c = shift;
342 $c->res->headers->header('X-Robots' => 'noindex');
343 return $c->render('settings');
Akron59992122019-10-29 11:28:45 +0100344 }
345 )->name('settings_start');
346 $r->get('/settings/:scope/:page')->to(
347 scope => undef,
348 page => undef
349 )->name('settings');
350 };
Akronf7ec4442019-10-27 20:01:05 +0100351
Nils Diewaldc46003b2015-05-07 15:55:35 +0000352 # Contact route
353 $r->get('/contact')->to('documentation#contact');
354 $r->get('/contact')->mail_to_chiffre('documentation#contact');
355
Akron63d963b2019-07-05 15:35:51 +0200356 # API proxy route
Akron8a21b4d2020-04-16 16:17:42 +0200357 $r->any('/api/v#apiv' => [apiv => ['1.0']])->name('proxy')->to('Proxy#pass');
Akron03c3c9d2021-02-15 07:41:27 +0100358 $r->any('/api/v#apiv/*api_path' => [apiv => ['1.0']])->to('Proxy#pass');
Akron63d963b2019-07-05 15:35:51 +0200359
Nils Diewald7148c6f2015-05-04 15:07:53 +0000360 # Match route
Akron80a84b22018-10-24 17:44:24 +0200361 # Corpus route
Akronfb6d87d2018-10-24 18:10:20 +0200362 my $corpus = $r->get('/corpus')->to('search#corpus_info')->name('corpus');
Akron8f9aae52020-12-17 15:52:28 +0100363 my $doc = $r->any('/corpus/:corpus_id/:doc_id');
Akronfb6d87d2018-10-24 18:10:20 +0200364 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 Diewald996aa552014-12-02 03:26:44 +0000366};
367
368
3691;
370
371
372__END__
Nils Diewalda898dac2015-05-06 21:04:16 +0000373
374=pod
375
Nils Diewaldeb5f3072015-05-20 09:32:42 +0000376=encoding utf8
Nils Diewalda898dac2015-05-06 21:04:16 +0000377
Nils Diewaldeb5f3072015-05-20 09:32:42 +0000378=head1 NAME
379
380Kalamar
Nils Diewalda0defc42015-05-07 23:54:17 +0000381
382
Nils Diewaldeb5f3072015-05-20 09:32:42 +0000383=head1 DESCRIPTION
Nils Diewalda0defc42015-05-07 23:54:17 +0000384
Nils Diewaldeb5f3072015-05-20 09:32:42 +0000385L<Kalamar> is a L<Mojolicious|http://mojolicio.us/> based user interface
Akron87468c22021-02-08 09:30:01 +0100386frontend for the L<KorAP Corpus Analysis Platform|https://korap.ids-mannheim.de/>.
Nils Diewaldeb5f3072015-05-20 09:32:42 +0000387
Akron456abd92015-06-02 15:07:21 +0200388B<See the README for further information!>
Nils Diewaldeb5f3072015-05-20 09:32:42 +0000389
Akron456abd92015-06-02 15:07:21 +0200390=head2 COPYRIGHT AND LICENSE
Nils Diewalda748b0e2015-05-19 22:54:06 +0000391
Akron87468c22021-02-08 09:30:01 +0100392Copyright (C) 2015-2021, L<IDS Mannheim|https://www.ids-mannheim.de/>
393Author: L<Nils Diewald|https://www.nils-diewald.de/>
Nils Diewalda748b0e2015-05-19 22:54:06 +0000394
395Kalamar is developed as part of the L<KorAP|http://korap.ids-mannheim.de/>
396Corpus Analysis Platform at the
Akron87468c22021-02-08 09:30:01 +0100397L<Leibniz Institute for the German Language (IDS)|https://www.ids-mannheim.de/>,
Nils Diewalda748b0e2015-05-19 22:54:06 +0000398member of the
hebasta21b7baf2019-12-16 10:32:43 +0100399L<Leibniz-Gemeinschaft|http://www.leibniz-gemeinschaft.de>
Nils Diewalda748b0e2015-05-19 22:54:06 +0000400and supported by the L<KobRA|http://www.kobra.tu-dortmund.de> project,
401funded by the
402L<Federal Ministry of Education and Research (BMBF)|http://www.bmbf.de/en/>.
403
404Kalamar is free software published under the
Akron87468c22021-02-08 09:30:01 +0100405L<BSD-2 License|https://opensource.org/licenses/BSD-2-Clause>.
Nils Diewalda748b0e2015-05-19 22:54:06 +0000406
407=cut