ML_Rest.php
1.2 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
<?php
require_once dirname(__FILE__) . '/ML_Rest_Base.php';
class ML_Rest extends ML_Rest_Base
{
var $name = '';
var $id = null;
function __construct($api_key){
parent::__construct();
$this->apiKey = $api_key;
$this->path = $this->getPath();
}
function setPath($path){
$this->path = $this->url . $path;
}
function getPath()
{
return $this->path;
}
function setName($name)
{
$this->name = $name;
}
function setId($id){
$this->id = $id;
if ($this->id)
$this->path = $this->getPath() . '/' . $id . '/';
else
$this->path = $this->getPath() . '/';
return $this;
}
function getAll(){
return $this->execute('GET');
}
function get($data = null){
if (!$this->id)
throw new InvalidArgumentException('ID is not set.');
return $this->execute('GET');
}
function add($data = null){
return $this->execute('POST', $data);
}
function put($data = null){
return $this->execute('PUT', $data);
}
function remove($data = null){
return $this->execute('DELETE');
}
}