Nils Diewald | 2fe12e1 | 2015-03-06 16:47:06 +0000 | [diff] [blame] | 1 | package Kalamar; |
Nils Diewald | 5d1ffb4 | 2014-05-21 17:45:34 +0000 | [diff] [blame] | 2 | use Mojo::Base 'Mojolicious'; |
Nils Diewald | e2c8381 | 2014-11-11 21:13:18 +0000 | [diff] [blame] | 3 | use Mojo::ByteStream 'b'; |
Akron | f65ad6c | 2017-02-01 14:36:38 +0100 | [diff] [blame] | 4 | use Mojo::File; |
Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 5 | use Mojo::JSON 'decode_json'; |
Akron | be9d5b3 | 2017-04-05 20:48:24 +0200 | [diff] [blame] | 6 | use Mojo::Util qw/url_escape/; |
| 7 | use File::Temp qw/tmpnam/; |
Nils Diewald | 5d1ffb4 | 2014-05-21 17:45:34 +0000 | [diff] [blame] | 8 | |
Nils Diewald | 709f52f | 2015-05-21 18:32:58 +0000 | [diff] [blame] | 9 | # Minor version - may be patched from package.json |
Akron | 0a6768f | 2016-07-13 18:00:43 +0200 | [diff] [blame] | 10 | our $VERSION = '0.21'; |
Nils Diewald | 7cad840 | 2014-07-08 17:06:56 +0000 | [diff] [blame] | 11 | |
Akron | 2e3d377 | 2017-04-14 16:20:40 +0200 | [diff] [blame] | 12 | # TODO: Use CSRF!!! |
Nils Diewald | 7148c6f | 2015-05-04 15:07:53 +0000 | [diff] [blame] | 13 | # TODO: The FAQ-Page has a contact form for new questions |
Nils Diewald | 709f52f | 2015-05-21 18:32:58 +0000 | [diff] [blame] | 14 | # TODO: Embed query serialization |
| 15 | # TODO: Embed collection statistics |
| 16 | # TODO: Implement tab opener for matches and the tutorial |
| 17 | # TODO: Make the tutorial ql sensitive |
| 18 | # TODO: Implement a "projects" system |
Nils Diewald | 7148c6f | 2015-05-04 15:07:53 +0000 | [diff] [blame] | 19 | |
Nils Diewald | 002e8fb | 2014-06-22 14:27:01 +0000 | [diff] [blame] | 20 | # Start the application and register all routes and plugins |
Nils Diewald | 5d1ffb4 | 2014-05-21 17:45:34 +0000 | [diff] [blame] | 21 | sub startup { |
| 22 | my $self = shift; |
| 23 | |
Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 24 | # Set version based on package file |
Nils Diewald | 709f52f | 2015-05-21 18:32:58 +0000 | [diff] [blame] | 25 | # This may introduce a SemVer patch number |
Akron | f65ad6c | 2017-02-01 14:36:38 +0100 | [diff] [blame] | 26 | my $pkg_path = $self->home->child('package.json'); |
| 27 | if (-e $pkg_path->to_abs) { |
| 28 | my $pkg = $pkg_path->slurp; |
| 29 | $Kalamar::VERSION = decode_json($pkg)->{version}; |
| 30 | }; |
Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 31 | |
Akron | 656c5d9 | 2015-11-13 21:17:03 +0100 | [diff] [blame] | 32 | # Lift maximum template cache |
| 33 | $self->renderer->cache->max_keys(200); |
| 34 | |
Nils Diewald | ab4d3ca | 2015-04-17 01:48:43 +0000 | [diff] [blame] | 35 | # Add additional plugin path |
| 36 | push(@{$self->plugins->namespaces}, __PACKAGE__ . '::Plugin'); |
| 37 | |
Nils Diewald | a748b0e | 2015-05-19 22:54:06 +0000 | [diff] [blame] | 38 | |
Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 39 | # Set secrets for signed cookies |
Akron | f65ad6c | 2017-02-01 14:36:38 +0100 | [diff] [blame] | 40 | if (-e (my $secret = $self->home->child('kalamar.secret'))) { |
Nils Diewald | a79b268 | 2015-05-18 18:34:06 +0000 | [diff] [blame] | 41 | |
| 42 | # Load file and split lines for multiple secrets |
Akron | f65ad6c | 2017-02-01 14:36:38 +0100 | [diff] [blame] | 43 | $self->secrets([b($secret->slurp)->split("\n")]); |
Nils Diewald | 4347ee9 | 2015-05-04 20:32:48 +0000 | [diff] [blame] | 44 | } |
Nils Diewald | 709f52f | 2015-05-21 18:32:58 +0000 | [diff] [blame] | 45 | |
| 46 | # File not found ... |
| 47 | # Kalamar needs secrets in a file to be easily deployable |
| 48 | # and publishable at the same time. |
Nils Diewald | 4347ee9 | 2015-05-04 20:32:48 +0000 | [diff] [blame] | 49 | else { |
| 50 | $self->log->warn('Please create a kalamar.secret file'); |
Nils Diewald | 1940214 | 2015-04-30 15:44:52 +0000 | [diff] [blame] | 51 | }; |
Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 52 | |
Akron | cba9f32 | 2016-02-29 23:12:45 +0100 | [diff] [blame] | 53 | # Configuration framework |
Akron | 09a567c | 2016-04-11 22:49:20 +0300 | [diff] [blame] | 54 | $self->plugin('Config'); |
Nils Diewald | 709f52f | 2015-05-21 18:32:58 +0000 | [diff] [blame] | 55 | |
Akron | 741b2b1 | 2017-04-13 22:15:59 +0200 | [diff] [blame] | 56 | $self->log->info('Mode is ' . $self->mode); |
| 57 | |
Akron | 47787ca | 2017-05-17 16:00:10 +0200 | [diff] [blame^] | 58 | # Specific path prefixing |
| 59 | my $conf = $self->config('Kalamar'); |
| 60 | if ($conf && $conf->{proxy_prefix}) { |
| 61 | |
| 62 | # Set prefix in stash |
| 63 | $self->defaults(prefix => $conf->{proxy_prefix}); |
| 64 | |
| 65 | # Create base path |
| 66 | $self->hook( |
| 67 | before_dispatch => sub { |
| 68 | shift->req->url->base->path($conf->{proxy_prefix} . '/'); |
| 69 | }); |
| 70 | }; |
| 71 | |
Akron | be9d5b3 | 2017-04-05 20:48:24 +0200 | [diff] [blame] | 72 | # Start fixture server |
| 73 | if ($self->mode eq 'test') { |
Akron | 741b2b1 | 2017-04-13 22:15:59 +0200 | [diff] [blame] | 74 | |
| 75 | $self->log->info('Mount test server'); |
| 76 | |
Akron | 3042f24 | 2017-04-15 16:57:55 +0200 | [diff] [blame] | 77 | my $mount_point = '/api/v0.1/'; |
| 78 | |
Akron | be9d5b3 | 2017-04-05 20:48:24 +0200 | [diff] [blame] | 79 | $self->plugin(Mount => { |
Akron | 7d75ee3 | 2017-05-02 13:42:41 +0200 | [diff] [blame] | 80 | $mount_point => $self->home->child( |
| 81 | 'lib/Kalamar/Apps/test_backend.pl' |
| 82 | ) |
Akron | be9d5b3 | 2017-04-05 20:48:24 +0200 | [diff] [blame] | 83 | }); |
| 84 | |
Akron | 3042f24 | 2017-04-15 16:57:55 +0200 | [diff] [blame] | 85 | # Fix api endpoints |
| 86 | $self->config('Kalamar')->{api} = $mount_point; |
| 87 | $self->config('Search')->{api} = $mount_point; |
Akron | be9d5b3 | 2017-04-05 20:48:24 +0200 | [diff] [blame] | 88 | }; |
| 89 | |
Akron | 09a567c | 2016-04-11 22:49:20 +0300 | [diff] [blame] | 90 | # Client notifications |
Akron | 0504a18 | 2016-04-10 21:13:42 +0200 | [diff] [blame] | 91 | $self->plugin(Notifications => { |
| 92 | 'Kalamar::Plugin::Notifications' => 1, |
| 93 | JSON => 1 |
| 94 | }); |
| 95 | |
Akron | 09a567c | 2016-04-11 22:49:20 +0300 | [diff] [blame] | 96 | # Localization framework |
| 97 | $self->plugin(Localize => { |
| 98 | resources => ['kalamar.dict'] |
| 99 | }); |
| 100 | |
| 101 | # Pagination widget |
| 102 | $self->plugin('TagHelpers::Pagination' => { |
| 103 | prev => '<span><span><</span></span>', |
| 104 | next => '<span><span><</span></span>', |
| 105 | ellipsis => '<a class="ellipsis"><span><span>...</span></span></a>', |
| 106 | separator => '', |
| 107 | current => '<span>{current}</span>', |
| 108 | page => '<span>{page}</span>' |
| 109 | }); |
| 110 | |
Nils Diewald | ab4d3ca | 2015-04-17 01:48:43 +0000 | [diff] [blame] | 111 | # Load plugins |
Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 112 | foreach ( |
Nils Diewald | c46003b | 2015-05-07 15:55:35 +0000 | [diff] [blame] | 113 | 'Search', # Abstract Search framework |
| 114 | 'CHI', # Global caching mechanism |
Nils Diewald | c46003b | 2015-05-07 15:55:35 +0000 | [diff] [blame] | 115 | 'TagHelpers::MailToChiffre', # Obfuscate email addresses |
Akron | e8235be | 2016-06-27 11:02:18 +0200 | [diff] [blame] | 116 | 'KalamarHelpers', # Specific Helpers for Kalamar |
Akron | aa7f942 | 2017-04-24 20:49:32 +0200 | [diff] [blame] | 117 | 'KalamarUser', # Specific Helpers for Kalamar |
| 118 | 'ClientIP' # Get client IP from X-Forwarded-For |
Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 119 | ) { |
Nils Diewald | ab4d3ca | 2015-04-17 01:48:43 +0000 | [diff] [blame] | 120 | $self->plugin($_); |
| 121 | }; |
| 122 | |
Nils Diewald | 709f52f | 2015-05-21 18:32:58 +0000 | [diff] [blame] | 123 | |
Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 124 | # Configure mail exception |
Akron | 40cc1d8 | 2017-05-10 17:58:16 +0200 | [diff] [blame] | 125 | if ($self->config('MailException')) { |
| 126 | $self->plugin('MailException' => $self->config('MailException')); |
| 127 | }; |
Nils Diewald | 709f52f | 2015-05-21 18:32:58 +0000 | [diff] [blame] | 128 | |
Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 129 | # Configure documentation navigation |
Akron | f65ad6c | 2017-02-01 14:36:38 +0100 | [diff] [blame] | 130 | my $navi = Mojo::File->new($self->home->child('templates','doc','navigation.json'))->slurp; |
Nils Diewald | 7148c6f | 2015-05-04 15:07:53 +0000 | [diff] [blame] | 131 | $self->config(navi => decode_json($navi)) if $navi; |
Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 132 | |
Akron | 3cd391e | 2017-03-29 23:42:54 +0200 | [diff] [blame] | 133 | $self->log->info('API expected at ' . $self->config->{Kalamar}->{api}); |
Nils Diewald | 709f52f | 2015-05-21 18:32:58 +0000 | [diff] [blame] | 134 | |
Akron | 3cd391e | 2017-03-29 23:42:54 +0200 | [diff] [blame] | 135 | # Establish routes with authentification |
Akron | 7d75ee3 | 2017-05-02 13:42:41 +0200 | [diff] [blame] | 136 | my $r = $self->routes; |
Akron | 3cd391e | 2017-03-29 23:42:54 +0200 | [diff] [blame] | 137 | |
Akron | 7d75ee3 | 2017-05-02 13:42:41 +0200 | [diff] [blame] | 138 | # Check for auth support |
| 139 | $self->defaults( |
| 140 | auth_support => $self->config('Kalamar')->{auth_support} |
Akron | 3cd391e | 2017-03-29 23:42:54 +0200 | [diff] [blame] | 141 | ); |
Nils Diewald | ab4d3ca | 2015-04-17 01:48:43 +0000 | [diff] [blame] | 142 | |
Akron | 7d75ee3 | 2017-05-02 13:42:41 +0200 | [diff] [blame] | 143 | # Support auth |
| 144 | if ($self->stash('auth_support')) { |
| 145 | $r = $r->under( |
| 146 | '/' => sub { |
| 147 | my $c = shift; |
| 148 | |
| 149 | if ($c->session('auth')) { |
| 150 | $c->stash(auth => $c->session('auth')); |
| 151 | $c->stash(user => $c->session('user')); |
| 152 | }; |
| 153 | return 1; |
| 154 | } |
| 155 | ); |
| 156 | }; |
| 157 | |
Nils Diewald | a79b268 | 2015-05-18 18:34:06 +0000 | [diff] [blame] | 158 | # Base query route |
Nils Diewald | ab4d3ca | 2015-04-17 01:48:43 +0000 | [diff] [blame] | 159 | $r->get('/')->to('search#query')->name('index'); |
| 160 | |
Akron | 48b1e4d | 2015-06-17 18:47:01 +0200 | [diff] [blame] | 161 | # Collection route |
Akron | e8235be | 2016-06-27 11:02:18 +0200 | [diff] [blame] | 162 | # TODO: Probably rename to /corpus |
Akron | 48b1e4d | 2015-06-17 18:47:01 +0200 | [diff] [blame] | 163 | $r->get('/collection')->to('Search#collections')->name('collections'); |
| 164 | $r->get('/collection/:id')->to('Search#collection')->name('collection'); |
| 165 | |
Nils Diewald | a79b268 | 2015-05-18 18:34:06 +0000 | [diff] [blame] | 166 | # Documentation routes |
Nils Diewald | 7148c6f | 2015-05-04 15:07:53 +0000 | [diff] [blame] | 167 | $r->get('/doc')->to('documentation#page', page => 'korap')->name('doc_start'); |
Nils Diewald | ab4d3ca | 2015-04-17 01:48:43 +0000 | [diff] [blame] | 168 | $r->get('/doc/:page')->to('documentation#page', scope => undef); |
| 169 | $r->get('/doc/*scope/:page')->to('documentation#page')->name('doc'); |
Nils Diewald | ab4d3ca | 2015-04-17 01:48:43 +0000 | [diff] [blame] | 170 | |
Nils Diewald | c46003b | 2015-05-07 15:55:35 +0000 | [diff] [blame] | 171 | # Contact route |
| 172 | $r->get('/contact')->to('documentation#contact'); |
| 173 | $r->get('/contact')->mail_to_chiffre('documentation#contact'); |
| 174 | |
Nils Diewald | 7148c6f | 2015-05-04 15:07:53 +0000 | [diff] [blame] | 175 | # Match route |
Nils Diewald | 8f4b5da | 2014-12-03 22:13:39 +0000 | [diff] [blame] | 176 | my $corpus = $r->route('/corpus/:corpus_id'); |
Nils Diewald | 7148c6f | 2015-05-04 15:07:53 +0000 | [diff] [blame] | 177 | my $doc = $corpus->get('/:doc_id'); |
| 178 | my $text = $doc->get('/:text_id'); |
| 179 | my $match = $text->get('/:match_id'); |
| 180 | $match->to('search#match_info')->name('match'); |
Akron | cddd164 | 2015-06-10 21:31:53 +0200 | [diff] [blame] | 181 | |
Akron | e8235be | 2016-06-27 11:02:18 +0200 | [diff] [blame] | 182 | # User Management |
Akron | 3cd391e | 2017-03-29 23:42:54 +0200 | [diff] [blame] | 183 | my $user = $r->any('/user')->to(controller => 'User'); |
| 184 | $user->post('/login')->to(action => 'login')->name('login'); |
Akron | e5ef4e0 | 2017-04-19 17:07:52 +0200 | [diff] [blame] | 185 | $user->get('/logout')->to(action => 'logout')->name('logout'); |
Akron | 3cd391e | 2017-03-29 23:42:54 +0200 | [diff] [blame] | 186 | # $r->any('/register')->to(action => 'register')->name('register'); |
| 187 | # $r->any('/forgotten')->to(action => 'pwdforgotten')->name('pwdforgotten'); |
Akron | 189b359 | 2016-01-04 20:56:46 +0100 | [diff] [blame] | 188 | |
Akron | cddd164 | 2015-06-10 21:31:53 +0200 | [diff] [blame] | 189 | # Default user is called 'korap' |
| 190 | # $r->route('/user/:user/:collection') |
Nils Diewald | 996aa55 | 2014-12-02 03:26:44 +0000 | [diff] [blame] | 191 | }; |
| 192 | |
| 193 | |
| 194 | 1; |
| 195 | |
| 196 | |
| 197 | __END__ |
Nils Diewald | a898dac | 2015-05-06 21:04:16 +0000 | [diff] [blame] | 198 | |
| 199 | =pod |
| 200 | |
Nils Diewald | eb5f307 | 2015-05-20 09:32:42 +0000 | [diff] [blame] | 201 | =encoding utf8 |
Nils Diewald | a898dac | 2015-05-06 21:04:16 +0000 | [diff] [blame] | 202 | |
Nils Diewald | eb5f307 | 2015-05-20 09:32:42 +0000 | [diff] [blame] | 203 | =head1 NAME |
| 204 | |
| 205 | Kalamar |
Nils Diewald | a0defc4 | 2015-05-07 23:54:17 +0000 | [diff] [blame] | 206 | |
| 207 | |
Nils Diewald | eb5f307 | 2015-05-20 09:32:42 +0000 | [diff] [blame] | 208 | =head1 DESCRIPTION |
Nils Diewald | a0defc4 | 2015-05-07 23:54:17 +0000 | [diff] [blame] | 209 | |
Nils Diewald | eb5f307 | 2015-05-20 09:32:42 +0000 | [diff] [blame] | 210 | L<Kalamar> is a L<Mojolicious|http://mojolicio.us/> based user interface |
| 211 | frontend for the L<KorAP Corpus Analysis Platform|http://korap.ids-mannheim.de/>. |
| 212 | |
Akron | 456abd9 | 2015-06-02 15:07:21 +0200 | [diff] [blame] | 213 | B<See the README for further information!> |
Nils Diewald | eb5f307 | 2015-05-20 09:32:42 +0000 | [diff] [blame] | 214 | |
Akron | 456abd9 | 2015-06-02 15:07:21 +0200 | [diff] [blame] | 215 | =head2 COPYRIGHT AND LICENSE |
Nils Diewald | a748b0e | 2015-05-19 22:54:06 +0000 | [diff] [blame] | 216 | |
Akron | f65ad6c | 2017-02-01 14:36:38 +0100 | [diff] [blame] | 217 | Copyright (C) 2015-2017, L<IDS Mannheim|http://www.ids-mannheim.de/> |
Nils Diewald | a748b0e | 2015-05-19 22:54:06 +0000 | [diff] [blame] | 218 | Author: L<Nils Diewald|http://nils-diewald.de/> |
| 219 | |
| 220 | Kalamar is developed as part of the L<KorAP|http://korap.ids-mannheim.de/> |
| 221 | Corpus Analysis Platform at the |
| 222 | L<Institute for the German Language (IDS)|http://ids-mannheim.de/>, |
| 223 | member of the |
| 224 | L<Leibniz-Gemeinschaft|http://www.leibniz-gemeinschaft.de/en/about-us/leibniz-competition/projekte-2011/2011-funding-line-2/> |
| 225 | and supported by the L<KobRA|http://www.kobra.tu-dortmund.de> project, |
| 226 | funded by the |
| 227 | L<Federal Ministry of Education and Research (BMBF)|http://www.bmbf.de/en/>. |
| 228 | |
| 229 | Kalamar is free software published under the |
Akron | 456abd9 | 2015-06-02 15:07:21 +0200 | [diff] [blame] | 230 | L<BSD-2 License|https://raw.githubusercontent.com/KorAP/Kalamar/master/LICENSE>. |
Nils Diewald | a748b0e | 2015-05-19 22:54:06 +0000 | [diff] [blame] | 231 | |
| 232 | =cut |