blob: a9dd538cab76321d22ee8090ee48fa32dd5f6edb [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 Diewald709f52f2015-05-21 18:32:58 +00006# Minor version - may be patched from package.json
Akron656c5d92015-11-13 21:17:03 +01007our $VERSION = '0.17';
Nils Diewald7cad8402014-07-08 17:06:56 +00008
Nils Diewald7148c6f2015-05-04 15:07:53 +00009# TODO: The FAQ-Page has a contact form for new questions
Nils Diewald709f52f2015-05-21 18:32:58 +000010# 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 Diewald7148c6f2015-05-04 15:07:53 +000015
Nils Diewald002e8fb2014-06-22 14:27:01 +000016# Start the application and register all routes and plugins
Nils Diewald5d1ffb42014-05-21 17:45:34 +000017sub startup {
18 my $self = shift;
19
Nils Diewalda944fab2015-04-08 21:02:04 +000020 # Set version based on package file
Nils Diewald709f52f2015-05-21 18:32:58 +000021 # This may introduce a SemVer patch number
22 my $pkg = b($self->home . '/package.json')->slurp;
23 $Kalamar::VERSION = decode_json($pkg)->{version};
Nils Diewalda944fab2015-04-08 21:02:04 +000024
Akron656c5d92015-11-13 21:17:03 +010025 # Lift maximum template cache
26 $self->renderer->cache->max_keys(200);
27
Nils Diewaldab4d3ca2015-04-17 01:48:43 +000028 # Add additional plugin path
29 push(@{$self->plugins->namespaces}, __PACKAGE__ . '::Plugin');
30
Nils Diewalda79b2682015-05-18 18:34:06 +000031 # korap.ids-mannheim.de specific path prefixing
Nils Diewalda0defc42015-05-07 23:54:17 +000032 $self->hook(
33 before_dispatch => sub {
34 my $c = shift;
35 my $host = $c->req->headers->header('X-Forwarded-Host');
36 if ($host && $host eq 'korap.ids-mannheim.de') {
37 $c->req->url->base->path('/kalamar/');
Nils Diewald705b74a2015-05-07 23:57:34 +000038 $c->stash(prefix => '/kalamar');
Nils Diewalda0defc42015-05-07 23:54:17 +000039 };
40 }) if $self->mode eq 'production';
41
Nils Diewalda748b0e2015-05-19 22:54:06 +000042
Nils Diewaldfccfbcb2015-04-29 20:48:19 +000043 # Set secrets for signed cookies
Nils Diewald19402142015-04-30 15:44:52 +000044 if (-e (my $secret = $self->home . '/kalamar.secret')) {
Nils Diewalda79b2682015-05-18 18:34:06 +000045
46 # Load file and split lines for multiple secrets
47 $self->secrets([b($secret)->slurp->split("\n")]);
Nils Diewald4347ee92015-05-04 20:32:48 +000048 }
Nils Diewald709f52f2015-05-21 18:32:58 +000049
50 # File not found ...
51 # Kalamar needs secrets in a file to be easily deployable
52 # and publishable at the same time.
Nils Diewald4347ee92015-05-04 20:32:48 +000053 else {
54 $self->log->warn('Please create a kalamar.secret file');
Nils Diewald19402142015-04-30 15:44:52 +000055 };
Nils Diewaldfccfbcb2015-04-29 20:48:19 +000056
Nils Diewald709f52f2015-05-21 18:32:58 +000057
Nils Diewaldab4d3ca2015-04-17 01:48:43 +000058 # Load plugins
Nils Diewaldfccfbcb2015-04-29 20:48:19 +000059 foreach (
Nils Diewaldc46003b2015-05-07 15:55:35 +000060 'Config', # Configuration framework
61 'Localize', # Localization framework
62 'Notifications', # Client notifications
63 'Search', # Abstract Search framework
64 'CHI', # Global caching mechanism
65 'TagHelpers::Pagination', # Pagination widget
66 'TagHelpers::MailToChiffre', # Obfuscate email addresses
Nils Diewalda79b2682015-05-18 18:34:06 +000067 'KalamarHelpers', # Specific Helpers for Kalamar
Nils Diewaldfccfbcb2015-04-29 20:48:19 +000068 ) {
Nils Diewaldab4d3ca2015-04-17 01:48:43 +000069 $self->plugin($_);
70 };
71
Nils Diewald709f52f2015-05-21 18:32:58 +000072
Nils Diewaldfccfbcb2015-04-29 20:48:19 +000073 # Configure mail exception
Nils Diewaldab4d3ca2015-04-17 01:48:43 +000074 $self->plugin('MailException' => $self->config('MailException'));
75
Nils Diewald709f52f2015-05-21 18:32:58 +000076
Nils Diewaldfccfbcb2015-04-29 20:48:19 +000077 # Configure documentation navigation
Nils Diewald7148c6f2015-05-04 15:07:53 +000078 my $navi = b($self->home . '/templates/doc/navigation.json')->slurp;
79 $self->config(navi => decode_json($navi)) if $navi;
Nils Diewaldfccfbcb2015-04-29 20:48:19 +000080
Nils Diewald709f52f2015-05-21 18:32:58 +000081
Nils Diewaldab4d3ca2015-04-17 01:48:43 +000082 # Establish routes
83 my $r = $self->routes;
84
Nils Diewalda79b2682015-05-18 18:34:06 +000085 # Base query route
Nils Diewaldab4d3ca2015-04-17 01:48:43 +000086 $r->get('/')->to('search#query')->name('index');
87
Akron48b1e4d2015-06-17 18:47:01 +020088 # Collection route
89 $r->get('/collection')->to('Search#collections')->name('collections');
90 $r->get('/collection/:id')->to('Search#collection')->name('collection');
91
Nils Diewalda79b2682015-05-18 18:34:06 +000092 # Documentation routes
Nils Diewald7148c6f2015-05-04 15:07:53 +000093 $r->get('/doc')->to('documentation#page', page => 'korap')->name('doc_start');
Nils Diewaldab4d3ca2015-04-17 01:48:43 +000094 $r->get('/doc/:page')->to('documentation#page', scope => undef);
95 $r->get('/doc/*scope/:page')->to('documentation#page')->name('doc');
Nils Diewaldab4d3ca2015-04-17 01:48:43 +000096
Nils Diewaldc46003b2015-05-07 15:55:35 +000097 # Contact route
98 $r->get('/contact')->to('documentation#contact');
99 $r->get('/contact')->mail_to_chiffre('documentation#contact');
100
Nils Diewald7148c6f2015-05-04 15:07:53 +0000101 # Match route
Nils Diewald8f4b5da2014-12-03 22:13:39 +0000102 my $corpus = $r->route('/corpus/:corpus_id');
Nils Diewald7148c6f2015-05-04 15:07:53 +0000103 my $doc = $corpus->get('/:doc_id');
104 my $text = $doc->get('/:text_id');
105 my $match = $text->get('/:match_id');
106 $match->to('search#match_info')->name('match');
Akroncddd1642015-06-10 21:31:53 +0200107
108 # Default user is called 'korap'
109 # $r->route('/user/:user/:collection')
Nils Diewald996aa552014-12-02 03:26:44 +0000110};
111
112
1131;
114
115
116__END__
Nils Diewalda898dac2015-05-06 21:04:16 +0000117
118=pod
119
Nils Diewaldeb5f3072015-05-20 09:32:42 +0000120=encoding utf8
Nils Diewalda898dac2015-05-06 21:04:16 +0000121
Nils Diewaldeb5f3072015-05-20 09:32:42 +0000122=head1 NAME
123
124Kalamar
Nils Diewalda0defc42015-05-07 23:54:17 +0000125
126
Nils Diewaldeb5f3072015-05-20 09:32:42 +0000127=head1 DESCRIPTION
Nils Diewalda0defc42015-05-07 23:54:17 +0000128
Nils Diewaldeb5f3072015-05-20 09:32:42 +0000129L<Kalamar> is a L<Mojolicious|http://mojolicio.us/> based user interface
130frontend for the L<KorAP Corpus Analysis Platform|http://korap.ids-mannheim.de/>.
131
Akron456abd92015-06-02 15:07:21 +0200132B<See the README for further information!>
Nils Diewaldeb5f3072015-05-20 09:32:42 +0000133
Akron456abd92015-06-02 15:07:21 +0200134=head2 COPYRIGHT AND LICENSE
Nils Diewalda748b0e2015-05-19 22:54:06 +0000135
136Copyright (C) 2015, L<IDS Mannheim|http://www.ids-mannheim.de/>
137Author: L<Nils Diewald|http://nils-diewald.de/>
138
139Kalamar is developed as part of the L<KorAP|http://korap.ids-mannheim.de/>
140Corpus Analysis Platform at the
141L<Institute for the German Language (IDS)|http://ids-mannheim.de/>,
142member of the
143L<Leibniz-Gemeinschaft|http://www.leibniz-gemeinschaft.de/en/about-us/leibniz-competition/projekte-2011/2011-funding-line-2/>
144and supported by the L<KobRA|http://www.kobra.tu-dortmund.de> project,
145funded by the
146L<Federal Ministry of Education and Research (BMBF)|http://www.bmbf.de/en/>.
147
148Kalamar is free software published under the
Akron456abd92015-06-02 15:07:21 +0200149L<BSD-2 License|https://raw.githubusercontent.com/KorAP/Kalamar/master/LICENSE>.
Nils Diewalda748b0e2015-05-19 22:54:06 +0000150
151=cut