summaryrefslogtreecommitdiffstats
path: root/db/feed.php
blob: 48f379a1b0f3f3b40c187658a626999e6758b783 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<?php
/**
* ownCloud - News app
*
* @author Alessandro Cosentino
* Copyright (c) 2012 - Alessandro Cosentino <cosenal@gmail.com>
*
* This file is licensed under the Affero General Public License version 3 or later.
* See the COPYING-README file
*
*/

namespace OCA\News;


/**
 * This class models a feed.
 */
class Feed extends Collection {

	private $title;
	private $url;
	private $items;  //array that contains all the items of the feed
	private $favicon;

	// if $items = null, it means that feed has not been fetched yet
	// if $id = null, it means that the feed has not been stored in the db yet
	public function __construct($url, $title, $items = null, $id = null) {
		$this->url = $url;
		$this->title = $title;
		if ($items !== null) {
			$this->items = $items;
		}
		if ($id !== null) {
			parent::__construct($id);
		}
	}

	public function getUrl() {
		return $this->url;
	}

	public function getTitle() {
		return $this->title;
	}

	public function setTitle($title) {
		$this->title = $title;
	}

	public function getFavicon() {
		return $this->favicon;
	}

	public function setFavicon($favicon) {
		$this->favicon = $favicon;
	}

	public function setItems($items) {
		$this->items = $items;
	}

	public function getItems() {
		return $this->items;
	}

	public function setFolderId($folderId){
		$this->folderId = $folderId;
	}

	public function getFolderId(){
		return $this->folderId;
	}
	
	public function jsonSerialize(){
		//TODO: this is just for test
		$encoding = array(
			'id'	=> $this->getId(),
			'url' 	=> $this->getUrl(),
			'title' => $this->getTitle()
		);
		return $encoding;
	}

}