-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathYiiDropbox.php
More file actions
482 lines (396 loc) · 14.6 KB
/
YiiDropbox.php
File metadata and controls
482 lines (396 loc) · 14.6 KB
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
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
<?php
/**
* Yii Extension provide Dropbox API
*
* @author Alexey Salnikov <http://iamsalnikov.ru/>
* @author Joe Constant <http://joeconstant.me/>
*/
class YiiDropbox extends CApplicationComponent {
public $appKey;
public $appSecret;
public $root;
public $chunkSize = 4194304;
const URL_REQUEST_TOKEN = 'https://api.dropbox.com/1/oauth/request_token';
const URL_ACCESS_TOKEN = 'https://api.dropbox.com/1/oauth/access_token';
const URL_AUTHORIZE = 'https://www.dropbox.com/1/oauth/authorize';
const URL_API = 'https://api.dropbox.com/1/';
const API_CONTENT_URL = 'https://api-content.dropbox.com/1/';
const CONTENT_URL = 'https://api-content.dropbox.com/1/';
/**
* @var OAuth $_oauth
*/
protected $_oauth;
protected $_oauthToken;
protected $_oauthTokenSecret;
protected $_errorCode;
protected $_errorMessage;
public function init() {
$this->_oauth = new OAuth($this->appKey, $this->appSecret, OAUTH_SIG_METHOD_HMACSHA1, OAUTH_AUTH_TYPE_URI);
$this->_oauth->enableDebug();
}
public function getErrorCode() {
return $this->_errorCode;
}
public function getErrorMessage() {
return $this->_errorMessage;
}
public function getRequestToken() {
$tokens = $this->_oauth->getRequestToken(self::URL_REQUEST_TOKEN);
$this->setToken($tokens);
return $tokens;
}
public function setToken($oauthTokenSecret, $oauthToken = false) {
if ($oauthToken) {
$this->_oauthToken = $oauthToken;
$this->_oauthTokenSecret = $oauthTokenSecret;
}
else {
$this->_oauthToken = $oauthTokenSecret['oauth_token'];
$this->_oauthTokenSecret = $oauthTokenSecret['oauth_token_secret'];
}
$this->_oauth->setToken($this->_oauthToken, $this->_oauthTokenSecret);
}
public function getAccessToken() {
$tokens = $this->_oauth->getAccessToken(self::URL_ACCESS_TOKEN);
$this->setToken($tokens);
return $tokens;
}
public function getAuthorizeLink($callBack = false) {
$uri = self::URL_AUTHORIZE . '?oauth_token=' . $this->_oauthToken;
if ($callBack) $uri.='&oauth_callback=' . $callBack;
return $uri;
}
/**
* Get account information
* @return mixed
*/
public function getAccountInfo() {
$data = $this->fetch(self::URL_API . 'account/info');
return json_decode($data['body'],true);
}
/**
* Get file content
*
* @param string $path path
* @param string $root
* @return string
*/
public function getFile($path = '', $root = false) {
if (!$root) $root = $this->root;
$path = str_replace(array('%2F','~'), array('/','%7E'), rawurlencode($path));
$result = $this->fetch(self::API_CONTENT_URL . 'files/' . $root . '/' . ltrim($path,'/'));
return $result['body'];
}
/**
* Send file to Dropbox
*
* @param $path
* @param $file
* @param null $root
* @return bool
* @throws CException
*/
public function putFile($path, $file, $root = null) {
if (dirname($path) == '\\') {
$directory = "/";
} else {
$directory = dirname($path);
}
$filename = basename($path);
if($directory==='.') $directory = '';
$directory = str_replace(array('%2F','~'), array('/','%7E'), rawurlencode($directory));
$filename = str_replace('~', '%7E', rawurlencode($filename));
if (is_null($root)) $root = $this->root;
if (is_string($file)) {
$file = fopen($file,'rb');
} elseif (!is_resource($file)) {
$this->_errorCode = 1;
$this->_errorMessage = 'File must be a file-resource or a string';
return false;
}
$result=$this->multipartFetch(self::API_CONTENT_URL . 'files/' .
$root . '/' . trim($directory,'/'), $file, $filename);
if(!isset($result["httpStatus"]) || $result["httpStatus"] != 200) {
$this->_errorCode = 1;
$this->_errorMessage = 'Uploading file to Dropbox failed';
return false;
}
return true;
}
/**
* Upload big file
* @param bool $filename
* @param $file
* @param null $root
* @return mixed
*/
public function chunkedUpload($filename, $file, $root = null) {
$handle = fopen($file, 'rb');
fseek($handle, 0);
$arguments = array(
'upload_id' => '',
'offset' => 0,
);
while ($data = fread($handle, $this->chunkSize)) {
$url = self::CONTENT_URL . 'chunked_upload';
if ($arguments['offset'] > 0) {
$url .= '?' . http_build_query($arguments);
}
$result = $this->multipartFetch($url, $data, $filename, 'PUT', true);
$body = json_decode($result['body'], true);
$arguments['upload_id'] = isset($body['upload_id']) ? $body['upload_id'] : '';
$arguments['offset'] = isset($body['offset']) ? $body['offset'] : 0;
@fseek($handle, $arguments['offset']);
}
if (is_null($root)) {
$root = $this->root;
}
//fix upload
$commit = self::CONTENT_URL . 'commit_chunked_upload/' . $root . '/' . $filename . '?upload_id=' . $arguments['upload_id'];
$response = $this->oauth->fetch($commit, array(), 'POST');
return json_decode($response['body'],true);
}
/**
* Copy file
*
* @param $from
* @param $to
* @param null $root
* @return mixed
*/
public function copy($from, $to, $root = null) {
if (is_null($root)) $root = $this->root;
$response = $this->fetch(self::URL_API . 'fileops/copy', array('from_path' => $from, 'to_path' => $to, 'root' => $root));
return json_decode($response['body'],true);
}
/**
* Create folder
*
* @param $path
* @param null $root
* @return mixed
*/
public function createFolder($path, $root = null) {
if (is_null($root)) $root = $this->root;
$path = '/' . ltrim($path,'/');
$response = $this->fetch(self::URL_API . 'fileops/create_folder', array('path' => $path, 'root' => $root),'POST');
return json_decode($response['body'],true);
}
/**
* Delete file or directory
*
* @param $path
* @param null $root
* @return mixed
*/
public function delete($path, $root = null) {
if (is_null($root)) $root = $this->root;
$response = $this->fetch(self::URL_API . 'fileops/delete', array('path' => $path, 'root' => $root));
return json_decode($response['body']);
}
/**
* Move file
*
* @param $from
* @param $to
* @param null $root
* @return mixed
*/
public function move($from, $to, $root = null) {
if (is_null($root)) $root = $this->root;
$response = $this->fetch(self::URL_API . 'fileops/move', array('from_path' => rawurldecode($from), 'to_path' => rawurldecode($to), 'root' => $root));
return json_decode($response['body'],true);
}
/**
* Get files metadata
*
* @param $path
* @param bool $list
* @param null $hash
* @param null $fileLimit
* @param null $root
* @return bool|mixed
*/
public function getMetaData($path, $list = true, $hash = null, $fileLimit = null, $root = null) {
if (is_null($root)) $root = $this->root;
$args = array(
'list' => $list,
);
if (!is_null($hash)) $args['hash'] = $hash;
if (!is_null($fileLimit)) $args['file_limit'] = $fileLimit;
$path = str_replace(array('%2F','~'), array('/','%7E'), rawurlencode($path));
$response = $this->fetch(self::URL_API . 'metadata/' . $root . '/' . ltrim($path,'/'), $args);
/* 304 is not modified */
if ($response['httpStatus']==304) {
return true;
} else {
return json_decode($response['body'],true);
}
}
public function delta($cursor) {
$arg['cursor'] = $cursor;
$response = $this->fetch(self::URL_API . 'delta', $arg, 'POST');
return json_decode($response['body'],true);
}
/**
* Get Thumbnail
*
* @param $path
* @param string $size
* @param null $root
* @return mixed
*/
public function getThumbnail($path, $size = 'small', $root = null) {
if (is_null($root)) $root = $this->root;
$path = str_replace(array('%2F','~'), array('/','%7E'), rawurlencode($path));
$response = $this->fetch(self::URL_API . 'thumbnails/' . $root . '/' . ltrim($path,'/'),array('size' => $size));
return $response['body'];
}
/**
* Search
*
* @param string $query
* @param string $root
* @param string $path
* @return array
*/
public function search($query = '', $root = null, $path = ''){
if (is_null($root)) $root = $this->root;
if(!empty($path)){
$path = str_replace(array('%2F','~'), array('/','%7E'), rawurlencode($path));
}
$response = $this->fetch(self::URL_API . 'search/' . $root . '/' . ltrim($path,'/'),array('query' => $query));
return json_decode($response['body'],true);
}
/**
* Create and return share link
*
* @param type $path
* @param type $root
* @return type
*/
public function share($path, $root = null) {
if (is_null($root)) $root = $this->root;
$path = str_replace(array('%2F','~'), array('/','%7E'), rawurlencode($path));
$response = $this->fetch(self::URL_API . 'shares/'. $root . '/' . ltrim($path, '/'), array(), 'POST');
return json_decode($response['body'],true);
}
/**
* Return link to file
*
* @param type $path
* @param type $root
* @return type
*/
public function media($path, $root = null) {
if (is_null($root)) $root = $this->root;
$path = str_replace(array('%2F','~'), array('/','%7E'), rawurlencode($path));
$response = $this->fetch(self::URL_API. 'media/'. $root . '/' . ltrim($path, '/'), array(), 'POST');
return json_decode($response['body'],true);
}
/**
* @param type $path
* @param type $root
* @return type
*/
public function copy_ref($path, $root = null) {
if (is_null($root)) $root = $this->root;
$path = str_replace(array('%2F','~'), array('/','%7E'), rawurlencode($path));
$response = $this->fetch(self::URL_API. 'copy_ref/'. $root . '/' . ltrim($path, '/'));
return json_decode($response['body'],true);
}
/**
* @param $uri
* @param $file
* @param $filename
* @return array
*/
protected function multipartFetch($uri, $file, $filename, $method = 'POST', $nowData = false) {
$boundary = 'R50hrfBj5JYyfR3vF3wR96GPCC9Fd2q2pVMERvEaOE3D8LZTgLLbRpNwXek3';
$headers = array(
'Content-Type' => 'multipart/form-data; boundary=' . $boundary,
);
$body="--" . $boundary . "\r\n";
$body.="Content-Disposition: form-data; name=file; filename=".rawurldecode($filename)."\r\n";
$body.="Content-type: application/octet-stream\r\n";
$body.="\r\n";
if ($nowData) {
$body .= $file;
}
else {
$body.=stream_get_contents($file);
}
$body.="\r\n";
$body.="--" . $boundary . "--";
if ($method == 'POST') {
$uri.='?file=' . $filename;
}
return $this->fetch($uri, $body, $method, $headers);
}
/**
* @param String $uri
* @param array $arguments
* @param string $method
* @param array $httpHeaders
* @return array
* @throws CException
*/
public function fetch($uri, $arguments = array(), $method = 'GET', $httpHeaders = array()) {
try {
$this->_oauth->fetch($uri, $arguments, $method, $httpHeaders);
$result = $this->_oauth->getLastResponse();
$lastResponseInfo = $this->_oauth->getLastResponseInfo();
return array(
'httpStatus' => $lastResponseInfo['http_code'],
'body' => $result,
);
} catch (CException $e) {
$lastResponseInfo = $this->_oauth->getLastResponseInfo();
$this->_errorCode = $lastResponseInfo['http_code'];
switch($lastResponseInfo['http_code']) {
case 304 :
return array(
'httpStatus' => 304,
'body' => null,
);
break;
case 400 :
$this->_errorCode = 400;
$this->_errorMessage = 'Forbidden. Bad input parameter. Error message should indicate which one and why.';
return false;
case 401 :
$this->_errorCode = 401;
$this->_errorMessage = 'Forbidden. Bad or expired token. This can happen if the user or Dropbox revoked or expired an access token. To fix, you should re-authenticate the user.';
return false;
case 403 :
$this->_errorCode = 403;
$this->_errorMessage = 'Forbidden. This could mean a bad OAuth request, or a file or folder already existing at the target location.';
return false;
case 404 :
$this->_errorCode = 404;
$this->_errorMessage = 'Resource at uri: ' . $uri . ' could not be found';
return false;
case 405 :
$this->_errorCode = 405;
$this->_errorMessage = 'Forbidden. Request method not expected (generally should be GET or POST).';
return false;
case 500 :
$this->_errorCode = 500;
$this->_errorMessage = 'Server error. ' . $e->getMessage();
return false;
case 503 :
$this->_errorCode = 503;
$this->_errorMessage = 'Forbidden. Your app is making too many requests and is being rate limited. 503s can trigger on a per-app or per-user basis.';
return false;
case 507 :
$this->_errorCode = 507;
$this->_errorMessage = 'This dropbox is full';
return false;
default:
$this->_errorCode = 1;
$this->_errorMessage = $e->getMessage();
return false;
}
}
}
}