blob: 5591cc49878b93fb94e444c7b10927a0092312a0 [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
Akron0a6768f2016-07-13 18:00:43 +02007our $VERSION = '0.21';
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
Akroncba9f322016-02-29 23:12:45 +010057 # Configuration framework
Akron09a567c2016-04-11 22:49:20 +030058 $self->plugin('Config');
Nils Diewald709f52f2015-05-21 18:32:58 +000059
Akron09a567c2016-04-11 22:49:20 +030060 # Client notifications
Akron0504a182016-04-10 21:13:42 +020061 $self->plugin(Notifications => {
62 'Kalamar::Plugin::Notifications' => 1,
63 JSON => 1
64 });
65
Akron09a567c2016-04-11 22:49:20 +030066 # Localization framework
67 $self->plugin(Localize => {
68 resources => ['kalamar.dict']
69 });
70
71 # Pagination widget
72 $self->plugin('TagHelpers::Pagination' => {
73 prev => '<span><span>&lt;</span></span>',
74 next => '<span><span>&lt;</span></span>',
75 ellipsis => '<a class="ellipsis"><span><span>...</span></span></a>',
76 separator => '',
77 current => '<span>{current}</span>',
78 page => '<span>{page}</span>'
79 });
80
Nils Diewaldab4d3ca2015-04-17 01:48:43 +000081 # Load plugins
Nils Diewaldfccfbcb2015-04-29 20:48:19 +000082 foreach (
Nils Diewaldc46003b2015-05-07 15:55:35 +000083 'Search', # Abstract Search framework
84 'CHI', # Global caching mechanism
Nils Diewaldc46003b2015-05-07 15:55:35 +000085 'TagHelpers::MailToChiffre', # Obfuscate email addresses
Akron0504a182016-04-10 21:13:42 +020086 'KalamarHelpers' # Specific Helpers for Kalamar
Nils Diewaldfccfbcb2015-04-29 20:48:19 +000087 ) {
Nils Diewaldab4d3ca2015-04-17 01:48:43 +000088 $self->plugin($_);
89 };
90
Nils Diewald709f52f2015-05-21 18:32:58 +000091
Nils Diewaldfccfbcb2015-04-29 20:48:19 +000092 # Configure mail exception
Nils Diewaldab4d3ca2015-04-17 01:48:43 +000093 $self->plugin('MailException' => $self->config('MailException'));
94
Nils Diewald709f52f2015-05-21 18:32:58 +000095
Nils Diewaldfccfbcb2015-04-29 20:48:19 +000096 # Configure documentation navigation
Nils Diewald7148c6f2015-05-04 15:07:53 +000097 my $navi = b($self->home . '/templates/doc/navigation.json')->slurp;
98 $self->config(navi => decode_json($navi)) if $navi;
Nils Diewaldfccfbcb2015-04-29 20:48:19 +000099
Nils Diewald709f52f2015-05-21 18:32:58 +0000100
Nils Diewaldab4d3ca2015-04-17 01:48:43 +0000101 # Establish routes
102 my $r = $self->routes;
103
Nils Diewalda79b2682015-05-18 18:34:06 +0000104 # Base query route
Nils Diewaldab4d3ca2015-04-17 01:48:43 +0000105 $r->get('/')->to('search#query')->name('index');
106
Akron48b1e4d2015-06-17 18:47:01 +0200107 # Collection route
108 $r->get('/collection')->to('Search#collections')->name('collections');
109 $r->get('/collection/:id')->to('Search#collection')->name('collection');
110
Nils Diewalda79b2682015-05-18 18:34:06 +0000111 # Documentation routes
Nils Diewald7148c6f2015-05-04 15:07:53 +0000112 $r->get('/doc')->to('documentation#page', page => 'korap')->name('doc_start');
Nils Diewaldab4d3ca2015-04-17 01:48:43 +0000113 $r->get('/doc/:page')->to('documentation#page', scope => undef);
114 $r->get('/doc/*scope/:page')->to('documentation#page')->name('doc');
Nils Diewaldab4d3ca2015-04-17 01:48:43 +0000115
Nils Diewaldc46003b2015-05-07 15:55:35 +0000116 # Contact route
117 $r->get('/contact')->to('documentation#contact');
118 $r->get('/contact')->mail_to_chiffre('documentation#contact');
119
Nils Diewald7148c6f2015-05-04 15:07:53 +0000120 # Match route
Nils Diewald8f4b5da2014-12-03 22:13:39 +0000121 my $corpus = $r->route('/corpus/:corpus_id');
Nils Diewald7148c6f2015-05-04 15:07:53 +0000122 my $doc = $corpus->get('/:doc_id');
123 my $text = $doc->get('/:text_id');
124 my $match = $text->get('/:match_id');
125 $match->to('search#match_info')->name('match');
Akroncddd1642015-06-10 21:31:53 +0200126
127 # Default user is called 'korap'
128 # $r->route('/user/:user/:collection')
Nils Diewald996aa552014-12-02 03:26:44 +0000129};
130
131
1321;
133
134
135__END__
Nils Diewalda898dac2015-05-06 21:04:16 +0000136
137=pod
138
Nils Diewaldeb5f3072015-05-20 09:32:42 +0000139=encoding utf8
Nils Diewalda898dac2015-05-06 21:04:16 +0000140
Nils Diewaldeb5f3072015-05-20 09:32:42 +0000141=head1 NAME
142
143Kalamar
Nils Diewalda0defc42015-05-07 23:54:17 +0000144
145
Nils Diewaldeb5f3072015-05-20 09:32:42 +0000146=head1 DESCRIPTION
Nils Diewalda0defc42015-05-07 23:54:17 +0000147
Nils Diewaldeb5f3072015-05-20 09:32:42 +0000148L<Kalamar> is a L<Mojolicious|http://mojolicio.us/> based user interface
149frontend for the L<KorAP Corpus Analysis Platform|http://korap.ids-mannheim.de/>.
150
Akron456abd92015-06-02 15:07:21 +0200151B<See the README for further information!>
Nils Diewaldeb5f3072015-05-20 09:32:42 +0000152
Akron456abd92015-06-02 15:07:21 +0200153=head2 COPYRIGHT AND LICENSE
Nils Diewalda748b0e2015-05-19 22:54:06 +0000154
Akron6ed13992016-05-23 18:06:05 +0200155Copyright (C) 2015-2016, L<IDS Mannheim|http://www.ids-mannheim.de/>
Nils Diewalda748b0e2015-05-19 22:54:06 +0000156Author: L<Nils Diewald|http://nils-diewald.de/>
157
158Kalamar is developed as part of the L<KorAP|http://korap.ids-mannheim.de/>
159Corpus Analysis Platform at the
160L<Institute for the German Language (IDS)|http://ids-mannheim.de/>,
161member of the
162L<Leibniz-Gemeinschaft|http://www.leibniz-gemeinschaft.de/en/about-us/leibniz-competition/projekte-2011/2011-funding-line-2/>
163and supported by the L<KobRA|http://www.kobra.tu-dortmund.de> project,
164funded by the
165L<Federal Ministry of Education and Research (BMBF)|http://www.bmbf.de/en/>.
166
167Kalamar is free software published under the
Akron456abd92015-06-02 15:07:21 +0200168L<BSD-2 License|https://raw.githubusercontent.com/KorAP/Kalamar/master/LICENSE>.
Nils Diewalda748b0e2015-05-19 22:54:06 +0000169
170=cut