REST API: allow override of creation and update dates

Note that if they're not provided, default behaviour will apply:
creation and update dates will be autogenerated, and not empty.

Fixes #1223
This commit is contained in:
ArthurHoaro 2020-08-29 11:45:08 +02:00
parent bea062149e
commit b06fc28aa3
4 changed files with 18 additions and 8 deletions

View file

@ -94,7 +94,7 @@ class ApiUtils
*
* @return Bookmark instance.
*/
public static function buildLinkFromRequest($input, $defaultPrivate)
public static function buildBookmarkFromRequest($input, $defaultPrivate): Bookmark
{
$bookmark = new Bookmark();
$url = ! empty($input['url']) ? cleanup_url($input['url']) : '';
@ -110,6 +110,15 @@ class ApiUtils
$bookmark->setTags(! empty($input['tags']) ? $input['tags'] : []);
$bookmark->setPrivate($private);
$created = \DateTime::createFromFormat(\DateTime::ATOM, $input['created'] ?? '');
if ($created instanceof \DateTimeInterface) {
$bookmark->setCreated($created);
}
$updated = \DateTime::createFromFormat(\DateTime::ATOM, $input['updated'] ?? '');
if ($updated instanceof \DateTimeInterface) {
$bookmark->setUpdated($updated);
}
return $bookmark;
}

View file

@ -4,6 +4,7 @@ namespace Shaarli\Api\Controllers;
use Shaarli\Bookmark\BookmarkServiceInterface;
use Shaarli\Config\ConfigManager;
use Shaarli\History;
use Slim\Container;
/**
@ -31,7 +32,7 @@ abstract class ApiController
protected $bookmarkService;
/**
* @var HistoryController
* @var History
*/
protected $history;

View file

@ -116,7 +116,7 @@ class Links extends ApiController
public function postLink($request, $response)
{
$data = $request->getParsedBody();
$bookmark = ApiUtils::buildLinkFromRequest($data, $this->conf->get('privacy.default_private_links'));
$bookmark = ApiUtils::buildBookmarkFromRequest($data, $this->conf->get('privacy.default_private_links'));
// duplicate by URL, return 409 Conflict
if (! empty($bookmark->getUrl())
&& ! empty($dup = $this->bookmarkService->findByUrl($bookmark->getUrl()))
@ -155,7 +155,7 @@ class Links extends ApiController
$index = index_url($this->ci['environment']);
$data = $request->getParsedBody();
$requestBookmark = ApiUtils::buildLinkFromRequest($data, $this->conf->get('privacy.default_private_links'));
$requestBookmark = ApiUtils::buildBookmarkFromRequest($data, $this->conf->get('privacy.default_private_links'));
// duplicate URL on a different link, return 409 Conflict
if (! empty($requestBookmark->getUrl())
&& ! empty($dup = $this->bookmarkService->findByUrl($requestBookmark->getUrl()))

View file

@ -160,6 +160,8 @@ class PostLinkTest extends TestCase
'description' => 'shaare description',
'tags' => ['one', 'two'],
'private' => true,
'created' => '2015-05-05T12:30:00+03:00',
'updated' => '2016-06-05T14:32:10+03:00',
];
$env = Environment::mock([
'REQUEST_METHOD' => 'POST',
@ -181,10 +183,8 @@ class PostLinkTest extends TestCase
$this->assertEquals($link['description'], $data['description']);
$this->assertEquals($link['tags'], $data['tags']);
$this->assertEquals(true, $data['private']);
$this->assertTrue(
new \DateTime('2 seconds ago') < \DateTime::createFromFormat(\DateTime::ATOM, $data['created'])
);
$this->assertEquals('', $data['updated']);
$this->assertSame($link['created'], $data['created']);
$this->assertSame($link['updated'], $data['updated']);
}
/**