summaryrefslogtreecommitdiffstats
path: root/controller/itemcontroller.php
diff options
context:
space:
mode:
Diffstat (limited to 'controller/itemcontroller.php')
-rw-r--r--controller/itemcontroller.php18
1 files changed, 4 insertions, 14 deletions
diff --git a/controller/itemcontroller.php b/controller/itemcontroller.php
index 3313f583b..67efb4b85 100644
--- a/controller/itemcontroller.php
+++ b/controller/itemcontroller.php
@@ -116,11 +116,6 @@ class ItemController extends Controller {
}
- private function setStarred($isStarred, $feedId, $guidHash){
- $this->itemBusinessLayer->star($feedId, $guidHash, $isStarred, $this->userId);
- }
-
-
/**
* @NoAdminRequired
*
@@ -129,7 +124,7 @@ class ItemController extends Controller {
*/
public function star($feedId, $guidHash){
try {
- $this->setStarred(true, $feedId, $guidHash);
+ $this->itemBusinessLayer->star($feedId, $guidHash, true, $this->userId);
} catch(BusinessLayerException $ex) {
return $this->error($ex, Http::STATUS_NOT_FOUND);
}
@@ -144,18 +139,13 @@ class ItemController extends Controller {
*/
public function unstar($feedId, $guidHash){
try {
- $this->setStarred(false, $feedId, $guidHash);
+ $this->itemBusinessLayer->star($feedId, $guidHash, false, $this->userId);
} catch(BusinessLayerException $ex) {
return $this->error($ex, Http::STATUS_NOT_FOUND);
}
}
- private function setRead($isRead, $itemId){
- $this->itemBusinessLayer->read($itemId, $isRead, $this->userId);
- }
-
-
/**
* @NoAdminRequired
*
@@ -163,7 +153,7 @@ class ItemController extends Controller {
*/
public function read($itemId){
try {
- $this->setRead(true);
+ $this->itemBusinessLayer->read($itemId, true, $this->userId);
} catch(BusinessLayerException $ex) {
return $this->error($ex, Http::STATUS_NOT_FOUND);
}
@@ -177,7 +167,7 @@ class ItemController extends Controller {
*/
public function unread($itemId){
try {
- $this->setRead(false);
+ $this->itemBusinessLayer->read($itemId, false, $this->userId);
} catch(BusinessLayerException $ex) {
return $this->error($ex, Http::STATUS_NOT_FOUND);
}