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'; |
Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 4 | use Mojo::JSON 'decode_json'; |
Nils Diewald | 5d1ffb4 | 2014-05-21 17:45:34 +0000 | [diff] [blame] | 5 | |
Nils Diewald | 709f52f | 2015-05-21 18:32:58 +0000 | [diff] [blame] | 6 | # Minor version - may be patched from package.json |
| 7 | our $VERSION = '0.15'; |
Nils Diewald | 7cad840 | 2014-07-08 17:06:56 +0000 | [diff] [blame] | 8 | |
Nils Diewald | 7148c6f | 2015-05-04 15:07:53 +0000 | [diff] [blame] | 9 | # TODO: The FAQ-Page has a contact form for new questions |
Nils Diewald | 709f52f | 2015-05-21 18:32:58 +0000 | [diff] [blame] | 10 | # TODO: Embed query serialization |
| 11 | # TODO: Embed collection statistics |
| 12 | # TODO: Implement tab opener for matches and the tutorial |
| 13 | # TODO: Make the tutorial ql sensitive |
| 14 | # TODO: Implement a "projects" system |
Nils Diewald | 7148c6f | 2015-05-04 15:07:53 +0000 | [diff] [blame] | 15 | |
Nils Diewald | 002e8fb | 2014-06-22 14:27:01 +0000 | [diff] [blame] | 16 | # Start the application and register all routes and plugins |
Nils Diewald | 5d1ffb4 | 2014-05-21 17:45:34 +0000 | [diff] [blame] | 17 | sub startup { |
| 18 | my $self = shift; |
| 19 | |
Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 20 | # Set version based on package file |
Nils Diewald | 709f52f | 2015-05-21 18:32:58 +0000 | [diff] [blame] | 21 | # This may introduce a SemVer patch number |
| 22 | my $pkg = b($self->home . '/package.json')->slurp; |
| 23 | $Kalamar::VERSION = decode_json($pkg)->{version}; |
Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 24 | |
Nils Diewald | ab4d3ca | 2015-04-17 01:48:43 +0000 | [diff] [blame] | 25 | # Add additional plugin path |
| 26 | push(@{$self->plugins->namespaces}, __PACKAGE__ . '::Plugin'); |
| 27 | |
Nils Diewald | a79b268 | 2015-05-18 18:34:06 +0000 | [diff] [blame] | 28 | # korap.ids-mannheim.de specific path prefixing |
Nils Diewald | a0defc4 | 2015-05-07 23:54:17 +0000 | [diff] [blame] | 29 | $self->hook( |
| 30 | before_dispatch => sub { |
| 31 | my $c = shift; |
| 32 | my $host = $c->req->headers->header('X-Forwarded-Host'); |
| 33 | if ($host && $host eq 'korap.ids-mannheim.de') { |
| 34 | $c->req->url->base->path('/kalamar/'); |
Nils Diewald | 705b74a | 2015-05-07 23:57:34 +0000 | [diff] [blame] | 35 | $c->stash(prefix => '/kalamar'); |
Nils Diewald | a0defc4 | 2015-05-07 23:54:17 +0000 | [diff] [blame] | 36 | }; |
| 37 | }) if $self->mode eq 'production'; |
| 38 | |
Nils Diewald | a748b0e | 2015-05-19 22:54:06 +0000 | [diff] [blame] | 39 | |
Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 40 | # Set secrets for signed cookies |
Nils Diewald | 1940214 | 2015-04-30 15:44:52 +0000 | [diff] [blame] | 41 | if (-e (my $secret = $self->home . '/kalamar.secret')) { |
Nils Diewald | a79b268 | 2015-05-18 18:34:06 +0000 | [diff] [blame] | 42 | |
| 43 | # Load file and split lines for multiple secrets |
| 44 | $self->secrets([b($secret)->slurp->split("\n")]); |
Nils Diewald | 4347ee9 | 2015-05-04 20:32:48 +0000 | [diff] [blame] | 45 | } |
Nils Diewald | 709f52f | 2015-05-21 18:32:58 +0000 | [diff] [blame] | 46 | |
| 47 | # File not found ... |
| 48 | # Kalamar needs secrets in a file to be easily deployable |
| 49 | # and publishable at the same time. |
Nils Diewald | 4347ee9 | 2015-05-04 20:32:48 +0000 | [diff] [blame] | 50 | else { |
| 51 | $self->log->warn('Please create a kalamar.secret file'); |
Nils Diewald | 1940214 | 2015-04-30 15:44:52 +0000 | [diff] [blame] | 52 | }; |
Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 53 | |
Nils Diewald | 709f52f | 2015-05-21 18:32:58 +0000 | [diff] [blame] | 54 | |
Nils Diewald | ab4d3ca | 2015-04-17 01:48:43 +0000 | [diff] [blame] | 55 | # Load plugins |
Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 56 | foreach ( |
Nils Diewald | c46003b | 2015-05-07 15:55:35 +0000 | [diff] [blame] | 57 | 'Config', # Configuration framework |
| 58 | 'Localize', # Localization framework |
| 59 | 'Notifications', # Client notifications |
| 60 | 'Search', # Abstract Search framework |
| 61 | 'CHI', # Global caching mechanism |
Nils Diewald | 709f52f | 2015-05-21 18:32:58 +0000 | [diff] [blame] | 62 | 'MailException', # Alert via Email on exceptions |
Nils Diewald | c46003b | 2015-05-07 15:55:35 +0000 | [diff] [blame] | 63 | 'TagHelpers::Pagination', # Pagination widget |
| 64 | 'TagHelpers::MailToChiffre', # Obfuscate email addresses |
Nils Diewald | a79b268 | 2015-05-18 18:34:06 +0000 | [diff] [blame] | 65 | 'KalamarHelpers', # Specific Helpers for Kalamar |
Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 66 | ) { |
Nils Diewald | ab4d3ca | 2015-04-17 01:48:43 +0000 | [diff] [blame] | 67 | $self->plugin($_); |
| 68 | }; |
| 69 | |
Nils Diewald | 709f52f | 2015-05-21 18:32:58 +0000 | [diff] [blame] | 70 | |
Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 71 | # Configure mail exception |
Nils Diewald | ab4d3ca | 2015-04-17 01:48:43 +0000 | [diff] [blame] | 72 | $self->plugin('MailException' => $self->config('MailException')); |
| 73 | |
Nils Diewald | 709f52f | 2015-05-21 18:32:58 +0000 | [diff] [blame] | 74 | |
Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 75 | # Configure documentation navigation |
Nils Diewald | 7148c6f | 2015-05-04 15:07:53 +0000 | [diff] [blame] | 76 | my $navi = b($self->home . '/templates/doc/navigation.json')->slurp; |
| 77 | $self->config(navi => decode_json($navi)) if $navi; |
Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 78 | |
Nils Diewald | 709f52f | 2015-05-21 18:32:58 +0000 | [diff] [blame] | 79 | |
Nils Diewald | ab4d3ca | 2015-04-17 01:48:43 +0000 | [diff] [blame] | 80 | # Establish routes |
| 81 | my $r = $self->routes; |
| 82 | |
Nils Diewald | a79b268 | 2015-05-18 18:34:06 +0000 | [diff] [blame] | 83 | # Base query route |
Nils Diewald | ab4d3ca | 2015-04-17 01:48:43 +0000 | [diff] [blame] | 84 | $r->get('/')->to('search#query')->name('index'); |
| 85 | |
Nils Diewald | a79b268 | 2015-05-18 18:34:06 +0000 | [diff] [blame] | 86 | # Documentation routes |
Nils Diewald | 7148c6f | 2015-05-04 15:07:53 +0000 | [diff] [blame] | 87 | $r->get('/doc')->to('documentation#page', page => 'korap')->name('doc_start'); |
Nils Diewald | ab4d3ca | 2015-04-17 01:48:43 +0000 | [diff] [blame] | 88 | $r->get('/doc/:page')->to('documentation#page', scope => undef); |
| 89 | $r->get('/doc/*scope/:page')->to('documentation#page')->name('doc'); |
Nils Diewald | ab4d3ca | 2015-04-17 01:48:43 +0000 | [diff] [blame] | 90 | |
Nils Diewald | c46003b | 2015-05-07 15:55:35 +0000 | [diff] [blame] | 91 | # Contact route |
| 92 | $r->get('/contact')->to('documentation#contact'); |
| 93 | $r->get('/contact')->mail_to_chiffre('documentation#contact'); |
| 94 | |
Nils Diewald | 7148c6f | 2015-05-04 15:07:53 +0000 | [diff] [blame] | 95 | # Match route |
Nils Diewald | 8f4b5da | 2014-12-03 22:13:39 +0000 | [diff] [blame] | 96 | my $corpus = $r->route('/corpus/:corpus_id'); |
Nils Diewald | 7148c6f | 2015-05-04 15:07:53 +0000 | [diff] [blame] | 97 | my $doc = $corpus->get('/:doc_id'); |
| 98 | my $text = $doc->get('/:text_id'); |
| 99 | my $match = $text->get('/:match_id'); |
| 100 | $match->to('search#match_info')->name('match'); |
Nils Diewald | 996aa55 | 2014-12-02 03:26:44 +0000 | [diff] [blame] | 101 | }; |
| 102 | |
| 103 | |
| 104 | 1; |
| 105 | |
| 106 | |
| 107 | __END__ |
Nils Diewald | a898dac | 2015-05-06 21:04:16 +0000 | [diff] [blame] | 108 | |
| 109 | =pod |
| 110 | |
Nils Diewald | eb5f307 | 2015-05-20 09:32:42 +0000 | [diff] [blame] | 111 | =encoding utf8 |
Nils Diewald | a898dac | 2015-05-06 21:04:16 +0000 | [diff] [blame] | 112 | |
Nils Diewald | eb5f307 | 2015-05-20 09:32:42 +0000 | [diff] [blame] | 113 | =head1 NAME |
| 114 | |
| 115 | Kalamar |
Nils Diewald | a0defc4 | 2015-05-07 23:54:17 +0000 | [diff] [blame] | 116 | |
| 117 | |
Nils Diewald | eb5f307 | 2015-05-20 09:32:42 +0000 | [diff] [blame] | 118 | =head1 DESCRIPTION |
Nils Diewald | a0defc4 | 2015-05-07 23:54:17 +0000 | [diff] [blame] | 119 | |
Nils Diewald | eb5f307 | 2015-05-20 09:32:42 +0000 | [diff] [blame] | 120 | L<Kalamar> is a L<Mojolicious|http://mojolicio.us/> based user interface |
| 121 | frontend for the L<KorAP Corpus Analysis Platform|http://korap.ids-mannheim.de/>. |
| 122 | |
| 123 | =head1 INSTALLATION |
| 124 | |
| 125 | =head2 Generate Static Asset Files |
| 126 | |
| 127 | To generate the static asset files (scripts, styles, images ...), |
Nils Diewald | 709f52f | 2015-05-21 18:32:58 +0000 | [diff] [blame] | 128 | you need NodeJS E<gt> 0.8. This will probably need administration |
| 129 | rights. |
Nils Diewald | eb5f307 | 2015-05-20 09:32:42 +0000 | [diff] [blame] | 130 | |
Nils Diewald | eb5f307 | 2015-05-20 09:32:42 +0000 | [diff] [blame] | 131 | $ npm install |
| 132 | $ grunt |
Nils Diewald | 652e5f4 | 2015-05-10 18:11:45 +0000 | [diff] [blame] | 133 | |
Nils Diewald | eb5f307 | 2015-05-20 09:32:42 +0000 | [diff] [blame] | 134 | =head2 Start Server |
Nils Diewald | 652e5f4 | 2015-05-10 18:11:45 +0000 | [diff] [blame] | 135 | |
Nils Diewald | eb5f307 | 2015-05-20 09:32:42 +0000 | [diff] [blame] | 136 | Kalamar uses the L<Mojolicious|http://mojolicio.us/> framework, |
| 137 | that expects a Perl version of at least 5.10.1. |
| 138 | The recommended environment is based on L<Perlbrew|http://perlbrew.pl/> |
| 139 | with L<App::cpanminus>. |
| 140 | |
Nils Diewald | 709f52f | 2015-05-21 18:32:58 +0000 | [diff] [blame] | 141 | Some perl modules are not on CPAN yet, so you need to install them from GitHub. |
| 142 | The easiest way to do this is using L<App:cpanminus>. |
| 143 | This will probably need administration rights. |
Nils Diewald | eb5f307 | 2015-05-20 09:32:42 +0000 | [diff] [blame] | 144 | |
| 145 | $ cpanm git://github.com/Akron/Mojolicious-Plugin-Search.git |
Nils Diewald | 709f52f | 2015-05-21 18:32:58 +0000 | [diff] [blame] | 146 | $ cpanm --force git://github.com/Akron/Mojolicious-Plugin-Localize.git |
| 147 | |
| 148 | Then install the dependencies as always and run the test suite. |
| 149 | There is no need to install Kalamar on your system. |
| 150 | |
Nils Diewald | eb5f307 | 2015-05-20 09:32:42 +0000 | [diff] [blame] | 151 | $ perl Makefile.PL |
| 152 | $ make test |
| 153 | |
| 154 | Kalamar can be deployed like all |
| 155 | L<Mojolicious apps|http://mojolicio.us/perldoc/Mojolicious/Guides/Cookbook#DEPLOYMENT>. |
| 156 | The easiest way is to start the built-in server: |
| 157 | |
Nils Diewald | 709f52f | 2015-05-21 18:32:58 +0000 | [diff] [blame] | 158 | $ perl script/kalamar daemon |
| 159 | |
| 160 | Kalamar will then be available at C<localhost:3000> in your browser. |
Nils Diewald | a748b0e | 2015-05-19 22:54:06 +0000 | [diff] [blame] | 161 | |
| 162 | |
| 163 | =head1 COPYRIGHT AND LICENSE |
| 164 | |
| 165 | =head2 Bundled Software |
| 166 | |
Nils Diewald | 023c671 | 2015-05-21 20:12:30 +0000 | [diff] [blame^] | 167 | L<ALERTIFY.js|https://fabien-d.github.io/alertify.js/> is released under the terms of the MIT License. |
| 168 | L<Almond|https://github.com/jrburke/almond> is released under the terms of the BSD License. |
| 169 | L<dagre|https://highlightjs.org/> is released under the terms |
| 170 | of the MIT License. |
| 171 | L<Highlight.js|https://highlightjs.org/> is released under the terms |
| 172 | of the BSD License. |
| 173 | L<Jasmine|https://jasmine.github.io/> is released under the terms |
| 174 | of the MIT License. |
| 175 | L<RequireJS|http://requirejs.org/> is released under the terms |
| 176 | of the BSD License. |
| 177 | L<Font Awesome|http://fontawesome.io> by Dave Gandy |
| 178 | is released under the terms of the L<SIL OFL 1.1|http://scripts.sil.org/OFL>. |
Nils Diewald | a748b0e | 2015-05-19 22:54:06 +0000 | [diff] [blame] | 179 | |
| 180 | |
| 181 | =head2 Original Software |
| 182 | |
| 183 | Copyright (C) 2015, L<IDS Mannheim|http://www.ids-mannheim.de/> |
| 184 | Author: L<Nils Diewald|http://nils-diewald.de/> |
| 185 | |
| 186 | Kalamar is developed as part of the L<KorAP|http://korap.ids-mannheim.de/> |
| 187 | Corpus Analysis Platform at the |
| 188 | L<Institute for the German Language (IDS)|http://ids-mannheim.de/>, |
| 189 | member of the |
| 190 | L<Leibniz-Gemeinschaft|http://www.leibniz-gemeinschaft.de/en/about-us/leibniz-competition/projekte-2011/2011-funding-line-2/> |
| 191 | and supported by the L<KobRA|http://www.kobra.tu-dortmund.de> project, |
| 192 | funded by the |
| 193 | L<Federal Ministry of Education and Research (BMBF)|http://www.bmbf.de/en/>. |
| 194 | |
| 195 | Kalamar is free software published under the |
| 196 | L<BSD-2 License|https://raw.githubusercontent.com/KorAP/Kalamar/master/LICENSE). |
| 197 | |
| 198 | =cut |