]> git.immae.eu Git - github/shaarli/Shaarli.git/blame - application/api/controllers/Links.php
Apply the new system (Bookmark + Service) to the whole code base
[github/shaarli/Shaarli.git] / application / api / controllers / Links.php
CommitLineData
c3b00963
A
1<?php
2
3namespace Shaarli\Api\Controllers;
4
5use Shaarli\Api\ApiUtils;
6use Shaarli\Api\Exceptions\ApiBadParametersException;
16e3d006 7use Shaarli\Api\Exceptions\ApiLinkNotFoundException;
c3b00963
A
8use Slim\Http\Request;
9use Slim\Http\Response;
10
11/**
12 * Class Links
13 *
cf92b4dd 14 * REST API Controller: all services related to bookmarks collection.
c3b00963
A
15 *
16 * @package Api\Controllers
17 * @see http://shaarli.github.io/api-documentation/#links-links-collection
18 */
19class Links extends ApiController
20{
21 /**
cf92b4dd 22 * @var int Number of bookmarks returned if no limit is provided.
c3b00963
A
23 */
24 public static $DEFAULT_LIMIT = 20;
25
26 /**
cf92b4dd 27 * Retrieve a list of bookmarks, allowing different filters.
c3b00963
A
28 *
29 * @param Request $request Slim request.
30 * @param Response $response Slim response.
31 *
32 * @return Response response.
33 *
34 * @throws ApiBadParametersException Invalid parameters.
35 */
36 public function getLinks($request, $response)
37 {
c37a6f82 38 $private = $request->getParam('visibility');
cf92b4dd 39 $bookmarks = $this->bookmarkService->search(
c3b00963
A
40 [
41 'searchtags' => $request->getParam('searchtags', ''),
42 'searchterm' => $request->getParam('searchterm', ''),
43 ],
c37a6f82 44 $private
c3b00963
A
45 );
46
cf92b4dd 47 // Return bookmarks from the {offset}th link, starting from 0.
c3b00963
A
48 $offset = $request->getParam('offset');
49 if (! empty($offset) && ! ctype_digit($offset)) {
50 throw new ApiBadParametersException('Invalid offset');
51 }
52 $offset = ! empty($offset) ? intval($offset) : 0;
cf92b4dd 53 if ($offset > count($bookmarks)) {
c3b00963
A
54 return $response->withJson([], 200, $this->jsonStyle);
55 }
56
cf92b4dd 57 // limit parameter is either a number of bookmarks or 'all' for everything.
c3b00963
A
58 $limit = $request->getParam('limit');
59 if (empty($limit)) {
60 $limit = self::$DEFAULT_LIMIT;
d2d4f993 61 } elseif (ctype_digit($limit)) {
c3b00963 62 $limit = intval($limit);
d2d4f993 63 } elseif ($limit === 'all') {
cf92b4dd 64 $limit = count($bookmarks);
c3b00963
A
65 } else {
66 throw new ApiBadParametersException('Invalid limit');
67 }
68
69 // 'environment' is set by Slim and encapsulate $_SERVER.
d3f42ca4 70 $indexUrl = index_url($this->ci['environment']);
c3b00963
A
71
72 $out = [];
d3f42ca4 73 $index = 0;
cf92b4dd 74 foreach ($bookmarks as $bookmark) {
c3b00963
A
75 if (count($out) >= $limit) {
76 break;
77 }
d3f42ca4 78 if ($index++ >= $offset) {
cf92b4dd 79 $out[] = ApiUtils::formatLink($bookmark, $indexUrl);
c3b00963
A
80 }
81 }
82
83 return $response->withJson($out, 200, $this->jsonStyle);
84 }
16e3d006
A
85
86 /**
87 * Return a single formatted link by its ID.
88 *
89 * @param Request $request Slim request.
90 * @param Response $response Slim response.
91 * @param array $args Path parameters. including the ID.
92 *
93 * @return Response containing the link array.
94 *
95 * @throws ApiLinkNotFoundException generating a 404 error.
96 */
97 public function getLink($request, $response, $args)
98 {
cf92b4dd 99 if (!$this->bookmarkService->exists($args['id'])) {
16e3d006
A
100 throw new ApiLinkNotFoundException();
101 }
102 $index = index_url($this->ci['environment']);
cf92b4dd 103 $out = ApiUtils::formatLink($this->bookmarkService->get($args['id']), $index);
68016e37 104
16e3d006
A
105 return $response->withJson($out, 200, $this->jsonStyle);
106 }
68016e37
A
107
108 /**
109 * Creates a new link from posted request body.
110 *
111 * @param Request $request Slim request.
112 * @param Response $response Slim response.
113 *
114 * @return Response response.
115 */
116 public function postLink($request, $response)
117 {
118 $data = $request->getParsedBody();
cf92b4dd 119 $bookmark = ApiUtils::buildLinkFromRequest($data, $this->conf->get('privacy.default_private_links'));
68016e37 120 // duplicate by URL, return 409 Conflict
cf92b4dd
A
121 if (! empty($bookmark->getUrl())
122 && ! empty($dup = $this->bookmarkService->findByUrl($bookmark->getUrl()))
123 ) {
68016e37
A
124 return $response->withJson(
125 ApiUtils::formatLink($dup, index_url($this->ci['environment'])),
126 409,
127 $this->jsonStyle
128 );
129 }
130
cf92b4dd
A
131 $this->bookmarkService->add($bookmark);
132 $out = ApiUtils::formatLink($bookmark, index_url($this->ci['environment']));
133 $redirect = $this->ci->router->relativePathFor('getLink', ['id' => $bookmark->getId()]);
68016e37
A
134 return $response->withAddedHeader('Location', $redirect)
135 ->withJson($out, 201, $this->jsonStyle);
136 }
cf9181dd
A
137
138 /**
139 * Updates an existing link from posted request body.
140 *
141 * @param Request $request Slim request.
142 * @param Response $response Slim response.
143 * @param array $args Path parameters. including the ID.
144 *
145 * @return Response response.
146 *
147 * @throws ApiLinkNotFoundException generating a 404 error.
148 */
149 public function putLink($request, $response, $args)
150 {
cf92b4dd 151 if (! $this->bookmarkService->exists($args['id'])) {
cf9181dd
A
152 throw new ApiLinkNotFoundException();
153 }
154
155 $index = index_url($this->ci['environment']);
156 $data = $request->getParsedBody();
157
cf92b4dd 158 $requestBookmark = ApiUtils::buildLinkFromRequest($data, $this->conf->get('privacy.default_private_links'));
cf9181dd 159 // duplicate URL on a different link, return 409 Conflict
cf92b4dd
A
160 if (! empty($requestBookmark->getUrl())
161 && ! empty($dup = $this->bookmarkService->findByUrl($requestBookmark->getUrl()))
162 && $dup->getId() != $args['id']
cf9181dd
A
163 ) {
164 return $response->withJson(
165 ApiUtils::formatLink($dup, $index),
166 409,
167 $this->jsonStyle
168 );
169 }
170
cf92b4dd
A
171 $responseBookmark = $this->bookmarkService->get($args['id']);
172 $responseBookmark = ApiUtils::updateLink($responseBookmark, $requestBookmark);
173 $this->bookmarkService->set($responseBookmark);
cf9181dd 174
cf92b4dd 175 $out = ApiUtils::formatLink($responseBookmark, $index);
cf9181dd
A
176 return $response->withJson($out, 200, $this->jsonStyle);
177 }
0843848c
A
178
179 /**
180 * Delete an existing link by its ID.
181 *
182 * @param Request $request Slim request.
183 * @param Response $response Slim response.
184 * @param array $args Path parameters. including the ID.
185 *
186 * @return Response response.
187 *
188 * @throws ApiLinkNotFoundException generating a 404 error.
189 */
190 public function deleteLink($request, $response, $args)
191 {
cf92b4dd 192 if (! $this->bookmarkService->exists($args['id'])) {
0843848c
A
193 throw new ApiLinkNotFoundException();
194 }
cf92b4dd
A
195 $bookmark = $this->bookmarkService->get($args['id']);
196 $this->bookmarkService->remove($bookmark);
0843848c
A
197
198 return $response->withStatus(204);
199 }
c3b00963 200}