-
Notifications
You must be signed in to change notification settings - Fork 179
/
MetadataCollection.php
150 lines (130 loc) · 2.92 KB
/
MetadataCollection.php
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
<?php
namespace Kunnu\Dropbox\Models;
class MetadataCollection extends BaseModel
{
/**
* Collection Items Key
*
* @const string
*/
const COLLECTION_ITEMS_KEY = 'entries';
/**
* Collection Cursor Key
*
* @const string
*/
const COLLECTION_CURSOR_KEY = 'cursor';
/**
* Collection has-more-items Key
*
* @const string
*/
const COLLECTION_HAS_MORE_ITEMS_KEY = 'has_more';
/**
* Collection Data
*
* @var array
*/
protected $data;
/**
* List of Files/Folder Metadata
*
* @var \Kunnu\Dropbox\Models\ModelCollection
*/
protected $items = null;
/**
* Cursor for pagination and updates
*
* @var string
*/
protected $cursor;
/**
* If more items are available
*
* @var boolean
*/
protected $hasMoreItems;
/**
* Create a new Metadata Collection
*
* @param array $data Collection Data
*/
public function __construct(array $data)
{
parent::__construct($data);
$this->cursor = isset($data[$this->getCollectionCursorKey()]) ? $data[$this->getCollectionCursorKey()] : '';
$this->hasMoreItems = isset($data[$this->getCollectionHasMoreItemsKey()]) && $data[$this->getCollectionHasMoreItemsKey()] ? true : false;
$items = isset($data[$this->getCollectionItemsKey()]) ? $data[$this->getCollectionItemsKey()] : [];
$this->processItems($items);
}
/**
* Get the Collection Items Key
*
* @return string
*/
public function getCollectionItemsKey()
{
return static::COLLECTION_ITEMS_KEY;
}
/**
* Get the Collection has-more-items Key
*
* @return string
*/
public function getCollectionHasMoreItemsKey()
{
return static::COLLECTION_HAS_MORE_ITEMS_KEY;
}
/**
* Get the Collection Cursor Key
*
* @return string
*/
public function getCollectionCursorKey()
{
return static::COLLECTION_CURSOR_KEY;
}
/**
* Get the Items
*
* @return \Kunnu\Dropbox\Models\ModelCollection
*/
public function getItems()
{
return $this->items;
}
/**
* Get the cursor
*
* @return string
*/
public function getCursor()
{
return $this->cursor;
}
/**
* More items are available
*
* @return boolean
*/
public function hasMoreItems()
{
return $this->hasMoreItems;
}
/**
* Process items and cast them
* to their respective Models
*
* @param array $items Unprocessed Items
*
* @return void
*/
protected function processItems(array $items)
{
$processedItems = [];
foreach ($items as $entry) {
$processedItems[] = ModelFactory::make($entry);
}
$this->items = new ModelCollection($processedItems);
}
}