blob: 31fcb47f8284132e8e3667c7fd53ffb15ddea335 [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';
Akronbe9d5b32017-04-05 20:48:24 +02007use Mojo::Util qw/url_escape/;
Nils Diewald5d1ffb42014-05-21 17:45:34 +00008
Nils Diewald709f52f2015-05-21 18:32:58 +00009# Minor version - may be patched from package.json
Akronc7656e92018-08-30 13:33:25 +020010our $VERSION = '0.29';
11
12# Supported version of Backend API
13our $API_VERSION = '1.0';
Nils Diewald7cad8402014-07-08 17:06:56 +000014
Nils Diewald7148c6f2015-05-04 15:07:53 +000015# TODO: The FAQ-Page has a contact form for new questions
Nils Diewald709f52f2015-05-21 18:32:58 +000016# TODO: Embed query serialization
17# TODO: Embed collection statistics
18# TODO: Implement tab opener for matches and the tutorial
Nils Diewald709f52f2015-05-21 18:32:58 +000019# TODO: Implement a "projects" system
Akron0e1ed242018-10-11 13:22:00 +020020# TODO: Make authentification a plugin
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
Akron47787ca2017-05-17 16:00:10 +020060 # Specific path prefixing
61 my $conf = $self->config('Kalamar');
62 if ($conf && $conf->{proxy_prefix}) {
63
Akronf3d856c2017-06-21 17:07:40 +020064 for ($self->sessions) {
Akron1a394722017-06-21 16:25:30 +020065 $_->cookie_path($conf->{proxy_prefix});
66 $_->cookie_name('kalamar');
67 $_->secure(1);
68 };
69
Akron47787ca2017-05-17 16:00:10 +020070 # Set prefix in stash
71 $self->defaults(prefix => $conf->{proxy_prefix});
72
73 # Create base path
74 $self->hook(
75 before_dispatch => sub {
76 shift->req->url->base->path($conf->{proxy_prefix} . '/');
77 });
78 };
79
Akronc7656e92018-08-30 13:33:25 +020080 # Load Kalamar configuration
81 my $kalamar_conf = $self->config('Kalamar');
82
83 # Check for API endpoint and set the endpoint accordingly
84 if ($kalamar_conf->{api}) {
85
86 # The api endpoint should be defined as a separated path
87 # and version string
88 $self->log->info(
89 'Kalamar.api is deprecated in configurations '.
90 'in favor of Kalamar.api_path'
91 );
92 }
93
94 # Set from environment variable
95 elsif ($ENV{'KALAMAR_API'}) {
96 $kalamar_conf->{api} = $ENV{'KALAMAR_API'};
97 }
98
99 # API is not yet set - define
100 else {
Akron0e1ed242018-10-11 13:22:00 +0200101
Akronc7656e92018-08-30 13:33:25 +0200102 $kalamar_conf->{api} =
103 Mojo::URL->new($kalamar_conf->{api_path})->path('v' . ($kalamar_conf->{api_version} // $API_VERSION) . '/')->to_string;
104 };
105
Akron4036d542018-02-12 13:17:09 +0100106 # Add development path
Akron0e1ed242018-10-11 13:22:00 +0200107 if ($self->mode eq 'development') {
Akron4036d542018-02-12 13:17:09 +0100108 push @{$self->static->paths}, 'dev';
Akronbe9d5b32017-04-05 20:48:24 +0200109 };
110
Akronc7656e92018-08-30 13:33:25 +0200111 # Check search configuration
112
113 # Set endpoint
114 $self->config('Search')->{api} //= $kalamar_conf->{api};
115
Akron09a567c2016-04-11 22:49:20 +0300116 # Client notifications
Akron0504a182016-04-10 21:13:42 +0200117 $self->plugin(Notifications => {
118 'Kalamar::Plugin::Notifications' => 1,
119 JSON => 1
120 });
121
Akron09a567c2016-04-11 22:49:20 +0300122 # Localization framework
123 $self->plugin(Localize => {
Akrondbb448c2018-02-14 17:02:36 +0100124 dict => {
125 Q => {
126 _ => sub { shift->config('Kalamar')->{'examplecorpus'} },
127 }
128 },
Akrona7cfd902017-12-21 19:28:36 +0100129 resources => ['kalamar.dict', 'kalamar.queries.dict']
Akron09a567c2016-04-11 22:49:20 +0300130 });
131
132 # Pagination widget
133 $self->plugin('TagHelpers::Pagination' => {
134 prev => '<span><span>&lt;</span></span>',
135 next => '<span><span>&lt;</span></span>',
136 ellipsis => '<a class="ellipsis"><span><span>...</span></span></a>',
137 separator => '',
138 current => '<span>{current}</span>',
139 page => '<span>{page}</span>'
140 });
141
Nils Diewaldab4d3ca2015-04-17 01:48:43 +0000142 # Load plugins
Nils Diewaldfccfbcb2015-04-29 20:48:19 +0000143 foreach (
Nils Diewaldc46003b2015-05-07 15:55:35 +0000144 'Search', # Abstract Search framework
Nils Diewaldc46003b2015-05-07 15:55:35 +0000145 'TagHelpers::MailToChiffre', # Obfuscate email addresses
Akrone8235be2016-06-27 11:02:18 +0200146 'KalamarHelpers', # Specific Helpers for Kalamar
Akron7093b812018-10-19 17:28:21 +0200147 'KalamarErrors', # Specific Errors for Kalamar
148 'KalamarUser', # Specific Helpers for Kalamar Users
Akron429aeda2018-03-19 16:02:29 +0100149 'ClientIP', # Get client IP from X-Forwarded-For
Akron51757cb2018-05-16 13:10:08 +0200150 'ClosedRedirect', # Redirect with OpenRedirect protection
Akronafeca252018-05-23 15:54:28 +0200151 'TagHelpers::ContentBlock', # Flexible content blocks
Akron51757cb2018-05-16 13:10:08 +0200152 'Piwik' # Integrate Piwik/Matomo Analytics
Nils Diewaldfccfbcb2015-04-29 20:48:19 +0000153 ) {
Nils Diewaldab4d3ca2015-04-17 01:48:43 +0000154 $self->plugin($_);
155 };
156
Akron05c6dd62018-10-11 17:05:06 +0200157 # Global caching mechanism
158 $self->plugin('CHI' => {
159 default => {
160 driver => 'Memory',
161 global => 1
162 },
163 user => {
164 driver => 'Memory',
165 global => 1
166 }
167 });
Nils Diewald709f52f2015-05-21 18:32:58 +0000168
Nils Diewaldfccfbcb2015-04-29 20:48:19 +0000169 # Configure mail exception
Akron40cc1d82017-05-10 17:58:16 +0200170 if ($self->config('MailException')) {
171 $self->plugin('MailException' => $self->config('MailException'));
172 };
Nils Diewald709f52f2015-05-21 18:32:58 +0000173
Nils Diewaldfccfbcb2015-04-29 20:48:19 +0000174 # Configure documentation navigation
Akronf65ad6c2017-02-01 14:36:38 +0100175 my $navi = Mojo::File->new($self->home->child('templates','doc','navigation.json'))->slurp;
Nils Diewald7148c6f2015-05-04 15:07:53 +0000176 $self->config(navi => decode_json($navi)) if $navi;
Nils Diewaldfccfbcb2015-04-29 20:48:19 +0000177
Akron3cd391e2017-03-29 23:42:54 +0200178 $self->log->info('API expected at ' . $self->config->{Kalamar}->{api});
Nils Diewald709f52f2015-05-21 18:32:58 +0000179
Akron3cd391e2017-03-29 23:42:54 +0200180 # Establish routes with authentification
Akron7d75ee32017-05-02 13:42:41 +0200181 my $r = $self->routes;
Akron3cd391e2017-03-29 23:42:54 +0200182
Akron7d75ee32017-05-02 13:42:41 +0200183 # Check for auth support
184 $self->defaults(
185 auth_support => $self->config('Kalamar')->{auth_support}
Akron3cd391e2017-03-29 23:42:54 +0200186 );
Nils Diewaldab4d3ca2015-04-17 01:48:43 +0000187
Akron7d75ee32017-05-02 13:42:41 +0200188 # Support auth
189 if ($self->stash('auth_support')) {
190 $r = $r->under(
191 '/' => sub {
192 my $c = shift;
193
194 if ($c->session('auth')) {
195 $c->stash(auth => $c->session('auth'));
196 $c->stash(user => $c->session('user'));
197 };
198 return 1;
199 }
200 );
201 };
202
Akronafeca252018-05-23 15:54:28 +0200203 # Set footer value
Akronef6d5f12018-05-28 17:54:58 +0200204 $self->content_block(footer => {
Akronafeca252018-05-23 15:54:28 +0200205 inline => '<%= doc_link_to "V ' . $Kalamar::VERSION . '", "korap", "kalamar" %>',
206 position => 100
Akronef6d5f12018-05-28 17:54:58 +0200207 });
Akronafeca252018-05-23 15:54:28 +0200208
Nils Diewalda79b2682015-05-18 18:34:06 +0000209 # Base query route
Nils Diewaldab4d3ca2015-04-17 01:48:43 +0000210 $r->get('/')->to('search#query')->name('index');
Akron0e1ed242018-10-11 13:22:00 +0200211 $r->get('/q2')->to('search2#query');
Nils Diewaldab4d3ca2015-04-17 01:48:43 +0000212
Akron48b1e4d2015-06-17 18:47:01 +0200213 # Collection route
Akron4876b7b2018-05-18 16:11:40 +0200214 $r->get('/corpus')->to('Search#corpus_info')->name('corpus');
215 # $r->get('/collection/:id')->to('Search#corpus_info')->name('collection');
Akron48b1e4d2015-06-17 18:47:01 +0200216
Nils Diewalda79b2682015-05-18 18:34:06 +0000217 # Documentation routes
Nils Diewald7148c6f2015-05-04 15:07:53 +0000218 $r->get('/doc')->to('documentation#page', page => 'korap')->name('doc_start');
Nils Diewaldab4d3ca2015-04-17 01:48:43 +0000219 $r->get('/doc/:page')->to('documentation#page', scope => undef);
220 $r->get('/doc/*scope/:page')->to('documentation#page')->name('doc');
Nils Diewaldab4d3ca2015-04-17 01:48:43 +0000221
Nils Diewaldc46003b2015-05-07 15:55:35 +0000222 # Contact route
223 $r->get('/contact')->to('documentation#contact');
224 $r->get('/contact')->mail_to_chiffre('documentation#contact');
225
Nils Diewald7148c6f2015-05-04 15:07:53 +0000226 # Match route
Nils Diewald8f4b5da2014-12-03 22:13:39 +0000227 my $corpus = $r->route('/corpus/:corpus_id');
Nils Diewald7148c6f2015-05-04 15:07:53 +0000228 my $doc = $corpus->get('/:doc_id');
Akron72c2f8d2018-02-12 14:59:22 +0100229 my $text = $doc->get('/:text_id')->to('search#text_info')->name('text');
230 my $match = $doc->get('/:text_id/:match_id')->to('search#match_info')->name('match');
Akroncddd1642015-06-10 21:31:53 +0200231
Akronb80341d2018-10-15 19:46:23 +0200232 $r->route('/corpus2/:corpus_id/:doc_id/:text_id/:match_id')->to('search2#match_info')->name('match');
233
Akrone8235be2016-06-27 11:02:18 +0200234 # User Management
Akron3cd391e2017-03-29 23:42:54 +0200235 my $user = $r->any('/user')->to(controller => 'User');
236 $user->post('/login')->to(action => 'login')->name('login');
Akrone5ef4e02017-04-19 17:07:52 +0200237 $user->get('/logout')->to(action => 'logout')->name('logout');
Akron3cd391e2017-03-29 23:42:54 +0200238# $r->any('/register')->to(action => 'register')->name('register');
239# $r->any('/forgotten')->to(action => 'pwdforgotten')->name('pwdforgotten');
Akron189b3592016-01-04 20:56:46 +0100240
Akroncddd1642015-06-10 21:31:53 +0200241 # Default user is called 'korap'
242 # $r->route('/user/:user/:collection')
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
274L<Institute for the German Language (IDS)|http://ids-mannheim.de/>,
275member 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