blob: b89b968297c3abe2bb7b8d170d4f98fb1a3261b1 [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';
Akronbe9d5b32017-04-05 20:48:24 +02006use Mojo::Util qw/url_escape/;
7use File::Temp qw/tmpnam/;
Nils Diewald5d1ffb42014-05-21 17:45:34 +00008
Nils Diewald709f52f2015-05-21 18:32:58 +00009# Minor version - may be patched from package.json
Akron41e7bdd2017-11-10 16:28:35 +010010our $VERSION = '0.24';
Nils Diewald7cad8402014-07-08 17:06:56 +000011
Akron2e3d3772017-04-14 16:20:40 +020012# TODO: Use CSRF!!!
Nils Diewald7148c6f2015-05-04 15:07:53 +000013# TODO: The FAQ-Page has a contact form for new questions
Nils Diewald709f52f2015-05-21 18:32:58 +000014# TODO: Embed query serialization
15# TODO: Embed collection statistics
16# TODO: Implement tab opener for matches and the tutorial
17# TODO: Make the tutorial ql sensitive
18# TODO: Implement a "projects" system
Nils Diewald7148c6f2015-05-04 15:07:53 +000019
Nils Diewald002e8fb2014-06-22 14:27:01 +000020# Start the application and register all routes and plugins
Nils Diewald5d1ffb42014-05-21 17:45:34 +000021sub startup {
22 my $self = shift;
23
Nils Diewalda944fab2015-04-08 21:02:04 +000024 # Set version based on package file
Nils Diewald709f52f2015-05-21 18:32:58 +000025 # This may introduce a SemVer patch number
Akronf65ad6c2017-02-01 14:36:38 +010026 my $pkg_path = $self->home->child('package.json');
27 if (-e $pkg_path->to_abs) {
28 my $pkg = $pkg_path->slurp;
29 $Kalamar::VERSION = decode_json($pkg)->{version};
30 };
Nils Diewalda944fab2015-04-08 21:02:04 +000031
Akron656c5d92015-11-13 21:17:03 +010032 # Lift maximum template cache
33 $self->renderer->cache->max_keys(200);
34
Nils Diewaldab4d3ca2015-04-17 01:48:43 +000035 # Add additional plugin path
36 push(@{$self->plugins->namespaces}, __PACKAGE__ . '::Plugin');
37
Nils Diewalda748b0e2015-05-19 22:54:06 +000038
Nils Diewaldfccfbcb2015-04-29 20:48:19 +000039 # Set secrets for signed cookies
Akronf65ad6c2017-02-01 14:36:38 +010040 if (-e (my $secret = $self->home->child('kalamar.secret'))) {
Nils Diewalda79b2682015-05-18 18:34:06 +000041
42 # Load file and split lines for multiple secrets
Akronf65ad6c2017-02-01 14:36:38 +010043 $self->secrets([b($secret->slurp)->split("\n")]);
Nils Diewald4347ee92015-05-04 20:32:48 +000044 }
Nils Diewald709f52f2015-05-21 18:32:58 +000045
46 # File not found ...
47 # Kalamar needs secrets in a file to be easily deployable
48 # and publishable at the same time.
Nils Diewald4347ee92015-05-04 20:32:48 +000049 else {
50 $self->log->warn('Please create a kalamar.secret file');
Nils Diewald19402142015-04-30 15:44:52 +000051 };
Nils Diewaldfccfbcb2015-04-29 20:48:19 +000052
Akroncba9f322016-02-29 23:12:45 +010053 # Configuration framework
Akron09a567c2016-04-11 22:49:20 +030054 $self->plugin('Config');
Nils Diewald709f52f2015-05-21 18:32:58 +000055
Akron741b2b12017-04-13 22:15:59 +020056 $self->log->info('Mode is ' . $self->mode);
57
Akron47787ca2017-05-17 16:00:10 +020058 # Specific path prefixing
59 my $conf = $self->config('Kalamar');
60 if ($conf && $conf->{proxy_prefix}) {
61
Akronf3d856c2017-06-21 17:07:40 +020062 for ($self->sessions) {
Akron1a394722017-06-21 16:25:30 +020063 $_->cookie_path($conf->{proxy_prefix});
64 $_->cookie_name('kalamar');
65 $_->secure(1);
66 };
67
Akron47787ca2017-05-17 16:00:10 +020068 # Set prefix in stash
69 $self->defaults(prefix => $conf->{proxy_prefix});
70
71 # Create base path
72 $self->hook(
73 before_dispatch => sub {
74 shift->req->url->base->path($conf->{proxy_prefix} . '/');
75 });
76 };
77
Akronbe9d5b32017-04-05 20:48:24 +020078 # Start fixture server
79 if ($self->mode eq 'test') {
Akron741b2b12017-04-13 22:15:59 +020080
81 $self->log->info('Mount test server');
82
Akron3042f242017-04-15 16:57:55 +020083 my $mount_point = '/api/v0.1/';
84
Akronbe9d5b32017-04-05 20:48:24 +020085 $self->plugin(Mount => {
Akron7d75ee32017-05-02 13:42:41 +020086 $mount_point => $self->home->child(
87 'lib/Kalamar/Apps/test_backend.pl'
88 )
Akronbe9d5b32017-04-05 20:48:24 +020089 });
90
Akron3042f242017-04-15 16:57:55 +020091 # Fix api endpoints
92 $self->config('Kalamar')->{api} = $mount_point;
93 $self->config('Search')->{api} = $mount_point;
Akronbe9d5b32017-04-05 20:48:24 +020094 };
95
Akron09a567c2016-04-11 22:49:20 +030096 # Client notifications
Akron0504a182016-04-10 21:13:42 +020097 $self->plugin(Notifications => {
98 'Kalamar::Plugin::Notifications' => 1,
99 JSON => 1
100 });
101
Akron09a567c2016-04-11 22:49:20 +0300102 # Localization framework
103 $self->plugin(Localize => {
Akrona7cfd902017-12-21 19:28:36 +0100104 resources => ['kalamar.dict', 'kalamar.queries.dict']
Akron09a567c2016-04-11 22:49:20 +0300105 });
106
107 # Pagination widget
108 $self->plugin('TagHelpers::Pagination' => {
109 prev => '<span><span>&lt;</span></span>',
110 next => '<span><span>&lt;</span></span>',
111 ellipsis => '<a class="ellipsis"><span><span>...</span></span></a>',
112 separator => '',
113 current => '<span>{current}</span>',
114 page => '<span>{page}</span>'
115 });
116
Nils Diewaldab4d3ca2015-04-17 01:48:43 +0000117 # Load plugins
Nils Diewaldfccfbcb2015-04-29 20:48:19 +0000118 foreach (
Nils Diewaldc46003b2015-05-07 15:55:35 +0000119 'Search', # Abstract Search framework
120 'CHI', # Global caching mechanism
Nils Diewaldc46003b2015-05-07 15:55:35 +0000121 'TagHelpers::MailToChiffre', # Obfuscate email addresses
Akrone8235be2016-06-27 11:02:18 +0200122 'KalamarHelpers', # Specific Helpers for Kalamar
Akronaa7f9422017-04-24 20:49:32 +0200123 'KalamarUser', # Specific Helpers for Kalamar
124 'ClientIP' # Get client IP from X-Forwarded-For
Nils Diewaldfccfbcb2015-04-29 20:48:19 +0000125 ) {
Nils Diewaldab4d3ca2015-04-17 01:48:43 +0000126 $self->plugin($_);
127 };
128
Nils Diewald709f52f2015-05-21 18:32:58 +0000129
Nils Diewaldfccfbcb2015-04-29 20:48:19 +0000130 # Configure mail exception
Akron40cc1d82017-05-10 17:58:16 +0200131 if ($self->config('MailException')) {
132 $self->plugin('MailException' => $self->config('MailException'));
133 };
Nils Diewald709f52f2015-05-21 18:32:58 +0000134
Nils Diewaldfccfbcb2015-04-29 20:48:19 +0000135 # Configure documentation navigation
Akronf65ad6c2017-02-01 14:36:38 +0100136 my $navi = Mojo::File->new($self->home->child('templates','doc','navigation.json'))->slurp;
Nils Diewald7148c6f2015-05-04 15:07:53 +0000137 $self->config(navi => decode_json($navi)) if $navi;
Nils Diewaldfccfbcb2015-04-29 20:48:19 +0000138
Akron3cd391e2017-03-29 23:42:54 +0200139 $self->log->info('API expected at ' . $self->config->{Kalamar}->{api});
Nils Diewald709f52f2015-05-21 18:32:58 +0000140
Akron3cd391e2017-03-29 23:42:54 +0200141 # Establish routes with authentification
Akron7d75ee32017-05-02 13:42:41 +0200142 my $r = $self->routes;
Akron3cd391e2017-03-29 23:42:54 +0200143
Akron7d75ee32017-05-02 13:42:41 +0200144 # Check for auth support
145 $self->defaults(
146 auth_support => $self->config('Kalamar')->{auth_support}
Akron3cd391e2017-03-29 23:42:54 +0200147 );
Nils Diewaldab4d3ca2015-04-17 01:48:43 +0000148
Akron7d75ee32017-05-02 13:42:41 +0200149 # Support auth
150 if ($self->stash('auth_support')) {
151 $r = $r->under(
152 '/' => sub {
153 my $c = shift;
154
155 if ($c->session('auth')) {
156 $c->stash(auth => $c->session('auth'));
157 $c->stash(user => $c->session('user'));
158 };
159 return 1;
160 }
161 );
162 };
163
Nils Diewalda79b2682015-05-18 18:34:06 +0000164 # Base query route
Nils Diewaldab4d3ca2015-04-17 01:48:43 +0000165 $r->get('/')->to('search#query')->name('index');
166
Akron48b1e4d2015-06-17 18:47:01 +0200167 # Collection route
Akrone8235be2016-06-27 11:02:18 +0200168 # TODO: Probably rename to /corpus
Akron48b1e4d2015-06-17 18:47:01 +0200169 $r->get('/collection')->to('Search#collections')->name('collections');
170 $r->get('/collection/:id')->to('Search#collection')->name('collection');
171
Nils Diewalda79b2682015-05-18 18:34:06 +0000172 # Documentation routes
Nils Diewald7148c6f2015-05-04 15:07:53 +0000173 $r->get('/doc')->to('documentation#page', page => 'korap')->name('doc_start');
Nils Diewaldab4d3ca2015-04-17 01:48:43 +0000174 $r->get('/doc/:page')->to('documentation#page', scope => undef);
175 $r->get('/doc/*scope/:page')->to('documentation#page')->name('doc');
Nils Diewaldab4d3ca2015-04-17 01:48:43 +0000176
Nils Diewaldc46003b2015-05-07 15:55:35 +0000177 # Contact route
178 $r->get('/contact')->to('documentation#contact');
179 $r->get('/contact')->mail_to_chiffre('documentation#contact');
180
Nils Diewald7148c6f2015-05-04 15:07:53 +0000181 # Match route
Nils Diewald8f4b5da2014-12-03 22:13:39 +0000182 my $corpus = $r->route('/corpus/:corpus_id');
Nils Diewald7148c6f2015-05-04 15:07:53 +0000183 my $doc = $corpus->get('/:doc_id');
184 my $text = $doc->get('/:text_id');
185 my $match = $text->get('/:match_id');
186 $match->to('search#match_info')->name('match');
Akroncddd1642015-06-10 21:31:53 +0200187
Akrone8235be2016-06-27 11:02:18 +0200188 # User Management
Akron3cd391e2017-03-29 23:42:54 +0200189 my $user = $r->any('/user')->to(controller => 'User');
190 $user->post('/login')->to(action => 'login')->name('login');
Akrone5ef4e02017-04-19 17:07:52 +0200191 $user->get('/logout')->to(action => 'logout')->name('logout');
Akron3cd391e2017-03-29 23:42:54 +0200192# $r->any('/register')->to(action => 'register')->name('register');
193# $r->any('/forgotten')->to(action => 'pwdforgotten')->name('pwdforgotten');
Akron189b3592016-01-04 20:56:46 +0100194
Akroncddd1642015-06-10 21:31:53 +0200195 # Default user is called 'korap'
196 # $r->route('/user/:user/:collection')
Nils Diewald996aa552014-12-02 03:26:44 +0000197};
198
199
2001;
201
202
203__END__
Nils Diewalda898dac2015-05-06 21:04:16 +0000204
205=pod
206
Nils Diewaldeb5f3072015-05-20 09:32:42 +0000207=encoding utf8
Nils Diewalda898dac2015-05-06 21:04:16 +0000208
Nils Diewaldeb5f3072015-05-20 09:32:42 +0000209=head1 NAME
210
211Kalamar
Nils Diewalda0defc42015-05-07 23:54:17 +0000212
213
Nils Diewaldeb5f3072015-05-20 09:32:42 +0000214=head1 DESCRIPTION
Nils Diewalda0defc42015-05-07 23:54:17 +0000215
Nils Diewaldeb5f3072015-05-20 09:32:42 +0000216L<Kalamar> is a L<Mojolicious|http://mojolicio.us/> based user interface
217frontend for the L<KorAP Corpus Analysis Platform|http://korap.ids-mannheim.de/>.
218
Akron456abd92015-06-02 15:07:21 +0200219B<See the README for further information!>
Nils Diewaldeb5f3072015-05-20 09:32:42 +0000220
Akron456abd92015-06-02 15:07:21 +0200221=head2 COPYRIGHT AND LICENSE
Nils Diewalda748b0e2015-05-19 22:54:06 +0000222
Akronf65ad6c2017-02-01 14:36:38 +0100223Copyright (C) 2015-2017, L<IDS Mannheim|http://www.ids-mannheim.de/>
Nils Diewalda748b0e2015-05-19 22:54:06 +0000224Author: L<Nils Diewald|http://nils-diewald.de/>
225
226Kalamar is developed as part of the L<KorAP|http://korap.ids-mannheim.de/>
227Corpus Analysis Platform at the
228L<Institute for the German Language (IDS)|http://ids-mannheim.de/>,
229member of the
230L<Leibniz-Gemeinschaft|http://www.leibniz-gemeinschaft.de/en/about-us/leibniz-competition/projekte-2011/2011-funding-line-2/>
231and supported by the L<KobRA|http://www.kobra.tu-dortmund.de> project,
232funded by the
233L<Federal Ministry of Education and Research (BMBF)|http://www.bmbf.de/en/>.
234
235Kalamar is free software published under the
Akron456abd92015-06-02 15:07:21 +0200236L<BSD-2 License|https://raw.githubusercontent.com/KorAP/Kalamar/master/LICENSE>.
Nils Diewalda748b0e2015-05-19 22:54:06 +0000237
238=cut