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
namespace SparkPost;
class Resource
{
protected $sparkpost;
protected $endpoint;
public function __construct(SparkPost $sparkpost, $endpoint)
{
$this->sparkpost = $sparkpost;
$this->endpoint = $endpoint;
}
public function get($uri, $payload, $headers)
{
return $this->request('GET', $uri, $payload, $headers);
}
public function put($uri, $payload, $headers)
{
return $this->request('PUT', $uri, $payload, $headers);
}
public function post($payload, $headers)
{
return $this->request('POST', '', $payload, $headers);
}
public function delete($uri, $payload, $headers)
{
return $this->request('DELETE', $uri, $payload, $headers);
}
public function request($method = 'GET', $uri = '', $payload = [], $headers = [])
{
if (is_array($uri)) {
$headers = $payload;
$payload = $uri;
$uri = '';
}
$uri = $this->endpoint.'/'.$uri;
return $this->sparkpost->request($method, $uri, $payload, $headers);
}
}
|