Merge pull request #7588 from KevinSJ/feat/filter-by-http-status

Add http_status filter to /api/entries
This commit is contained in:
Jérémy Benoist 2024-09-06 09:34:34 +02:00 committed by GitHub
commit 1b8960edc4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 94 additions and 15 deletions

View file

@ -87,6 +87,17 @@ class EntryFixtures extends Fixture implements DependentFixtureInterface
'tags' => ['bar-tag'], 'tags' => ['bar-tag'],
'is_not_parsed' => true, 'is_not_parsed' => true,
], ],
'entry7' => [
'user' => 'admin-user',
'url' => 'http://0.0.0.0/entry7',
'reading_time' => 12,
'domain' => 'redirect.io',
'mime' => 'text/html',
'title' => 'test title entry7',
'http_status' => '302',
'content' => 'This is redirect/o/',
'language' => 'de',
],
]; ];
foreach ($entries as $reference => $item) { foreach ($entries as $reference => $item) {
@ -133,6 +144,10 @@ class EntryFixtures extends Fixture implements DependentFixtureInterface
$entry->setNotParsed($item['is_not_parsed']); $entry->setNotParsed($item['is_not_parsed']);
} }
if (isset($item['http_status'])) {
$entry->setHttpStatus($item['http_status']);
}
$manager->persist($entry); $manager->persist($entry);
$this->addReference($reference, $entry); $this->addReference($reference, $entry);
} }

View file

@ -280,6 +280,18 @@ class EntryRestController extends WallabagRestController
* example="example.com", * example="example.com",
* ) * )
* ), * ),
* @OA\Parameter(
* name="http_status",
* in="query",
* description="filter entries with matching http status code",
* required=false,
* @OA\Schema(
* type="integer",
* minimum=100,
* maximum=527,
* example="200",
* )
* ),
* @OA\Response( * @OA\Response(
* response="200", * response="200",
* description="Returned when successful" * description="Returned when successful"
@ -306,6 +318,7 @@ class EntryRestController extends WallabagRestController
$since = $request->query->get('since', 0); $since = $request->query->get('since', 0);
$detail = strtolower($request->query->get('detail', 'full')); $detail = strtolower($request->query->get('detail', 'full'));
$domainName = (null === $request->query->get('domain_name')) ? '' : (string) $request->query->get('domain_name'); $domainName = (null === $request->query->get('domain_name')) ? '' : (string) $request->query->get('domain_name');
$httpStatus = (!\array_key_exists((int) $request->query->get('http_status'), Response::$statusTexts)) ? null : (int) $request->query->get('http_status');
try { try {
/** @var Pagerfanta $pager */ /** @var Pagerfanta $pager */
@ -320,7 +333,8 @@ class EntryRestController extends WallabagRestController
$tags, $tags,
$detail, $detail,
$domainName, $domainName,
$isNotParsed $isNotParsed,
$httpStatus
); );
} catch (\Exception $e) { } catch (\Exception $e) {
throw new BadRequestHttpException($e->getMessage()); throw new BadRequestHttpException($e->getMessage());

View file

@ -285,13 +285,14 @@ class EntryRepository extends ServiceEntityRepository
* @param string $tags * @param string $tags
* @param string $detail 'metadata' or 'full'. Include content field if 'full' * @param string $detail 'metadata' or 'full'. Include content field if 'full'
* @param string $domainName * @param string $domainName
* @param int $httpStatus
* @param bool $isNotParsed * @param bool $isNotParsed
* *
* @todo Breaking change: replace default detail=full by detail=metadata in a future version * @todo Breaking change: replace default detail=full by detail=metadata in a future version
* *
* @return Pagerfanta * @return Pagerfanta
*/ */
public function findEntries($userId, $isArchived = null, $isStarred = null, $isPublic = null, $sort = 'created', $order = 'asc', $since = 0, $tags = '', $detail = 'full', $domainName = '', $isNotParsed = null) public function findEntries($userId, $isArchived = null, $isStarred = null, $isPublic = null, $sort = 'created', $order = 'asc', $since = 0, $tags = '', $detail = 'full', $domainName = '', $isNotParsed = null, $httpStatus = null)
{ {
if (!\in_array(strtolower($detail), ['full', 'metadata'], true)) { if (!\in_array(strtolower($detail), ['full', 'metadata'], true)) {
throw new \Exception('Detail "' . $detail . '" parameter is wrong, allowed: full or metadata'); throw new \Exception('Detail "' . $detail . '" parameter is wrong, allowed: full or metadata');
@ -350,6 +351,10 @@ class EntryRepository extends ServiceEntityRepository
} }
} }
if (\is_int($httpStatus)) {
$qb->andWhere('e.httpStatus = :httpStatus')->setParameter('httpStatus', $httpStatus);
}
if (\is_string($domainName) && '' !== $domainName) { if (\is_string($domainName) && '' !== $domainName) {
$qb->andWhere('e.domainName = :domainName')->setParameter('domainName', $domainName); $qb->andWhere('e.domainName = :domainName')->setParameter('domainName', $domainName);
} }

View file

@ -47,7 +47,7 @@ class ExportCommandTest extends WallabagTestCase
'username' => 'admin', 'username' => 'admin',
]); ]);
$this->assertStringContainsString('Exporting 5 entrie(s) for user admin...', $tester->getDisplay()); $this->assertStringContainsString('Exporting 6 entrie(s) for user admin...', $tester->getDisplay());
$this->assertStringContainsString('Done', $tester->getDisplay()); $this->assertStringContainsString('Done', $tester->getDisplay());
$this->assertFileExists('admin-export.json'); $this->assertFileExists('admin-export.json');
} }

View file

@ -170,6 +170,50 @@ class EntryRestControllerTest extends WallabagApiTestCase
$this->assertSame('application/json', $this->client->getResponse()->headers->get('Content-Type')); $this->assertSame('application/json', $this->client->getResponse()->headers->get('Content-Type'));
} }
public function testGetEntriesByHttpStatusWithMatching()
{
$this->client->request('GET', '/api/entries?http_status=302');
$this->assertSame(200, $this->client->getResponse()->getStatusCode());
$content = json_decode($this->client->getResponse()->getContent(), true);
$this->assertGreaterThanOrEqual(1, \count($content));
$this->assertNotEmpty($content['_embedded']['items']);
$this->assertSame(1, $content['total']);
$this->assertSame(1, $content['page']);
$this->assertGreaterThanOrEqual(1, $content['pages']);
$this->assertSame('test title entry7', $content['_embedded']['items'][0]['title']);
$this->assertSame('302', $content['_embedded']['items'][0]['http_status']);
$this->assertSame('application/json', $this->client->getResponse()->headers->get('Content-Type'));
}
public function testGetEntriesByHttpStatusNoMatching()
{
$this->client->request('GET', '/api/entries?http_status=404');
$this->assertSame(200, $this->client->getResponse()->getStatusCode());
$content = json_decode($this->client->getResponse()->getContent(), true);
$this->assertGreaterThanOrEqual(1, \count($content));
$this->assertEmpty($content['_embedded']['items']);
$this->assertSame(0, $content['total']);
$this->assertSame(1, $content['page']);
$this->assertGreaterThanOrEqual(1, $content['pages']);
$this->assertSame('application/json', $this->client->getResponse()->headers->get('Content-Type'));
}
public function testGetEntriesWithBadHttpStatusParam()
{
$this->client->request('GET', '/api/entries?http_status=10000');
$this->assertSame(200, $this->client->getResponse()->getStatusCode());
}
public function testGetEntriesWithFullOptions() public function testGetEntriesWithFullOptions()
{ {
$this->client->request('GET', '/api/entries', [ $this->client->request('GET', '/api/entries', [
@ -183,6 +227,7 @@ class EntryRestControllerTest extends WallabagApiTestCase
'since' => 1443274283, 'since' => 1443274283,
'public' => 0, 'public' => 0,
'notParsed' => 0, 'notParsed' => 0,
'http_status' => 200,
]); ]);
$this->assertSame(200, $this->client->getResponse()->getStatusCode()); $this->assertSame(200, $this->client->getResponse()->getStatusCode());

View file

@ -106,14 +106,14 @@ class EntryControllerTest extends WallabagTestCase
$crawler = $client->request('GET', '/'); $crawler = $client->request('GET', '/');
$this->assertCount(4, $crawler->filter($this->entryDataTestAttribute)); $this->assertCount(5, $crawler->filter($this->entryDataTestAttribute));
// Good URL // Good URL
$client->request('GET', '/bookmarklet', ['url' => $this->url]); $client->request('GET', '/bookmarklet', ['url' => $this->url]);
$this->assertSame(302, $client->getResponse()->getStatusCode()); $this->assertSame(302, $client->getResponse()->getStatusCode());
$client->followRedirect(); $client->followRedirect();
$crawler = $client->request('GET', '/'); $crawler = $client->request('GET', '/');
$this->assertCount(5, $crawler->filter($this->entryDataTestAttribute)); $this->assertCount(6, $crawler->filter($this->entryDataTestAttribute));
$em = $client->getContainer() $em = $client->getContainer()
->get(EntityManagerInterface::class); ->get(EntityManagerInterface::class);
@ -803,7 +803,7 @@ class EntryControllerTest extends WallabagTestCase
$client = $this->getTestClient(); $client = $this->getTestClient();
$crawler = $client->request('GET', '/all/list'); $crawler = $client->request('GET', '/all/list');
$this->assertCount(5, $crawler->filter($this->entryDataTestAttribute)); $this->assertCount(6, $crawler->filter($this->entryDataTestAttribute));
$entry = new Entry($this->getLoggedInUser()); $entry = new Entry($this->getLoggedInUser());
$entry->setUrl($this->url); $entry->setUrl($this->url);
@ -812,7 +812,7 @@ class EntryControllerTest extends WallabagTestCase
$this->getEntityManager()->flush(); $this->getEntityManager()->flush();
$crawler = $client->request('GET', '/all/list'); $crawler = $client->request('GET', '/all/list');
$this->assertCount(6, $crawler->filter($this->entryDataTestAttribute)); $this->assertCount(7, $crawler->filter($this->entryDataTestAttribute));
$form = $crawler->filter('button[id=submit-filter]')->form(); $form = $crawler->filter('button[id=submit-filter]')->form();
@ -822,7 +822,7 @@ class EntryControllerTest extends WallabagTestCase
$crawler = $client->submit($form, $data); $crawler = $client->submit($form, $data);
$this->assertCount(5, $crawler->filter($this->entryDataTestAttribute)); $this->assertCount(6, $crawler->filter($this->entryDataTestAttribute));
} }
public function testFilterOnReadingTimeOnlyLower() public function testFilterOnReadingTimeOnlyLower()
@ -867,7 +867,7 @@ class EntryControllerTest extends WallabagTestCase
$crawler = $client->submit($form, $data); $crawler = $client->submit($form, $data);
$this->assertCount(4, $crawler->filter($this->entryDataTestAttribute)); $this->assertCount(5, $crawler->filter($this->entryDataTestAttribute));
$entry = new Entry($this->getLoggedInUser()); $entry = new Entry($this->getLoggedInUser());
$entry->setUrl($this->url); $entry->setUrl($this->url);
@ -877,7 +877,7 @@ class EntryControllerTest extends WallabagTestCase
$crawler = $client->submit($form, $data); $crawler = $client->submit($form, $data);
$this->assertCount(5, $crawler->filter($this->entryDataTestAttribute)); $this->assertCount(6, $crawler->filter($this->entryDataTestAttribute));
} }
public function testFilterOnCreationDate() public function testFilterOnCreationDate()
@ -908,7 +908,7 @@ class EntryControllerTest extends WallabagTestCase
$crawler = $client->submit($form, $data); $crawler = $client->submit($form, $data);
$this->assertCount(4, $crawler->filter($this->entryDataTestAttribute)); $this->assertCount(5, $crawler->filter($this->entryDataTestAttribute));
$data = [ $data = [
'entry_filter[createdAt][left_date]' => $today->format('Y-m-d'), 'entry_filter[createdAt][left_date]' => $today->format('Y-m-d'),
@ -917,7 +917,7 @@ class EntryControllerTest extends WallabagTestCase
$crawler = $client->submit($form, $data); $crawler = $client->submit($form, $data);
$this->assertCount(4, $crawler->filter($this->entryDataTestAttribute)); $this->assertCount(5, $crawler->filter($this->entryDataTestAttribute));
$data = [ $data = [
'entry_filter[createdAt][left_date]' => '1970-01-01', 'entry_filter[createdAt][left_date]' => '1970-01-01',
@ -1394,7 +1394,7 @@ class EntryControllerTest extends WallabagTestCase
$crawler = $client->submit($form, $data); $crawler = $client->submit($form, $data);
$this->assertCount(8, $crawler->filter($this->entryDataTestAttribute)); $this->assertCount(9, $crawler->filter($this->entryDataTestAttribute));
} }
public function testSearch() public function testSearch()
@ -1418,7 +1418,7 @@ class EntryControllerTest extends WallabagTestCase
$crawler = $client->submit($form, $data); $crawler = $client->submit($form, $data);
$this->assertCount(4, $crawler->filter($this->entryDataTestAttribute)); $this->assertCount(5, $crawler->filter($this->entryDataTestAttribute));
// Add a check with useless spaces before and after the search term // Add a check with useless spaces before and after the search term
$crawler = $client->request('GET', '/unread/list'); $crawler = $client->request('GET', '/unread/list');
@ -1430,7 +1430,7 @@ class EntryControllerTest extends WallabagTestCase
$crawler = $client->submit($form, $data); $crawler = $client->submit($form, $data);
$this->assertCount(4, $crawler->filter($this->entryDataTestAttribute)); $this->assertCount(5, $crawler->filter($this->entryDataTestAttribute));
// Search on starred list // Search on starred list
$crawler = $client->request('GET', '/starred/list'); $crawler = $client->request('GET', '/starred/list');