blob: 4dfb35d173e8562de508738bc529be13b60ed1ba [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';
Akronf65ad6c2017-02-01 14:36:38 +01004use Mojo::File;
Nils Diewalda944fab2015-04-08 21:02:04 +00005use Mojo::JSON 'decode_json';
Nils Diewald5d1ffb42014-05-21 17:45:34 +00006
Nils Diewald709f52f2015-05-21 18:32:58 +00007# Minor version - may be patched from package.json
Akron0a6768f2016-07-13 18:00:43 +02008our $VERSION = '0.21';
Nils Diewald7cad8402014-07-08 17:06:56 +00009
Nils Diewald7148c6f2015-05-04 15:07:53 +000010# TODO: The FAQ-Page has a contact form for new questions
Nils Diewald709f52f2015-05-21 18:32:58 +000011# TODO: Embed query serialization
12# TODO: Embed collection statistics
13# TODO: Implement tab opener for matches and the tutorial
14# TODO: Make the tutorial ql sensitive
15# TODO: Implement a "projects" system
Nils Diewald7148c6f2015-05-04 15:07:53 +000016
Nils Diewald002e8fb2014-06-22 14:27:01 +000017# Start the application and register all routes and plugins
Nils Diewald5d1ffb42014-05-21 17:45:34 +000018sub startup {
19 my $self = shift;
20
Nils Diewalda944fab2015-04-08 21:02:04 +000021 # Set version based on package file
Nils Diewald709f52f2015-05-21 18:32:58 +000022 # This may introduce a SemVer patch number
Akronf65ad6c2017-02-01 14:36:38 +010023 my $pkg_path = $self->home->child('package.json');
24 if (-e $pkg_path->to_abs) {
25 my $pkg = $pkg_path->slurp;
26 $Kalamar::VERSION = decode_json($pkg)->{version};
27 };
Nils Diewalda944fab2015-04-08 21:02:04 +000028
Akron656c5d92015-11-13 21:17:03 +010029 # Lift maximum template cache
30 $self->renderer->cache->max_keys(200);
31
Nils Diewaldab4d3ca2015-04-17 01:48:43 +000032 # Add additional plugin path
33 push(@{$self->plugins->namespaces}, __PACKAGE__ . '::Plugin');
34
Nils Diewalda79b2682015-05-18 18:34:06 +000035 # korap.ids-mannheim.de specific path prefixing
Nils Diewalda0defc42015-05-07 23:54:17 +000036 $self->hook(
37 before_dispatch => sub {
38 my $c = shift;
39 my $host = $c->req->headers->header('X-Forwarded-Host');
40 if ($host && $host eq 'korap.ids-mannheim.de') {
Akronf65ad6c2017-02-01 14:36:38 +010041 $c->req->url->base->path('/kalamar/');
42 $c->stash(prefix => '/kalamar');
Nils Diewalda0defc42015-05-07 23:54:17 +000043 };
44 }) if $self->mode eq 'production';
45
Nils Diewalda748b0e2015-05-19 22:54:06 +000046
Nils Diewaldfccfbcb2015-04-29 20:48:19 +000047 # Set secrets for signed cookies
Akronf65ad6c2017-02-01 14:36:38 +010048 if (-e (my $secret = $self->home->child('kalamar.secret'))) {
Nils Diewalda79b2682015-05-18 18:34:06 +000049
50 # Load file and split lines for multiple secrets
Akronf65ad6c2017-02-01 14:36:38 +010051 $self->secrets([b($secret->slurp)->split("\n")]);
Nils Diewald4347ee92015-05-04 20:32:48 +000052 }
Nils Diewald709f52f2015-05-21 18:32:58 +000053
54 # File not found ...
55 # Kalamar needs secrets in a file to be easily deployable
56 # and publishable at the same time.
Nils Diewald4347ee92015-05-04 20:32:48 +000057 else {
58 $self->log->warn('Please create a kalamar.secret file');
Nils Diewald19402142015-04-30 15:44:52 +000059 };
Nils Diewaldfccfbcb2015-04-29 20:48:19 +000060
Akroncba9f322016-02-29 23:12:45 +010061 # Configuration framework
Akron09a567c2016-04-11 22:49:20 +030062 $self->plugin('Config');
Nils Diewald709f52f2015-05-21 18:32:58 +000063
Akron09a567c2016-04-11 22:49:20 +030064 # Client notifications
Akron0504a182016-04-10 21:13:42 +020065 $self->plugin(Notifications => {
66 'Kalamar::Plugin::Notifications' => 1,
67 JSON => 1
68 });
69
Akron09a567c2016-04-11 22:49:20 +030070 # Localization framework
71 $self->plugin(Localize => {
72 resources => ['kalamar.dict']
73 });
74
75 # Pagination widget
76 $self->plugin('TagHelpers::Pagination' => {
77 prev => '<span><span>&lt;</span></span>',
78 next => '<span><span>&lt;</span></span>',
79 ellipsis => '<a class="ellipsis"><span><span>...</span></span></a>',
80 separator => '',
81 current => '<span>{current}</span>',
82 page => '<span>{page}</span>'
83 });
84
Nils Diewaldab4d3ca2015-04-17 01:48:43 +000085 # Load plugins
Nils Diewaldfccfbcb2015-04-29 20:48:19 +000086 foreach (
Nils Diewaldc46003b2015-05-07 15:55:35 +000087 'Search', # Abstract Search framework
88 'CHI', # Global caching mechanism
Nils Diewaldc46003b2015-05-07 15:55:35 +000089 'TagHelpers::MailToChiffre', # Obfuscate email addresses
Akron0504a182016-04-10 21:13:42 +020090 'KalamarHelpers' # Specific Helpers for Kalamar
Nils Diewaldfccfbcb2015-04-29 20:48:19 +000091 ) {
Nils Diewaldab4d3ca2015-04-17 01:48:43 +000092 $self->plugin($_);
93 };
94
Nils Diewald709f52f2015-05-21 18:32:58 +000095
Nils Diewaldfccfbcb2015-04-29 20:48:19 +000096 # Configure mail exception
Nils Diewaldab4d3ca2015-04-17 01:48:43 +000097 $self->plugin('MailException' => $self->config('MailException'));
98
Nils Diewald709f52f2015-05-21 18:32:58 +000099
Nils Diewaldfccfbcb2015-04-29 20:48:19 +0000100 # Configure documentation navigation
Akronf65ad6c2017-02-01 14:36:38 +0100101 my $navi = Mojo::File->new($self->home->child('templates','doc','navigation.json'))->slurp;
Nils Diewald7148c6f2015-05-04 15:07:53 +0000102 $self->config(navi => decode_json($navi)) if $navi;
Nils Diewaldfccfbcb2015-04-29 20:48:19 +0000103
Nils Diewald709f52f2015-05-21 18:32:58 +0000104
Nils Diewaldab4d3ca2015-04-17 01:48:43 +0000105 # Establish routes
106 my $r = $self->routes;
107
Nils Diewalda79b2682015-05-18 18:34:06 +0000108 # Base query route
Nils Diewaldab4d3ca2015-04-17 01:48:43 +0000109 $r->get('/')->to('search#query')->name('index');
110
Akron48b1e4d2015-06-17 18:47:01 +0200111 # Collection route
112 $r->get('/collection')->to('Search#collections')->name('collections');
113 $r->get('/collection/:id')->to('Search#collection')->name('collection');
114
Nils Diewalda79b2682015-05-18 18:34:06 +0000115 # Documentation routes
Nils Diewald7148c6f2015-05-04 15:07:53 +0000116 $r->get('/doc')->to('documentation#page', page => 'korap')->name('doc_start');
Nils Diewaldab4d3ca2015-04-17 01:48:43 +0000117 $r->get('/doc/:page')->to('documentation#page', scope => undef);
118 $r->get('/doc/*scope/:page')->to('documentation#page')->name('doc');
Nils Diewaldab4d3ca2015-04-17 01:48:43 +0000119
Nils Diewaldc46003b2015-05-07 15:55:35 +0000120 # Contact route
121 $r->get('/contact')->to('documentation#contact');
122 $r->get('/contact')->mail_to_chiffre('documentation#contact');
123
Nils Diewald7148c6f2015-05-04 15:07:53 +0000124 # Match route
Nils Diewald8f4b5da2014-12-03 22:13:39 +0000125 my $corpus = $r->route('/corpus/:corpus_id');
Nils Diewald7148c6f2015-05-04 15:07:53 +0000126 my $doc = $corpus->get('/:doc_id');
127 my $text = $doc->get('/:text_id');
128 my $match = $text->get('/:match_id');
129 $match->to('search#match_info')->name('match');
Akroncddd1642015-06-10 21:31:53 +0200130
131 # Default user is called 'korap'
132 # $r->route('/user/:user/:collection')
Nils Diewald996aa552014-12-02 03:26:44 +0000133};
134
135
1361;
137
138
139__END__
Nils Diewalda898dac2015-05-06 21:04:16 +0000140
141=pod
142
Nils Diewaldeb5f3072015-05-20 09:32:42 +0000143=encoding utf8
Nils Diewalda898dac2015-05-06 21:04:16 +0000144
Nils Diewaldeb5f3072015-05-20 09:32:42 +0000145=head1 NAME
146
147Kalamar
Nils Diewalda0defc42015-05-07 23:54:17 +0000148
149
Nils Diewaldeb5f3072015-05-20 09:32:42 +0000150=head1 DESCRIPTION
Nils Diewalda0defc42015-05-07 23:54:17 +0000151
Nils Diewaldeb5f3072015-05-20 09:32:42 +0000152L<Kalamar> is a L<Mojolicious|http://mojolicio.us/> based user interface
153frontend for the L<KorAP Corpus Analysis Platform|http://korap.ids-mannheim.de/>.
154
Akron456abd92015-06-02 15:07:21 +0200155B<See the README for further information!>
Nils Diewaldeb5f3072015-05-20 09:32:42 +0000156
Akron456abd92015-06-02 15:07:21 +0200157=head2 COPYRIGHT AND LICENSE
Nils Diewalda748b0e2015-05-19 22:54:06 +0000158
Akronf65ad6c2017-02-01 14:36:38 +0100159Copyright (C) 2015-2017, L<IDS Mannheim|http://www.ids-mannheim.de/>
Nils Diewalda748b0e2015-05-19 22:54:06 +0000160Author: L<Nils Diewald|http://nils-diewald.de/>
161
162Kalamar is developed as part of the L<KorAP|http://korap.ids-mannheim.de/>
163Corpus Analysis Platform at the
164L<Institute for the German Language (IDS)|http://ids-mannheim.de/>,
165member of the
166L<Leibniz-Gemeinschaft|http://www.leibniz-gemeinschaft.de/en/about-us/leibniz-competition/projekte-2011/2011-funding-line-2/>
167and supported by the L<KobRA|http://www.kobra.tu-dortmund.de> project,
168funded by the
169L<Federal Ministry of Education and Research (BMBF)|http://www.bmbf.de/en/>.
170
171Kalamar is free software published under the
Akron456abd92015-06-02 15:07:21 +0200172L<BSD-2 License|https://raw.githubusercontent.com/KorAP/Kalamar/master/LICENSE>.
Nils Diewalda748b0e2015-05-19 22:54:06 +0000173
174=cut