| Nils Diewald | 2fe12e1 | 2015-03-06 16:47:06 +0000 | [diff] [blame] | 1 | package Kalamar; | 
| Nils Diewald | 5d1ffb4 | 2014-05-21 17:45:34 +0000 | [diff] [blame] | 2 | use Mojo::Base 'Mojolicious'; | 
| Nils Diewald | e2c8381 | 2014-11-11 21:13:18 +0000 | [diff] [blame] | 3 | use Mojo::ByteStream 'b'; | 
| Akron | c7656e9 | 2018-08-30 13:33:25 +0200 | [diff] [blame] | 4 | use Mojo::URL; | 
| Akron | f65ad6c | 2017-02-01 14:36:38 +0100 | [diff] [blame] | 5 | use Mojo::File; | 
| Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 6 | use Mojo::JSON 'decode_json'; | 
| Akron | 0c4cd22 | 2019-07-19 16:33:34 +0200 | [diff] [blame] | 7 | use Mojo::Util qw/url_escape deprecated slugify/; | 
| Akron | 4c33c62 | 2018-11-12 13:43:27 +0100 | [diff] [blame] | 8 | use List::Util 'none'; | 
| Nils Diewald | 5d1ffb4 | 2014-05-21 17:45:34 +0000 | [diff] [blame] | 9 |  | 
| Nils Diewald | 709f52f | 2015-05-21 18:32:58 +0000 | [diff] [blame] | 10 | # Minor version - may be patched from package.json | 
| Akron | 5ea1a1a | 2020-01-20 10:36:51 +0100 | [diff] [blame] | 11 | our $VERSION = '0.38'; | 
| Akron | c7656e9 | 2018-08-30 13:33:25 +0200 | [diff] [blame] | 12 |  | 
|  | 13 | # Supported version of Backend API | 
|  | 14 | our $API_VERSION = '1.0'; | 
| Nils Diewald | 7cad840 | 2014-07-08 17:06:56 +0000 | [diff] [blame] | 15 |  | 
| Nils Diewald | 7148c6f | 2015-05-04 15:07:53 +0000 | [diff] [blame] | 16 | # TODO: The FAQ-Page has a contact form for new questions | 
| Nils Diewald | 709f52f | 2015-05-21 18:32:58 +0000 | [diff] [blame] | 17 | # TODO: Embed query serialization | 
|  | 18 | # TODO: Embed collection statistics | 
|  | 19 | # TODO: Implement tab opener for matches and the tutorial | 
| Nils Diewald | 709f52f | 2015-05-21 18:32:58 +0000 | [diff] [blame] | 20 | # TODO: Implement a "projects" system | 
| Nils Diewald | 7148c6f | 2015-05-04 15:07:53 +0000 | [diff] [blame] | 21 |  | 
| Nils Diewald | 002e8fb | 2014-06-22 14:27:01 +0000 | [diff] [blame] | 22 | # Start the application and register all routes and plugins | 
| Nils Diewald | 5d1ffb4 | 2014-05-21 17:45:34 +0000 | [diff] [blame] | 23 | sub startup { | 
|  | 24 | my $self = shift; | 
|  | 25 |  | 
| Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 26 | # Set version based on package file | 
| Nils Diewald | 709f52f | 2015-05-21 18:32:58 +0000 | [diff] [blame] | 27 | # This may introduce a SemVer patch number | 
| Akron | f65ad6c | 2017-02-01 14:36:38 +0100 | [diff] [blame] | 28 | my $pkg_path = $self->home->child('package.json'); | 
|  | 29 | if (-e $pkg_path->to_abs) { | 
|  | 30 | my $pkg = $pkg_path->slurp; | 
|  | 31 | $Kalamar::VERSION = decode_json($pkg)->{version}; | 
|  | 32 | }; | 
| Nils Diewald | a944fab | 2015-04-08 21:02:04 +0000 | [diff] [blame] | 33 |  | 
| Akron | 656c5d9 | 2015-11-13 21:17:03 +0100 | [diff] [blame] | 34 | # Lift maximum template cache | 
|  | 35 | $self->renderer->cache->max_keys(200); | 
|  | 36 |  | 
| Nils Diewald | ab4d3ca | 2015-04-17 01:48:43 +0000 | [diff] [blame] | 37 | # Add additional plugin path | 
|  | 38 | push(@{$self->plugins->namespaces}, __PACKAGE__ . '::Plugin'); | 
|  | 39 |  | 
| Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 40 | # Set secrets for signed cookies | 
| Akron | f65ad6c | 2017-02-01 14:36:38 +0100 | [diff] [blame] | 41 | if (-e (my $secret = $self->home->child('kalamar.secret'))) { | 
| Nils Diewald | a79b268 | 2015-05-18 18:34:06 +0000 | [diff] [blame] | 42 |  | 
|  | 43 | # Load file and split lines for multiple secrets | 
| Akron | f65ad6c | 2017-02-01 14:36:38 +0100 | [diff] [blame] | 44 | $self->secrets([b($secret->slurp)->split("\n")]); | 
| Nils Diewald | 4347ee9 | 2015-05-04 20:32:48 +0000 | [diff] [blame] | 45 | } | 
| Nils Diewald | 709f52f | 2015-05-21 18:32:58 +0000 | [diff] [blame] | 46 |  | 
|  | 47 | # File not found ... | 
|  | 48 | # Kalamar needs secrets in a file to be easily deployable | 
|  | 49 | # and publishable at the same time. | 
| Nils Diewald | 4347ee9 | 2015-05-04 20:32:48 +0000 | [diff] [blame] | 50 | else { | 
|  | 51 | $self->log->warn('Please create a kalamar.secret file'); | 
| Nils Diewald | 1940214 | 2015-04-30 15:44:52 +0000 | [diff] [blame] | 52 | }; | 
| Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 53 |  | 
| Akron | cba9f32 | 2016-02-29 23:12:45 +0100 | [diff] [blame] | 54 | # Configuration framework | 
| Akron | 09a567c | 2016-04-11 22:49:20 +0300 | [diff] [blame] | 55 | $self->plugin('Config'); | 
| Nils Diewald | 709f52f | 2015-05-21 18:32:58 +0000 | [diff] [blame] | 56 |  | 
| Akron | 741b2b1 | 2017-04-13 22:15:59 +0200 | [diff] [blame] | 57 | $self->log->info('Mode is ' . $self->mode); | 
|  | 58 |  | 
| Akron | 63d963b | 2019-07-05 15:35:51 +0200 | [diff] [blame] | 59 | # Get configuration | 
| Akron | 47787ca | 2017-05-17 16:00:10 +0200 | [diff] [blame] | 60 | my $conf = $self->config('Kalamar'); | 
| Akron | 63d963b | 2019-07-05 15:35:51 +0200 | [diff] [blame] | 61 | unless ($conf) { | 
|  | 62 | $self->config(Kalamar => {}); | 
|  | 63 | $conf = $self->config('Kalamar'); | 
|  | 64 | }; | 
|  | 65 |  | 
|  | 66 | # Check for API endpoint and set the endpoint accordingly | 
|  | 67 | if ($conf->{api}) { | 
|  | 68 |  | 
|  | 69 | # The api endpoint should be defined as a separated path | 
|  | 70 | # and version string | 
|  | 71 | $self->log->warn( | 
|  | 72 | 'Kalamar.api is no longer supported in configurations '. | 
|  | 73 | 'in favor of Kalamar.api_path' | 
|  | 74 | ); | 
|  | 75 | }; | 
|  | 76 |  | 
|  | 77 | unless ($conf->{api_path} || $ENV{KALAMAR_API}) { | 
|  | 78 | $self->log->warn('Kalamar-api_path not defined in configuration'); | 
|  | 79 | }; | 
|  | 80 |  | 
| Akron | 0c4cd22 | 2019-07-19 16:33:34 +0200 | [diff] [blame] | 81 | $self->sessions->cookie_name('kalamar'); | 
|  | 82 |  | 
|  | 83 | # Require HTTPS | 
|  | 84 | if ($conf->{https_only}) { | 
|  | 85 |  | 
|  | 86 | # ... for cookie transport | 
|  | 87 | $self->sessions->secure(1); | 
|  | 88 | }; | 
|  | 89 |  | 
|  | 90 | # Run the app from a subdirectory | 
| Akron | 63d963b | 2019-07-05 15:35:51 +0200 | [diff] [blame] | 91 | if ($conf->{proxy_prefix}) { | 
| Akron | 47787ca | 2017-05-17 16:00:10 +0200 | [diff] [blame] | 92 |  | 
| Akron | f3d856c | 2017-06-21 17:07:40 +0200 | [diff] [blame] | 93 | for ($self->sessions) { | 
| Akron | 1a39472 | 2017-06-21 16:25:30 +0200 | [diff] [blame] | 94 | $_->cookie_path($conf->{proxy_prefix}); | 
| Akron | 0c4cd22 | 2019-07-19 16:33:34 +0200 | [diff] [blame] | 95 | $_->cookie_name('kalamar-' . slugify($conf->{proxy_prefix})); | 
| Akron | 1a39472 | 2017-06-21 16:25:30 +0200 | [diff] [blame] | 96 | }; | 
|  | 97 |  | 
| Akron | 47787ca | 2017-05-17 16:00:10 +0200 | [diff] [blame] | 98 | # Set prefix in stash | 
|  | 99 | $self->defaults(prefix => $conf->{proxy_prefix}); | 
|  | 100 |  | 
|  | 101 | # Create base path | 
|  | 102 | $self->hook( | 
|  | 103 | before_dispatch => sub { | 
|  | 104 | shift->req->url->base->path($conf->{proxy_prefix} . '/'); | 
|  | 105 | }); | 
|  | 106 | }; | 
|  | 107 |  | 
| Akron | 90be03b | 2020-02-03 16:13:37 +0100 | [diff] [blame] | 108 | $conf->{proxy_host} //= 1; | 
|  | 109 |  | 
|  | 110 | # Take proxy host | 
|  | 111 | if ($conf->{proxy_host}) { | 
|  | 112 | $self->hook( | 
|  | 113 | before_dispatch => sub { | 
|  | 114 | my $c = shift; | 
|  | 115 | if (my $host = $c->req->headers->header('X-Forwarded-Host')) { | 
|  | 116 | foreach ($c->req->url->base) { | 
|  | 117 | $_->host($host); | 
|  | 118 | $_->scheme(undef); | 
|  | 119 | $_->port(undef); | 
|  | 120 | }; | 
|  | 121 | }; | 
|  | 122 | } | 
|  | 123 | ); | 
|  | 124 | }; | 
|  | 125 |  | 
| Akron | c7656e9 | 2018-08-30 13:33:25 +0200 | [diff] [blame] | 126 | # API is not yet set - define | 
| Akron | 63d963b | 2019-07-05 15:35:51 +0200 | [diff] [blame] | 127 | $conf->{api_path} //= $ENV{KALAMAR_API}; | 
|  | 128 | $conf->{api_version} //= $API_VERSION; | 
| Akron | c7656e9 | 2018-08-30 13:33:25 +0200 | [diff] [blame] | 129 |  | 
| Akron | 4036d54 | 2018-02-12 13:17:09 +0100 | [diff] [blame] | 130 | # Add development path | 
| Akron | 0e1ed24 | 2018-10-11 13:22:00 +0200 | [diff] [blame] | 131 | if ($self->mode eq 'development') { | 
| Akron | 4036d54 | 2018-02-12 13:17:09 +0100 | [diff] [blame] | 132 | push @{$self->static->paths}, 'dev'; | 
| Akron | be9d5b3 | 2017-04-05 20:48:24 +0200 | [diff] [blame] | 133 | }; | 
|  | 134 |  | 
| Akron | 23ab047 | 2019-12-17 16:55:55 +0100 | [diff] [blame] | 135 | # Set proxy timeouts | 
|  | 136 | if ($conf->{proxy_inactivity_timeout}) { | 
|  | 137 | $self->ua->inactivity_timeout($conf->{proxy_inactivity_timeout}); | 
|  | 138 | }; | 
|  | 139 | if ($conf->{proxy_connect_timeout}) { | 
|  | 140 | $self->ua->connect_timeout($conf->{proxy_connect_timeout}); | 
|  | 141 | }; | 
|  | 142 |  | 
| Akron | 09a567c | 2016-04-11 22:49:20 +0300 | [diff] [blame] | 143 | # Client notifications | 
| Akron | 0504a18 | 2016-04-10 21:13:42 +0200 | [diff] [blame] | 144 | $self->plugin(Notifications => { | 
|  | 145 | 'Kalamar::Plugin::Notifications' => 1, | 
| Akron | 8ea8429 | 2018-10-24 13:41:52 +0200 | [diff] [blame] | 146 | JSON => 1, | 
|  | 147 | 'HTML' => 1 | 
| Akron | 0504a18 | 2016-04-10 21:13:42 +0200 | [diff] [blame] | 148 | }); | 
|  | 149 |  | 
| Akron | 09a567c | 2016-04-11 22:49:20 +0300 | [diff] [blame] | 150 | # Localization framework | 
|  | 151 | $self->plugin(Localize => { | 
| Akron | dbb448c | 2018-02-14 17:02:36 +0100 | [diff] [blame] | 152 | dict => { | 
|  | 153 | Q => { | 
|  | 154 | _ => sub { shift->config('Kalamar')->{'examplecorpus'} }, | 
|  | 155 | } | 
|  | 156 | }, | 
| Akron | a7cfd90 | 2017-12-21 19:28:36 +0100 | [diff] [blame] | 157 | resources => ['kalamar.dict', 'kalamar.queries.dict'] | 
| Akron | 09a567c | 2016-04-11 22:49:20 +0300 | [diff] [blame] | 158 | }); | 
|  | 159 |  | 
|  | 160 | # Pagination widget | 
|  | 161 | $self->plugin('TagHelpers::Pagination' => { | 
|  | 162 | prev      => '<span><span><</span></span>', | 
| Akron | 86e63a9 | 2019-02-27 17:35:04 +0100 | [diff] [blame] | 163 | next      => '<span><span>></span></span>', | 
| Akron | 09a567c | 2016-04-11 22:49:20 +0300 | [diff] [blame] | 164 | ellipsis  => '<a class="ellipsis"><span><span>...</span></span></a>', | 
|  | 165 | separator => '', | 
|  | 166 | current   => '<span>{current}</span>', | 
|  | 167 | page      => '<span>{page}</span>' | 
|  | 168 | }); | 
|  | 169 |  | 
| Nils Diewald | ab4d3ca | 2015-04-17 01:48:43 +0000 | [diff] [blame] | 170 | # Load plugins | 
| Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 171 | foreach ( | 
| Nils Diewald | c46003b | 2015-05-07 15:55:35 +0000 | [diff] [blame] | 172 | 'TagHelpers::MailToChiffre', # Obfuscate email addresses | 
| Akron | e8235be | 2016-06-27 11:02:18 +0200 | [diff] [blame] | 173 | 'KalamarHelpers',            # Specific Helpers for Kalamar | 
| Akron | 41a190a | 2019-10-16 18:01:02 +0200 | [diff] [blame] | 174 | 'KalamarPages',             # Page Helpers for Kalamar | 
| Akron | 7093b81 | 2018-10-19 17:28:21 +0200 | [diff] [blame] | 175 | 'KalamarErrors',             # Specific Errors for Kalamar | 
|  | 176 | 'KalamarUser',               # Specific Helpers for Kalamar Users | 
| Akron | 429aeda | 2018-03-19 16:02:29 +0100 | [diff] [blame] | 177 | 'ClientIP',                  # Get client IP from X-Forwarded-For | 
| Akron | 51757cb | 2018-05-16 13:10:08 +0200 | [diff] [blame] | 178 | 'ClosedRedirect',            # Redirect with OpenRedirect protection | 
| Akron | afeca25 | 2018-05-23 15:54:28 +0200 | [diff] [blame] | 179 | 'TagHelpers::ContentBlock',  # Flexible content blocks | 
| Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 180 | ) { | 
| Nils Diewald | ab4d3ca | 2015-04-17 01:48:43 +0000 | [diff] [blame] | 181 | $self->plugin($_); | 
|  | 182 | }; | 
|  | 183 |  | 
| Akron | 751e9e4 | 2019-03-13 09:54:55 +0100 | [diff] [blame] | 184 | my $serializer = 'JSON'; | 
|  | 185 |  | 
|  | 186 | if (my $chi = $self->config('CHI')) { | 
|  | 187 | if ($chi->{default}) { | 
|  | 188 | $chi->{default}->{serializer} = $serializer; | 
|  | 189 | }; | 
|  | 190 | if ($chi->{user}) { | 
|  | 191 | $chi->{user}->{serializer} = $serializer; | 
|  | 192 | }; | 
|  | 193 | }; | 
|  | 194 |  | 
| Akron | 05c6dd6 | 2018-10-11 17:05:06 +0200 | [diff] [blame] | 195 | # Global caching mechanism | 
|  | 196 | $self->plugin('CHI' => { | 
|  | 197 | default => { | 
|  | 198 | driver => 'Memory', | 
| Akron | 751e9e4 | 2019-03-13 09:54:55 +0100 | [diff] [blame] | 199 | global => 1, | 
|  | 200 | serializer => $serializer | 
| Akron | 05c6dd6 | 2018-10-11 17:05:06 +0200 | [diff] [blame] | 201 | }, | 
|  | 202 | user => { | 
|  | 203 | driver => 'Memory', | 
| Akron | 751e9e4 | 2019-03-13 09:54:55 +0100 | [diff] [blame] | 204 | global => 1, | 
|  | 205 | serializer => $serializer | 
| Akron | 05c6dd6 | 2018-10-11 17:05:06 +0200 | [diff] [blame] | 206 | } | 
|  | 207 | }); | 
| Nils Diewald | 709f52f | 2015-05-21 18:32:58 +0000 | [diff] [blame] | 208 |  | 
| Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 209 | # Configure mail exception | 
| Akron | 40cc1d8 | 2017-05-10 17:58:16 +0200 | [diff] [blame] | 210 | if ($self->config('MailException')) { | 
|  | 211 | $self->plugin('MailException' => $self->config('MailException')); | 
|  | 212 | }; | 
| Nils Diewald | 709f52f | 2015-05-21 18:32:58 +0000 | [diff] [blame] | 213 |  | 
| Akron | cdfd9d5 | 2019-07-23 11:35:00 +0200 | [diff] [blame] | 214 | # Load further plugins, | 
|  | 215 | # that can override core functions, | 
|  | 216 | # therefore order may be of importance | 
| Akron | 4c33c62 | 2018-11-12 13:43:27 +0100 | [diff] [blame] | 217 | if (exists $conf->{'plugins'}) { | 
|  | 218 | foreach (@{$conf->{'plugins'}}) { | 
|  | 219 | $self->plugin('Kalamar::Plugin::' . $_); | 
|  | 220 | }; | 
|  | 221 | }; | 
|  | 222 |  | 
| Akron | 864c293 | 2018-11-16 17:18:55 +0100 | [diff] [blame] | 223 | # Deprecated Legacy code | 
| Akron | 4c33c62 | 2018-11-12 13:43:27 +0100 | [diff] [blame] | 224 | if ($self->config('Piwik') && | 
|  | 225 | none { $_ eq 'Piwik' } @{$conf->{plugins} // []}) { | 
| Akron | 864c293 | 2018-11-16 17:18:55 +0100 | [diff] [blame] | 226 |  | 
|  | 227 | # 2018-11-12 | 
|  | 228 | deprecated 'Piwik is no longer considered a mandatory plugin'; | 
|  | 229 | $self->plugin('Kalamar::Plugin::Piwik'); | 
|  | 230 | }; | 
|  | 231 |  | 
|  | 232 | # Deprecated Legacy code | 
|  | 233 | if ($self->config('Kalamar')->{auth_support} && | 
|  | 234 | none { $_ eq 'Auth' } @{$conf->{plugins} // []}) { | 
|  | 235 |  | 
|  | 236 | # 2018-11-16 | 
|  | 237 | deprecated 'auth_support configuration is deprecated in favor of Plugin loading'; | 
|  | 238 | $self->plugin('Kalamar::Plugin::Auth') | 
| Akron | 4c33c62 | 2018-11-12 13:43:27 +0100 | [diff] [blame] | 239 | }; | 
|  | 240 |  | 
| Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 241 | # Configure documentation navigation | 
| Akron | d512ea6 | 2019-10-24 15:50:04 +0200 | [diff] [blame] | 242 | my $doc_navi = Mojo::File->new($self->home->child('templates','doc','navigation.json'))->slurp; | 
|  | 243 | $doc_navi = $doc_navi ? decode_json($doc_navi) : []; | 
| Akron | 1b1a271 | 2018-12-21 14:59:05 +0100 | [diff] [blame] | 244 |  | 
| Akron | f7ec444 | 2019-10-27 20:01:05 +0100 | [diff] [blame] | 245 | # TODO: | 
|  | 246 | #   Use navi->add() | 
| Akron | 1b1a271 | 2018-12-21 14:59:05 +0100 | [diff] [blame] | 247 | if ($conf->{navi_ext}) { | 
| Akron | d512ea6 | 2019-10-24 15:50:04 +0200 | [diff] [blame] | 248 | push @$doc_navi, @{$conf->{navi_ext}}; | 
| Akron | 1b1a271 | 2018-12-21 14:59:05 +0100 | [diff] [blame] | 249 | }; | 
|  | 250 |  | 
| Akron | f7ec444 | 2019-10-27 20:01:05 +0100 | [diff] [blame] | 251 | # TODO: | 
|  | 252 | #   Remove navi entry | 
| Akron | d512ea6 | 2019-10-24 15:50:04 +0200 | [diff] [blame] | 253 | $self->config(doc_navi => $doc_navi); | 
| Nils Diewald | fccfbcb | 2015-04-29 20:48:19 +0000 | [diff] [blame] | 254 |  | 
| Akron | f7ec444 | 2019-10-27 20:01:05 +0100 | [diff] [blame] | 255 | $self->navi->set(doc => $doc_navi); | 
|  | 256 |  | 
| Akron | 63d963b | 2019-07-05 15:35:51 +0200 | [diff] [blame] | 257 | $self->log->info('API expected at ' . $self->korap->api); | 
| Nils Diewald | 709f52f | 2015-05-21 18:32:58 +0000 | [diff] [blame] | 258 |  | 
| Akron | 3cd391e | 2017-03-29 23:42:54 +0200 | [diff] [blame] | 259 | # Establish routes with authentification | 
| Akron | 7d75ee3 | 2017-05-02 13:42:41 +0200 | [diff] [blame] | 260 | my $r = $self->routes; | 
| Akron | 3cd391e | 2017-03-29 23:42:54 +0200 | [diff] [blame] | 261 |  | 
| Akron | afeca25 | 2018-05-23 15:54:28 +0200 | [diff] [blame] | 262 | # Set footer value | 
| Akron | ef6d5f1 | 2018-05-28 17:54:58 +0200 | [diff] [blame] | 263 | $self->content_block(footer => { | 
| Akron | 3cfa26d | 2019-10-24 15:17:34 +0200 | [diff] [blame] | 264 | inline => '<%= embedded_link_to "doc", "V ' . $Kalamar::VERSION . '", "korap", "kalamar" %>', | 
| Akron | afeca25 | 2018-05-23 15:54:28 +0200 | [diff] [blame] | 265 | position => 100 | 
| Akron | ef6d5f1 | 2018-05-28 17:54:58 +0200 | [diff] [blame] | 266 | }); | 
| Akron | afeca25 | 2018-05-23 15:54:28 +0200 | [diff] [blame] | 267 |  | 
| Nils Diewald | a79b268 | 2015-05-18 18:34:06 +0000 | [diff] [blame] | 268 | # Base query route | 
| Akron | fb6d87d | 2018-10-24 18:10:20 +0200 | [diff] [blame] | 269 | $r->get('/')->to('search#query')->name('index'); | 
| Nils Diewald | ab4d3ca | 2015-04-17 01:48:43 +0000 | [diff] [blame] | 270 |  | 
| Nils Diewald | a79b268 | 2015-05-18 18:34:06 +0000 | [diff] [blame] | 271 | # Documentation routes | 
| Nils Diewald | 7148c6f | 2015-05-04 15:07:53 +0000 | [diff] [blame] | 272 | $r->get('/doc')->to('documentation#page', page => 'korap')->name('doc_start'); | 
| Akron | 254fe21 | 2019-10-24 14:33:28 +0200 | [diff] [blame] | 273 | $r->get('/doc/:scope/:page')->to('documentation#page', scope => undef)->name('doc'); | 
| Nils Diewald | ab4d3ca | 2015-04-17 01:48:43 +0000 | [diff] [blame] | 274 |  | 
| Akron | 5999212 | 2019-10-29 11:28:45 +0100 | [diff] [blame] | 275 | # Settings routes | 
|  | 276 | if ($self->navi->exists('settings')) { | 
|  | 277 | $r->get('/settings')->to( | 
|  | 278 | cb => sub { | 
|  | 279 | return shift->render('settings') | 
|  | 280 | } | 
|  | 281 | )->name('settings_start'); | 
|  | 282 | $r->get('/settings/:scope/:page')->to( | 
|  | 283 | scope => undef, | 
|  | 284 | page => undef | 
|  | 285 | )->name('settings'); | 
|  | 286 | }; | 
| Akron | f7ec444 | 2019-10-27 20:01:05 +0100 | [diff] [blame] | 287 |  | 
| Nils Diewald | c46003b | 2015-05-07 15:55:35 +0000 | [diff] [blame] | 288 | # Contact route | 
|  | 289 | $r->get('/contact')->to('documentation#contact'); | 
|  | 290 | $r->get('/contact')->mail_to_chiffre('documentation#contact'); | 
|  | 291 |  | 
| Akron | 63d963b | 2019-07-05 15:35:51 +0200 | [diff] [blame] | 292 | # API proxy route | 
| Akron | b7876a8 | 2019-07-18 13:09:00 +0200 | [diff] [blame] | 293 | if ($conf->{experimental_proxy}) { | 
| Akron | 07d8de6 | 2020-02-04 17:45:40 +0100 | [diff] [blame] | 294 | $r->any('/api/v#apiv' => [apiv => ['1.0']])->name('proxy')->to('Proxy#pass'); | 
| Akron | b7876a8 | 2019-07-18 13:09:00 +0200 | [diff] [blame] | 295 | $r->any('/api/v#apiv/*path' => [apiv => ['1.0']])->to('Proxy#pass'); | 
|  | 296 | } | 
| Akron | 63d963b | 2019-07-05 15:35:51 +0200 | [diff] [blame] | 297 |  | 
| Nils Diewald | 7148c6f | 2015-05-04 15:07:53 +0000 | [diff] [blame] | 298 | # Match route | 
| Akron | 80a84b2 | 2018-10-24 17:44:24 +0200 | [diff] [blame] | 299 | # Corpus route | 
| Akron | fb6d87d | 2018-10-24 18:10:20 +0200 | [diff] [blame] | 300 | my $corpus = $r->get('/corpus')->to('search#corpus_info')->name('corpus'); | 
| Akron | 80a84b2 | 2018-10-24 17:44:24 +0200 | [diff] [blame] | 301 | my $doc    = $r->route('/corpus/:corpus_id/:doc_id'); | 
| Akron | fb6d87d | 2018-10-24 18:10:20 +0200 | [diff] [blame] | 302 | my $text   = $doc->get('/:text_id')->to('search#text_info')->name('text'); | 
|  | 303 | my $match  = $doc->get('/:text_id/:match_id')->to('search#match_info')->name('match'); | 
| Nils Diewald | 996aa55 | 2014-12-02 03:26:44 +0000 | [diff] [blame] | 304 | }; | 
|  | 305 |  | 
|  | 306 |  | 
|  | 307 | 1; | 
|  | 308 |  | 
|  | 309 |  | 
|  | 310 | __END__ | 
| Nils Diewald | a898dac | 2015-05-06 21:04:16 +0000 | [diff] [blame] | 311 |  | 
|  | 312 | =pod | 
|  | 313 |  | 
| Nils Diewald | eb5f307 | 2015-05-20 09:32:42 +0000 | [diff] [blame] | 314 | =encoding utf8 | 
| Nils Diewald | a898dac | 2015-05-06 21:04:16 +0000 | [diff] [blame] | 315 |  | 
| Nils Diewald | eb5f307 | 2015-05-20 09:32:42 +0000 | [diff] [blame] | 316 | =head1 NAME | 
|  | 317 |  | 
|  | 318 | Kalamar | 
| Nils Diewald | a0defc4 | 2015-05-07 23:54:17 +0000 | [diff] [blame] | 319 |  | 
|  | 320 |  | 
| Nils Diewald | eb5f307 | 2015-05-20 09:32:42 +0000 | [diff] [blame] | 321 | =head1 DESCRIPTION | 
| Nils Diewald | a0defc4 | 2015-05-07 23:54:17 +0000 | [diff] [blame] | 322 |  | 
| Nils Diewald | eb5f307 | 2015-05-20 09:32:42 +0000 | [diff] [blame] | 323 | L<Kalamar> is a L<Mojolicious|http://mojolicio.us/> based user interface | 
|  | 324 | frontend for the L<KorAP Corpus Analysis Platform|http://korap.ids-mannheim.de/>. | 
|  | 325 |  | 
| Akron | 456abd9 | 2015-06-02 15:07:21 +0200 | [diff] [blame] | 326 | B<See the README for further information!> | 
| Nils Diewald | eb5f307 | 2015-05-20 09:32:42 +0000 | [diff] [blame] | 327 |  | 
| Akron | 456abd9 | 2015-06-02 15:07:21 +0200 | [diff] [blame] | 328 | =head2 COPYRIGHT AND LICENSE | 
| Nils Diewald | a748b0e | 2015-05-19 22:54:06 +0000 | [diff] [blame] | 329 |  | 
| Akron | 5999212 | 2019-10-29 11:28:45 +0100 | [diff] [blame] | 330 | Copyright (C) 2015-2020, L<IDS Mannheim|http://www.ids-mannheim.de/> | 
| Nils Diewald | a748b0e | 2015-05-19 22:54:06 +0000 | [diff] [blame] | 331 | Author: L<Nils Diewald|http://nils-diewald.de/> | 
|  | 332 |  | 
|  | 333 | Kalamar is developed as part of the L<KorAP|http://korap.ids-mannheim.de/> | 
|  | 334 | Corpus Analysis Platform at the | 
| Akron | a2d92de | 2019-02-27 15:51:07 +0100 | [diff] [blame] | 335 | L<Leibniz Institute for the German Language (IDS)|http://ids-mannheim.de/>, | 
| Nils Diewald | a748b0e | 2015-05-19 22:54:06 +0000 | [diff] [blame] | 336 | member of the | 
| hebasta | 21b7baf | 2019-12-16 10:32:43 +0100 | [diff] [blame] | 337 | L<Leibniz-Gemeinschaft|http://www.leibniz-gemeinschaft.de> | 
| Nils Diewald | a748b0e | 2015-05-19 22:54:06 +0000 | [diff] [blame] | 338 | and supported by the L<KobRA|http://www.kobra.tu-dortmund.de> project, | 
|  | 339 | funded by the | 
|  | 340 | L<Federal Ministry of Education and Research (BMBF)|http://www.bmbf.de/en/>. | 
|  | 341 |  | 
|  | 342 | Kalamar is free software published under the | 
| Akron | 456abd9 | 2015-06-02 15:07:21 +0200 | [diff] [blame] | 343 | L<BSD-2 License|https://raw.githubusercontent.com/KorAP/Kalamar/master/LICENSE>. | 
| Nils Diewald | a748b0e | 2015-05-19 22:54:06 +0000 | [diff] [blame] | 344 |  | 
|  | 345 | =cut |