summaryrefslogtreecommitdiffstats
path: root/db/item.php
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2014-10-21 16:45:36 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2014-10-21 16:45:36 +0200
commit42d69a95f3276a2d6089ca68f635c4e2f6aa7a23 (patch)
tree6a17fd7998f291e6dec1d996c1e7c724b92b8e58 /db/item.php
parent0e6598b0734fb927109f745d9c0f3a8605a30ca5 (diff)
convert tabs indention to indention with 4 spaces because of mixing of both variants in code and better readability on github and websites because you cant set the indention width there and 8 spaces will be used for a tab
Diffstat (limited to 'db/item.php')
-rw-r--r--db/item.php342
1 files changed, 171 insertions, 171 deletions
diff --git a/db/item.php b/db/item.php
index a53c825ff..5c353b058 100644
--- a/db/item.php
+++ b/db/item.php
@@ -41,177 +41,177 @@ use \OCP\AppFramework\Db\Entity;
*/
class Item extends Entity implements IAPI, \JsonSerializable {
- use EntityJSONSerializer;
-
- protected $guidHash;
- protected $guid;
- protected $url;
- protected $title;
- protected $author;
- protected $pubDate;
- protected $body;
- protected $enclosureMime;
- protected $enclosureLink;
- protected $feedId;
- protected $status = 0;
- protected $lastModified;
-
- public function __construct(){
- $this->addType('pubDate', 'integer');
- $this->addType('feedId', 'integer');
- $this->addType('status', 'integer');
- $this->addType('lastModified', 'integer');
- }
-
-
- public function setRead() {
- $this->markFieldUpdated('status');
- $this->status &= ~StatusFlag::UNREAD;
- }
-
- public function isRead() {
- return !(($this->status & StatusFlag::UNREAD) === StatusFlag::UNREAD);
- }
-
- public function setUnread() {
- $this->markFieldUpdated('status');
- $this->status |= StatusFlag::UNREAD;
- }
-
- public function isUnread() {
- return !$this->isRead();
- }
-
- public function setStarred() {
- $this->markFieldUpdated('status');
- $this->status |= StatusFlag::STARRED;
- }
-
- public function isStarred() {
- return ($this->status & StatusFlag::STARRED) === StatusFlag::STARRED;
- }
-
- public function setUnstarred() {
- $this->markFieldUpdated('status');
- $this->status &= ~StatusFlag::STARRED;
- }
-
- public function isUnstarred() {
- return !$this->isStarred();
- }
-
- /**
- * Turns entitie attributes into an array
- */
- public function jsonSerialize() {
- return [
- 'id' => $this->getId(),
- 'guid' => $this->getGuid(),
- 'guidHash' => $this->getGuidHash(),
- 'url' => $this->getUrl(),
- 'title' => $this->getTitle(),
- 'author' => $this->getAuthor(),
- 'pubDate' => $this->getPubDate(),
- 'body' => $this->getBody(),
- 'enclosureMime' => $this->getEnclosureMime(),
- 'enclosureLink' => $this->getEnclosureLink(),
- 'feedId' => $this->getFeedId(),
- 'unread' => $this->isUnread(),
- 'starred' => $this->isStarred(),
- 'lastModified' => $this->getLastModified()
- ];
- }
-
- public function toAPI() {
- return [
- 'id' => $this->getId(),
- 'guid' => $this->getGuid(),
- 'guidHash' => $this->getGuidHash(),
- 'url' => $this->getUrl(),
- 'title' => $this->getTitle(),
- 'author' => $this->getAuthor(),
- 'pubDate' => $this->getPubDate(),
- 'body' => $this->getBody(),
- 'enclosureMime' => $this->getEnclosureMime(),
- 'enclosureLink' => $this->getEnclosureLink(),
- 'feedId' => $this->getFeedId(),
- 'unread' => $this->isUnread(),
- 'starred' => $this->isStarred(),
- 'lastModified' => $this->getLastModified()
- ];
- }
-
-
- public function toExport($feeds) {
- return [
- 'guid' => $this->getGuid(),
- 'url' => $this->getUrl(),
- 'title' => $this->getTitle(),
- 'author' => $this->getAuthor(),
- 'pubDate' => $this->getPubDate(),
- 'body' => $this->getBody(),
- 'enclosureMime' => $this->getEnclosureMime(),
- 'enclosureLink' => $this->getEnclosureLink(),
- 'unread' => $this->isUnread(),
- 'starred' => $this->isStarred(),
- 'feedLink' => $feeds['feed'. $this->getFeedId()]->getLink()
- ];
- }
-
-
- public static function fromImport($import) {
- $item = new static();
- $item->setGuid($import['guid']);
- $item->setUrl($import['url']);
- $item->setTitle($import['title']);
- $item->setAuthor($import['author']);
- $item->setPubDate($import['pubDate']);
- $item->setBody($import['body']);
- $item->setEnclosureMime($import['enclosureMime']);
- $item->setEnclosureLink($import['enclosureLink']);
- if($import['unread']) {
- $item->setUnread();
- } else {
- $item->setRead();
- }
- if($import['starred']) {
- $item->setStarred();
- } else {
- $item->setUnstarred();
- }
-
- return $item;
- }
-
-
- public function setAuthor($name) {
- parent::setAuthor(strip_tags($name));
- }
-
-
- public function setTitle($title) {
- parent::setTitle(strip_tags($title));
- }
-
-
- public function setUrl($url) {
- $url = trim($url);
- if(strpos($url, 'http') === 0 || strpos($url, 'magnet') === 0) {
- parent::setUrl($url);
- }
- }
-
-
- public function setGuid($guid) {
- parent::setGuid($guid);
- $this->setGuidHash(md5($guid));
- }
-
-
- public function setBody($body) {
- // FIXME: this should not happen if the target="_blank" is already on the link
- parent::setBody(str_replace('<a', '<a target="_blank"', $body));
- }
+ use EntityJSONSerializer;
+
+ protected $guidHash;
+ protected $guid;
+ protected $url;
+ protected $title;
+ protected $author;
+ protected $pubDate;
+ protected $body;
+ protected $enclosureMime;
+ protected $enclosureLink;
+ protected $feedId;
+ protected $status = 0;
+ protected $lastModified;
+
+ public function __construct(){
+ $this->addType('pubDate', 'integer');
+ $this->addType('feedId', 'integer');
+ $this->addType('status', 'integer');
+ $this->addType('lastModified', 'integer');
+ }
+
+
+ public function setRead() {
+ $this->markFieldUpdated('status');
+ $this->status &= ~StatusFlag::UNREAD;
+ }
+
+ public function isRead() {
+ return !(($this->status & StatusFlag::UNREAD) === StatusFlag::UNREAD);
+ }
+
+ public function setUnread() {
+ $this->markFieldUpdated('status');
+ $this->status |= StatusFlag::UNREAD;
+ }
+
+ public function isUnread() {
+ return !$this->isRead();
+ }
+
+ public function setStarred() {
+ $this->markFieldUpdated('status');
+ $this->status |= StatusFlag::STARRED;
+ }
+
+ public function isStarred() {
+ return ($this->status & StatusFlag::STARRED) === StatusFlag::STARRED;
+ }
+
+ public function setUnstarred() {
+ $this->markFieldUpdated('status');
+ $this->status &= ~StatusFlag::STARRED;
+ }
+
+ public function isUnstarred() {
+ return !$this->isStarred();
+ }
+
+ /**
+ * Turns entitie attributes into an array
+ */
+ public function jsonSerialize() {
+ return [
+ 'id' => $this->getId(),
+ 'guid' => $this->getGuid(),
+ 'guidHash' => $this->getGuidHash(),
+ 'url' => $this->getUrl(),
+ 'title' => $this->getTitle(),
+ 'author' => $this->getAuthor(),
+ 'pubDate' => $this->getPubDate(),
+ 'body' => $this->getBody(),
+ 'enclosureMime' => $this->getEnclosureMime(),
+ 'enclosureLink' => $this->getEnclosureLink(),
+ 'feedId' => $this->getFeedId(),
+ 'unread' => $this->isUnread(),
+ 'starred' => $this->isStarred(),
+ 'lastModified' => $this->getLastModified()
+ ];
+ }
+
+ public function toAPI() {
+ return [
+ 'id' => $this->getId(),
+ 'guid' => $this->getGuid(),
+ 'guidHash' => $this->getGuidHash(),
+ 'url' => $this->getUrl(),
+ 'title' => $this->getTitle(),
+ 'author' => $this->getAuthor(),
+ 'pubDate' => $this->getPubDate(),
+ 'body' => $this->getBody(),
+ 'enclosureMime' => $this->getEnclosureMime(),
+ 'enclosureLink' => $this->getEnclosureLink(),
+ 'feedId' => $this->getFeedId(),
+ 'unread' => $this->isUnread(),
+ 'starred' => $this->isStarred(),
+ 'lastModified' => $this->getLastModified()
+ ];
+ }
+
+
+ public function toExport($feeds) {
+ return [
+ 'guid' => $this->getGuid(),
+ 'url' => $this->getUrl(),
+ 'title' => $this->getTitle(),
+ 'author' => $this->getAuthor(),
+ 'pubDate' => $this->getPubDate(),
+ 'body' => $this->getBody(),
+ 'enclosureMime' => $this->getEnclosureMime(),
+ 'enclosureLink' => $this->getEnclosureLink(),
+ 'unread' => $this->isUnread(),
+ 'starred' => $this->isStarred(),
+ 'feedLink' => $feeds['feed'. $this->getFeedId()]->getLink()
+ ];
+ }
+
+
+ public static function fromImport($import) {
+ $item = new static();
+ $item->setGuid($import['guid']);
+ $item->setUrl($import['url']);
+ $item->setTitle($import['title']);
+ $item->setAuthor($import['author']);
+ $item->setPubDate($import['pubDate']);
+ $item->setBody($import['body']);
+ $item->setEnclosureMime($import['enclosureMime']);
+ $item->setEnclosureLink($import['enclosureLink']);
+ if($import['unread']) {
+ $item->setUnread();
+ } else {
+ $item->setRead();
+ }
+ if($import['starred']) {
+ $item->setStarred();
+ } else {
+ $item->setUnstarred();
+ }
+
+ return $item;
+ }
+
+
+ public function setAuthor($name) {
+ parent::setAuthor(strip_tags($name));
+ }
+
+
+ public function setTitle($title) {
+ parent::setTitle(strip_tags($title));
+ }
+
+
+ public function setUrl($url) {
+ $url = trim($url);
+ if(strpos($url, 'http') === 0 || strpos($url, 'magnet') === 0) {
+ parent::setUrl($url);
+ }
+ }
+
+
+ public function setGuid($guid) {
+ parent::setGuid($guid);
+ $this->setGuidHash(md5($guid));
+ }
+
+
+ public function setBody($body) {
+ // FIXME: this should not happen if the target="_blank" is already on the link
+ parent::setBody(str_replace('<a', '<a target="_blank"', $body));
+ }
}