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