Nils Diewald | 5d1ffb4 | 2014-05-21 17:45:34 +0000 | [diff] [blame] | 1 | package Korap; |
| 2 | use Mojo::Base 'Mojolicious'; |
| 3 | |
Nils Diewald | 64bab25 | 2014-05-22 11:04:04 +0000 | [diff] [blame] | 4 | our $VERSION = '0.01'; |
| 5 | |
Nils Diewald | 5d1ffb4 | 2014-05-21 17:45:34 +0000 | [diff] [blame] | 6 | # This method will run once at server start |
| 7 | sub startup { |
| 8 | my $self = shift; |
| 9 | |
Nils Diewald | 33e1555 | 2014-06-13 19:38:37 +0000 | [diff] [blame^] | 10 | $self->secrets(['fmhsfjgfchgsdbfgshfxztsbt32477eb45veu4vubrghfgghbtv']); |
| 11 | |
Nils Diewald | 5d1ffb4 | 2014-05-21 17:45:34 +0000 | [diff] [blame] | 12 | $self->plugin('Config'); |
Nils Diewald | 2329e1d | 2014-06-12 16:07:57 +0000 | [diff] [blame] | 13 | $self->plugin('CHI'); |
Nils Diewald | 02df991 | 2014-06-03 16:08:07 +0000 | [diff] [blame] | 14 | $self->plugin('TagHelpers::Pagination' => { |
| 15 | prev => '<span><i class="fa fa-caret-left"></i></span>', |
| 16 | next => '<span><i class="fa fa-caret-right"></i></span>', |
Nils Diewald | 2329e1d | 2014-06-12 16:07:57 +0000 | [diff] [blame] | 17 | ellipsis => '<span><i class="fa fa-ellipsis-h"></i></span>', |
Nils Diewald | 02df991 | 2014-06-03 16:08:07 +0000 | [diff] [blame] | 18 | separator => '', |
| 19 | current => '<span>{current}</span>', |
| 20 | page => '<span>{page}</span>' |
| 21 | }); |
Nils Diewald | dd2d4e8 | 2014-05-31 17:08:33 +0000 | [diff] [blame] | 22 | $self->plugin('Notifications'); |
| 23 | $self->plugin('Number::Commify'); |
Nils Diewald | 5d1ffb4 | 2014-05-21 17:45:34 +0000 | [diff] [blame] | 24 | push(@{$self->plugins->namespaces}, __PACKAGE__ . '::Plugin'); |
| 25 | $self->plugin('KorapSearch'); |
Nils Diewald | 2329e1d | 2014-06-12 16:07:57 +0000 | [diff] [blame] | 26 | $self->plugin('KorapInfo'); |
| 27 | $self->plugin('KorapTagHelpers'); |
| 28 | |
| 29 | $self->helper( |
| 30 | date_format => sub { |
| 31 | my ($c, $date) = @_; |
| 32 | return $date; |
| 33 | } |
| 34 | ); |
| 35 | |
Nils Diewald | 64bab25 | 2014-05-22 11:04:04 +0000 | [diff] [blame] | 36 | # Routes |
Nils Diewald | 5d1ffb4 | 2014-05-21 17:45:34 +0000 | [diff] [blame] | 37 | my $r = $self->routes; |
| 38 | |
Nils Diewald | dd2d4e8 | 2014-05-31 17:08:33 +0000 | [diff] [blame] | 39 | # Create search endpoint |
Nils Diewald | 5d1ffb4 | 2014-05-21 17:45:34 +0000 | [diff] [blame] | 40 | $r->add_shortcut( |
| 41 | search => sub { |
Nils Diewald | 33e1555 | 2014-06-13 19:38:37 +0000 | [diff] [blame^] | 42 | shift->route('/search')->to('search#remote') |
Nils Diewald | 5d1ffb4 | 2014-05-21 17:45:34 +0000 | [diff] [blame] | 43 | } |
| 44 | ); |
| 45 | |
Nils Diewald | 64bab25 | 2014-05-22 11:04:04 +0000 | [diff] [blame] | 46 | $r->get('/')->to( |
| 47 | cb => sub { |
| 48 | my $c = shift; |
Nils Diewald | dd2d4e8 | 2014-05-31 17:08:33 +0000 | [diff] [blame] | 49 | $c->render( |
| 50 | text => |
| 51 | 'Go to '. |
| 52 | $c->link_to('search', '/collection/search')); |
Nils Diewald | 64bab25 | 2014-05-22 11:04:04 +0000 | [diff] [blame] | 53 | } |
| 54 | ); |
| 55 | |
Nils Diewald | 33e1555 | 2014-06-13 19:38:37 +0000 | [diff] [blame^] | 56 | |
| 57 | |
| 58 | $r->get('/util/query')->to('search#query'); |
| 59 | |
Nils Diewald | 2329e1d | 2014-06-12 16:07:57 +0000 | [diff] [blame] | 60 | # Tutorial |
| 61 | $r->get('/tutorial')->to('tutorial#page')->name('tutorial'); |
| 62 | $r->get('/tutorial/(*tutorial)')->to('tutorial#page'); |
| 63 | |
Nils Diewald | 33e1555 | 2014-06-13 19:38:37 +0000 | [diff] [blame^] | 64 | my $res = $r->route('/:resource', resource => [qw/collection corpus/]); |
| 65 | $res->to('search#info'); |
| 66 | $res->search; |
| 67 | $res->route('/:corpus_id')->search; |
| 68 | # $r->get( |
| 69 | # '/:resource/:corpus_id/#doc_id/#match_id', |
| 70 | # resource => [qw/collection corpus/])->to('search#match')->name('match'); |
| 71 | # /matchInfo?id=...&f=&l=&spans |
Nils Diewald | 64bab25 | 2014-05-22 11:04:04 +0000 | [diff] [blame] | 72 | }; |
| 73 | |
Nils Diewald | 5d1ffb4 | 2014-05-21 17:45:34 +0000 | [diff] [blame] | 74 | |
| 75 | 1; |
Nils Diewald | 33e1555 | 2014-06-13 19:38:37 +0000 | [diff] [blame^] | 76 | |
| 77 | __END__ |
| 78 | |
| 79 | # TODO: Write search snippet |