blob: 8b920b7ffa55511179965ab647b28eddb7b14d8f [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';
Akronf65ad6c2017-02-01 14:36:38 +01004use Mojo::File;
Nils Diewalda944fab2015-04-08 21:02:04 +00005use Mojo::JSON 'decode_json';
Akronbe9d5b32017-04-05 20:48:24 +02006use Mojo::Util qw/url_escape/;
Nils Diewald5d1ffb42014-05-21 17:45:34 +00007
Nils Diewald709f52f2015-05-21 18:32:58 +00008# Minor version - may be patched from package.json
Akronafeca252018-05-23 15:54:28 +02009our $VERSION = '0.27';
Nils Diewald7cad8402014-07-08 17:06:56 +000010
Nils Diewald7148c6f2015-05-04 15:07:53 +000011# TODO: The FAQ-Page has a contact form for new questions
Nils Diewald709f52f2015-05-21 18:32:58 +000012# TODO: Embed query serialization
13# TODO: Embed collection statistics
14# TODO: Implement tab opener for matches and the tutorial
Nils Diewald709f52f2015-05-21 18:32:58 +000015# TODO: Implement a "projects" system
Nils Diewald7148c6f2015-05-04 15:07:53 +000016
Nils Diewald002e8fb2014-06-22 14:27:01 +000017# Start the application and register all routes and plugins
Nils Diewald5d1ffb42014-05-21 17:45:34 +000018sub startup {
19 my $self = shift;
20
Nils Diewalda944fab2015-04-08 21:02:04 +000021 # Set version based on package file
Nils Diewald709f52f2015-05-21 18:32:58 +000022 # This may introduce a SemVer patch number
Akronf65ad6c2017-02-01 14:36:38 +010023 my $pkg_path = $self->home->child('package.json');
24 if (-e $pkg_path->to_abs) {
25 my $pkg = $pkg_path->slurp;
26 $Kalamar::VERSION = decode_json($pkg)->{version};
27 };
Nils Diewalda944fab2015-04-08 21:02:04 +000028
Akron656c5d92015-11-13 21:17:03 +010029 # Lift maximum template cache
30 $self->renderer->cache->max_keys(200);
31
Nils Diewaldab4d3ca2015-04-17 01:48:43 +000032 # Add additional plugin path
33 push(@{$self->plugins->namespaces}, __PACKAGE__ . '::Plugin');
34
Nils Diewalda748b0e2015-05-19 22:54:06 +000035
Nils Diewaldfccfbcb2015-04-29 20:48:19 +000036 # Set secrets for signed cookies
Akronf65ad6c2017-02-01 14:36:38 +010037 if (-e (my $secret = $self->home->child('kalamar.secret'))) {
Nils Diewalda79b2682015-05-18 18:34:06 +000038
39 # Load file and split lines for multiple secrets
Akronf65ad6c2017-02-01 14:36:38 +010040 $self->secrets([b($secret->slurp)->split("\n")]);
Nils Diewald4347ee92015-05-04 20:32:48 +000041 }
Nils Diewald709f52f2015-05-21 18:32:58 +000042
43 # File not found ...
44 # Kalamar needs secrets in a file to be easily deployable
45 # and publishable at the same time.
Nils Diewald4347ee92015-05-04 20:32:48 +000046 else {
47 $self->log->warn('Please create a kalamar.secret file');
Nils Diewald19402142015-04-30 15:44:52 +000048 };
Nils Diewaldfccfbcb2015-04-29 20:48:19 +000049
Akroncba9f322016-02-29 23:12:45 +010050 # Configuration framework
Akron09a567c2016-04-11 22:49:20 +030051 $self->plugin('Config');
Nils Diewald709f52f2015-05-21 18:32:58 +000052
Akron741b2b12017-04-13 22:15:59 +020053 $self->log->info('Mode is ' . $self->mode);
54
Akron47787ca2017-05-17 16:00:10 +020055 # Specific path prefixing
56 my $conf = $self->config('Kalamar');
57 if ($conf && $conf->{proxy_prefix}) {
58
Akronf3d856c2017-06-21 17:07:40 +020059 for ($self->sessions) {
Akron1a394722017-06-21 16:25:30 +020060 $_->cookie_path($conf->{proxy_prefix});
61 $_->cookie_name('kalamar');
62 $_->secure(1);
63 };
64
Akron47787ca2017-05-17 16:00:10 +020065 # Set prefix in stash
66 $self->defaults(prefix => $conf->{proxy_prefix});
67
68 # Create base path
69 $self->hook(
70 before_dispatch => sub {
71 shift->req->url->base->path($conf->{proxy_prefix} . '/');
72 });
73 };
74
Akronbe9d5b32017-04-05 20:48:24 +020075 # Start fixture server
76 if ($self->mode eq 'test') {
Akron741b2b12017-04-13 22:15:59 +020077
78 $self->log->info('Mount test server');
79
Akron3042f242017-04-15 16:57:55 +020080 my $mount_point = '/api/v0.1/';
81
Akronbe9d5b32017-04-05 20:48:24 +020082 $self->plugin(Mount => {
Akron7d75ee32017-05-02 13:42:41 +020083 $mount_point => $self->home->child(
84 'lib/Kalamar/Apps/test_backend.pl'
85 )
Akronbe9d5b32017-04-05 20:48:24 +020086 });
87
Akron3042f242017-04-15 16:57:55 +020088 # Fix api endpoints
89 $self->config('Kalamar')->{api} = $mount_point;
90 $self->config('Search')->{api} = $mount_point;
Akron4036d542018-02-12 13:17:09 +010091 }
92
93 # Add development path
94 elsif ($self->mode eq 'development') {
95 push @{$self->static->paths}, 'dev';
Akronbe9d5b32017-04-05 20:48:24 +020096 };
97
Akron09a567c2016-04-11 22:49:20 +030098 # Client notifications
Akron0504a182016-04-10 21:13:42 +020099 $self->plugin(Notifications => {
100 'Kalamar::Plugin::Notifications' => 1,
101 JSON => 1
102 });
103
Akron09a567c2016-04-11 22:49:20 +0300104 # Localization framework
105 $self->plugin(Localize => {
Akrondbb448c2018-02-14 17:02:36 +0100106 dict => {
107 Q => {
108 _ => sub { shift->config('Kalamar')->{'examplecorpus'} },
109 }
110 },
Akrona7cfd902017-12-21 19:28:36 +0100111 resources => ['kalamar.dict', 'kalamar.queries.dict']
Akron09a567c2016-04-11 22:49:20 +0300112 });
113
114 # Pagination widget
115 $self->plugin('TagHelpers::Pagination' => {
116 prev => '<span><span>&lt;</span></span>',
117 next => '<span><span>&lt;</span></span>',
118 ellipsis => '<a class="ellipsis"><span><span>...</span></span></a>',
119 separator => '',
120 current => '<span>{current}</span>',
121 page => '<span>{page}</span>'
122 });
123
Nils Diewaldab4d3ca2015-04-17 01:48:43 +0000124 # Load plugins
Nils Diewaldfccfbcb2015-04-29 20:48:19 +0000125 foreach (
Nils Diewaldc46003b2015-05-07 15:55:35 +0000126 'Search', # Abstract Search framework
127 'CHI', # Global caching mechanism
Nils Diewaldc46003b2015-05-07 15:55:35 +0000128 'TagHelpers::MailToChiffre', # Obfuscate email addresses
Akrone8235be2016-06-27 11:02:18 +0200129 'KalamarHelpers', # Specific Helpers for Kalamar
Akronaa7f9422017-04-24 20:49:32 +0200130 'KalamarUser', # Specific Helpers for Kalamar
Akron429aeda2018-03-19 16:02:29 +0100131 'ClientIP', # Get client IP from X-Forwarded-For
Akron51757cb2018-05-16 13:10:08 +0200132 'ClosedRedirect', # Redirect with OpenRedirect protection
Akronafeca252018-05-23 15:54:28 +0200133 'TagHelpers::ContentBlock', # Flexible content blocks
Akron51757cb2018-05-16 13:10:08 +0200134 'Piwik' # Integrate Piwik/Matomo Analytics
Nils Diewaldfccfbcb2015-04-29 20:48:19 +0000135 ) {
Nils Diewaldab4d3ca2015-04-17 01:48:43 +0000136 $self->plugin($_);
137 };
138
Nils Diewald709f52f2015-05-21 18:32:58 +0000139
Nils Diewaldfccfbcb2015-04-29 20:48:19 +0000140 # Configure mail exception
Akron40cc1d82017-05-10 17:58:16 +0200141 if ($self->config('MailException')) {
142 $self->plugin('MailException' => $self->config('MailException'));
143 };
Nils Diewald709f52f2015-05-21 18:32:58 +0000144
Nils Diewaldfccfbcb2015-04-29 20:48:19 +0000145 # Configure documentation navigation
Akronf65ad6c2017-02-01 14:36:38 +0100146 my $navi = Mojo::File->new($self->home->child('templates','doc','navigation.json'))->slurp;
Nils Diewald7148c6f2015-05-04 15:07:53 +0000147 $self->config(navi => decode_json($navi)) if $navi;
Nils Diewaldfccfbcb2015-04-29 20:48:19 +0000148
Akron3cd391e2017-03-29 23:42:54 +0200149 $self->log->info('API expected at ' . $self->config->{Kalamar}->{api});
Nils Diewald709f52f2015-05-21 18:32:58 +0000150
Akron3cd391e2017-03-29 23:42:54 +0200151 # Establish routes with authentification
Akron7d75ee32017-05-02 13:42:41 +0200152 my $r = $self->routes;
Akron3cd391e2017-03-29 23:42:54 +0200153
Akron7d75ee32017-05-02 13:42:41 +0200154 # Check for auth support
155 $self->defaults(
156 auth_support => $self->config('Kalamar')->{auth_support}
Akron3cd391e2017-03-29 23:42:54 +0200157 );
Nils Diewaldab4d3ca2015-04-17 01:48:43 +0000158
Akron7d75ee32017-05-02 13:42:41 +0200159 # Support auth
160 if ($self->stash('auth_support')) {
161 $r = $r->under(
162 '/' => sub {
163 my $c = shift;
164
165 if ($c->session('auth')) {
166 $c->stash(auth => $c->session('auth'));
167 $c->stash(user => $c->session('user'));
168 };
169 return 1;
170 }
171 );
172 };
173
Akronafeca252018-05-23 15:54:28 +0200174 # Set footer value
175 $self->content_block(footer => (
176 inline => '<%= doc_link_to "V ' . $Kalamar::VERSION . '", "korap", "kalamar" %>',
177 position => 100
178 ));
179
Nils Diewalda79b2682015-05-18 18:34:06 +0000180 # Base query route
Nils Diewaldab4d3ca2015-04-17 01:48:43 +0000181 $r->get('/')->to('search#query')->name('index');
182
Akron48b1e4d2015-06-17 18:47:01 +0200183 # Collection route
Akron4876b7b2018-05-18 16:11:40 +0200184 $r->get('/corpus')->to('Search#corpus_info')->name('corpus');
185 # $r->get('/collection/:id')->to('Search#corpus_info')->name('collection');
Akron48b1e4d2015-06-17 18:47:01 +0200186
Nils Diewalda79b2682015-05-18 18:34:06 +0000187 # Documentation routes
Nils Diewald7148c6f2015-05-04 15:07:53 +0000188 $r->get('/doc')->to('documentation#page', page => 'korap')->name('doc_start');
Nils Diewaldab4d3ca2015-04-17 01:48:43 +0000189 $r->get('/doc/:page')->to('documentation#page', scope => undef);
190 $r->get('/doc/*scope/:page')->to('documentation#page')->name('doc');
Nils Diewaldab4d3ca2015-04-17 01:48:43 +0000191
Nils Diewaldc46003b2015-05-07 15:55:35 +0000192 # Contact route
193 $r->get('/contact')->to('documentation#contact');
194 $r->get('/contact')->mail_to_chiffre('documentation#contact');
195
Nils Diewald7148c6f2015-05-04 15:07:53 +0000196 # Match route
Nils Diewald8f4b5da2014-12-03 22:13:39 +0000197 my $corpus = $r->route('/corpus/:corpus_id');
Nils Diewald7148c6f2015-05-04 15:07:53 +0000198 my $doc = $corpus->get('/:doc_id');
Akron72c2f8d2018-02-12 14:59:22 +0100199 my $text = $doc->get('/:text_id')->to('search#text_info')->name('text');
200 my $match = $doc->get('/:text_id/:match_id')->to('search#match_info')->name('match');
Akroncddd1642015-06-10 21:31:53 +0200201
Akrone8235be2016-06-27 11:02:18 +0200202 # User Management
Akron3cd391e2017-03-29 23:42:54 +0200203 my $user = $r->any('/user')->to(controller => 'User');
204 $user->post('/login')->to(action => 'login')->name('login');
Akrone5ef4e02017-04-19 17:07:52 +0200205 $user->get('/logout')->to(action => 'logout')->name('logout');
Akron3cd391e2017-03-29 23:42:54 +0200206# $r->any('/register')->to(action => 'register')->name('register');
207# $r->any('/forgotten')->to(action => 'pwdforgotten')->name('pwdforgotten');
Akron189b3592016-01-04 20:56:46 +0100208
Akroncddd1642015-06-10 21:31:53 +0200209 # Default user is called 'korap'
210 # $r->route('/user/:user/:collection')
Nils Diewald996aa552014-12-02 03:26:44 +0000211};
212
213
2141;
215
216
217__END__
Nils Diewalda898dac2015-05-06 21:04:16 +0000218
219=pod
220
Nils Diewaldeb5f3072015-05-20 09:32:42 +0000221=encoding utf8
Nils Diewalda898dac2015-05-06 21:04:16 +0000222
Nils Diewaldeb5f3072015-05-20 09:32:42 +0000223=head1 NAME
224
225Kalamar
Nils Diewalda0defc42015-05-07 23:54:17 +0000226
227
Nils Diewaldeb5f3072015-05-20 09:32:42 +0000228=head1 DESCRIPTION
Nils Diewalda0defc42015-05-07 23:54:17 +0000229
Nils Diewaldeb5f3072015-05-20 09:32:42 +0000230L<Kalamar> is a L<Mojolicious|http://mojolicio.us/> based user interface
231frontend for the L<KorAP Corpus Analysis Platform|http://korap.ids-mannheim.de/>.
232
Akron456abd92015-06-02 15:07:21 +0200233B<See the README for further information!>
Nils Diewaldeb5f3072015-05-20 09:32:42 +0000234
Akron456abd92015-06-02 15:07:21 +0200235=head2 COPYRIGHT AND LICENSE
Nils Diewalda748b0e2015-05-19 22:54:06 +0000236
Akronf4a7cf42018-01-09 15:58:45 +0100237Copyright (C) 2015-2018, L<IDS Mannheim|http://www.ids-mannheim.de/>
Nils Diewalda748b0e2015-05-19 22:54:06 +0000238Author: L<Nils Diewald|http://nils-diewald.de/>
239
240Kalamar is developed as part of the L<KorAP|http://korap.ids-mannheim.de/>
241Corpus Analysis Platform at the
242L<Institute for the German Language (IDS)|http://ids-mannheim.de/>,
243member of the
244L<Leibniz-Gemeinschaft|http://www.leibniz-gemeinschaft.de/en/about-us/leibniz-competition/projekte-2011/2011-funding-line-2/>
245and supported by the L<KobRA|http://www.kobra.tu-dortmund.de> project,
246funded by the
247L<Federal Ministry of Education and Research (BMBF)|http://www.bmbf.de/en/>.
248
249Kalamar is free software published under the
Akron456abd92015-06-02 15:07:21 +0200250L<BSD-2 License|https://raw.githubusercontent.com/KorAP/Kalamar/master/LICENSE>.
Nils Diewalda748b0e2015-05-19 22:54:06 +0000251
252=cut