Nils Diewald | 5d1ffb4 | 2014-05-21 17:45:34 +0000 | [diff] [blame] | 1 | package Korap; |
| 2 | use Mojo::Base 'Mojolicious'; |
| 3 | |
Nils Diewald | 7cad840 | 2014-07-08 17:06:56 +0000 | [diff] [blame^] | 4 | our $VERSION = '0.04'; |
| 5 | |
| 6 | # Start dev with |
| 7 | # morbo -w lib -w templates -w public/sass -w public/js script/korap |
Nils Diewald | 64bab25 | 2014-05-22 11:04:04 +0000 | [diff] [blame] | 8 | |
Nils Diewald | 002e8fb | 2014-06-22 14:27:01 +0000 | [diff] [blame] | 9 | # Start the application and register all routes and plugins |
Nils Diewald | 5d1ffb4 | 2014-05-21 17:45:34 +0000 | [diff] [blame] | 10 | sub startup { |
| 11 | my $self = shift; |
| 12 | |
Nils Diewald | 7cad840 | 2014-07-08 17:06:56 +0000 | [diff] [blame^] | 13 | $self->defaults(layout => 'default'); |
| 14 | |
Nils Diewald | 002e8fb | 2014-06-22 14:27:01 +0000 | [diff] [blame] | 15 | # Set secret for signed cookies |
Nils Diewald | 33e1555 | 2014-06-13 19:38:37 +0000 | [diff] [blame] | 16 | $self->secrets(['fmhsfjgfchgsdbfgshfxztsbt32477eb45veu4vubrghfgghbtv']); |
| 17 | |
Nils Diewald | 002e8fb | 2014-06-22 14:27:01 +0000 | [diff] [blame] | 18 | # Add additional plugin path |
Nils Diewald | 5d1ffb4 | 2014-05-21 17:45:34 +0000 | [diff] [blame] | 19 | push(@{$self->plugins->namespaces}, __PACKAGE__ . '::Plugin'); |
Nils Diewald | 002e8fb | 2014-06-22 14:27:01 +0000 | [diff] [blame] | 20 | |
| 21 | # Load plugins |
| 22 | foreach (qw/Config |
| 23 | CHI |
| 24 | TagHelpers::Pagination |
| 25 | Notifications |
| 26 | Number::Commify |
| 27 | KorapSearch |
| 28 | KorapInfo |
Nils Diewald | 7cad840 | 2014-07-08 17:06:56 +0000 | [diff] [blame^] | 29 | KorapTagHelpers |
| 30 | /) { |
Nils Diewald | 002e8fb | 2014-06-22 14:27:01 +0000 | [diff] [blame] | 31 | $self->plugin($_); |
| 32 | }; |
Nils Diewald | 2329e1d | 2014-06-12 16:07:57 +0000 | [diff] [blame] | 33 | |
Nils Diewald | 7cad840 | 2014-07-08 17:06:56 +0000 | [diff] [blame^] | 34 | $self->plugin(AssetPack => { |
| 35 | minify => 1 |
| 36 | }); |
| 37 | |
| 38 | $self->plugin('AssetPack::LibSass'); |
| 39 | |
| 40 | $self->asset( |
| 41 | 'korap.css' => ( |
| 42 | '/sass/style.scss', |
| 43 | '/sass/sidebar.scss', |
| 44 | '/sass/tutorial.scss', |
| 45 | '/sass/hint.scss', |
| 46 | '/sass/query.scss', |
| 47 | '/sass/table.scss', |
| 48 | '/sass/pagination.scss', |
| 49 | '/sass/kwic-4.0.scss', |
| 50 | '/css/media.css', |
| 51 | '/css/font-awesome.min.css', |
| 52 | '/css/highlight.css' |
| 53 | ) |
| 54 | ); |
| 55 | |
| 56 | $self->asset( |
| 57 | 'korap.js' => ( |
| 58 | '/js/jquery-2.0.0.min.js', |
| 59 | '/js/translateTable.js', |
| 60 | '/js/hint.js', |
| 61 | '/js/highlight.pack.js' |
| 62 | ) |
| 63 | ); |
Nils Diewald | 4af3f0b | 2014-06-25 01:43:17 +0000 | [diff] [blame] | 64 | |
Nils Diewald | 2329e1d | 2014-06-12 16:07:57 +0000 | [diff] [blame] | 65 | $self->helper( |
| 66 | date_format => sub { |
| 67 | my ($c, $date) = @_; |
| 68 | return $date; |
| 69 | } |
| 70 | ); |
| 71 | |
Nils Diewald | 64bab25 | 2014-05-22 11:04:04 +0000 | [diff] [blame] | 72 | # Routes |
Nils Diewald | 5d1ffb4 | 2014-05-21 17:45:34 +0000 | [diff] [blame] | 73 | my $r = $self->routes; |
| 74 | |
Nils Diewald | 002e8fb | 2014-06-22 14:27:01 +0000 | [diff] [blame] | 75 | # Base search route |
Nils Diewald | b22abdf | 2014-06-18 22:57:50 +0000 | [diff] [blame] | 76 | $r->get('/')->to('search#remote')->name('index'); |
Nils Diewald | 33e1555 | 2014-06-13 19:38:37 +0000 | [diff] [blame] | 77 | |
Nils Diewald | 002e8fb | 2014-06-22 14:27:01 +0000 | [diff] [blame] | 78 | # Tutorial data |
| 79 | $r->get('/tutorial/(*tutorial)', { tutorial => 'start' }) |
| 80 | ->to('tutorial#page')->name('tutorial'); |
Nils Diewald | 2329e1d | 2014-06-12 16:07:57 +0000 | [diff] [blame] | 81 | |
Nils Diewald | 002e8fb | 2014-06-22 14:27:01 +0000 | [diff] [blame] | 82 | # Collection data |
Nils Diewald | 7cad840 | 2014-07-08 17:06:56 +0000 | [diff] [blame^] | 83 | my $collection = $r->bridge('/collection'); |
| 84 | $collection->to('info#about_collection'); |
| 85 | my $collection_id = $collection->bridge('/:collection_id'); |
| 86 | # stats |
| 87 | # $collection_id->; |
| 88 | $collection_id->search; |
Nils Diewald | 1eba657 | 2014-06-17 19:49:53 +0000 | [diff] [blame] | 89 | |
Nils Diewald | 002e8fb | 2014-06-22 14:27:01 +0000 | [diff] [blame] | 90 | # Corpus data |
Nils Diewald | 7cad840 | 2014-07-08 17:06:56 +0000 | [diff] [blame^] | 91 | my $corpus_res = $r->route('/corpus'); |
| 92 | my $corpus = $corpus_res->route('/:corpus_id'); |
| 93 | # Todo: Stats |
| 94 | $corpus->search->name('search_corpus'); |
| 95 | my $doc = $corpus->route('/#doc_id'); |
| 96 | $doc->search->name('search_document'); |
| 97 | |
| 98 | # Match data |
| 99 | my $match = $doc->route('/:match_id'); |
| 100 | $match->route->to('info#about_match')->name('match'); |
| 101 | my $match_layer = $match->route('/:layer'); |
| 102 | $match_layer->route->to('info#about_match'); |
| 103 | $match_layer->route('/:foundry')->to('info#about_match'); |
Nils Diewald | 1eba657 | 2014-06-17 19:49:53 +0000 | [diff] [blame] | 104 | |
Nils Diewald | 002e8fb | 2014-06-22 14:27:01 +0000 | [diff] [blame] | 105 | # Utilities |
Nils Diewald | 7cad840 | 2014-07-08 17:06:56 +0000 | [diff] [blame^] | 106 | # $r->get('/util/query')->to('search#query'); |
Nils Diewald | 64bab25 | 2014-05-22 11:04:04 +0000 | [diff] [blame] | 107 | }; |
| 108 | |
Nils Diewald | 5d1ffb4 | 2014-05-21 17:45:34 +0000 | [diff] [blame] | 109 | |
| 110 | 1; |