@@ -37,8 +37,8 @@ discard block |
||
37 | 37 | * @param array|null $args Array of user and password. Must have exactly two elements |
38 | 38 | */ |
39 | 39 | public function __construct($args = null) { |
40 | - if (is_array($args)) { |
|
41 | - if (count($args) !== 2) { |
|
40 | + if(is_array($args)) { |
|
41 | + if(count($args) !== 2) { |
|
42 | 42 | throw new Requests_Exception('Invalid number of arguments', 'authbasicbadargs'); |
43 | 43 | } |
44 | 44 | |
@@ -53,7 +53,7 @@ discard block |
||
53 | 53 | * @see fsockopen_header |
54 | 54 | * @param Requests_Hooks $hooks Hook system |
55 | 55 | */ |
56 | - public function register(Requests_Hooks &$hooks) { |
|
56 | + public function register(Requests_Hooks&$hooks) { |
|
57 | 57 | $hooks->register('curl.before_send', array(&$this, 'curl_before_send')); |
58 | 58 | $hooks->register('fsockopen.after_headers', array(&$this, 'fsockopen_header')); |
59 | 59 | } |
@@ -15,7 +15,8 @@ discard block |
||
15 | 15 | * @package Requests |
16 | 16 | * @subpackage Authentication |
17 | 17 | */ |
18 | -class Requests_Auth_Basic implements Requests_Auth { |
|
18 | +class Requests_Auth_Basic implements Requests_Auth |
|
19 | +{ |
|
19 | 20 | /** |
20 | 21 | * Username |
21 | 22 | * |
@@ -36,9 +37,12 @@ discard block |
||
36 | 37 | * @throws Requests_Exception On incorrect number of arguments (`authbasicbadargs`) |
37 | 38 | * @param array|null $args Array of user and password. Must have exactly two elements |
38 | 39 | */ |
39 | - public function __construct($args = null) { |
|
40 | - if (is_array($args)) { |
|
41 | - if (count($args) !== 2) { |
|
40 | + public function __construct($args = null) |
|
41 | + { |
|
42 | + if (is_array($args)) |
|
43 | + { |
|
44 | + if (count($args) !== 2) |
|
45 | + { |
|
42 | 46 | throw new Requests_Exception('Invalid number of arguments', 'authbasicbadargs'); |
43 | 47 | } |
44 | 48 | |
@@ -53,7 +57,8 @@ discard block |
||
53 | 57 | * @see fsockopen_header |
54 | 58 | * @param Requests_Hooks $hooks Hook system |
55 | 59 | */ |
56 | - public function register(Requests_Hooks &$hooks) { |
|
60 | + public function register(Requests_Hooks &$hooks) |
|
61 | + { |
|
57 | 62 | $hooks->register('curl.before_send', array(&$this, 'curl_before_send')); |
58 | 63 | $hooks->register('fsockopen.after_headers', array(&$this, 'fsockopen_header')); |
59 | 64 | } |
@@ -63,7 +68,8 @@ discard block |
||
63 | 68 | * |
64 | 69 | * @param resource $handle cURL resource |
65 | 70 | */ |
66 | - public function curl_before_send(&$handle) { |
|
71 | + public function curl_before_send(&$handle) |
|
72 | + { |
|
67 | 73 | curl_setopt($handle, CURLOPT_HTTPAUTH, CURLAUTH_BASIC); |
68 | 74 | curl_setopt($handle, CURLOPT_USERPWD, $this->getAuthString()); |
69 | 75 | } |
@@ -73,7 +79,8 @@ discard block |
||
73 | 79 | * |
74 | 80 | * @param string $out HTTP header string |
75 | 81 | */ |
76 | - public function fsockopen_header(&$out) { |
|
82 | + public function fsockopen_header(&$out) |
|
83 | + { |
|
77 | 84 | $out .= sprintf("Authorization: Basic %s\r\n", base64_encode($this->getAuthString())); |
78 | 85 | } |
79 | 86 | |
@@ -82,7 +89,8 @@ discard block |
||
82 | 89 | * |
83 | 90 | * @return string |
84 | 91 | */ |
85 | - public function getAuthString() { |
|
92 | + public function getAuthString() |
|
93 | + { |
|
86 | 94 | return $this->user . ':' . $this->pass; |
87 | 95 | } |
88 | 96 | } |
89 | 97 | \ No newline at end of file |
@@ -36,7 +36,7 @@ |
||
36 | 36 | * @throws Requests_Exception On incorrect number of arguments (`authbasicbadargs`) |
37 | 37 | * @param array|null $args Array of user and password. Must have exactly two elements |
38 | 38 | */ |
39 | - public function __construct($args = null) { |
|
39 | + public function __construct($args = NULL) { |
|
40 | 40 | if (is_array($args)) { |
41 | 41 | if (count($args) !== 2) { |
42 | 42 | throw new Requests_Exception('Invalid number of arguments', 'authbasicbadargs'); |
@@ -1,7 +1,8 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | 3 | |
4 | -class GetPostDetails extends AbstractRequest { |
|
4 | +class GetPostDetails extends AbstractRequest |
|
5 | +{ |
|
5 | 6 | |
6 | 7 | function getApiEndPoint() |
7 | 8 | { |
@@ -3,18 +3,18 @@ |
||
3 | 3 | |
4 | 4 | class GetPostDetails extends AbstractRequest { |
5 | 5 | |
6 | - function getApiEndPoint() |
|
7 | - { |
|
8 | - return '/v2/posts/' . $_GET['postId']; |
|
9 | - } |
|
10 | - function getPayload() |
|
11 | - { |
|
12 | - return array( |
|
13 | - ); |
|
14 | - } |
|
15 | - function getMethod() |
|
16 | - { |
|
17 | - return 'GET'; |
|
18 | - } |
|
6 | + function getApiEndPoint() |
|
7 | + { |
|
8 | + return '/v2/posts/' . $_GET['postId']; |
|
9 | + } |
|
10 | + function getPayload() |
|
11 | + { |
|
12 | + return array( |
|
13 | + ); |
|
14 | + } |
|
15 | + function getMethod() |
|
16 | + { |
|
17 | + return 'GET'; |
|
18 | + } |
|
19 | 19 | } |
20 | 20 |
@@ -1,7 +1,8 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | 3 | |
4 | -class UpdateLocation extends AbstractRequest { |
|
4 | +class UpdateLocation extends AbstractRequest |
|
5 | +{ |
|
5 | 6 | /** |
6 | 7 | * @var Location |
7 | 8 | */ |
@@ -3,37 +3,37 @@ |
||
3 | 3 | |
4 | 4 | class UpdateLocation extends AbstractRequest { |
5 | 5 | /** |
6 | - * @var Location |
|
7 | - */ |
|
8 | - public $location; |
|
9 | - /** |
|
10 | - * @return Location |
|
11 | - */ |
|
12 | - public function getLocation() |
|
13 | - { |
|
14 | - return $this->location; |
|
15 | - } |
|
16 | - /** |
|
17 | - * @param Location $location |
|
18 | - */ |
|
19 | - public function setLocation($location) |
|
20 | - { |
|
21 | - $this->location = $location; |
|
22 | - } |
|
6 | + * @var Location |
|
7 | + */ |
|
8 | + public $location; |
|
9 | + /** |
|
10 | + * @return Location |
|
11 | + */ |
|
12 | + public function getLocation() |
|
13 | + { |
|
14 | + return $this->location; |
|
15 | + } |
|
16 | + /** |
|
17 | + * @param Location $location |
|
18 | + */ |
|
19 | + public function setLocation($location) |
|
20 | + { |
|
21 | + $this->location = $location; |
|
22 | + } |
|
23 | 23 | |
24 | - function getApiEndPoint() |
|
25 | - { |
|
26 | - return '/v2/users/location'; |
|
27 | - } |
|
28 | - function getPayload() |
|
29 | - { |
|
30 | - return array( |
|
24 | + function getApiEndPoint() |
|
25 | + { |
|
26 | + return '/v2/users/location'; |
|
27 | + } |
|
28 | + function getPayload() |
|
29 | + { |
|
30 | + return array( |
|
31 | 31 | 'location' => $this->getLocation()->toArray(), |
32 | - ); |
|
33 | - } |
|
34 | - function getMethod() |
|
35 | - { |
|
36 | - return 'PUT'; |
|
37 | - } |
|
32 | + ); |
|
33 | + } |
|
34 | + function getMethod() |
|
35 | + { |
|
36 | + return 'PUT'; |
|
37 | + } |
|
38 | 38 | } |
39 | 39 |
@@ -4,25 +4,25 @@ discard block |
||
4 | 4 | { |
5 | 5 | public $lastPostId; |
6 | 6 | |
7 | - /** |
|
8 | - * @var Location |
|
9 | - */ |
|
10 | - public $location; |
|
11 | - public $url; |
|
7 | + /** |
|
8 | + * @var Location |
|
9 | + */ |
|
10 | + public $location; |
|
11 | + public $url; |
|
12 | 12 | |
13 | 13 | |
14 | - function setUrl ($url) |
|
15 | - { |
|
16 | - $this->url = $url; |
|
17 | - } |
|
14 | + function setUrl ($url) |
|
15 | + { |
|
16 | + $this->url = $url; |
|
17 | + } |
|
18 | 18 | |
19 | - function getUrl () |
|
20 | - { |
|
21 | - return $this->url; |
|
22 | - } |
|
19 | + function getUrl () |
|
20 | + { |
|
21 | + return $this->url; |
|
22 | + } |
|
23 | 23 | |
24 | - function setLastPostId ($lastPostId) |
|
25 | - { |
|
24 | + function setLastPostId ($lastPostId) |
|
25 | + { |
|
26 | 26 | $this->lastPostId = $lastPostId; |
27 | 27 | } |
28 | 28 | |
@@ -31,38 +31,38 @@ discard block |
||
31 | 31 | return $this->lastPostId; |
32 | 32 | } |
33 | 33 | |
34 | - function getApiEndPoint() |
|
35 | - { |
|
36 | - $apiEndPoint = $this->getUrl(); |
|
34 | + function getApiEndPoint() |
|
35 | + { |
|
36 | + $apiEndPoint = $this->getUrl(); |
|
37 | 37 | |
38 | - if ($this->getLastPostId() != "") { |
|
38 | + if ($this->getLastPostId() != "") { |
|
39 | 39 | $apiEndPoint = $this->getUrl() . '?after=' . $this->getLastPostId(); |
40 | 40 | } |
41 | - return $apiEndPoint; |
|
42 | - } |
|
43 | - function getPayload() |
|
44 | - { |
|
45 | - if($this->version == 'v3') |
|
46 | - { |
|
47 | - $this->location = new Location(); |
|
48 | - $this->location->setLat(52.520006); |
|
49 | - $this->location->setLng(13.404954); |
|
50 | - $this->location->setCityName('Berlin'); |
|
41 | + return $apiEndPoint; |
|
42 | + } |
|
43 | + function getPayload() |
|
44 | + { |
|
45 | + if($this->version == 'v3') |
|
46 | + { |
|
47 | + $this->location = new Location(); |
|
48 | + $this->location->setLat(52.520006); |
|
49 | + $this->location->setLng(13.404954); |
|
50 | + $this->location->setCityName('Berlin'); |
|
51 | 51 | |
52 | 52 | |
53 | - return array( |
|
54 | - "location" => $this->location->toArray(), |
|
55 | - "stickies" => 'false', |
|
56 | - ); |
|
57 | - } |
|
58 | - else |
|
59 | - { |
|
60 | - return array( |
|
61 | - ); |
|
62 | - } |
|
63 | - } |
|
64 | - function getMethod() |
|
65 | - { |
|
66 | - return 'GET'; |
|
67 | - } |
|
53 | + return array( |
|
54 | + "location" => $this->location->toArray(), |
|
55 | + "stickies" => 'false', |
|
56 | + ); |
|
57 | + } |
|
58 | + else |
|
59 | + { |
|
60 | + return array( |
|
61 | + ); |
|
62 | + } |
|
63 | + } |
|
64 | + function getMethod() |
|
65 | + { |
|
66 | + return 'GET'; |
|
67 | + } |
|
68 | 68 | } |
@@ -11,22 +11,22 @@ discard block |
||
11 | 11 | public $url; |
12 | 12 | |
13 | 13 | |
14 | - function setUrl ($url) |
|
14 | + function setUrl($url) |
|
15 | 15 | { |
16 | 16 | $this->url = $url; |
17 | 17 | } |
18 | 18 | |
19 | - function getUrl () |
|
19 | + function getUrl() |
|
20 | 20 | { |
21 | 21 | return $this->url; |
22 | 22 | } |
23 | 23 | |
24 | - function setLastPostId ($lastPostId) |
|
24 | + function setLastPostId($lastPostId) |
|
25 | 25 | { |
26 | 26 | $this->lastPostId = $lastPostId; |
27 | 27 | } |
28 | 28 | |
29 | - function getlastPostId () |
|
29 | + function getlastPostId() |
|
30 | 30 | { |
31 | 31 | return $this->lastPostId; |
32 | 32 | } |
@@ -35,7 +35,7 @@ discard block |
||
35 | 35 | { |
36 | 36 | $apiEndPoint = $this->getUrl(); |
37 | 37 | |
38 | - if ($this->getLastPostId() != "") { |
|
38 | + if($this->getLastPostId() != "") { |
|
39 | 39 | $apiEndPoint = $this->getUrl() . '?after=' . $this->getLastPostId(); |
40 | 40 | } |
41 | 41 | return $apiEndPoint; |
@@ -35,7 +35,8 @@ |
||
35 | 35 | { |
36 | 36 | $apiEndPoint = $this->getUrl(); |
37 | 37 | |
38 | - if ($this->getLastPostId() != "") { |
|
38 | + if ($this->getLastPostId() != "") |
|
39 | + { |
|
39 | 40 | $apiEndPoint = $this->getUrl() . '?after=' . $this->getLastPostId(); |
40 | 41 | } |
41 | 42 | return $apiEndPoint; |
@@ -11,6 +11,9 @@ discard block |
||
11 | 11 | public $url; |
12 | 12 | |
13 | 13 | |
14 | + /** |
|
15 | + * @param string $url |
|
16 | + */ |
|
14 | 17 | function setUrl ($url) |
15 | 18 | { |
16 | 19 | $this->url = $url; |
@@ -21,6 +24,9 @@ discard block |
||
21 | 24 | return $this->url; |
22 | 25 | } |
23 | 26 | |
27 | + /** |
|
28 | + * @param string $lastPostId |
|
29 | + */ |
|
24 | 30 | function setLastPostId ($lastPostId) |
25 | 31 | { |
26 | 32 | $this->lastPostId = $lastPostId; |
@@ -1,20 +1,20 @@ |
||
1 | 1 | <?php |
2 | 2 | class Downvote extends AbstractRequest |
3 | 3 | { |
4 | - public $postId; |
|
4 | + public $postId; |
|
5 | 5 | |
6 | - function getApiEndPoint() |
|
7 | - { |
|
8 | - return '/v2/posts/' . $this->postId . '/downvote'; |
|
9 | - } |
|
10 | - function getPayload() |
|
11 | - { |
|
12 | - return array( |
|
13 | - ); |
|
14 | - } |
|
15 | - function getMethod() |
|
16 | - { |
|
17 | - return 'PUT'; |
|
18 | - } |
|
6 | + function getApiEndPoint() |
|
7 | + { |
|
8 | + return '/v2/posts/' . $this->postId . '/downvote'; |
|
9 | + } |
|
10 | + function getPayload() |
|
11 | + { |
|
12 | + return array( |
|
13 | + ); |
|
14 | + } |
|
15 | + function getMethod() |
|
16 | + { |
|
17 | + return 'PUT'; |
|
18 | + } |
|
19 | 19 | } |
20 | 20 |
@@ -1,53 +1,53 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | 3 | class CreateUser extends AbstractRequest { |
4 | - /** |
|
5 | - * @var Location |
|
6 | - */ |
|
7 | - private $location; |
|
8 | - private $deviceUid; |
|
9 | - /** |
|
10 | - * @return Location |
|
11 | - */ |
|
12 | - private function getLocation() |
|
13 | - { |
|
14 | - return $this->location; |
|
15 | - } |
|
16 | - /** |
|
17 | - * @param Location $location |
|
18 | - */ |
|
19 | - public function setLocation(Location $location) |
|
20 | - { |
|
21 | - $this->location = $location; |
|
22 | - } |
|
23 | - private function getDeviceUid() |
|
24 | - { |
|
4 | + /** |
|
5 | + * @var Location |
|
6 | + */ |
|
7 | + private $location; |
|
8 | + private $deviceUid; |
|
9 | + /** |
|
10 | + * @return Location |
|
11 | + */ |
|
12 | + private function getLocation() |
|
13 | + { |
|
14 | + return $this->location; |
|
15 | + } |
|
16 | + /** |
|
17 | + * @param Location $location |
|
18 | + */ |
|
19 | + public function setLocation(Location $location) |
|
20 | + { |
|
21 | + $this->location = $location; |
|
22 | + } |
|
23 | + private function getDeviceUid() |
|
24 | + { |
|
25 | 25 | return $this->deviceUid; |
26 | 26 | } |
27 | 27 | public function setDeviceUid($deviceUid) |
28 | - { |
|
28 | + { |
|
29 | 29 | $this->deviceUid = $deviceUid; |
30 | 30 | } |
31 | - private function generateDeviceUid() |
|
32 | - { |
|
33 | - return $this->random_str(64, 'abcdef0123456789'); |
|
34 | - } |
|
31 | + private function generateDeviceUid() |
|
32 | + { |
|
33 | + return $this->random_str(64, 'abcdef0123456789'); |
|
34 | + } |
|
35 | 35 | |
36 | - private function random_str($length, $keyspace = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ') |
|
37 | - { |
|
38 | - $str = ''; |
|
39 | - $max = mb_strlen($keyspace, '8bit') - 1; |
|
40 | - for ($i = 0; $i < $length; ++$i) { |
|
41 | - $str .= $keyspace[rand(0, $max)]; |
|
42 | - } |
|
43 | - return $str; |
|
44 | - } |
|
45 | - public function getApiEndPoint() |
|
46 | - { |
|
47 | - return '/v2/users'; |
|
48 | - } |
|
49 | - public function getPayload() |
|
50 | - { |
|
36 | + private function random_str($length, $keyspace = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ') |
|
37 | + { |
|
38 | + $str = ''; |
|
39 | + $max = mb_strlen($keyspace, '8bit') - 1; |
|
40 | + for ($i = 0; $i < $length; ++$i) { |
|
41 | + $str .= $keyspace[rand(0, $max)]; |
|
42 | + } |
|
43 | + return $str; |
|
44 | + } |
|
45 | + public function getApiEndPoint() |
|
46 | + { |
|
47 | + return '/v2/users'; |
|
48 | + } |
|
49 | + public function getPayload() |
|
50 | + { |
|
51 | 51 | if(!isset($this->deviceUid)) |
52 | 52 | { |
53 | 53 | $this->setDeviceUid($this->generateDeviceUid()); |
@@ -58,9 +58,9 @@ discard block |
||
58 | 58 | "client_id" => self::CLIENTID, |
59 | 59 | "device_uid" => $this->getDeviceUid(), |
60 | 60 | ); |
61 | - } |
|
62 | - public function getMethod() |
|
63 | - { |
|
64 | - return 'POST'; |
|
65 | - } |
|
61 | + } |
|
62 | + public function getMethod() |
|
63 | + { |
|
64 | + return 'POST'; |
|
65 | + } |
|
66 | 66 | } |
@@ -37,7 +37,7 @@ |
||
37 | 37 | { |
38 | 38 | $str = ''; |
39 | 39 | $max = mb_strlen($keyspace, '8bit') - 1; |
40 | - for ($i = 0; $i < $length; ++$i) { |
|
40 | + for($i = 0; $i < $length; ++$i) { |
|
41 | 41 | $str .= $keyspace[rand(0, $max)]; |
42 | 42 | } |
43 | 43 | return $str; |
@@ -1,6 +1,7 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -class CreateUser extends AbstractRequest { |
|
3 | +class CreateUser extends AbstractRequest |
|
4 | +{ |
|
4 | 5 | /** |
5 | 6 | * @var Location |
6 | 7 | */ |
@@ -25,7 +26,7 @@ discard block |
||
25 | 26 | return $this->deviceUid; |
26 | 27 | } |
27 | 28 | public function setDeviceUid($deviceUid) |
28 | - { |
|
29 | + { |
|
29 | 30 | $this->deviceUid = $deviceUid; |
30 | 31 | } |
31 | 32 | private function generateDeviceUid() |
@@ -37,7 +38,8 @@ discard block |
||
37 | 38 | { |
38 | 39 | $str = ''; |
39 | 40 | $max = mb_strlen($keyspace, '8bit') - 1; |
40 | - for ($i = 0; $i < $length; ++$i) { |
|
41 | + for ($i = 0; $i < $length; ++$i) |
|
42 | + { |
|
41 | 43 | $str .= $keyspace[rand(0, $max)]; |
42 | 44 | } |
43 | 45 | return $str; |
@@ -24,6 +24,10 @@ discard block |
||
24 | 24 | { |
25 | 25 | return $this->deviceUid; |
26 | 26 | } |
27 | + |
|
28 | + /** |
|
29 | + * @param string $deviceUid |
|
30 | + */ |
|
27 | 31 | public function setDeviceUid($deviceUid) |
28 | 32 | { |
29 | 33 | $this->deviceUid = $deviceUid; |
@@ -33,6 +37,9 @@ discard block |
||
33 | 37 | return $this->random_str(64, 'abcdef0123456789'); |
34 | 38 | } |
35 | 39 | |
40 | + /** |
|
41 | + * @param integer $length |
|
42 | + */ |
|
36 | 43 | private function random_str($length, $keyspace = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ') |
37 | 44 | { |
38 | 45 | $str = ''; |
@@ -1,6 +1,7 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -class SendJodel extends AbstractRequest { |
|
3 | +class SendJodel extends AbstractRequest |
|
4 | +{ |
|
4 | 5 | public $location; |
5 | 6 | public $ancestor = ""; |
6 | 7 | public $color = ""; |
@@ -1,41 +1,41 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | 3 | class SendJodel extends AbstractRequest { |
4 | - public $location; |
|
5 | - public $ancestor = ""; |
|
6 | - public $color = ""; |
|
7 | - public $image = ''; |
|
4 | + public $location; |
|
5 | + public $ancestor = ""; |
|
6 | + public $color = ""; |
|
7 | + public $image = ''; |
|
8 | 8 | |
9 | - function getApiEndPoint() |
|
10 | - { |
|
11 | - return '/v3/posts/'; |
|
12 | - } |
|
9 | + function getApiEndPoint() |
|
10 | + { |
|
11 | + return '/v3/posts/'; |
|
12 | + } |
|
13 | 13 | |
14 | - function getPayload() |
|
15 | - { |
|
16 | - if($this->image != '') |
|
17 | - { |
|
18 | - return array( |
|
19 | - "ancestor" => $this->ancestor, |
|
20 | - "color" => $this->color, |
|
21 | - "location" => $this->location->toArray(), |
|
22 | - "message" => $_POST['message'], |
|
23 | - 'image' => base64_encode($this->image), |
|
24 | - ); |
|
25 | - } |
|
26 | - else |
|
27 | - { |
|
28 | - return array( |
|
29 | - "ancestor" => $this->ancestor, |
|
30 | - "color" => $this->color, |
|
31 | - "location" => $this->location->toArray(), |
|
32 | - "message" => $_POST['message'], |
|
33 | - ); |
|
34 | - } |
|
14 | + function getPayload() |
|
15 | + { |
|
16 | + if($this->image != '') |
|
17 | + { |
|
18 | + return array( |
|
19 | + "ancestor" => $this->ancestor, |
|
20 | + "color" => $this->color, |
|
21 | + "location" => $this->location->toArray(), |
|
22 | + "message" => $_POST['message'], |
|
23 | + 'image' => base64_encode($this->image), |
|
24 | + ); |
|
25 | + } |
|
26 | + else |
|
27 | + { |
|
28 | + return array( |
|
29 | + "ancestor" => $this->ancestor, |
|
30 | + "color" => $this->color, |
|
31 | + "location" => $this->location->toArray(), |
|
32 | + "message" => $_POST['message'], |
|
33 | + ); |
|
34 | + } |
|
35 | 35 | |
36 | - } |
|
37 | - function getMethod() |
|
38 | - { |
|
39 | - return 'POST'; |
|
40 | - } |
|
36 | + } |
|
37 | + function getMethod() |
|
38 | + { |
|
39 | + return 'POST'; |
|
40 | + } |
|
41 | 41 | } |
@@ -1,5 +1,6 @@ |
||
1 | 1 | <?php |
2 | -class Upvote extends AbstractRequest { |
|
2 | +class Upvote extends AbstractRequest |
|
3 | +{ |
|
3 | 4 | |
4 | 5 | public $postId; |
5 | 6 |
@@ -1,21 +1,21 @@ |
||
1 | 1 | <?php |
2 | 2 | class Upvote extends AbstractRequest { |
3 | 3 | |
4 | - public $postId; |
|
4 | + public $postId; |
|
5 | 5 | |
6 | - function getApiEndPoint() |
|
7 | - { |
|
8 | - return '/v2/posts/' . $this->postId . '/upvote'; |
|
9 | - } |
|
10 | - function getPayload() |
|
11 | - { |
|
12 | - return array( |
|
6 | + function getApiEndPoint() |
|
7 | + { |
|
8 | + return '/v2/posts/' . $this->postId . '/upvote'; |
|
9 | + } |
|
10 | + function getPayload() |
|
11 | + { |
|
12 | + return array( |
|
13 | 13 | // "reason_code" => -1, |
14 | - ); |
|
15 | - } |
|
16 | - function getMethod() |
|
17 | - { |
|
18 | - return 'PUT'; |
|
19 | - } |
|
14 | + ); |
|
15 | + } |
|
16 | + function getMethod() |
|
17 | + { |
|
18 | + return 'PUT'; |
|
19 | + } |
|
20 | 20 | } |
21 | 21 |
@@ -2,22 +2,22 @@ |
||
2 | 2 | class PostCaptcha extends AbstractRequest |
3 | 3 | { |
4 | 4 | public $captchaKey; |
5 | - public $captchaSolution; |
|
5 | + public $captchaSolution; |
|
6 | 6 | |
7 | - function getApiEndPoint() |
|
8 | - { |
|
9 | - return '/v3/user/verification/imageCaptcha/'; |
|
10 | - } |
|
11 | - function getPayload() |
|
12 | - { |
|
13 | - return array( |
|
14 | - 'key' => $this->captchaKey, |
|
15 | - 'answer' => $this->captchaSolution, |
|
16 | - ); |
|
17 | - } |
|
18 | - function getMethod() |
|
19 | - { |
|
20 | - return 'POST'; |
|
21 | - } |
|
7 | + function getApiEndPoint() |
|
8 | + { |
|
9 | + return '/v3/user/verification/imageCaptcha/'; |
|
10 | + } |
|
11 | + function getPayload() |
|
12 | + { |
|
13 | + return array( |
|
14 | + 'key' => $this->captchaKey, |
|
15 | + 'answer' => $this->captchaSolution, |
|
16 | + ); |
|
17 | + } |
|
18 | + function getMethod() |
|
19 | + { |
|
20 | + return 'POST'; |
|
21 | + } |
|
22 | 22 | } |
23 | 23 |