Skip to content

Commit 79781fa

Browse files
committed
get the number of subscribers of list, Fix #115
Signed-off-by: Xheni Myrtaj <[email protected]>
1 parent c8e3636 commit 79781fa

File tree

3 files changed

+106
-0
lines changed

3 files changed

+106
-0
lines changed

src/Controller/ListController.php

+15
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
* This controller provides REST API access to subscriber lists.
1717
*
1818
* @author Oliver Klee <[email protected]>
19+
* @author Xheni Myrtaj <[email protected]>
1920
*/
2021
class ListController extends FOSRestController implements ClassResourceInterface
2122
{
@@ -96,4 +97,18 @@ public function getMembersAction(Request $request, SubscriberList $list): View
9697

9798
return View::create()->setData($list->getSubscribers());
9899
}
100+
101+
/**
102+
* Gets the total number of subscribers of a list.
103+
* @param Request $request
104+
* @param SubscriberList $list
105+
*
106+
* @return View
107+
*/
108+
public function getCountAction(Request $request, SubscriberList $list): View
109+
{
110+
$this->requireAuthentication($request);
111+
112+
return View::create()->setData(count($list->getSubscribers()));
113+
}
99114
}
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
id,name,description,entered,modified,listorder,prefix,active,category,owner
22
1,"News","News (and some fun stuff)","2016-06-22 15:01:17","2016-06-23 19:50:43",12,"phpList",1,"news",1
33
2,"More news","","2016-06-22 15:01:17","2016-06-23 19:50:43",12,"",1,"",1
4+
3,"Tech news","","2019-02-11 15:01:15","2019-02-11 19:50:43",12,"",1,"",1

tests/Integration/Controller/ListControllerTest.php

+90
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
* Testcase.
1111
*
1212
* @author Oliver Klee <[email protected]>
13+
* @author Xheni Myrtaj <[email protected]>
1314
*/
1415
class ListControllerTest extends AbstractControllerTest
1516
{
@@ -107,6 +108,16 @@ public function getListsWithCurrentSessionKeyReturnsListData()
107108
'public' => true,
108109
'category' => '',
109110
'id' => 2,
111+
],
112+
[
113+
'name' => 'Tech news',
114+
'description' => '',
115+
'creation_date' => '2019-02-11T15:01:15+00:00',
116+
'list_position' => 12,
117+
'subject_prefix' => '',
118+
'public' => true,
119+
'category' => '',
120+
'id' => 3,
110121
]
111122
]
112123
);
@@ -320,4 +331,83 @@ public function getListMembersWithCurrentSessionKeyForExistingListWithSubscriber
320331
]
321332
);
322333
}
334+
335+
/**
336+
* @test
337+
*/
338+
public function getListCountForExistingListWithoutSessionKeyReturnsForbiddenStatus()
339+
{
340+
$this->getDataSet()->addTable(static::LISTS_TABLE_NAME, __DIR__ . '/Fixtures/SubscriberList.csv');
341+
$this->applyDatabaseChanges();
342+
343+
$this->client->request('get', '/api/v2/lists/1/count');
344+
345+
$this->assertHttpForbidden();
346+
}
347+
348+
/**
349+
* @test
350+
*/
351+
public function getListCountForExistingListWithExpiredSessionKeyReturnsForbiddenStatus()
352+
{
353+
$this->getDataSet()->addTable(static::LISTS_TABLE_NAME, __DIR__ . '/Fixtures/SubscriberList.csv');
354+
$this->getDataSet()->addTable(static::ADMINISTRATOR_TABLE_NAME, __DIR__ . '/Fixtures/Administrator.csv');
355+
$this->getDataSet()->addTable(static::TOKEN_TABLE_NAME, __DIR__ . '/Fixtures/AdministratorToken.csv');
356+
$this->applyDatabaseChanges();
357+
358+
$this->client->request(
359+
'get',
360+
'/api/v2/lists/1/count',
361+
[],
362+
[],
363+
['PHP_AUTH_USER' => 'unused', 'PHP_AUTH_PW' => 'cfdf64eecbbf336628b0f3071adba763']
364+
);
365+
366+
$this->assertHttpForbidden();
367+
}
368+
369+
/**
370+
* @test
371+
*/
372+
public function getListCountWithCurrentSessionKeyForExistingListReturnsOkayStatus()
373+
{
374+
$this->getDataSet()->addTable(static::LISTS_TABLE_NAME, __DIR__ . '/Fixtures/SubscriberList.csv');
375+
$this->applyDatabaseChanges();
376+
377+
$this->authenticatedJsonRequest('get', '/api/v2/lists/1/count');
378+
379+
$this->assertHttpOkay();
380+
}
381+
382+
/**
383+
* @test
384+
*/
385+
public function getListCountWithCurrentSessionKeyForExistingListWithSubscribersReturnsSubscribersCount()
386+
{
387+
$this->getDataSet()->addTable(static::LISTS_TABLE_NAME, __DIR__ . '/Fixtures/SubscriberList.csv');
388+
$this->getDataSet()->addTable(static::SUBSCRIBER_TABLE_NAME, __DIR__ . '/Fixtures/Subscriber.csv');
389+
$this->getDataSet()->addTable(static::SUBSCRIPTION_TABLE_NAME, __DIR__ . '/Fixtures/Subscription.csv');
390+
$this->applyDatabaseChanges();
391+
392+
$this->authenticatedJsonRequest('get', '/api/v2/lists/2/count');
393+
$response = $this->getDecodedJsonResponseContent();
394+
395+
static::assertSame(1, $response);
396+
}
397+
398+
/**
399+
* @test
400+
*/
401+
public function getListCountWithCurrentSessionKeyForExistingListWithNoSubscribersReturnsZero()
402+
{
403+
$this->getDataSet()->addTable(static::LISTS_TABLE_NAME, __DIR__ . '/Fixtures/SubscriberList.csv');
404+
$this->getDataSet()->addTable(static::SUBSCRIBER_TABLE_NAME, __DIR__ . '/Fixtures/Subscriber.csv');
405+
$this->getDataSet()->addTable(static::SUBSCRIPTION_TABLE_NAME, __DIR__ . '/Fixtures/Subscription.csv');
406+
$this->applyDatabaseChanges();
407+
408+
$this->authenticatedJsonRequest('get', '/api/v2/lists/3/count');
409+
$response = $this->getDecodedJsonResponseContent();
410+
411+
static::assertSame(0, $response);
412+
}
323413
}

0 commit comments

Comments
 (0)