blob: fbb418f3f37069e35d49795b56f1cf74a0e813cf [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
Akronb5d05d72018-02-12 15:09:12 +01009our $VERSION = '0.26';
Nils Diewald7cad8402014-07-08 17:06:56 +000010
Akron2e3d3772017-04-14 16:20:40 +020011# TODO: Use CSRF!!!
Nils Diewald7148c6f2015-05-04 15:07:53 +000012# TODO: The FAQ-Page has a contact form for new questions
Nils Diewald709f52f2015-05-21 18:32:58 +000013# TODO: Embed query serialization
14# TODO: Embed collection statistics
Akronf4a7cf42018-01-09 15:58:45 +010015# TODO: Show further meta data per click
Nils Diewald709f52f2015-05-21 18:32:58 +000016# TODO: Implement tab opener for matches and the tutorial
Nils Diewald709f52f2015-05-21 18:32:58 +000017# TODO: Implement a "projects" system
Nils Diewald7148c6f2015-05-04 15:07:53 +000018
Nils Diewald002e8fb2014-06-22 14:27:01 +000019# Start the application and register all routes and plugins
Nils Diewald5d1ffb42014-05-21 17:45:34 +000020sub startup {
21 my $self = shift;
22
Nils Diewalda944fab2015-04-08 21:02:04 +000023 # Set version based on package file
Nils Diewald709f52f2015-05-21 18:32:58 +000024 # This may introduce a SemVer patch number
Akronf65ad6c2017-02-01 14:36:38 +010025 my $pkg_path = $self->home->child('package.json');
26 if (-e $pkg_path->to_abs) {
27 my $pkg = $pkg_path->slurp;
28 $Kalamar::VERSION = decode_json($pkg)->{version};
29 };
Nils Diewalda944fab2015-04-08 21:02:04 +000030
Akron656c5d92015-11-13 21:17:03 +010031 # Lift maximum template cache
32 $self->renderer->cache->max_keys(200);
33
Nils Diewaldab4d3ca2015-04-17 01:48:43 +000034 # Add additional plugin path
35 push(@{$self->plugins->namespaces}, __PACKAGE__ . '::Plugin');
36
Nils Diewalda748b0e2015-05-19 22:54:06 +000037
Nils Diewaldfccfbcb2015-04-29 20:48:19 +000038 # Set secrets for signed cookies
Akronf65ad6c2017-02-01 14:36:38 +010039 if (-e (my $secret = $self->home->child('kalamar.secret'))) {
Nils Diewalda79b2682015-05-18 18:34:06 +000040
41 # Load file and split lines for multiple secrets
Akronf65ad6c2017-02-01 14:36:38 +010042 $self->secrets([b($secret->slurp)->split("\n")]);
Nils Diewald4347ee92015-05-04 20:32:48 +000043 }
Nils Diewald709f52f2015-05-21 18:32:58 +000044
45 # File not found ...
46 # Kalamar needs secrets in a file to be easily deployable
47 # and publishable at the same time.
Nils Diewald4347ee92015-05-04 20:32:48 +000048 else {
49 $self->log->warn('Please create a kalamar.secret file');
Nils Diewald19402142015-04-30 15:44:52 +000050 };
Nils Diewaldfccfbcb2015-04-29 20:48:19 +000051
Akroncba9f322016-02-29 23:12:45 +010052 # Configuration framework
Akron09a567c2016-04-11 22:49:20 +030053 $self->plugin('Config');
Nils Diewald709f52f2015-05-21 18:32:58 +000054
Akron741b2b12017-04-13 22:15:59 +020055 $self->log->info('Mode is ' . $self->mode);
56
Akron47787ca2017-05-17 16:00:10 +020057 # Specific path prefixing
58 my $conf = $self->config('Kalamar');
59 if ($conf && $conf->{proxy_prefix}) {
60
Akronf3d856c2017-06-21 17:07:40 +020061 for ($self->sessions) {
Akron1a394722017-06-21 16:25:30 +020062 $_->cookie_path($conf->{proxy_prefix});
63 $_->cookie_name('kalamar');
64 $_->secure(1);
65 };
66
Akron47787ca2017-05-17 16:00:10 +020067 # Set prefix in stash
68 $self->defaults(prefix => $conf->{proxy_prefix});
69
70 # Create base path
71 $self->hook(
72 before_dispatch => sub {
73 shift->req->url->base->path($conf->{proxy_prefix} . '/');
74 });
75 };
76
Akronbe9d5b32017-04-05 20:48:24 +020077 # Start fixture server
78 if ($self->mode eq 'test') {
Akron741b2b12017-04-13 22:15:59 +020079
80 $self->log->info('Mount test server');
81
Akron3042f242017-04-15 16:57:55 +020082 my $mount_point = '/api/v0.1/';
83
Akronbe9d5b32017-04-05 20:48:24 +020084 $self->plugin(Mount => {
Akron7d75ee32017-05-02 13:42:41 +020085 $mount_point => $self->home->child(
86 'lib/Kalamar/Apps/test_backend.pl'
87 )
Akronbe9d5b32017-04-05 20:48:24 +020088 });
89
Akron3042f242017-04-15 16:57:55 +020090 # Fix api endpoints
91 $self->config('Kalamar')->{api} = $mount_point;
92 $self->config('Search')->{api} = $mount_point;
Akron4036d542018-02-12 13:17:09 +010093 }
94
95 # Add development path
96 elsif ($self->mode eq 'development') {
97 push @{$self->static->paths}, 'dev';
Akronbe9d5b32017-04-05 20:48:24 +020098 };
99
Akron09a567c2016-04-11 22:49:20 +0300100 # Client notifications
Akron0504a182016-04-10 21:13:42 +0200101 $self->plugin(Notifications => {
102 'Kalamar::Plugin::Notifications' => 1,
103 JSON => 1
104 });
105
Akron09a567c2016-04-11 22:49:20 +0300106 # Localization framework
107 $self->plugin(Localize => {
Akrona7cfd902017-12-21 19:28:36 +0100108 resources => ['kalamar.dict', 'kalamar.queries.dict']
Akron09a567c2016-04-11 22:49:20 +0300109 });
110
111 # Pagination widget
112 $self->plugin('TagHelpers::Pagination' => {
113 prev => '<span><span>&lt;</span></span>',
114 next => '<span><span>&lt;</span></span>',
115 ellipsis => '<a class="ellipsis"><span><span>...</span></span></a>',
116 separator => '',
117 current => '<span>{current}</span>',
118 page => '<span>{page}</span>'
119 });
120
Nils Diewaldab4d3ca2015-04-17 01:48:43 +0000121 # Load plugins
Nils Diewaldfccfbcb2015-04-29 20:48:19 +0000122 foreach (
Nils Diewaldc46003b2015-05-07 15:55:35 +0000123 'Search', # Abstract Search framework
124 'CHI', # Global caching mechanism
Nils Diewaldc46003b2015-05-07 15:55:35 +0000125 'TagHelpers::MailToChiffre', # Obfuscate email addresses
Akrone8235be2016-06-27 11:02:18 +0200126 'KalamarHelpers', # Specific Helpers for Kalamar
Akronaa7f9422017-04-24 20:49:32 +0200127 'KalamarUser', # Specific Helpers for Kalamar
128 'ClientIP' # Get client IP from X-Forwarded-For
Nils Diewaldfccfbcb2015-04-29 20:48:19 +0000129 ) {
Nils Diewaldab4d3ca2015-04-17 01:48:43 +0000130 $self->plugin($_);
131 };
132
Nils Diewald709f52f2015-05-21 18:32:58 +0000133
Nils Diewaldfccfbcb2015-04-29 20:48:19 +0000134 # Configure mail exception
Akron40cc1d82017-05-10 17:58:16 +0200135 if ($self->config('MailException')) {
136 $self->plugin('MailException' => $self->config('MailException'));
137 };
Nils Diewald709f52f2015-05-21 18:32:58 +0000138
Nils Diewaldfccfbcb2015-04-29 20:48:19 +0000139 # Configure documentation navigation
Akronf65ad6c2017-02-01 14:36:38 +0100140 my $navi = Mojo::File->new($self->home->child('templates','doc','navigation.json'))->slurp;
Nils Diewald7148c6f2015-05-04 15:07:53 +0000141 $self->config(navi => decode_json($navi)) if $navi;
Nils Diewaldfccfbcb2015-04-29 20:48:19 +0000142
Akron3cd391e2017-03-29 23:42:54 +0200143 $self->log->info('API expected at ' . $self->config->{Kalamar}->{api});
Nils Diewald709f52f2015-05-21 18:32:58 +0000144
Akron3cd391e2017-03-29 23:42:54 +0200145 # Establish routes with authentification
Akron7d75ee32017-05-02 13:42:41 +0200146 my $r = $self->routes;
Akron3cd391e2017-03-29 23:42:54 +0200147
Akron7d75ee32017-05-02 13:42:41 +0200148 # Check for auth support
149 $self->defaults(
150 auth_support => $self->config('Kalamar')->{auth_support}
Akron3cd391e2017-03-29 23:42:54 +0200151 );
Nils Diewaldab4d3ca2015-04-17 01:48:43 +0000152
Akron7d75ee32017-05-02 13:42:41 +0200153 # Support auth
154 if ($self->stash('auth_support')) {
155 $r = $r->under(
156 '/' => sub {
157 my $c = shift;
158
159 if ($c->session('auth')) {
160 $c->stash(auth => $c->session('auth'));
161 $c->stash(user => $c->session('user'));
162 };
163 return 1;
164 }
165 );
166 };
167
Nils Diewalda79b2682015-05-18 18:34:06 +0000168 # Base query route
Nils Diewaldab4d3ca2015-04-17 01:48:43 +0000169 $r->get('/')->to('search#query')->name('index');
170
Akron48b1e4d2015-06-17 18:47:01 +0200171 # Collection route
Akrone8235be2016-06-27 11:02:18 +0200172 # TODO: Probably rename to /corpus
Akron48b1e4d2015-06-17 18:47:01 +0200173 $r->get('/collection')->to('Search#collections')->name('collections');
174 $r->get('/collection/:id')->to('Search#collection')->name('collection');
175
Nils Diewalda79b2682015-05-18 18:34:06 +0000176 # Documentation routes
Nils Diewald7148c6f2015-05-04 15:07:53 +0000177 $r->get('/doc')->to('documentation#page', page => 'korap')->name('doc_start');
Nils Diewaldab4d3ca2015-04-17 01:48:43 +0000178 $r->get('/doc/:page')->to('documentation#page', scope => undef);
179 $r->get('/doc/*scope/:page')->to('documentation#page')->name('doc');
Nils Diewaldab4d3ca2015-04-17 01:48:43 +0000180
Nils Diewaldc46003b2015-05-07 15:55:35 +0000181 # Contact route
182 $r->get('/contact')->to('documentation#contact');
183 $r->get('/contact')->mail_to_chiffre('documentation#contact');
184
Nils Diewald7148c6f2015-05-04 15:07:53 +0000185 # Match route
Nils Diewald8f4b5da2014-12-03 22:13:39 +0000186 my $corpus = $r->route('/corpus/:corpus_id');
Nils Diewald7148c6f2015-05-04 15:07:53 +0000187 my $doc = $corpus->get('/:doc_id');
Akron72c2f8d2018-02-12 14:59:22 +0100188 my $text = $doc->get('/:text_id')->to('search#text_info')->name('text');
189 my $match = $doc->get('/:text_id/:match_id')->to('search#match_info')->name('match');
Akroncddd1642015-06-10 21:31:53 +0200190
Akrone8235be2016-06-27 11:02:18 +0200191 # User Management
Akron3cd391e2017-03-29 23:42:54 +0200192 my $user = $r->any('/user')->to(controller => 'User');
193 $user->post('/login')->to(action => 'login')->name('login');
Akrone5ef4e02017-04-19 17:07:52 +0200194 $user->get('/logout')->to(action => 'logout')->name('logout');
Akron3cd391e2017-03-29 23:42:54 +0200195# $r->any('/register')->to(action => 'register')->name('register');
196# $r->any('/forgotten')->to(action => 'pwdforgotten')->name('pwdforgotten');
Akron189b3592016-01-04 20:56:46 +0100197
Akroncddd1642015-06-10 21:31:53 +0200198 # Default user is called 'korap'
199 # $r->route('/user/:user/:collection')
Nils Diewald996aa552014-12-02 03:26:44 +0000200};
201
202
2031;
204
205
206__END__
Nils Diewalda898dac2015-05-06 21:04:16 +0000207
208=pod
209
Nils Diewaldeb5f3072015-05-20 09:32:42 +0000210=encoding utf8
Nils Diewalda898dac2015-05-06 21:04:16 +0000211
Nils Diewaldeb5f3072015-05-20 09:32:42 +0000212=head1 NAME
213
214Kalamar
Nils Diewalda0defc42015-05-07 23:54:17 +0000215
216
Nils Diewaldeb5f3072015-05-20 09:32:42 +0000217=head1 DESCRIPTION
Nils Diewalda0defc42015-05-07 23:54:17 +0000218
Nils Diewaldeb5f3072015-05-20 09:32:42 +0000219L<Kalamar> is a L<Mojolicious|http://mojolicio.us/> based user interface
220frontend for the L<KorAP Corpus Analysis Platform|http://korap.ids-mannheim.de/>.
221
Akron456abd92015-06-02 15:07:21 +0200222B<See the README for further information!>
Nils Diewaldeb5f3072015-05-20 09:32:42 +0000223
Akron456abd92015-06-02 15:07:21 +0200224=head2 COPYRIGHT AND LICENSE
Nils Diewalda748b0e2015-05-19 22:54:06 +0000225
Akronf4a7cf42018-01-09 15:58:45 +0100226Copyright (C) 2015-2018, L<IDS Mannheim|http://www.ids-mannheim.de/>
Nils Diewalda748b0e2015-05-19 22:54:06 +0000227Author: L<Nils Diewald|http://nils-diewald.de/>
228
229Kalamar is developed as part of the L<KorAP|http://korap.ids-mannheim.de/>
230Corpus Analysis Platform at the
231L<Institute for the German Language (IDS)|http://ids-mannheim.de/>,
232member of the
233L<Leibniz-Gemeinschaft|http://www.leibniz-gemeinschaft.de/en/about-us/leibniz-competition/projekte-2011/2011-funding-line-2/>
234and supported by the L<KobRA|http://www.kobra.tu-dortmund.de> project,
235funded by the
236L<Federal Ministry of Education and Research (BMBF)|http://www.bmbf.de/en/>.
237
238Kalamar is free software published under the
Akron456abd92015-06-02 15:07:21 +0200239L<BSD-2 License|https://raw.githubusercontent.com/KorAP/Kalamar/master/LICENSE>.
Nils Diewalda748b0e2015-05-19 22:54:06 +0000240
241=cut