blob: 322f11833b8b63eb5fe542a5b57b1289ebd15437 [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
Akron6e746872019-09-25 11:45:44 +020011our $VERSION = '0.37';
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 Diewalda748b0e2015-05-19 22:54:06 +000040
Nils Diewaldfccfbcb2015-04-29 20:48:19 +000041 # Set secrets for signed cookies
Akronf65ad6c2017-02-01 14:36:38 +010042 if (-e (my $secret = $self->home->child('kalamar.secret'))) {
Nils Diewalda79b2682015-05-18 18:34:06 +000043
44 # Load file and split lines for multiple secrets
Akronf65ad6c2017-02-01 14:36:38 +010045 $self->secrets([b($secret->slurp)->split("\n")]);
Nils Diewald4347ee92015-05-04 20:32:48 +000046 }
Nils Diewald709f52f2015-05-21 18:32:58 +000047
48 # File not found ...
49 # Kalamar needs secrets in a file to be easily deployable
50 # and publishable at the same time.
Nils Diewald4347ee92015-05-04 20:32:48 +000051 else {
52 $self->log->warn('Please create a kalamar.secret file');
Nils Diewald19402142015-04-30 15:44:52 +000053 };
Nils Diewaldfccfbcb2015-04-29 20:48:19 +000054
Akroncba9f322016-02-29 23:12:45 +010055 # Configuration framework
Akron09a567c2016-04-11 22:49:20 +030056 $self->plugin('Config');
Nils Diewald709f52f2015-05-21 18:32:58 +000057
Akron741b2b12017-04-13 22:15:59 +020058 $self->log->info('Mode is ' . $self->mode);
59
Akron63d963b2019-07-05 15:35:51 +020060 # Get configuration
Akron47787ca2017-05-17 16:00:10 +020061 my $conf = $self->config('Kalamar');
Akron63d963b2019-07-05 15:35:51 +020062 unless ($conf) {
63 $self->config(Kalamar => {});
64 $conf = $self->config('Kalamar');
65 };
66
67 # Check for API endpoint and set the endpoint accordingly
68 if ($conf->{api}) {
69
70 # The api endpoint should be defined as a separated path
71 # and version string
72 $self->log->warn(
73 'Kalamar.api is no longer supported in configurations '.
74 'in favor of Kalamar.api_path'
75 );
76 };
77
78 unless ($conf->{api_path} || $ENV{KALAMAR_API}) {
79 $self->log->warn('Kalamar-api_path not defined in configuration');
80 };
81
Akron0c4cd222019-07-19 16:33:34 +020082 $self->sessions->cookie_name('kalamar');
83
84 # Require HTTPS
85 if ($conf->{https_only}) {
86
87 # ... for cookie transport
88 $self->sessions->secure(1);
89 };
90
91 # Run the app from a subdirectory
Akron63d963b2019-07-05 15:35:51 +020092 if ($conf->{proxy_prefix}) {
Akron47787ca2017-05-17 16:00:10 +020093
Akronf3d856c2017-06-21 17:07:40 +020094 for ($self->sessions) {
Akron1a394722017-06-21 16:25:30 +020095 $_->cookie_path($conf->{proxy_prefix});
Akron0c4cd222019-07-19 16:33:34 +020096 $_->cookie_name('kalamar-' . slugify($conf->{proxy_prefix}));
Akron1a394722017-06-21 16:25:30 +020097 };
98
Akron47787ca2017-05-17 16:00:10 +020099 # Set prefix in stash
100 $self->defaults(prefix => $conf->{proxy_prefix});
101
102 # Create base path
103 $self->hook(
104 before_dispatch => sub {
105 shift->req->url->base->path($conf->{proxy_prefix} . '/');
106 });
107 };
108
Akronc7656e92018-08-30 13:33:25 +0200109 # API is not yet set - define
Akron63d963b2019-07-05 15:35:51 +0200110 $conf->{api_path} //= $ENV{KALAMAR_API};
111 $conf->{api_version} //= $API_VERSION;
Akronc7656e92018-08-30 13:33:25 +0200112
Akron4036d542018-02-12 13:17:09 +0100113 # Add development path
Akron0e1ed242018-10-11 13:22:00 +0200114 if ($self->mode eq 'development') {
Akron4036d542018-02-12 13:17:09 +0100115 push @{$self->static->paths}, 'dev';
Akronbe9d5b32017-04-05 20:48:24 +0200116 };
117
Akron09a567c2016-04-11 22:49:20 +0300118 # Client notifications
Akron0504a182016-04-10 21:13:42 +0200119 $self->plugin(Notifications => {
120 'Kalamar::Plugin::Notifications' => 1,
Akron8ea84292018-10-24 13:41:52 +0200121 JSON => 1,
122 'HTML' => 1
Akron0504a182016-04-10 21:13:42 +0200123 });
124
Akron09a567c2016-04-11 22:49:20 +0300125 # Localization framework
126 $self->plugin(Localize => {
Akrondbb448c2018-02-14 17:02:36 +0100127 dict => {
128 Q => {
129 _ => sub { shift->config('Kalamar')->{'examplecorpus'} },
130 }
131 },
Akrona7cfd902017-12-21 19:28:36 +0100132 resources => ['kalamar.dict', 'kalamar.queries.dict']
Akron09a567c2016-04-11 22:49:20 +0300133 });
134
135 # Pagination widget
136 $self->plugin('TagHelpers::Pagination' => {
137 prev => '<span><span>&lt;</span></span>',
Akron86e63a92019-02-27 17:35:04 +0100138 next => '<span><span>&gt;</span></span>',
Akron09a567c2016-04-11 22:49:20 +0300139 ellipsis => '<a class="ellipsis"><span><span>...</span></span></a>',
140 separator => '',
141 current => '<span>{current}</span>',
142 page => '<span>{page}</span>'
143 });
144
Nils Diewaldab4d3ca2015-04-17 01:48:43 +0000145 # Load plugins
Nils Diewaldfccfbcb2015-04-29 20:48:19 +0000146 foreach (
Nils Diewaldc46003b2015-05-07 15:55:35 +0000147 'TagHelpers::MailToChiffre', # Obfuscate email addresses
Akrone8235be2016-06-27 11:02:18 +0200148 'KalamarHelpers', # Specific Helpers for Kalamar
Akron41a190a2019-10-16 18:01:02 +0200149 'KalamarPages', # Page Helpers for Kalamar
Akron7093b812018-10-19 17:28:21 +0200150 'KalamarErrors', # Specific Errors for Kalamar
151 'KalamarUser', # Specific Helpers for Kalamar Users
Akron429aeda2018-03-19 16:02:29 +0100152 'ClientIP', # Get client IP from X-Forwarded-For
Akron51757cb2018-05-16 13:10:08 +0200153 'ClosedRedirect', # Redirect with OpenRedirect protection
Akronafeca252018-05-23 15:54:28 +0200154 'TagHelpers::ContentBlock', # Flexible content blocks
Nils Diewaldfccfbcb2015-04-29 20:48:19 +0000155 ) {
Nils Diewaldab4d3ca2015-04-17 01:48:43 +0000156 $self->plugin($_);
157 };
158
Akron751e9e42019-03-13 09:54:55 +0100159 my $serializer = 'JSON';
160
161 if (my $chi = $self->config('CHI')) {
162 if ($chi->{default}) {
163 $chi->{default}->{serializer} = $serializer;
164 };
165 if ($chi->{user}) {
166 $chi->{user}->{serializer} = $serializer;
167 };
168 };
169
Akron05c6dd62018-10-11 17:05:06 +0200170 # Global caching mechanism
171 $self->plugin('CHI' => {
172 default => {
173 driver => 'Memory',
Akron751e9e42019-03-13 09:54:55 +0100174 global => 1,
175 serializer => $serializer
Akron05c6dd62018-10-11 17:05:06 +0200176 },
177 user => {
178 driver => 'Memory',
Akron751e9e42019-03-13 09:54:55 +0100179 global => 1,
180 serializer => $serializer
Akron05c6dd62018-10-11 17:05:06 +0200181 }
182 });
Nils Diewald709f52f2015-05-21 18:32:58 +0000183
Nils Diewaldfccfbcb2015-04-29 20:48:19 +0000184 # Configure mail exception
Akron40cc1d82017-05-10 17:58:16 +0200185 if ($self->config('MailException')) {
186 $self->plugin('MailException' => $self->config('MailException'));
187 };
Nils Diewald709f52f2015-05-21 18:32:58 +0000188
Akroncdfd9d52019-07-23 11:35:00 +0200189 # Load further plugins,
190 # that can override core functions,
191 # therefore order may be of importance
Akron4c33c622018-11-12 13:43:27 +0100192 if (exists $conf->{'plugins'}) {
193 foreach (@{$conf->{'plugins'}}) {
194 $self->plugin('Kalamar::Plugin::' . $_);
195 };
196 };
197
Akron864c2932018-11-16 17:18:55 +0100198 # Deprecated Legacy code
Akron4c33c622018-11-12 13:43:27 +0100199 if ($self->config('Piwik') &&
200 none { $_ eq 'Piwik' } @{$conf->{plugins} // []}) {
Akron864c2932018-11-16 17:18:55 +0100201
202 # 2018-11-12
203 deprecated 'Piwik is no longer considered a mandatory plugin';
204 $self->plugin('Kalamar::Plugin::Piwik');
205 };
206
207 # Deprecated Legacy code
208 if ($self->config('Kalamar')->{auth_support} &&
209 none { $_ eq 'Auth' } @{$conf->{plugins} // []}) {
210
211 # 2018-11-16
212 deprecated 'auth_support configuration is deprecated in favor of Plugin loading';
213 $self->plugin('Kalamar::Plugin::Auth')
Akron4c33c622018-11-12 13:43:27 +0100214 };
215
Nils Diewaldfccfbcb2015-04-29 20:48:19 +0000216 # Configure documentation navigation
Akronf65ad6c2017-02-01 14:36:38 +0100217 my $navi = Mojo::File->new($self->home->child('templates','doc','navigation.json'))->slurp;
Akron1b1a2712018-12-21 14:59:05 +0100218 $navi = $navi ? decode_json($navi) : [];
219
220 if ($conf->{navi_ext}) {
221 push @$navi, @{$conf->{navi_ext}};
222 };
223
224 $self->config(navi => $navi);
Nils Diewaldfccfbcb2015-04-29 20:48:19 +0000225
Akron63d963b2019-07-05 15:35:51 +0200226 $self->log->info('API expected at ' . $self->korap->api);
Nils Diewald709f52f2015-05-21 18:32:58 +0000227
Akron3cd391e2017-03-29 23:42:54 +0200228 # Establish routes with authentification
Akron7d75ee32017-05-02 13:42:41 +0200229 my $r = $self->routes;
Akron3cd391e2017-03-29 23:42:54 +0200230
Akronafeca252018-05-23 15:54:28 +0200231 # Set footer value
Akronef6d5f12018-05-28 17:54:58 +0200232 $self->content_block(footer => {
Akron9490e3b2019-10-17 12:26:29 +0200233 inline => '<%= embedded_link_to "V ' . $Kalamar::VERSION . '", "korap", "kalamar" %>',
Akronafeca252018-05-23 15:54:28 +0200234 position => 100
Akronef6d5f12018-05-28 17:54:58 +0200235 });
Akronafeca252018-05-23 15:54:28 +0200236
Nils Diewalda79b2682015-05-18 18:34:06 +0000237 # Base query route
Akronfb6d87d2018-10-24 18:10:20 +0200238 $r->get('/')->to('search#query')->name('index');
Nils Diewaldab4d3ca2015-04-17 01:48:43 +0000239
Nils Diewalda79b2682015-05-18 18:34:06 +0000240 # Documentation routes
Nils Diewald7148c6f2015-05-04 15:07:53 +0000241 $r->get('/doc')->to('documentation#page', page => 'korap')->name('doc_start');
Akron254fe212019-10-24 14:33:28 +0200242 $r->get('/doc/:scope/:page')->to('documentation#page', scope => undef)->name('doc');
Nils Diewaldab4d3ca2015-04-17 01:48:43 +0000243
Nils Diewaldc46003b2015-05-07 15:55:35 +0000244 # Contact route
245 $r->get('/contact')->to('documentation#contact');
246 $r->get('/contact')->mail_to_chiffre('documentation#contact');
247
Akron63d963b2019-07-05 15:35:51 +0200248 # API proxy route
Akronb7876a82019-07-18 13:09:00 +0200249 if ($conf->{experimental_proxy}) {
250 $r->any('/api/v#apiv' => [apiv => ['1.0']])->to('Proxy#pass');
251 $r->any('/api/v#apiv/*path' => [apiv => ['1.0']])->to('Proxy#pass');
252 }
Akron63d963b2019-07-05 15:35:51 +0200253
Nils Diewald7148c6f2015-05-04 15:07:53 +0000254 # Match route
Akron80a84b22018-10-24 17:44:24 +0200255 # Corpus route
Akronfb6d87d2018-10-24 18:10:20 +0200256 my $corpus = $r->get('/corpus')->to('search#corpus_info')->name('corpus');
Akron80a84b22018-10-24 17:44:24 +0200257 my $doc = $r->route('/corpus/:corpus_id/:doc_id');
Akronfb6d87d2018-10-24 18:10:20 +0200258 my $text = $doc->get('/:text_id')->to('search#text_info')->name('text');
259 my $match = $doc->get('/:text_id/:match_id')->to('search#match_info')->name('match');
Nils Diewald996aa552014-12-02 03:26:44 +0000260};
261
262
2631;
264
265
266__END__
Nils Diewalda898dac2015-05-06 21:04:16 +0000267
268=pod
269
Nils Diewaldeb5f3072015-05-20 09:32:42 +0000270=encoding utf8
Nils Diewalda898dac2015-05-06 21:04:16 +0000271
Nils Diewaldeb5f3072015-05-20 09:32:42 +0000272=head1 NAME
273
274Kalamar
Nils Diewalda0defc42015-05-07 23:54:17 +0000275
276
Nils Diewaldeb5f3072015-05-20 09:32:42 +0000277=head1 DESCRIPTION
Nils Diewalda0defc42015-05-07 23:54:17 +0000278
Nils Diewaldeb5f3072015-05-20 09:32:42 +0000279L<Kalamar> is a L<Mojolicious|http://mojolicio.us/> based user interface
280frontend for the L<KorAP Corpus Analysis Platform|http://korap.ids-mannheim.de/>.
281
Akron456abd92015-06-02 15:07:21 +0200282B<See the README for further information!>
Nils Diewaldeb5f3072015-05-20 09:32:42 +0000283
Akron456abd92015-06-02 15:07:21 +0200284=head2 COPYRIGHT AND LICENSE
Nils Diewalda748b0e2015-05-19 22:54:06 +0000285
Akron63d963b2019-07-05 15:35:51 +0200286Copyright (C) 2015-2019, L<IDS Mannheim|http://www.ids-mannheim.de/>
Nils Diewalda748b0e2015-05-19 22:54:06 +0000287Author: L<Nils Diewald|http://nils-diewald.de/>
288
289Kalamar is developed as part of the L<KorAP|http://korap.ids-mannheim.de/>
290Corpus Analysis Platform at the
Akrona2d92de2019-02-27 15:51:07 +0100291L<Leibniz Institute for the German Language (IDS)|http://ids-mannheim.de/>,
Nils Diewalda748b0e2015-05-19 22:54:06 +0000292member of the
293L<Leibniz-Gemeinschaft|http://www.leibniz-gemeinschaft.de/en/about-us/leibniz-competition/projekte-2011/2011-funding-line-2/>
294and supported by the L<KobRA|http://www.kobra.tu-dortmund.de> project,
295funded by the
296L<Federal Ministry of Education and Research (BMBF)|http://www.bmbf.de/en/>.
297
298Kalamar is free software published under the
Akron456abd92015-06-02 15:07:21 +0200299L<BSD-2 License|https://raw.githubusercontent.com/KorAP/Kalamar/master/LICENSE>.
Nils Diewalda748b0e2015-05-19 22:54:06 +0000300
301=cut