[70] | 1 | package Bookmarks::Controller; |
---|
| 2 | |
---|
[59] | 3 | use Moose; |
---|
[5] | 4 | |
---|
| 5 | use Encode; |
---|
[70] | 6 | use HTTP::Date qw{time2str str2time}; |
---|
[5] | 7 | use JSON; |
---|
| 8 | use Bookmarks; |
---|
[88] | 9 | use Bookmarks::List; |
---|
[7] | 10 | use URI; |
---|
[59] | 11 | use Template; |
---|
[7] | 12 | |
---|
[61] | 13 | has dbname => ( |
---|
| 14 | is => 'ro', |
---|
| 15 | required => 1, |
---|
| 16 | ); |
---|
[59] | 17 | has bookmarks => ( |
---|
[61] | 18 | is => 'ro', |
---|
[59] | 19 | handles => [qw{get_bookmark}], |
---|
[61] | 20 | builder => '_build_bookmarks', |
---|
| 21 | lazy => 1, |
---|
[59] | 22 | ); |
---|
| 23 | has base_uri => ( |
---|
| 24 | is => 'ro', |
---|
| 25 | builder => '_build_base_uri', |
---|
| 26 | lazy => 1, |
---|
| 27 | ); |
---|
| 28 | has request => ( |
---|
[98] | 29 | is => 'rw', |
---|
[59] | 30 | ); |
---|
| 31 | |
---|
[61] | 32 | sub _build_bookmarks { |
---|
| 33 | my $self = shift; |
---|
| 34 | return Bookmarks->new({ |
---|
| 35 | dbname => $self->dbname, |
---|
| 36 | base_uri => $self->base_uri, |
---|
| 37 | }); |
---|
| 38 | } |
---|
| 39 | |
---|
[59] | 40 | sub _build_base_uri { |
---|
[5] | 41 | my $self = shift; |
---|
[59] | 42 | my $url = $self->request->base; |
---|
[41] | 43 | |
---|
[53] | 44 | $url .= '/' unless $url =~ m{/$}; |
---|
[59] | 45 | return URI->new($url); |
---|
[5] | 46 | } |
---|
| 47 | |
---|
[59] | 48 | sub find_or_new { |
---|
[5] | 49 | my $self = shift; |
---|
| 50 | |
---|
[59] | 51 | my $bookmark = $self->bookmarks->get_bookmark({ uri => $self->request->param('uri') }); |
---|
| 52 | if ($bookmark) { |
---|
| 53 | # redirect to the view of the existing bookmark |
---|
| 54 | return [301, [Location => $bookmark->bookmark_uri], []]; |
---|
| 55 | } else { |
---|
| 56 | # bookmark was not found; show the form to create a new bookmark |
---|
[100] | 57 | require File::Basename; |
---|
| 58 | my $template = Template->new({ INCLUDE_PATH => File::Basename::dirname($INC{'Bookmarks/Controller.pm'}) }); |
---|
[59] | 59 | $template->process( |
---|
| 60 | 'bookmark.tt', |
---|
[66] | 61 | { |
---|
| 62 | bookmark => { |
---|
| 63 | uri => $self->request->param('uri'), |
---|
| 64 | title => $self->request->param('title') || '', |
---|
| 65 | }, |
---|
[59] | 66 | }, |
---|
| 67 | \my $output, |
---|
| 68 | ); |
---|
| 69 | return [404, ['Content-Type' => 'text/html; charset=UTF-8'], [$output]]; |
---|
[5] | 70 | } |
---|
[59] | 71 | } |
---|
[5] | 72 | |
---|
[59] | 73 | sub list { |
---|
| 74 | my $self = shift; |
---|
| 75 | |
---|
[5] | 76 | # list all the bookmarks |
---|
[59] | 77 | my $mtime = $self->bookmarks->get_last_modified_time; |
---|
[57] | 78 | |
---|
[59] | 79 | my $format = $self->request->param('format') || 'html'; |
---|
[35] | 80 | |
---|
[59] | 81 | my @tags = grep { $_ ne '' } $self->request->param('tag'); |
---|
| 82 | my $query = $self->request->param('q'); |
---|
| 83 | my $limit = $self->request->param('limit'); |
---|
| 84 | my $offset = $self->request->param('offset'); |
---|
[68] | 85 | |
---|
[88] | 86 | my $list = Bookmarks::List->new({ |
---|
| 87 | bookmarks => $self->bookmarks, |
---|
| 88 | search => $self->bookmarks->search({ |
---|
| 89 | query => $query, |
---|
| 90 | tags => \@tags, |
---|
| 91 | limit => $limit, |
---|
| 92 | offset => $offset, |
---|
| 93 | }), |
---|
[13] | 94 | }); |
---|
[5] | 95 | |
---|
[68] | 96 | my $as_format = "as_$format"; |
---|
| 97 | if (!$list->meta->has_method($as_format)) { |
---|
| 98 | return [406, ['Content-Type' => 'text/plain; charset=UTF-8'], [qq{"$format" is not a supported format}]]; |
---|
[5] | 99 | } |
---|
[68] | 100 | return $list->$as_format; |
---|
[5] | 101 | } |
---|
| 102 | |
---|
[9] | 103 | sub feed { |
---|
| 104 | my $self = shift; |
---|
| 105 | |
---|
[59] | 106 | my $query = $self->request->param('q'); |
---|
| 107 | my @tags = grep { $_ ne '' } $self->request->param('tag'); |
---|
[31] | 108 | |
---|
[9] | 109 | # construct a feed from the most recent 12 bookmarks |
---|
[88] | 110 | my $list = Bookmarks::List->new({ |
---|
| 111 | bookmarks => $self->bookmarks, |
---|
| 112 | search => $self->bookmarks->search({ query => $query, tags => \@tags, limit => 12 }), |
---|
| 113 | }); |
---|
[68] | 114 | return $list->as_atom; |
---|
[9] | 115 | } |
---|
| 116 | |
---|
[62] | 117 | # returns 1 if there is an If-Modified-Since header and it is newer than the given $mtime |
---|
| 118 | # returns 0 if there is an If-Modified-Since header but the $mtime is newer |
---|
| 119 | # returns undef if there is no If-Modified-Since header |
---|
[67] | 120 | sub _request_is_newer_than { |
---|
[62] | 121 | my $self = shift; |
---|
| 122 | my $mtime = shift; |
---|
| 123 | |
---|
| 124 | # check If-Modified-Since header to return cache response |
---|
| 125 | if ($self->request->env->{HTTP_IF_MODIFIED_SINCE}) { |
---|
| 126 | my $cache_time = str2time($self->request->env->{HTTP_IF_MODIFIED_SINCE}); |
---|
| 127 | return $mtime <= $cache_time ? 1 : 0; |
---|
| 128 | } else { |
---|
| 129 | return; |
---|
| 130 | } |
---|
| 131 | } |
---|
| 132 | |
---|
[5] | 133 | sub view { |
---|
[59] | 134 | my ($self, $id) = @_; |
---|
[5] | 135 | |
---|
[59] | 136 | my $format = $self->request->param('format') || 'html'; |
---|
| 137 | |
---|
| 138 | my $bookmark = $self->get_bookmark({ id => $id }); |
---|
[5] | 139 | if ($bookmark) { |
---|
[67] | 140 | return [304, [], []] if $self->_request_is_newer_than($bookmark->mtime); |
---|
[62] | 141 | |
---|
[59] | 142 | my $last_modified = time2str($bookmark->mtime); |
---|
[57] | 143 | |
---|
[30] | 144 | if ($format eq 'json') { |
---|
[91] | 145 | my $json = decode_utf8(JSON->new->utf8->convert_blessed->encode($bookmark->to_hashref)); |
---|
[59] | 146 | return [200, ['Content-Type' => 'application/json; charset=UTF-8', 'Last-Modified' => $last_modified], [$json]]; |
---|
[5] | 147 | } else { |
---|
[30] | 148 | # display the bookmark form for this bookmark |
---|
[95] | 149 | require File::Basename; |
---|
| 150 | my $template = Template->new({ INCLUDE_PATH => File::Basename::dirname($INC{'Bookmarks/Controller.pm'}) }); |
---|
[59] | 151 | $template->process( |
---|
[30] | 152 | 'bookmark.tt', |
---|
[66] | 153 | { bookmark => $bookmark }, |
---|
[59] | 154 | \my $output, |
---|
[30] | 155 | ); |
---|
[59] | 156 | return [200, ['Content-Type' => 'text/html; charset=UTF-8', 'Last-Modified' => $last_modified], [$output]]; |
---|
[30] | 157 | } |
---|
| 158 | } else { |
---|
[74] | 159 | return [404, ['Content-Type' => 'text/plain; charset=UTF-8'], ["Bookmark $id not found"]]; |
---|
[30] | 160 | } |
---|
| 161 | } |
---|
| 162 | |
---|
| 163 | sub view_field { |
---|
[59] | 164 | my ($self, $id, $field) = @_; |
---|
[30] | 165 | |
---|
[62] | 166 | my $bookmark = $self->get_bookmark({ id => $id }); |
---|
[30] | 167 | if ($bookmark) { |
---|
[67] | 168 | return [304, [], []] if $self->_request_is_newer_than($bookmark->mtime); |
---|
[62] | 169 | |
---|
[63] | 170 | # check whether the requested field is part of the bookmark |
---|
| 171 | if (!$bookmark->meta->has_attribute($field)) { |
---|
| 172 | return [404, ['Content-Type' => 'text/plain; charset=UTF-8'], [qq{"$field" is not a valid bookmark data field}]]; |
---|
[5] | 173 | } |
---|
[63] | 174 | |
---|
| 175 | # respond with just the requested field as plain text |
---|
| 176 | my $value = $bookmark->$field; |
---|
[62] | 177 | my $last_modified = time2str($bookmark->mtime); |
---|
| 178 | return [200, ['Content-Type' => 'text/plain; charset=UTF-8', 'Last-Modified' => $last_modified], [ref $value eq 'ARRAY' ? join(' ', @{ $value }) : $value]]; |
---|
[5] | 179 | } else { |
---|
[74] | 180 | return [404, ['Content-Type' => 'text/plain; charset=UTF-8'], ["Bookmark $id not found"]]; |
---|
[5] | 181 | } |
---|
| 182 | } |
---|
| 183 | |
---|
[63] | 184 | sub create_and_redirect { |
---|
[5] | 185 | my $self = shift; |
---|
[59] | 186 | |
---|
| 187 | my $uri = $self->request->param('uri'); |
---|
| 188 | my $title = $self->request->param('title'); |
---|
| 189 | my @tags = split ' ', $self->request->param('tags'); |
---|
| 190 | |
---|
| 191 | my $bookmark = $self->bookmarks->add({ |
---|
[5] | 192 | uri => $uri, |
---|
| 193 | title => $title, |
---|
| 194 | tags => \@tags, |
---|
| 195 | }); |
---|
| 196 | |
---|
[59] | 197 | #TODO: not RESTful; the proper RESTful response would be a 201 |
---|
| 198 | return [303, ['Location' => $bookmark->bookmark_uri->canonical], []]; |
---|
[5] | 199 | } |
---|
| 200 | |
---|
[63] | 201 | sub update_and_redirect { |
---|
[45] | 202 | my $self = shift; |
---|
[59] | 203 | my $id = shift; |
---|
[45] | 204 | |
---|
[59] | 205 | my $bookmark = $self->bookmarks->get_bookmark({ id => $id }); |
---|
[45] | 206 | if ($bookmark) { |
---|
| 207 | # update the URI, title, and tags |
---|
[59] | 208 | $bookmark->uri($self->request->param('uri')); |
---|
| 209 | $bookmark->title($self->request->param('title')); |
---|
| 210 | $bookmark->tags([ split ' ', $self->request->param('tags') || '' ]); |
---|
[45] | 211 | |
---|
[46] | 212 | # write to the database |
---|
[75] | 213 | $bookmark->update; |
---|
[46] | 214 | |
---|
[59] | 215 | #TODO: not RESTful; proper response would be a 200 |
---|
| 216 | return [303, ['Location' => $bookmark->bookmark_uri->canonical], []]; |
---|
[45] | 217 | } else { |
---|
[74] | 218 | return [404, ['Content-Type' => 'text/plain; charset=UTF-8'], ["Bookmark $id not found"]]; |
---|
[45] | 219 | } |
---|
| 220 | } |
---|
| 221 | |
---|
[5] | 222 | 1; |
---|