blob: c83efcc5134f33380e865927fe123d48a7ed9c6f [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';
Nils Diewalda944fab2015-04-08 21:02:04 +00004use Mojo::JSON 'decode_json';
Nils Diewald5d1ffb42014-05-21 17:45:34 +00005
Nils Diewalda944fab2015-04-08 21:02:04 +00006our $VERSION;
Nils Diewald7cad8402014-07-08 17:06:56 +00007
Nils Diewald7148c6f2015-05-04 15:07:53 +00008# TODO: The FAQ-Page has a contact form for new questions
9
Nils Diewald002e8fb2014-06-22 14:27:01 +000010# Start the application and register all routes and plugins
Nils Diewald5d1ffb42014-05-21 17:45:34 +000011sub startup {
12 my $self = shift;
13
Nils Diewalda944fab2015-04-08 21:02:04 +000014 # Set version based on package file
15 my $pkg = b($self->home . '/package.json')->slurp;
16 $Kalamar::VERSION = decode_json($pkg)->{version};
17
Nils Diewaldab4d3ca2015-04-17 01:48:43 +000018 # Add additional plugin path
19 push(@{$self->plugins->namespaces}, __PACKAGE__ . '::Plugin');
20
Nils Diewalda0defc42015-05-07 23:54:17 +000021 # korap.ids-mannheim.de specific
22 $self->hook(
23 before_dispatch => sub {
24 my $c = shift;
25 my $host = $c->req->headers->header('X-Forwarded-Host');
26 if ($host && $host eq 'korap.ids-mannheim.de') {
27 $c->req->url->base->path('/kalamar/');
Nils Diewald705b74a2015-05-07 23:57:34 +000028 $c->stash(prefix => '/kalamar');
Nils Diewalda0defc42015-05-07 23:54:17 +000029 };
30 }) if $self->mode eq 'production';
31
Nils Diewaldfccfbcb2015-04-29 20:48:19 +000032 # Set secrets for signed cookies
Nils Diewald19402142015-04-30 15:44:52 +000033 if (-e (my $secret = $self->home . '/kalamar.secret')) {
34 $self->secrets([
35 b($secret)->slurp->split("\n")
36 ]);
Nils Diewald4347ee92015-05-04 20:32:48 +000037 }
38 else {
39 $self->log->warn('Please create a kalamar.secret file');
Nils Diewald19402142015-04-30 15:44:52 +000040 };
Nils Diewaldfccfbcb2015-04-29 20:48:19 +000041
Nils Diewaldab4d3ca2015-04-17 01:48:43 +000042 # Load plugins
Nils Diewaldfccfbcb2015-04-29 20:48:19 +000043 foreach (
Nils Diewaldc46003b2015-05-07 15:55:35 +000044 'Config', # Configuration framework
45 'Localize', # Localization framework
46 'Notifications', # Client notifications
47 'Search', # Abstract Search framework
48 'CHI', # Global caching mechanism
49 'TagHelpers::Pagination', # Pagination widget
50 'TagHelpers::MailToChiffre', # Obfuscate email addresses
51 'KalamarHelpers' # Specific Helpers for Kalamar
Nils Diewaldfccfbcb2015-04-29 20:48:19 +000052 ) {
Nils Diewaldab4d3ca2015-04-17 01:48:43 +000053 $self->plugin($_);
54 };
55
Nils Diewaldfccfbcb2015-04-29 20:48:19 +000056 # Configure mail exception
Nils Diewaldab4d3ca2015-04-17 01:48:43 +000057 $self->plugin('MailException' => $self->config('MailException'));
58
Nils Diewaldfccfbcb2015-04-29 20:48:19 +000059 # Configure documentation navigation
Nils Diewald7148c6f2015-05-04 15:07:53 +000060 my $navi = b($self->home . '/templates/doc/navigation.json')->slurp;
61 $self->config(navi => decode_json($navi)) if $navi;
Nils Diewaldfccfbcb2015-04-29 20:48:19 +000062
Nils Diewaldab4d3ca2015-04-17 01:48:43 +000063 # Establish routes
64 my $r = $self->routes;
65
Nils Diewaldab4d3ca2015-04-17 01:48:43 +000066 # Base query page
67 $r->get('/')->to('search#query')->name('index');
68
Nils Diewaldab4d3ca2015-04-17 01:48:43 +000069 # Documentation
Nils Diewald7148c6f2015-05-04 15:07:53 +000070 $r->get('/doc')->to('documentation#page', page => 'korap')->name('doc_start');
Nils Diewaldab4d3ca2015-04-17 01:48:43 +000071 $r->get('/doc/:page')->to('documentation#page', scope => undef);
72 $r->get('/doc/*scope/:page')->to('documentation#page')->name('doc');
Nils Diewaldab4d3ca2015-04-17 01:48:43 +000073
Nils Diewaldc46003b2015-05-07 15:55:35 +000074 # Contact route
75 $r->get('/contact')->to('documentation#contact');
76 $r->get('/contact')->mail_to_chiffre('documentation#contact');
77
Nils Diewald7148c6f2015-05-04 15:07:53 +000078 # Match route
Nils Diewald8f4b5da2014-12-03 22:13:39 +000079 my $corpus = $r->route('/corpus/:corpus_id');
Nils Diewald7148c6f2015-05-04 15:07:53 +000080 my $doc = $corpus->get('/:doc_id');
81 my $text = $doc->get('/:text_id');
82 my $match = $text->get('/:match_id');
83 $match->to('search#match_info')->name('match');
Nils Diewald996aa552014-12-02 03:26:44 +000084};
85
86
871;
88
89
90__END__
Nils Diewalda898dac2015-05-06 21:04:16 +000091
92=pod
93
Nils Diewalda0defc42015-05-07 23:54:17 +000094The static files are generated using Grunt.
95To get started with Grunt, you need NodeJS > 0.8 ..., you'll need npm. Then you can install and run grunt:
Nils Diewalda898dac2015-05-06 21:04:16 +000096
97sudo npm install -g grunt-cli
98npm install
99grunt
Nils Diewalda0defc42015-05-07 23:54:17 +0000100
101
102Some perl modules are not on github yet, so you need to install them from github using cpanm:
103
104 cpanm git://github.com/Akron/Mojolicious-Plugin-Localize.git
Nils Diewald652e5f42015-05-10 18:11:45 +0000105
106
107=head2 LICENSE
108
109Highlight.js is released under the BSD License.