blob: 50ad7d9276b52a44466720caf0129e5e0f8406d7 [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
Nils Diewald7148c6f2015-05-04 15:07:53 +000020
Nils Diewald002e8fb2014-06-22 14:27:01 +000021# Start the application and register all routes and plugins
Nils Diewald5d1ffb42014-05-21 17:45:34 +000022sub startup {
23 my $self = shift;
24
Nils Diewalda944fab2015-04-08 21:02:04 +000025 # Set version based on package file
Nils Diewald709f52f2015-05-21 18:32:58 +000026 # This may introduce a SemVer patch number
Akronf65ad6c2017-02-01 14:36:38 +010027 my $pkg_path = $self->home->child('package.json');
28 if (-e $pkg_path->to_abs) {
29 my $pkg = $pkg_path->slurp;
30 $Kalamar::VERSION = decode_json($pkg)->{version};
31 };
Nils Diewalda944fab2015-04-08 21:02:04 +000032
Akron656c5d92015-11-13 21:17:03 +010033 # Lift maximum template cache
34 $self->renderer->cache->max_keys(200);
35
Nils Diewaldab4d3ca2015-04-17 01:48:43 +000036 # Add additional plugin path
37 push(@{$self->plugins->namespaces}, __PACKAGE__ . '::Plugin');
38
Nils Diewalda748b0e2015-05-19 22:54:06 +000039
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
Akron47787ca2017-05-17 16:00:10 +020059 # Specific path prefixing
60 my $conf = $self->config('Kalamar');
61 if ($conf && $conf->{proxy_prefix}) {
62
Akronf3d856c2017-06-21 17:07:40 +020063 for ($self->sessions) {
Akron1a394722017-06-21 16:25:30 +020064 $_->cookie_path($conf->{proxy_prefix});
65 $_->cookie_name('kalamar');
66 $_->secure(1);
67 };
68
Akron47787ca2017-05-17 16:00:10 +020069 # Set prefix in stash
70 $self->defaults(prefix => $conf->{proxy_prefix});
71
72 # Create base path
73 $self->hook(
74 before_dispatch => sub {
75 shift->req->url->base->path($conf->{proxy_prefix} . '/');
76 });
77 };
78
Akronc7656e92018-08-30 13:33:25 +020079 # Load Kalamar configuration
80 my $kalamar_conf = $self->config('Kalamar');
81
82 # Check for API endpoint and set the endpoint accordingly
83 if ($kalamar_conf->{api}) {
84
85 # The api endpoint should be defined as a separated path
86 # and version string
87 $self->log->info(
88 'Kalamar.api is deprecated in configurations '.
89 'in favor of Kalamar.api_path'
90 );
91 }
92
93 # Set from environment variable
94 elsif ($ENV{'KALAMAR_API'}) {
95 $kalamar_conf->{api} = $ENV{'KALAMAR_API'};
96 }
97
98 # API is not yet set - define
99 else {
100 $kalamar_conf->{api} =
101 Mojo::URL->new($kalamar_conf->{api_path})->path('v' . ($kalamar_conf->{api_version} // $API_VERSION) . '/')->to_string;
102 };
103
104
105 # Start fixture server for testing purposes
Akronbe9d5b32017-04-05 20:48:24 +0200106 if ($self->mode eq 'test') {
Akron741b2b12017-04-13 22:15:59 +0200107
108 $self->log->info('Mount test server');
109
Akron3042f242017-04-15 16:57:55 +0200110 my $mount_point = '/api/v0.1/';
111
Akronbe9d5b32017-04-05 20:48:24 +0200112 $self->plugin(Mount => {
Akron7d75ee32017-05-02 13:42:41 +0200113 $mount_point => $self->home->child(
114 'lib/Kalamar/Apps/test_backend.pl'
115 )
Akronbe9d5b32017-04-05 20:48:24 +0200116 });
117
Akron3042f242017-04-15 16:57:55 +0200118 # Fix api endpoints
Akronc7656e92018-08-30 13:33:25 +0200119 $kalamar_conf->{api} = $mount_point;
Akron4036d542018-02-12 13:17:09 +0100120 }
121
122 # Add development path
123 elsif ($self->mode eq 'development') {
124 push @{$self->static->paths}, 'dev';
Akronbe9d5b32017-04-05 20:48:24 +0200125 };
126
Akronc7656e92018-08-30 13:33:25 +0200127 # Check search configuration
128
129 # Set endpoint
130 $self->config('Search')->{api} //= $kalamar_conf->{api};
131
Akron09a567c2016-04-11 22:49:20 +0300132 # Client notifications
Akron0504a182016-04-10 21:13:42 +0200133 $self->plugin(Notifications => {
134 'Kalamar::Plugin::Notifications' => 1,
135 JSON => 1
136 });
137
Akron09a567c2016-04-11 22:49:20 +0300138 # Localization framework
139 $self->plugin(Localize => {
Akrondbb448c2018-02-14 17:02:36 +0100140 dict => {
141 Q => {
142 _ => sub { shift->config('Kalamar')->{'examplecorpus'} },
143 }
144 },
Akrona7cfd902017-12-21 19:28:36 +0100145 resources => ['kalamar.dict', 'kalamar.queries.dict']
Akron09a567c2016-04-11 22:49:20 +0300146 });
147
148 # Pagination widget
149 $self->plugin('TagHelpers::Pagination' => {
150 prev => '<span><span>&lt;</span></span>',
151 next => '<span><span>&lt;</span></span>',
152 ellipsis => '<a class="ellipsis"><span><span>...</span></span></a>',
153 separator => '',
154 current => '<span>{current}</span>',
155 page => '<span>{page}</span>'
156 });
157
Nils Diewaldab4d3ca2015-04-17 01:48:43 +0000158 # Load plugins
Nils Diewaldfccfbcb2015-04-29 20:48:19 +0000159 foreach (
Nils Diewaldc46003b2015-05-07 15:55:35 +0000160 'Search', # Abstract Search framework
161 'CHI', # Global caching mechanism
Nils Diewaldc46003b2015-05-07 15:55:35 +0000162 'TagHelpers::MailToChiffre', # Obfuscate email addresses
Akrone8235be2016-06-27 11:02:18 +0200163 'KalamarHelpers', # Specific Helpers for Kalamar
Akronaa7f9422017-04-24 20:49:32 +0200164 'KalamarUser', # Specific Helpers for Kalamar
Akron429aeda2018-03-19 16:02:29 +0100165 'ClientIP', # Get client IP from X-Forwarded-For
Akron51757cb2018-05-16 13:10:08 +0200166 'ClosedRedirect', # Redirect with OpenRedirect protection
Akronafeca252018-05-23 15:54:28 +0200167 'TagHelpers::ContentBlock', # Flexible content blocks
Akron51757cb2018-05-16 13:10:08 +0200168 'Piwik' # Integrate Piwik/Matomo Analytics
Nils Diewaldfccfbcb2015-04-29 20:48:19 +0000169 ) {
Nils Diewaldab4d3ca2015-04-17 01:48:43 +0000170 $self->plugin($_);
171 };
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
Nils Diewaldfccfbcb2015-04-29 20:48:19 +0000179 # Configure documentation navigation
Akronf65ad6c2017-02-01 14:36:38 +0100180 my $navi = Mojo::File->new($self->home->child('templates','doc','navigation.json'))->slurp;
Nils Diewald7148c6f2015-05-04 15:07:53 +0000181 $self->config(navi => decode_json($navi)) if $navi;
Nils Diewaldfccfbcb2015-04-29 20:48:19 +0000182
Akron3cd391e2017-03-29 23:42:54 +0200183 $self->log->info('API expected at ' . $self->config->{Kalamar}->{api});
Nils Diewald709f52f2015-05-21 18:32:58 +0000184
Akron3cd391e2017-03-29 23:42:54 +0200185 # Establish routes with authentification
Akron7d75ee32017-05-02 13:42:41 +0200186 my $r = $self->routes;
Akron3cd391e2017-03-29 23:42:54 +0200187
Akron7d75ee32017-05-02 13:42:41 +0200188 # Check for auth support
189 $self->defaults(
190 auth_support => $self->config('Kalamar')->{auth_support}
Akron3cd391e2017-03-29 23:42:54 +0200191 );
Nils Diewaldab4d3ca2015-04-17 01:48:43 +0000192
Akron7d75ee32017-05-02 13:42:41 +0200193 # Support auth
194 if ($self->stash('auth_support')) {
195 $r = $r->under(
196 '/' => sub {
197 my $c = shift;
198
199 if ($c->session('auth')) {
200 $c->stash(auth => $c->session('auth'));
201 $c->stash(user => $c->session('user'));
202 };
203 return 1;
204 }
205 );
206 };
207
Akronafeca252018-05-23 15:54:28 +0200208 # Set footer value
Akronef6d5f12018-05-28 17:54:58 +0200209 $self->content_block(footer => {
Akronafeca252018-05-23 15:54:28 +0200210 inline => '<%= doc_link_to "V ' . $Kalamar::VERSION . '", "korap", "kalamar" %>',
211 position => 100
Akronef6d5f12018-05-28 17:54:58 +0200212 });
Akronafeca252018-05-23 15:54:28 +0200213
Nils Diewalda79b2682015-05-18 18:34:06 +0000214 # Base query route
Nils Diewaldab4d3ca2015-04-17 01:48:43 +0000215 $r->get('/')->to('search#query')->name('index');
216
Akron48b1e4d2015-06-17 18:47:01 +0200217 # Collection route
Akron4876b7b2018-05-18 16:11:40 +0200218 $r->get('/corpus')->to('Search#corpus_info')->name('corpus');
219 # $r->get('/collection/:id')->to('Search#corpus_info')->name('collection');
Akron48b1e4d2015-06-17 18:47:01 +0200220
Nils Diewalda79b2682015-05-18 18:34:06 +0000221 # Documentation routes
Nils Diewald7148c6f2015-05-04 15:07:53 +0000222 $r->get('/doc')->to('documentation#page', page => 'korap')->name('doc_start');
Nils Diewaldab4d3ca2015-04-17 01:48:43 +0000223 $r->get('/doc/:page')->to('documentation#page', scope => undef);
224 $r->get('/doc/*scope/:page')->to('documentation#page')->name('doc');
Nils Diewaldab4d3ca2015-04-17 01:48:43 +0000225
Nils Diewaldc46003b2015-05-07 15:55:35 +0000226 # Contact route
227 $r->get('/contact')->to('documentation#contact');
228 $r->get('/contact')->mail_to_chiffre('documentation#contact');
229
Nils Diewald7148c6f2015-05-04 15:07:53 +0000230 # Match route
Nils Diewald8f4b5da2014-12-03 22:13:39 +0000231 my $corpus = $r->route('/corpus/:corpus_id');
Nils Diewald7148c6f2015-05-04 15:07:53 +0000232 my $doc = $corpus->get('/:doc_id');
Akron72c2f8d2018-02-12 14:59:22 +0100233 my $text = $doc->get('/:text_id')->to('search#text_info')->name('text');
234 my $match = $doc->get('/:text_id/:match_id')->to('search#match_info')->name('match');
Akroncddd1642015-06-10 21:31:53 +0200235
Akrone8235be2016-06-27 11:02:18 +0200236 # User Management
Akron3cd391e2017-03-29 23:42:54 +0200237 my $user = $r->any('/user')->to(controller => 'User');
238 $user->post('/login')->to(action => 'login')->name('login');
Akrone5ef4e02017-04-19 17:07:52 +0200239 $user->get('/logout')->to(action => 'logout')->name('logout');
Akron3cd391e2017-03-29 23:42:54 +0200240# $r->any('/register')->to(action => 'register')->name('register');
241# $r->any('/forgotten')->to(action => 'pwdforgotten')->name('pwdforgotten');
Akron189b3592016-01-04 20:56:46 +0100242
Akroncddd1642015-06-10 21:31:53 +0200243 # Default user is called 'korap'
244 # $r->route('/user/:user/:collection')
Nils Diewald996aa552014-12-02 03:26:44 +0000245};
246
247
2481;
249
250
251__END__
Nils Diewalda898dac2015-05-06 21:04:16 +0000252
253=pod
254
Nils Diewaldeb5f3072015-05-20 09:32:42 +0000255=encoding utf8
Nils Diewalda898dac2015-05-06 21:04:16 +0000256
Nils Diewaldeb5f3072015-05-20 09:32:42 +0000257=head1 NAME
258
259Kalamar
Nils Diewalda0defc42015-05-07 23:54:17 +0000260
261
Nils Diewaldeb5f3072015-05-20 09:32:42 +0000262=head1 DESCRIPTION
Nils Diewalda0defc42015-05-07 23:54:17 +0000263
Nils Diewaldeb5f3072015-05-20 09:32:42 +0000264L<Kalamar> is a L<Mojolicious|http://mojolicio.us/> based user interface
265frontend for the L<KorAP Corpus Analysis Platform|http://korap.ids-mannheim.de/>.
266
Akron456abd92015-06-02 15:07:21 +0200267B<See the README for further information!>
Nils Diewaldeb5f3072015-05-20 09:32:42 +0000268
Akron456abd92015-06-02 15:07:21 +0200269=head2 COPYRIGHT AND LICENSE
Nils Diewalda748b0e2015-05-19 22:54:06 +0000270
Akronf4a7cf42018-01-09 15:58:45 +0100271Copyright (C) 2015-2018, L<IDS Mannheim|http://www.ids-mannheim.de/>
Nils Diewalda748b0e2015-05-19 22:54:06 +0000272Author: L<Nils Diewald|http://nils-diewald.de/>
273
274Kalamar is developed as part of the L<KorAP|http://korap.ids-mannheim.de/>
275Corpus Analysis Platform at the
276L<Institute for the German Language (IDS)|http://ids-mannheim.de/>,
277member of the
278L<Leibniz-Gemeinschaft|http://www.leibniz-gemeinschaft.de/en/about-us/leibniz-competition/projekte-2011/2011-funding-line-2/>
279and supported by the L<KobRA|http://www.kobra.tu-dortmund.de> project,
280funded by the
281L<Federal Ministry of Education and Research (BMBF)|http://www.bmbf.de/en/>.
282
283Kalamar is free software published under the
Akron456abd92015-06-02 15:07:21 +0200284L<BSD-2 License|https://raw.githubusercontent.com/KorAP/Kalamar/master/LICENSE>.
Nils Diewalda748b0e2015-05-19 22:54:06 +0000285
286=cut