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