blob: 1e8b0c758cbe0af55acce97dbcff89b8a966c8ec [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';
Akron864c2932018-11-16 17:18:55 +01007use Mojo::Util qw/url_escape deprecated/;
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
Akron751e9e42019-03-13 09:54:55 +010011our $VERSION = '0.33';
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
Akron0e1ed242018-10-11 13:22:00 +020021# TODO: Make authentification a plugin
Nils Diewald7148c6f2015-05-04 15:07:53 +000022
Nils Diewald002e8fb2014-06-22 14:27:01 +000023# Start the application and register all routes and plugins
Nils Diewald5d1ffb42014-05-21 17:45:34 +000024sub startup {
25 my $self = shift;
26
Nils Diewalda944fab2015-04-08 21:02:04 +000027 # Set version based on package file
Nils Diewald709f52f2015-05-21 18:32:58 +000028 # This may introduce a SemVer patch number
Akronf65ad6c2017-02-01 14:36:38 +010029 my $pkg_path = $self->home->child('package.json');
30 if (-e $pkg_path->to_abs) {
31 my $pkg = $pkg_path->slurp;
32 $Kalamar::VERSION = decode_json($pkg)->{version};
33 };
Nils Diewalda944fab2015-04-08 21:02:04 +000034
Akron656c5d92015-11-13 21:17:03 +010035 # Lift maximum template cache
36 $self->renderer->cache->max_keys(200);
37
Nils Diewaldab4d3ca2015-04-17 01:48:43 +000038 # Add additional plugin path
39 push(@{$self->plugins->namespaces}, __PACKAGE__ . '::Plugin');
40
Nils Diewalda748b0e2015-05-19 22:54:06 +000041
Nils Diewaldfccfbcb2015-04-29 20:48:19 +000042 # Set secrets for signed cookies
Akronf65ad6c2017-02-01 14:36:38 +010043 if (-e (my $secret = $self->home->child('kalamar.secret'))) {
Nils Diewalda79b2682015-05-18 18:34:06 +000044
45 # Load file and split lines for multiple secrets
Akronf65ad6c2017-02-01 14:36:38 +010046 $self->secrets([b($secret->slurp)->split("\n")]);
Nils Diewald4347ee92015-05-04 20:32:48 +000047 }
Nils Diewald709f52f2015-05-21 18:32:58 +000048
49 # File not found ...
50 # Kalamar needs secrets in a file to be easily deployable
51 # and publishable at the same time.
Nils Diewald4347ee92015-05-04 20:32:48 +000052 else {
53 $self->log->warn('Please create a kalamar.secret file');
Nils Diewald19402142015-04-30 15:44:52 +000054 };
Nils Diewaldfccfbcb2015-04-29 20:48:19 +000055
Akroncba9f322016-02-29 23:12:45 +010056 # Configuration framework
Akron09a567c2016-04-11 22:49:20 +030057 $self->plugin('Config');
Nils Diewald709f52f2015-05-21 18:32:58 +000058
Akron741b2b12017-04-13 22:15:59 +020059 $self->log->info('Mode is ' . $self->mode);
60
Akron47787ca2017-05-17 16:00:10 +020061 # Specific path prefixing
62 my $conf = $self->config('Kalamar');
63 if ($conf && $conf->{proxy_prefix}) {
64
Akronf3d856c2017-06-21 17:07:40 +020065 for ($self->sessions) {
Akron1a394722017-06-21 16:25:30 +020066 $_->cookie_path($conf->{proxy_prefix});
67 $_->cookie_name('kalamar');
68 $_->secure(1);
69 };
70
Akron47787ca2017-05-17 16:00:10 +020071 # Set prefix in stash
72 $self->defaults(prefix => $conf->{proxy_prefix});
73
74 # Create base path
75 $self->hook(
76 before_dispatch => sub {
77 shift->req->url->base->path($conf->{proxy_prefix} . '/');
78 });
79 };
80
Akronc7656e92018-08-30 13:33:25 +020081 # Check for API endpoint and set the endpoint accordingly
Akron1b1a2712018-12-21 14:59:05 +010082 if ($conf->{api}) {
Akronc7656e92018-08-30 13:33:25 +020083
84 # The api endpoint should be defined as a separated path
85 # and version string
86 $self->log->info(
87 'Kalamar.api is deprecated in configurations '.
88 'in favor of Kalamar.api_path'
89 );
90 }
91
92 # Set from environment variable
93 elsif ($ENV{'KALAMAR_API'}) {
Akron1b1a2712018-12-21 14:59:05 +010094 $conf->{api} = $ENV{'KALAMAR_API'};
Akronc7656e92018-08-30 13:33:25 +020095 }
96
97 # API is not yet set - define
98 else {
Akron0e1ed242018-10-11 13:22:00 +020099
Akron1b1a2712018-12-21 14:59:05 +0100100 $conf->{api} =
101 Mojo::URL->new($conf->{api_path})->path('v' . ($conf->{api_version} // $API_VERSION) . '/')->to_string;
Akronc7656e92018-08-30 13:33:25 +0200102 };
103
Akron4036d542018-02-12 13:17:09 +0100104 # Add development path
Akron0e1ed242018-10-11 13:22:00 +0200105 if ($self->mode eq 'development') {
Akron4036d542018-02-12 13:17:09 +0100106 push @{$self->static->paths}, 'dev';
Akronbe9d5b32017-04-05 20:48:24 +0200107 };
108
Akron09a567c2016-04-11 22:49:20 +0300109 # Client notifications
Akron0504a182016-04-10 21:13:42 +0200110 $self->plugin(Notifications => {
111 'Kalamar::Plugin::Notifications' => 1,
Akron8ea84292018-10-24 13:41:52 +0200112 JSON => 1,
113 'HTML' => 1
Akron0504a182016-04-10 21:13:42 +0200114 });
115
Akron09a567c2016-04-11 22:49:20 +0300116 # Localization framework
117 $self->plugin(Localize => {
Akrondbb448c2018-02-14 17:02:36 +0100118 dict => {
119 Q => {
120 _ => sub { shift->config('Kalamar')->{'examplecorpus'} },
121 }
122 },
Akrona7cfd902017-12-21 19:28:36 +0100123 resources => ['kalamar.dict', 'kalamar.queries.dict']
Akron09a567c2016-04-11 22:49:20 +0300124 });
125
126 # Pagination widget
127 $self->plugin('TagHelpers::Pagination' => {
128 prev => '<span><span>&lt;</span></span>',
Akron86e63a92019-02-27 17:35:04 +0100129 next => '<span><span>&gt;</span></span>',
Akron09a567c2016-04-11 22:49:20 +0300130 ellipsis => '<a class="ellipsis"><span><span>...</span></span></a>',
131 separator => '',
132 current => '<span>{current}</span>',
133 page => '<span>{page}</span>'
134 });
135
Nils Diewaldab4d3ca2015-04-17 01:48:43 +0000136 # Load plugins
Nils Diewaldfccfbcb2015-04-29 20:48:19 +0000137 foreach (
Nils Diewaldc46003b2015-05-07 15:55:35 +0000138 'TagHelpers::MailToChiffre', # Obfuscate email addresses
Akrone8235be2016-06-27 11:02:18 +0200139 'KalamarHelpers', # Specific Helpers for Kalamar
Akron7093b812018-10-19 17:28:21 +0200140 'KalamarErrors', # Specific Errors for Kalamar
141 'KalamarUser', # Specific Helpers for Kalamar Users
Akron429aeda2018-03-19 16:02:29 +0100142 'ClientIP', # Get client IP from X-Forwarded-For
Akron51757cb2018-05-16 13:10:08 +0200143 'ClosedRedirect', # Redirect with OpenRedirect protection
Akronafeca252018-05-23 15:54:28 +0200144 'TagHelpers::ContentBlock', # Flexible content blocks
Nils Diewaldfccfbcb2015-04-29 20:48:19 +0000145 ) {
Nils Diewaldab4d3ca2015-04-17 01:48:43 +0000146 $self->plugin($_);
147 };
148
Akron751e9e42019-03-13 09:54:55 +0100149 my $serializer = 'JSON';
150
151 if (my $chi = $self->config('CHI')) {
152 if ($chi->{default}) {
153 $chi->{default}->{serializer} = $serializer;
154 };
155 if ($chi->{user}) {
156 $chi->{user}->{serializer} = $serializer;
157 };
158 };
159
Akron05c6dd62018-10-11 17:05:06 +0200160 # Global caching mechanism
161 $self->plugin('CHI' => {
162 default => {
163 driver => 'Memory',
Akron751e9e42019-03-13 09:54:55 +0100164 global => 1,
165 serializer => $serializer
Akron05c6dd62018-10-11 17:05:06 +0200166 },
167 user => {
168 driver => 'Memory',
Akron751e9e42019-03-13 09:54:55 +0100169 global => 1,
170 serializer => $serializer
Akron05c6dd62018-10-11 17:05:06 +0200171 }
172 });
Nils Diewald709f52f2015-05-21 18:32:58 +0000173
Nils Diewaldfccfbcb2015-04-29 20:48:19 +0000174 # Configure mail exception
Akron40cc1d82017-05-10 17:58:16 +0200175 if ($self->config('MailException')) {
176 $self->plugin('MailException' => $self->config('MailException'));
177 };
Nils Diewald709f52f2015-05-21 18:32:58 +0000178
Akron4c33c622018-11-12 13:43:27 +0100179 # Load further plugins
180 if (exists $conf->{'plugins'}) {
181 foreach (@{$conf->{'plugins'}}) {
182 $self->plugin('Kalamar::Plugin::' . $_);
183 };
184 };
185
Akron864c2932018-11-16 17:18:55 +0100186 # Deprecated Legacy code
Akron4c33c622018-11-12 13:43:27 +0100187 if ($self->config('Piwik') &&
188 none { $_ eq 'Piwik' } @{$conf->{plugins} // []}) {
Akron864c2932018-11-16 17:18:55 +0100189
190 # 2018-11-12
191 deprecated 'Piwik is no longer considered a mandatory plugin';
192 $self->plugin('Kalamar::Plugin::Piwik');
193 };
194
195 # Deprecated Legacy code
196 if ($self->config('Kalamar')->{auth_support} &&
197 none { $_ eq 'Auth' } @{$conf->{plugins} // []}) {
198
199 # 2018-11-16
200 deprecated 'auth_support configuration is deprecated in favor of Plugin loading';
201 $self->plugin('Kalamar::Plugin::Auth')
Akron4c33c622018-11-12 13:43:27 +0100202 };
203
Nils Diewaldfccfbcb2015-04-29 20:48:19 +0000204 # Configure documentation navigation
Akronf65ad6c2017-02-01 14:36:38 +0100205 my $navi = Mojo::File->new($self->home->child('templates','doc','navigation.json'))->slurp;
Akron1b1a2712018-12-21 14:59:05 +0100206 $navi = $navi ? decode_json($navi) : [];
207
208 if ($conf->{navi_ext}) {
209 push @$navi, @{$conf->{navi_ext}};
210 };
211
212 $self->config(navi => $navi);
Nils Diewaldfccfbcb2015-04-29 20:48:19 +0000213
Akron3cd391e2017-03-29 23:42:54 +0200214 $self->log->info('API expected at ' . $self->config->{Kalamar}->{api});
Nils Diewald709f52f2015-05-21 18:32:58 +0000215
Akron3cd391e2017-03-29 23:42:54 +0200216 # Establish routes with authentification
Akron7d75ee32017-05-02 13:42:41 +0200217 my $r = $self->routes;
Akron3cd391e2017-03-29 23:42:54 +0200218
Akronafeca252018-05-23 15:54:28 +0200219 # Set footer value
Akronef6d5f12018-05-28 17:54:58 +0200220 $self->content_block(footer => {
Akronafeca252018-05-23 15:54:28 +0200221 inline => '<%= doc_link_to "V ' . $Kalamar::VERSION . '", "korap", "kalamar" %>',
222 position => 100
Akronef6d5f12018-05-28 17:54:58 +0200223 });
Akronafeca252018-05-23 15:54:28 +0200224
Nils Diewalda79b2682015-05-18 18:34:06 +0000225 # Base query route
Akronfb6d87d2018-10-24 18:10:20 +0200226 $r->get('/')->to('search#query')->name('index');
Nils Diewaldab4d3ca2015-04-17 01:48:43 +0000227
Nils Diewalda79b2682015-05-18 18:34:06 +0000228 # Documentation routes
Nils Diewald7148c6f2015-05-04 15:07:53 +0000229 $r->get('/doc')->to('documentation#page', page => 'korap')->name('doc_start');
Akron1b1a2712018-12-21 14:59:05 +0100230 $r->get('/doc/:page')->to('documentation#page')->name('doc1');
231 $r->get('/doc/*scope/:page')->to('documentation#page')->name('doc2');
Nils Diewaldab4d3ca2015-04-17 01:48:43 +0000232
Nils Diewaldc46003b2015-05-07 15:55:35 +0000233 # Contact route
234 $r->get('/contact')->to('documentation#contact');
235 $r->get('/contact')->mail_to_chiffre('documentation#contact');
236
Nils Diewald7148c6f2015-05-04 15:07:53 +0000237 # Match route
Akron80a84b22018-10-24 17:44:24 +0200238 # Corpus route
Akronfb6d87d2018-10-24 18:10:20 +0200239 my $corpus = $r->get('/corpus')->to('search#corpus_info')->name('corpus');
Akron80a84b22018-10-24 17:44:24 +0200240 my $doc = $r->route('/corpus/:corpus_id/:doc_id');
Akronfb6d87d2018-10-24 18:10:20 +0200241 my $text = $doc->get('/:text_id')->to('search#text_info')->name('text');
242 my $match = $doc->get('/:text_id/:match_id')->to('search#match_info')->name('match');
Nils Diewald996aa552014-12-02 03:26:44 +0000243};
244
245
2461;
247
248
249__END__
Nils Diewalda898dac2015-05-06 21:04:16 +0000250
251=pod
252
Nils Diewaldeb5f3072015-05-20 09:32:42 +0000253=encoding utf8
Nils Diewalda898dac2015-05-06 21:04:16 +0000254
Nils Diewaldeb5f3072015-05-20 09:32:42 +0000255=head1 NAME
256
257Kalamar
Nils Diewalda0defc42015-05-07 23:54:17 +0000258
259
Nils Diewaldeb5f3072015-05-20 09:32:42 +0000260=head1 DESCRIPTION
Nils Diewalda0defc42015-05-07 23:54:17 +0000261
Nils Diewaldeb5f3072015-05-20 09:32:42 +0000262L<Kalamar> is a L<Mojolicious|http://mojolicio.us/> based user interface
263frontend for the L<KorAP Corpus Analysis Platform|http://korap.ids-mannheim.de/>.
264
Akron456abd92015-06-02 15:07:21 +0200265B<See the README for further information!>
Nils Diewaldeb5f3072015-05-20 09:32:42 +0000266
Akron456abd92015-06-02 15:07:21 +0200267=head2 COPYRIGHT AND LICENSE
Nils Diewalda748b0e2015-05-19 22:54:06 +0000268
Akronf4a7cf42018-01-09 15:58:45 +0100269Copyright (C) 2015-2018, L<IDS Mannheim|http://www.ids-mannheim.de/>
Nils Diewalda748b0e2015-05-19 22:54:06 +0000270Author: L<Nils Diewald|http://nils-diewald.de/>
271
272Kalamar is developed as part of the L<KorAP|http://korap.ids-mannheim.de/>
273Corpus Analysis Platform at the
Akrona2d92de2019-02-27 15:51:07 +0100274L<Leibniz Institute for the German Language (IDS)|http://ids-mannheim.de/>,
Nils Diewalda748b0e2015-05-19 22:54:06 +0000275member of the
276L<Leibniz-Gemeinschaft|http://www.leibniz-gemeinschaft.de/en/about-us/leibniz-competition/projekte-2011/2011-funding-line-2/>
277and supported by the L<KobRA|http://www.kobra.tu-dortmund.de> project,
278funded by the
279L<Federal Ministry of Education and Research (BMBF)|http://www.bmbf.de/en/>.
280
281Kalamar is free software published under the
Akron456abd92015-06-02 15:07:21 +0200282L<BSD-2 License|https://raw.githubusercontent.com/KorAP/Kalamar/master/LICENSE>.
Nils Diewalda748b0e2015-05-19 22:54:06 +0000283
284=cut