forked from andrewscofield/parse.com-php-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparseFile.php
49 lines (37 loc) · 978 Bytes
/
parseFile.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
<?php
class parseFile extends parseRestClient{
private $_fileName;
private $_contentType;
public function __construct($contentType='',$data=''){
if($contentType != '' && $data !=''){
$this->_contentType = $contentType;
$this->data = $data;
}
parent::__construct();
}
public function save($fileName){
if($fileName != '' && $this->_contentType != '' && $this->data != ''){
$request = $this->request(array(
'method' => 'POST',
'requestUrl' => 'files/'.$fileName,
'contentType' => $this->_contentType,
'data' => $this->data,
));
return $request;
}
else{
$this->throwError('Please make sure you are passing a proper filename as string (e.g. hello.txt)');
}
}
public function delete($parseFileName){
if($parseFileName != ''){
$request = $this->request(array(
'method' => 'DELETE',
'requestUrl' => 'files/'.$parseFileName,
'contentType' => $this->_contentType,
));
return $request;
}
}
}
?>