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 | |
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 |
| 15 | # TODO: Implement tab opener for matches and the tutorial |
| 16 | # TODO: Make the tutorial ql sensitive |
| 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 | a79b268 | 2015-05-18 18:34:06 +0000 | [diff] [blame] | 37 | # korap.ids-mannheim.de specific path prefixing |
Nils Diewald | a0defc4 | 2015-05-07 23:54:17 +0000 | [diff] [blame] | 38 | $self->hook( |
| 39 | before_dispatch => sub { |
| 40 | my $c = shift; |
| 41 | my $host = $c->req->headers->header('X-Forwarded-Host'); |
| 42 | if ($host && $host eq 'korap.ids-mannheim.de') { |
Akron | f65ad6c | 2017-02-01 14:36:38 +0100 | [diff] [blame] | 43 | $c->req->url->base->path('/kalamar/'); |
| 44 | $c->stash(prefix => '/kalamar'); |
Nils Diewald | a0defc4 | 2015-05-07 23:54:17 +0000 | [diff] [blame] | 45 | }; |
| 46 | }) if $self->mode eq 'production'; |
| 47 | |
Nils Diewald | a748b0e | 2015-05-19 22:54:06 +0000 | [diff] [blame] | 48 | |
Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 49 | # Set secrets for signed cookies |
Akron | f65ad6c | 2017-02-01 14:36:38 +0100 | [diff] [blame] | 50 | if (-e (my $secret = $self->home->child('kalamar.secret'))) { |
Nils Diewald | a79b268 | 2015-05-18 18:34:06 +0000 | [diff] [blame] | 51 | |
| 52 | # Load file and split lines for multiple secrets |
Akron | f65ad6c | 2017-02-01 14:36:38 +0100 | [diff] [blame] | 53 | $self->secrets([b($secret->slurp)->split("\n")]); |
Nils Diewald | 4347ee9 | 2015-05-04 20:32:48 +0000 | [diff] [blame] | 54 | } |
Nils Diewald | 709f52f | 2015-05-21 18:32:58 +0000 | [diff] [blame] | 55 | |
| 56 | # File not found ... |
| 57 | # Kalamar needs secrets in a file to be easily deployable |
| 58 | # and publishable at the same time. |
Nils Diewald | 4347ee9 | 2015-05-04 20:32:48 +0000 | [diff] [blame] | 59 | else { |
| 60 | $self->log->warn('Please create a kalamar.secret file'); |
Nils Diewald | 1940214 | 2015-04-30 15:44:52 +0000 | [diff] [blame] | 61 | }; |
Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 62 | |
Akron | cba9f32 | 2016-02-29 23:12:45 +0100 | [diff] [blame] | 63 | # Configuration framework |
Akron | 09a567c | 2016-04-11 22:49:20 +0300 | [diff] [blame] | 64 | $self->plugin('Config'); |
Nils Diewald | 709f52f | 2015-05-21 18:32:58 +0000 | [diff] [blame] | 65 | |
Akron | be9d5b3 | 2017-04-05 20:48:24 +0200 | [diff] [blame^] | 66 | # Start fixture server |
| 67 | if ($self->mode eq 'test') { |
| 68 | $self->plugin(Mount => { |
| 69 | '/api/v0.1' => $self->home->child('lib/Kalamar/Apps/test_backend.pl') |
| 70 | }); |
| 71 | |
| 72 | $self->config('Kalamar')->{api} = "/api/v0.1/"; |
| 73 | }; |
| 74 | |
Akron | 09a567c | 2016-04-11 22:49:20 +0300 | [diff] [blame] | 75 | # Client notifications |
Akron | 0504a18 | 2016-04-10 21:13:42 +0200 | [diff] [blame] | 76 | $self->plugin(Notifications => { |
| 77 | 'Kalamar::Plugin::Notifications' => 1, |
| 78 | JSON => 1 |
| 79 | }); |
| 80 | |
Akron | 09a567c | 2016-04-11 22:49:20 +0300 | [diff] [blame] | 81 | # Localization framework |
| 82 | $self->plugin(Localize => { |
| 83 | resources => ['kalamar.dict'] |
| 84 | }); |
| 85 | |
| 86 | # Pagination widget |
| 87 | $self->plugin('TagHelpers::Pagination' => { |
| 88 | prev => '<span><span><</span></span>', |
| 89 | next => '<span><span><</span></span>', |
| 90 | ellipsis => '<a class="ellipsis"><span><span>...</span></span></a>', |
| 91 | separator => '', |
| 92 | current => '<span>{current}</span>', |
| 93 | page => '<span>{page}</span>' |
| 94 | }); |
| 95 | |
Nils Diewald | ab4d3ca | 2015-04-17 01:48:43 +0000 | [diff] [blame] | 96 | # Load plugins |
Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 97 | foreach ( |
Nils Diewald | c46003b | 2015-05-07 15:55:35 +0000 | [diff] [blame] | 98 | 'Search', # Abstract Search framework |
| 99 | 'CHI', # Global caching mechanism |
Nils Diewald | c46003b | 2015-05-07 15:55:35 +0000 | [diff] [blame] | 100 | 'TagHelpers::MailToChiffre', # Obfuscate email addresses |
Akron | e8235be | 2016-06-27 11:02:18 +0200 | [diff] [blame] | 101 | 'KalamarHelpers', # Specific Helpers for Kalamar |
| 102 | 'KalamarUser' # Specific Helpers for Kalamar |
Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 103 | ) { |
Nils Diewald | ab4d3ca | 2015-04-17 01:48:43 +0000 | [diff] [blame] | 104 | $self->plugin($_); |
| 105 | }; |
| 106 | |
Nils Diewald | 709f52f | 2015-05-21 18:32:58 +0000 | [diff] [blame] | 107 | |
Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 108 | # Configure mail exception |
Nils Diewald | ab4d3ca | 2015-04-17 01:48:43 +0000 | [diff] [blame] | 109 | $self->plugin('MailException' => $self->config('MailException')); |
| 110 | |
Akron | 80f731d | 2017-04-03 20:10:58 +0200 | [diff] [blame] | 111 | |
Nils Diewald | 709f52f | 2015-05-21 18:32:58 +0000 | [diff] [blame] | 112 | |
Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 113 | # Configure documentation navigation |
Akron | f65ad6c | 2017-02-01 14:36:38 +0100 | [diff] [blame] | 114 | 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] | 115 | $self->config(navi => decode_json($navi)) if $navi; |
Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 116 | |
Akron | 3cd391e | 2017-03-29 23:42:54 +0200 | [diff] [blame] | 117 | $self->log->info('API expected at ' . $self->config->{Kalamar}->{api}); |
Nils Diewald | 709f52f | 2015-05-21 18:32:58 +0000 | [diff] [blame] | 118 | |
Akron | 3cd391e | 2017-03-29 23:42:54 +0200 | [diff] [blame] | 119 | # Establish routes with authentification |
| 120 | my $r = $self->routes->under( |
| 121 | '/' => sub { |
| 122 | my $c = shift; |
| 123 | |
| 124 | if ($c->session('auth')) { |
| 125 | $c->stash(auth => $c->session('auth')); |
| 126 | }; |
| 127 | return 1; |
| 128 | } |
| 129 | ); |
Nils Diewald | ab4d3ca | 2015-04-17 01:48:43 +0000 | [diff] [blame] | 130 | |
Nils Diewald | a79b268 | 2015-05-18 18:34:06 +0000 | [diff] [blame] | 131 | # Base query route |
Nils Diewald | ab4d3ca | 2015-04-17 01:48:43 +0000 | [diff] [blame] | 132 | $r->get('/')->to('search#query')->name('index'); |
| 133 | |
Akron | 48b1e4d | 2015-06-17 18:47:01 +0200 | [diff] [blame] | 134 | # Collection route |
Akron | e8235be | 2016-06-27 11:02:18 +0200 | [diff] [blame] | 135 | # TODO: Probably rename to /corpus |
Akron | 48b1e4d | 2015-06-17 18:47:01 +0200 | [diff] [blame] | 136 | $r->get('/collection')->to('Search#collections')->name('collections'); |
| 137 | $r->get('/collection/:id')->to('Search#collection')->name('collection'); |
| 138 | |
Nils Diewald | a79b268 | 2015-05-18 18:34:06 +0000 | [diff] [blame] | 139 | # Documentation routes |
Nils Diewald | 7148c6f | 2015-05-04 15:07:53 +0000 | [diff] [blame] | 140 | $r->get('/doc')->to('documentation#page', page => 'korap')->name('doc_start'); |
Nils Diewald | ab4d3ca | 2015-04-17 01:48:43 +0000 | [diff] [blame] | 141 | $r->get('/doc/:page')->to('documentation#page', scope => undef); |
| 142 | $r->get('/doc/*scope/:page')->to('documentation#page')->name('doc'); |
Nils Diewald | ab4d3ca | 2015-04-17 01:48:43 +0000 | [diff] [blame] | 143 | |
Nils Diewald | c46003b | 2015-05-07 15:55:35 +0000 | [diff] [blame] | 144 | # Contact route |
| 145 | $r->get('/contact')->to('documentation#contact'); |
| 146 | $r->get('/contact')->mail_to_chiffre('documentation#contact'); |
| 147 | |
Nils Diewald | 7148c6f | 2015-05-04 15:07:53 +0000 | [diff] [blame] | 148 | # Match route |
Nils Diewald | 8f4b5da | 2014-12-03 22:13:39 +0000 | [diff] [blame] | 149 | my $corpus = $r->route('/corpus/:corpus_id'); |
Nils Diewald | 7148c6f | 2015-05-04 15:07:53 +0000 | [diff] [blame] | 150 | my $doc = $corpus->get('/:doc_id'); |
| 151 | my $text = $doc->get('/:text_id'); |
| 152 | my $match = $text->get('/:match_id'); |
| 153 | $match->to('search#match_info')->name('match'); |
Akron | cddd164 | 2015-06-10 21:31:53 +0200 | [diff] [blame] | 154 | |
Akron | e8235be | 2016-06-27 11:02:18 +0200 | [diff] [blame] | 155 | # User Management |
Akron | 3cd391e | 2017-03-29 23:42:54 +0200 | [diff] [blame] | 156 | my $user = $r->any('/user')->to(controller => 'User'); |
| 157 | $user->post('/login')->to(action => 'login')->name('login'); |
| 158 | # $r->get('/logout')->to(action => 'logout')->name('logout'); |
| 159 | # $r->any('/register')->to(action => 'register')->name('register'); |
| 160 | # $r->any('/forgotten')->to(action => 'pwdforgotten')->name('pwdforgotten'); |
Akron | 189b359 | 2016-01-04 20:56:46 +0100 | [diff] [blame] | 161 | |
Akron | cddd164 | 2015-06-10 21:31:53 +0200 | [diff] [blame] | 162 | # Default user is called 'korap' |
| 163 | # $r->route('/user/:user/:collection') |
Nils Diewald | 996aa55 | 2014-12-02 03:26:44 +0000 | [diff] [blame] | 164 | }; |
| 165 | |
| 166 | |
| 167 | 1; |
| 168 | |
| 169 | |
| 170 | __END__ |
Nils Diewald | a898dac | 2015-05-06 21:04:16 +0000 | [diff] [blame] | 171 | |
| 172 | =pod |
| 173 | |
Nils Diewald | eb5f307 | 2015-05-20 09:32:42 +0000 | [diff] [blame] | 174 | =encoding utf8 |
Nils Diewald | a898dac | 2015-05-06 21:04:16 +0000 | [diff] [blame] | 175 | |
Nils Diewald | eb5f307 | 2015-05-20 09:32:42 +0000 | [diff] [blame] | 176 | =head1 NAME |
| 177 | |
| 178 | Kalamar |
Nils Diewald | a0defc4 | 2015-05-07 23:54:17 +0000 | [diff] [blame] | 179 | |
| 180 | |
Nils Diewald | eb5f307 | 2015-05-20 09:32:42 +0000 | [diff] [blame] | 181 | =head1 DESCRIPTION |
Nils Diewald | a0defc4 | 2015-05-07 23:54:17 +0000 | [diff] [blame] | 182 | |
Nils Diewald | eb5f307 | 2015-05-20 09:32:42 +0000 | [diff] [blame] | 183 | L<Kalamar> is a L<Mojolicious|http://mojolicio.us/> based user interface |
| 184 | frontend for the L<KorAP Corpus Analysis Platform|http://korap.ids-mannheim.de/>. |
| 185 | |
Akron | 456abd9 | 2015-06-02 15:07:21 +0200 | [diff] [blame] | 186 | B<See the README for further information!> |
Nils Diewald | eb5f307 | 2015-05-20 09:32:42 +0000 | [diff] [blame] | 187 | |
Akron | 456abd9 | 2015-06-02 15:07:21 +0200 | [diff] [blame] | 188 | =head2 COPYRIGHT AND LICENSE |
Nils Diewald | a748b0e | 2015-05-19 22:54:06 +0000 | [diff] [blame] | 189 | |
Akron | f65ad6c | 2017-02-01 14:36:38 +0100 | [diff] [blame] | 190 | Copyright (C) 2015-2017, L<IDS Mannheim|http://www.ids-mannheim.de/> |
Nils Diewald | a748b0e | 2015-05-19 22:54:06 +0000 | [diff] [blame] | 191 | Author: L<Nils Diewald|http://nils-diewald.de/> |
| 192 | |
| 193 | Kalamar is developed as part of the L<KorAP|http://korap.ids-mannheim.de/> |
| 194 | Corpus Analysis Platform at the |
| 195 | L<Institute for the German Language (IDS)|http://ids-mannheim.de/>, |
| 196 | member of the |
| 197 | L<Leibniz-Gemeinschaft|http://www.leibniz-gemeinschaft.de/en/about-us/leibniz-competition/projekte-2011/2011-funding-line-2/> |
| 198 | and supported by the L<KobRA|http://www.kobra.tu-dortmund.de> project, |
| 199 | funded by the |
| 200 | L<Federal Ministry of Education and Research (BMBF)|http://www.bmbf.de/en/>. |
| 201 | |
| 202 | Kalamar is free software published under the |
Akron | 456abd9 | 2015-06-02 15:07:21 +0200 | [diff] [blame] | 203 | L<BSD-2 License|https://raw.githubusercontent.com/KorAP/Kalamar/master/LICENSE>. |
Nils Diewald | a748b0e | 2015-05-19 22:54:06 +0000 | [diff] [blame] | 204 | |
| 205 | =cut |