blob: a19a916abee889e2ffc2b718808301c17e2e261b [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 Diewald845282c2015-05-14 07:53:03 +000032 # Cache static assets
33 $self->hook(
34 after_static => sub {
35 my $res = shift->res;
36 if ($res->code) {
37 $res->headers->cache_control('public, max-age=172800');
38 };
39 });
40
Nils Diewaldfccfbcb2015-04-29 20:48:19 +000041 # Set secrets for signed cookies
Nils Diewald19402142015-04-30 15:44:52 +000042 if (-e (my $secret = $self->home . '/kalamar.secret')) {
43 $self->secrets([
44 b($secret)->slurp->split("\n")
45 ]);
Nils Diewald4347ee92015-05-04 20:32:48 +000046 }
47 else {
48 $self->log->warn('Please create a kalamar.secret file');
Nils Diewald19402142015-04-30 15:44:52 +000049 };
Nils Diewaldfccfbcb2015-04-29 20:48:19 +000050
Nils Diewaldab4d3ca2015-04-17 01:48:43 +000051 # Load plugins
Nils Diewaldfccfbcb2015-04-29 20:48:19 +000052 foreach (
Nils Diewaldc46003b2015-05-07 15:55:35 +000053 'Config', # Configuration framework
54 'Localize', # Localization framework
55 'Notifications', # Client notifications
56 'Search', # Abstract Search framework
57 'CHI', # Global caching mechanism
58 'TagHelpers::Pagination', # Pagination widget
59 'TagHelpers::MailToChiffre', # Obfuscate email addresses
60 'KalamarHelpers' # Specific Helpers for Kalamar
Nils Diewaldfccfbcb2015-04-29 20:48:19 +000061 ) {
Nils Diewaldab4d3ca2015-04-17 01:48:43 +000062 $self->plugin($_);
63 };
64
Nils Diewaldfccfbcb2015-04-29 20:48:19 +000065 # Configure mail exception
Nils Diewaldab4d3ca2015-04-17 01:48:43 +000066 $self->plugin('MailException' => $self->config('MailException'));
67
Nils Diewaldfccfbcb2015-04-29 20:48:19 +000068 # Configure documentation navigation
Nils Diewald7148c6f2015-05-04 15:07:53 +000069 my $navi = b($self->home . '/templates/doc/navigation.json')->slurp;
70 $self->config(navi => decode_json($navi)) if $navi;
Nils Diewaldfccfbcb2015-04-29 20:48:19 +000071
Nils Diewaldab4d3ca2015-04-17 01:48:43 +000072 # Establish routes
73 my $r = $self->routes;
74
Nils Diewaldab4d3ca2015-04-17 01:48:43 +000075 # Base query page
76 $r->get('/')->to('search#query')->name('index');
77
Nils Diewaldab4d3ca2015-04-17 01:48:43 +000078 # Documentation
Nils Diewald7148c6f2015-05-04 15:07:53 +000079 $r->get('/doc')->to('documentation#page', page => 'korap')->name('doc_start');
Nils Diewaldab4d3ca2015-04-17 01:48:43 +000080 $r->get('/doc/:page')->to('documentation#page', scope => undef);
81 $r->get('/doc/*scope/:page')->to('documentation#page')->name('doc');
Nils Diewaldab4d3ca2015-04-17 01:48:43 +000082
Nils Diewaldc46003b2015-05-07 15:55:35 +000083 # Contact route
84 $r->get('/contact')->to('documentation#contact');
85 $r->get('/contact')->mail_to_chiffre('documentation#contact');
86
Nils Diewald7148c6f2015-05-04 15:07:53 +000087 # Match route
Nils Diewald8f4b5da2014-12-03 22:13:39 +000088 my $corpus = $r->route('/corpus/:corpus_id');
Nils Diewald7148c6f2015-05-04 15:07:53 +000089 my $doc = $corpus->get('/:doc_id');
90 my $text = $doc->get('/:text_id');
91 my $match = $text->get('/:match_id');
92 $match->to('search#match_info')->name('match');
Nils Diewald996aa552014-12-02 03:26:44 +000093};
94
95
961;
97
98
99__END__
Nils Diewalda898dac2015-05-06 21:04:16 +0000100
101=pod
102
Nils Diewalda0defc42015-05-07 23:54:17 +0000103The static files are generated using Grunt.
104To 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 +0000105
106sudo npm install -g grunt-cli
107npm install
108grunt
Nils Diewalda0defc42015-05-07 23:54:17 +0000109
110
111Some perl modules are not on github yet, so you need to install them from github using cpanm:
112
113 cpanm git://github.com/Akron/Mojolicious-Plugin-Localize.git
Nils Diewald652e5f42015-05-10 18:11:45 +0000114
115
116=head2 LICENSE
117
118Highlight.js is released under the BSD License.