iat) || $payload->iat > time() || time() - $payload->iat > ApiMiddleware::$TOKEN_DURATION ) { throw new ApiAuthorizationException('Invalid JWT issued time'); } } /** * Format a Link for the REST API. * * @param array $link Link data read from the datastore. * @param string $indexUrl Shaarli's index URL (used for relative URL). * * @return array Link data formatted for the REST API. */ public static function formatLink($link, $indexUrl) { $out['id'] = $link['id']; // Not an internal link if ($link['url'][0] != '?') { $out['url'] = $link['url']; } else { $out['url'] = $indexUrl . $link['url']; } $out['shorturl'] = $link['shorturl']; $out['title'] = $link['title']; $out['description'] = $link['description']; $out['tags'] = preg_split('/\s+/', $link['tags'], -1, PREG_SPLIT_NO_EMPTY); $out['private'] = $link['private'] == true; $out['created'] = $link['created']->format(\DateTime::ATOM); if (! empty($link['updated'])) { $out['updated'] = $link['updated']->format(\DateTime::ATOM); } else { $out['updated'] = ''; } return $out; } /** * Convert a link given through a request, to a valid link for LinkDB. * * If no URL is provided, it will generate a local note URL. * If no title is provided, it will use the URL as title. * * @param array $input Request Link. * @param bool $defaultPrivate Request Link. * * @return array Formatted link. */ public static function buildLinkFromRequest($input, $defaultPrivate) { $input['url'] = ! empty($input['url']) ? cleanup_url($input['url']) : ''; if (isset($input['private'])) { $private = filter_var($input['private'], FILTER_VALIDATE_BOOLEAN); } else { $private = $defaultPrivate; } $link = [ 'title' => ! empty($input['title']) ? $input['title'] : $input['url'], 'url' => $input['url'], 'description' => ! empty($input['description']) ? $input['description'] : '', 'tags' => ! empty($input['tags']) ? implode(' ', $input['tags']) : '', 'private' => $private, 'created' => new \DateTime(), ]; return $link; } }