blob: 8efd9193686ab81cb3eb4a907e3e8496c4f83b34 [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;
Nils Diewalda944fab2015-04-08 21:02:04 +00006use Mojo::JSON 'decode_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
Akron337f15d2021-01-14 12:57:21 +010011our $VERSION = '0.41';
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
Akronf65ad6c2017-02-01 14:36:38 +010041 if (-e (my $secret = $self->home->child('kalamar.secret'))) {
Nils Diewalda79b2682015-05-18 18:34:06 +000042
43 # Load file and split lines for multiple secrets
Akronf65ad6c2017-02-01 14:36:38 +010044 $self->secrets([b($secret->slurp)->split("\n")]);
Nils Diewald4347ee92015-05-04 20:32:48 +000045 }
Nils Diewald709f52f2015-05-21 18:32:58 +000046
47 # File not found ...
48 # Kalamar needs secrets in a file to be easily deployable
49 # and publishable at the same time.
Nils Diewald4347ee92015-05-04 20:32:48 +000050 else {
51 $self->log->warn('Please create a kalamar.secret file');
Nils Diewald19402142015-04-30 15:44:52 +000052 };
Nils Diewaldfccfbcb2015-04-29 20:48:19 +000053
Akroncba9f322016-02-29 23:12:45 +010054 # Configuration framework
Akron09a567c2016-04-11 22:49:20 +030055 $self->plugin('Config');
Nils Diewald709f52f2015-05-21 18:32:58 +000056
Akron741b2b12017-04-13 22:15:59 +020057 $self->log->info('Mode is ' . $self->mode);
58
Akron63d963b2019-07-05 15:35:51 +020059 # Get configuration
Akron47787ca2017-05-17 16:00:10 +020060 my $conf = $self->config('Kalamar');
Akron63d963b2019-07-05 15:35:51 +020061 unless ($conf) {
62 $self->config(Kalamar => {});
63 $conf = $self->config('Kalamar');
64 };
65
66 # Check for API endpoint and set the endpoint accordingly
67 if ($conf->{api}) {
68
69 # The api endpoint should be defined as a separated path
70 # and version string
71 $self->log->warn(
72 'Kalamar.api is no longer supported in configurations '.
73 'in favor of Kalamar.api_path'
74 );
75 };
76
Akron0c4cd222019-07-19 16:33:34 +020077 $self->sessions->cookie_name('kalamar');
78
79 # Require HTTPS
80 if ($conf->{https_only}) {
81
82 # ... for cookie transport
83 $self->sessions->secure(1);
Akron1bee5a42021-01-13 17:44:18 +010084
85 # For all pages
86 $self->hook(
87 before_dispatch => sub {
88 shift->res->headers->header('Strict-Transport-Security' => 'max-age=3600; includeSubDomains');
89 }
90 );
Akron0c4cd222019-07-19 16:33:34 +020091 };
92
93 # Run the app from a subdirectory
Akron63d963b2019-07-05 15:35:51 +020094 if ($conf->{proxy_prefix}) {
Akron47787ca2017-05-17 16:00:10 +020095
Akronf3d856c2017-06-21 17:07:40 +020096 for ($self->sessions) {
Akron1a394722017-06-21 16:25:30 +020097 $_->cookie_path($conf->{proxy_prefix});
Akron0c4cd222019-07-19 16:33:34 +020098 $_->cookie_name('kalamar-' . slugify($conf->{proxy_prefix}));
Akron1a394722017-06-21 16:25:30 +020099 };
100
Akron47787ca2017-05-17 16:00:10 +0200101 # Set prefix in stash
102 $self->defaults(prefix => $conf->{proxy_prefix});
103
104 # Create base path
105 $self->hook(
106 before_dispatch => sub {
107 shift->req->url->base->path($conf->{proxy_prefix} . '/');
108 });
109 };
110
Akron807225b2021-01-13 18:00:13 +0100111 $self->hook(
112 before_dispatch => sub {
Akron5b6d7272021-01-21 11:26:02 +0100113 my $h = shift->res->headers;
114 $h->header('X-Content-Type-Options' => 'nosniff');
115 $h->header(
116 'Access-Control-Allow-Methods' =>
117 $h->header('Access-Control-Allow-Methods') // 'GET, POST, OPTIONS'
118 );
Akron807225b2021-01-13 18:00:13 +0100119 }
120 );
121
Akron90be03b2020-02-03 16:13:37 +0100122 $conf->{proxy_host} //= 1;
123
124 # Take proxy host
125 if ($conf->{proxy_host}) {
126 $self->hook(
127 before_dispatch => sub {
128 my $c = shift;
129 if (my $host = $c->req->headers->header('X-Forwarded-Host')) {
130 foreach ($c->req->url->base) {
131 $_->host($host);
132 $_->scheme(undef);
133 $_->port(undef);
134 };
135 };
136 }
137 );
138 };
139
Akron8f8deda2021-01-15 12:55:06 +0100140 # API is not yet set - define the default Kustvakt api endpoint
141 $conf->{api_path} //= $ENV{KALAMAR_API} || 'https://korap.ids-mannheim.de/api/';
Akron63d963b2019-07-05 15:35:51 +0200142 $conf->{api_version} //= $API_VERSION;
Akronc7656e92018-08-30 13:33:25 +0200143
Akron4036d542018-02-12 13:17:09 +0100144 # Add development path
Akron0e1ed242018-10-11 13:22:00 +0200145 if ($self->mode eq 'development') {
Akron4036d542018-02-12 13:17:09 +0100146 push @{$self->static->paths}, 'dev';
Akronbe9d5b32017-04-05 20:48:24 +0200147 };
148
Akron23ab0472019-12-17 16:55:55 +0100149 # Set proxy timeouts
150 if ($conf->{proxy_inactivity_timeout}) {
151 $self->ua->inactivity_timeout($conf->{proxy_inactivity_timeout});
152 };
153 if ($conf->{proxy_connect_timeout}) {
154 $self->ua->connect_timeout($conf->{proxy_connect_timeout});
155 };
156
Akron09a567c2016-04-11 22:49:20 +0300157 # Client notifications
Akron0504a182016-04-10 21:13:42 +0200158 $self->plugin(Notifications => {
159 'Kalamar::Plugin::Notifications' => 1,
Akron8ea84292018-10-24 13:41:52 +0200160 JSON => 1,
Akron3c390c42020-03-30 09:06:21 +0200161 HTML => 1
Akron0504a182016-04-10 21:13:42 +0200162 });
163
Akronc4ea2e52021-01-27 18:34:05 +0100164 # Establish content security policy
165 $self->plugin(CSP => {
166 'default-src' => 'self',
167 'style-src' => ['self','unsafe-inline'],
Akronb7b91c52021-01-27 17:46:52 +0100168 'script-src' => 'self',
Akron5b6d7272021-01-21 11:26:02 +0100169 'connect-src' => 'self',
Akronc4ea2e52021-01-27 18:34:05 +0100170 'frame-src' => '*',
171 'media-src' => 'none',
172 'object-src' => 'self',
173 'font-src' => 'self',
Akronb7b91c52021-01-27 17:46:52 +0100174 'img-src' => ['self', 'data:'],
175 -with_nonce => 1
Akronc4ea2e52021-01-27 18:34:05 +0100176 });
177
Akron09a567c2016-04-11 22:49:20 +0300178 # Localization framework
179 $self->plugin(Localize => {
Akrondbb448c2018-02-14 17:02:36 +0100180 dict => {
181 Q => {
182 _ => sub { shift->config('Kalamar')->{'examplecorpus'} },
183 }
184 },
Akrona7cfd902017-12-21 19:28:36 +0100185 resources => ['kalamar.dict', 'kalamar.queries.dict']
Akron09a567c2016-04-11 22:49:20 +0300186 });
187
188 # Pagination widget
189 $self->plugin('TagHelpers::Pagination' => {
190 prev => '<span><span>&lt;</span></span>',
Akron86e63a92019-02-27 17:35:04 +0100191 next => '<span><span>&gt;</span></span>',
Akron09a567c2016-04-11 22:49:20 +0300192 ellipsis => '<a class="ellipsis"><span><span>...</span></span></a>',
193 separator => '',
194 current => '<span>{current}</span>',
195 page => '<span>{page}</span>'
196 });
197
Nils Diewaldab4d3ca2015-04-17 01:48:43 +0000198 # Load plugins
Nils Diewaldfccfbcb2015-04-29 20:48:19 +0000199 foreach (
Nils Diewaldc46003b2015-05-07 15:55:35 +0000200 'TagHelpers::MailToChiffre', # Obfuscate email addresses
Akrone8235be2016-06-27 11:02:18 +0200201 'KalamarHelpers', # Specific Helpers for Kalamar
Akronb7b91c52021-01-27 17:46:52 +0100202 'KalamarPages', # Page Helpers for Kalamar
Akron7093b812018-10-19 17:28:21 +0200203 'KalamarErrors', # Specific Errors for Kalamar
204 'KalamarUser', # Specific Helpers for Kalamar Users
Akron429aeda2018-03-19 16:02:29 +0100205 'ClientIP', # Get client IP from X-Forwarded-For
Akron51757cb2018-05-16 13:10:08 +0200206 'ClosedRedirect', # Redirect with OpenRedirect protection
Akronafeca252018-05-23 15:54:28 +0200207 'TagHelpers::ContentBlock', # Flexible content blocks
Nils Diewaldfccfbcb2015-04-29 20:48:19 +0000208 ) {
Nils Diewaldab4d3ca2015-04-17 01:48:43 +0000209 $self->plugin($_);
210 };
211
Akron751e9e42019-03-13 09:54:55 +0100212 my $serializer = 'JSON';
213
214 if (my $chi = $self->config('CHI')) {
215 if ($chi->{default}) {
216 $chi->{default}->{serializer} = $serializer;
217 };
218 if ($chi->{user}) {
219 $chi->{user}->{serializer} = $serializer;
220 };
221 };
222
Akron05c6dd62018-10-11 17:05:06 +0200223 # Global caching mechanism
224 $self->plugin('CHI' => {
225 default => {
226 driver => 'Memory',
Akron751e9e42019-03-13 09:54:55 +0100227 global => 1,
228 serializer => $serializer
Akron05c6dd62018-10-11 17:05:06 +0200229 },
230 user => {
231 driver => 'Memory',
Akron751e9e42019-03-13 09:54:55 +0100232 global => 1,
233 serializer => $serializer
Akron05c6dd62018-10-11 17:05:06 +0200234 }
235 });
Nils Diewald709f52f2015-05-21 18:32:58 +0000236
Nils Diewaldfccfbcb2015-04-29 20:48:19 +0000237 # Configure mail exception
Akron40cc1d82017-05-10 17:58:16 +0200238 if ($self->config('MailException')) {
239 $self->plugin('MailException' => $self->config('MailException'));
240 };
Nils Diewald709f52f2015-05-21 18:32:58 +0000241
Akroncdfd9d52019-07-23 11:35:00 +0200242 # Load further plugins,
243 # that can override core functions,
244 # therefore order may be of importance
Akron4c33c622018-11-12 13:43:27 +0100245 if (exists $conf->{'plugins'}) {
246 foreach (@{$conf->{'plugins'}}) {
247 $self->plugin('Kalamar::Plugin::' . $_);
248 };
249 };
250
Akron864c2932018-11-16 17:18:55 +0100251 # Deprecated Legacy code
Akron4c33c622018-11-12 13:43:27 +0100252 if ($self->config('Piwik') &&
253 none { $_ eq 'Piwik' } @{$conf->{plugins} // []}) {
Akron864c2932018-11-16 17:18:55 +0100254
255 # 2018-11-12
256 deprecated 'Piwik is no longer considered a mandatory plugin';
257 $self->plugin('Kalamar::Plugin::Piwik');
258 };
259
260 # Deprecated Legacy code
261 if ($self->config('Kalamar')->{auth_support} &&
262 none { $_ eq 'Auth' } @{$conf->{plugins} // []}) {
263
264 # 2018-11-16
265 deprecated 'auth_support configuration is deprecated in favor of Plugin loading';
266 $self->plugin('Kalamar::Plugin::Auth')
Akron4c33c622018-11-12 13:43:27 +0100267 };
268
Nils Diewaldfccfbcb2015-04-29 20:48:19 +0000269 # Configure documentation navigation
Akrond512ea62019-10-24 15:50:04 +0200270 my $doc_navi = Mojo::File->new($self->home->child('templates','doc','navigation.json'))->slurp;
271 $doc_navi = $doc_navi ? decode_json($doc_navi) : [];
Akron1b1a2712018-12-21 14:59:05 +0100272
Akronf7ec4442019-10-27 20:01:05 +0100273 # TODO:
274 # Use navi->add()
Akron1b1a2712018-12-21 14:59:05 +0100275 if ($conf->{navi_ext}) {
Akrond512ea62019-10-24 15:50:04 +0200276 push @$doc_navi, @{$conf->{navi_ext}};
Akron1b1a2712018-12-21 14:59:05 +0100277 };
278
Akronf7ec4442019-10-27 20:01:05 +0100279 # TODO:
280 # Remove navi entry
Akrond512ea62019-10-24 15:50:04 +0200281 $self->config(doc_navi => $doc_navi);
Nils Diewaldfccfbcb2015-04-29 20:48:19 +0000282
Akronf7ec4442019-10-27 20:01:05 +0100283 $self->navi->set(doc => $doc_navi);
284
Akron63d963b2019-07-05 15:35:51 +0200285 $self->log->info('API expected at ' . $self->korap->api);
Nils Diewald709f52f2015-05-21 18:32:58 +0000286
Akron3cd391e2017-03-29 23:42:54 +0200287 # Establish routes with authentification
Akron7d75ee32017-05-02 13:42:41 +0200288 my $r = $self->routes;
Akron3cd391e2017-03-29 23:42:54 +0200289
Akronafeca252018-05-23 15:54:28 +0200290 # Set footer value
Akronef6d5f12018-05-28 17:54:58 +0200291 $self->content_block(footer => {
Akron3cfa26d2019-10-24 15:17:34 +0200292 inline => '<%= embedded_link_to "doc", "V ' . $Kalamar::VERSION . '", "korap", "kalamar" %>',
Akronafeca252018-05-23 15:54:28 +0200293 position => 100
Akronef6d5f12018-05-28 17:54:58 +0200294 });
Akronafeca252018-05-23 15:54:28 +0200295
Akronb7b91c52021-01-27 17:46:52 +0100296 # Add nonce script
297 $self->content_block(nonce_js => {
298 inline => <<'NONCE_JS'
299 // Remove the no-js class from the body
300 document.body.classList.remove('no-js');
301NONCE_JS
302 });
303
Nils Diewalda79b2682015-05-18 18:34:06 +0000304 # Base query route
Akronfb6d87d2018-10-24 18:10:20 +0200305 $r->get('/')->to('search#query')->name('index');
Nils Diewaldab4d3ca2015-04-17 01:48:43 +0000306
Nils Diewalda79b2682015-05-18 18:34:06 +0000307 # Documentation routes
Nils Diewald7148c6f2015-05-04 15:07:53 +0000308 $r->get('/doc')->to('documentation#page', page => 'korap')->name('doc_start');
Akron254fe212019-10-24 14:33:28 +0200309 $r->get('/doc/:scope/:page')->to('documentation#page', scope => undef)->name('doc');
Nils Diewaldab4d3ca2015-04-17 01:48:43 +0000310
Akron59992122019-10-29 11:28:45 +0100311 # Settings routes
312 if ($self->navi->exists('settings')) {
313 $r->get('/settings')->to(
314 cb => sub {
Akron88c26b12020-09-07 12:44:18 +0200315 my $c = shift;
316 $c->res->headers->header('X-Robots' => 'noindex');
317 return $c->render('settings');
Akron59992122019-10-29 11:28:45 +0100318 }
319 )->name('settings_start');
320 $r->get('/settings/:scope/:page')->to(
321 scope => undef,
322 page => undef
323 )->name('settings');
324 };
Akronf7ec4442019-10-27 20:01:05 +0100325
Nils Diewaldc46003b2015-05-07 15:55:35 +0000326 # Contact route
327 $r->get('/contact')->to('documentation#contact');
328 $r->get('/contact')->mail_to_chiffre('documentation#contact');
329
Akron63d963b2019-07-05 15:35:51 +0200330 # API proxy route
Akron8a21b4d2020-04-16 16:17:42 +0200331 $r->any('/api/v#apiv' => [apiv => ['1.0']])->name('proxy')->to('Proxy#pass');
332 $r->any('/api/v#apiv/*path' => [apiv => ['1.0']])->to('Proxy#pass');
Akron63d963b2019-07-05 15:35:51 +0200333
Nils Diewald7148c6f2015-05-04 15:07:53 +0000334 # Match route
Akron80a84b22018-10-24 17:44:24 +0200335 # Corpus route
Akronfb6d87d2018-10-24 18:10:20 +0200336 my $corpus = $r->get('/corpus')->to('search#corpus_info')->name('corpus');
Akron8f9aae52020-12-17 15:52:28 +0100337 my $doc = $r->any('/corpus/:corpus_id/:doc_id');
Akronfb6d87d2018-10-24 18:10:20 +0200338 my $text = $doc->get('/:text_id')->to('search#text_info')->name('text');
339 my $match = $doc->get('/:text_id/:match_id')->to('search#match_info')->name('match');
Nils Diewald996aa552014-12-02 03:26:44 +0000340};
341
342
3431;
344
345
346__END__
Nils Diewalda898dac2015-05-06 21:04:16 +0000347
348=pod
349
Nils Diewaldeb5f3072015-05-20 09:32:42 +0000350=encoding utf8
Nils Diewalda898dac2015-05-06 21:04:16 +0000351
Nils Diewaldeb5f3072015-05-20 09:32:42 +0000352=head1 NAME
353
354Kalamar
Nils Diewalda0defc42015-05-07 23:54:17 +0000355
356
Nils Diewaldeb5f3072015-05-20 09:32:42 +0000357=head1 DESCRIPTION
Nils Diewalda0defc42015-05-07 23:54:17 +0000358
Nils Diewaldeb5f3072015-05-20 09:32:42 +0000359L<Kalamar> is a L<Mojolicious|http://mojolicio.us/> based user interface
360frontend for the L<KorAP Corpus Analysis Platform|http://korap.ids-mannheim.de/>.
361
Akron456abd92015-06-02 15:07:21 +0200362B<See the README for further information!>
Nils Diewaldeb5f3072015-05-20 09:32:42 +0000363
Akron456abd92015-06-02 15:07:21 +0200364=head2 COPYRIGHT AND LICENSE
Nils Diewalda748b0e2015-05-19 22:54:06 +0000365
Akron8f8deda2021-01-15 12:55:06 +0100366Copyright (C) 2015-2021, L<IDS Mannheim|http://www.ids-mannheim.de/>
Nils Diewalda748b0e2015-05-19 22:54:06 +0000367Author: L<Nils Diewald|http://nils-diewald.de/>
368
369Kalamar is developed as part of the L<KorAP|http://korap.ids-mannheim.de/>
370Corpus Analysis Platform at the
Akrona2d92de2019-02-27 15:51:07 +0100371L<Leibniz Institute for the German Language (IDS)|http://ids-mannheim.de/>,
Nils Diewalda748b0e2015-05-19 22:54:06 +0000372member of the
hebasta21b7baf2019-12-16 10:32:43 +0100373L<Leibniz-Gemeinschaft|http://www.leibniz-gemeinschaft.de>
Nils Diewalda748b0e2015-05-19 22:54:06 +0000374and supported by the L<KobRA|http://www.kobra.tu-dortmund.de> project,
375funded by the
376L<Federal Ministry of Education and Research (BMBF)|http://www.bmbf.de/en/>.
377
378Kalamar is free software published under the
Akron456abd92015-06-02 15:07:21 +0200379L<BSD-2 License|https://raw.githubusercontent.com/KorAP/Kalamar/master/LICENSE>.
Nils Diewalda748b0e2015-05-19 22:54:06 +0000380
381=cut