-
Notifications
You must be signed in to change notification settings - Fork 179
/
FileMetadata.php
252 lines (223 loc) · 5.45 KB
/
FileMetadata.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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
<?php
namespace Kunnu\Dropbox\Models;
class FileMetadata extends BaseModel
{
/**
* A unique identifier of the file
*
* @var string
*/
protected $id;
/**
* Object type
*
* @var string
*/
protected $tag;
/**
* The last component of the path (including extension).
*
* @var string
*/
protected $name;
/**
* A unique identifier for the current revision of a file.
* This field is the same rev as elsewhere in the API and
* can be used to detect changes and avoid conflicts.
*
* @var string
*/
protected $rev;
/**
* The file size in bytes.
*
* @var int
*/
protected $size;
/**
* The lowercased full path in the user's Dropbox.
*
* @var string
*/
protected $path_lower;
/**
* Additional information if the file is a photo or video.
*
* @var \Kunnu\Dropbox\Models\MediaInfo
*/
protected $media_info;
/**
* Set if this file is contained in a shared folder.
*
* @var \Kunnu\Dropbox\Models\FileSharingInfo
*/
protected $sharing_info;
/**
* The cased path to be used for display purposes only.
*
* @var string
*/
protected $path_display;
/**
* For files, this is the modification time set by the
* desktop client when the file was added to Dropbox.
*
* @var string
*/
protected $client_modified;
/**
* The last time the file was modified on Dropbox.
*
* @var string
*/
protected $server_modified;
/**
* This flag will only be present if
* include_has_explicit_shared_members is true in
* list_folder or get_metadata. If this flag is present,
* it will be true if this file has any explicit shared
* members. This is different from sharing_info in that
* this could be true in the case where a file has explicit
* members but is not contained within a shared folder.
*
* @var bool
*/
protected $has_explicit_shared_members;
/**
* Create a new FileMetadata instance
*
* @param array $data
*/
public function __construct(array $data)
{
parent::__construct($data);
$this->id = $this->getDataProperty('id');
$this->tag = $this->getDataProperty('.tag');
$this->rev = $this->getDataProperty('rev');
$this->name = $this->getDataProperty('name');
$this->size = $this->getDataProperty('size');
$this->path_lower = $this->getDataProperty('path_lower');
$this->path_display = $this->getDataProperty('path_display');
$this->client_modified = $this->getDataProperty('client_modified');
$this->server_modified = $this->getDataProperty('server_modified');
$this->has_explicit_shared_members = $this->getDataProperty('has_explicit_shared_members');
//Make MediaInfo
$mediaInfo = $this->getDataProperty('media_info');
if (is_array($mediaInfo)) {
$this->media_info = new MediaInfo($mediaInfo);
}
//Make SharingInfo
$sharingInfo = $this->getDataProperty('sharing_info');
if (is_array($sharingInfo)) {
$this->sharing_info = new FileSharingInfo($sharingInfo);
}
}
/**
* Get the 'id' property of the file model.
*
* @return string
*/
public function getId()
{
return $this->id;
}
/**
* Get the '.tag' property of the file model.
*
* @return string
*/
public function getTag()
{
return $this->tag;
}
/**
* Get the 'name' property of the file model.
*
* @return string
*/
public function getName()
{
return $this->name;
}
/**
* Get the 'rev' property of the file model.
*
* @return string
*/
public function getRev()
{
return $this->rev;
}
/**
* Get the 'size' property of the file model.
*
* @return int
*/
public function getSize()
{
return $this->size;
}
/**
* Get the 'path_lower' property of the file model.
*
* @return string
*/
public function getPathLower()
{
return $this->path_lower;
}
/**
* Get the 'media_info' property of the file model.
*
* @return \Kunnu\Dropbox\Models\MediaInfo
*/
public function getMediaInfo()
{
return $this->media_info;
}
/**
* Get the 'sharing_info' property of the file model.
*
* @return \Kunnu\Dropbox\Models\FileSharingInfo
*/
public function getSharingInfo()
{
return $this->sharing_info;
}
/**
* Get the 'path_display' property of the file model.
*
* @return string
*/
public function getPathDisplay()
{
return $this->path_display;
}
/**
* Get the 'client_modified' property of the file model.
*
* @return string
*/
public function getClientModified()
{
return $this->client_modified;
}
/**
* Get the 'server_modified' property of the file model.
*
* @return string
*/
public function getServerModified()
{
return $this->server_modified;
}
/**
* Get the 'has_explicit_shared_members' property of the file model.
*
* @return bool
*/
public function hasExplicitSharedMembers()
{
return $this->has_explicit_shared_members;
}
}