summaryrefslogtreecommitdiffstats
path: root/lib/item.php
diff options
context:
space:
mode:
authorAlessandro Cosentino <cosenal@gmail.com>2012-05-08 15:57:08 -0400
committerAlessandro Cosentino <cosenal@gmail.com>2012-05-08 15:57:08 -0400
commit4bf4af8741ca723273ae9aff0f1d6c38511e2a07 (patch)
treed7e25b383f15837e60a1dff4fadae55ab72d57e0 /lib/item.php
parentd1b37e12b2d76c128626e15910577e300ef0f63c (diff)
rudimental item class and tests on it
Diffstat (limited to 'lib/item.php')
-rw-r--r--lib/item.php57
1 files changed, 57 insertions, 0 deletions
diff --git a/lib/item.php b/lib/item.php
new file mode 100644
index 000000000..6a18ded1c
--- /dev/null
+++ b/lib/item.php
@@ -0,0 +1,57 @@
+<?php
+/**
+* ownCloud - News app
+*
+* @author Alessandro Cosentino
+* @copyright 2012 Alessandro Cosentino cosenal@gmail.com
+*
+* This library is free software; you can redistribute it and/or
+* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
+* License as published by the Free Software Foundation; either
+* version 3 of the License, or any later version.
+*
+* This library is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+* GNU AFFERO GENERAL PUBLIC LICENSE for more details.
+*
+* You should have received a copy of the GNU Lesser General Public
+* License along with this library. If not, see <http://www.gnu.org/licenses/>.
+*
+*/
+
+
+class StatusFlag{
+ const Unread = 0x02;
+ const Important = 0x04;
+ const Deleted = 0x08;
+ const Updated = 0x16;
+}
+
+/*
+* This class models an item
+*
+* It wraps a SimplePie item and adds a status flag to it
+*/
+class OC_News_Item{
+
+ private $spitem; //the SimplePie item
+ private $status; //a bit-field set with status flags
+
+ public function __construct($spitem){
+ $this->spitem = $spitem;
+ $this->status |= StatusFlag::Unread;
+ }
+
+ public function setRead(){
+ $this->status |= ~StatusFlag::Unread;
+ }
+
+ public function setUnread(){
+ $this->status |= StatusFlag::Unread;
+ }
+
+ public function isRead(){
+ return ($this->status & ~StatusFlag::Unread);
+ }
+}