Skip to content

Commit 3972fcc

Browse files
authored
Merge pull request #12 from nitrado/Packages
changed function calls to PUT / DELETE
2 parents e86efc6 + a1d991d commit 3972fcc

File tree

2 files changed

+50
-2
lines changed

2 files changed

+50
-2
lines changed

lib/Nitrapi/Common/Http/Client.php

+48
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,54 @@ public function dataGet($url, $headers = null, $options = array()) {
7878
return (isset($json['data'])) ? $json['data'] : $json['message'];
7979
}
8080

81+
/**
82+
* @param $url
83+
* @param array $body
84+
* @param array $headers
85+
* @param array $options
86+
* @return mixed
87+
*/
88+
public function dataPut($url, $body = null, $headers = null, $options = array()) {
89+
try {
90+
if (is_array($body)) {
91+
$options['form_params'] = $body;
92+
}
93+
if (is_array($headers)) {
94+
$options['headers'] = $headers;
95+
}
96+
if (is_array($options) && isset($options['query'])) {
97+
$options['query'] = array_merge($options['query'], $this->defaultQuery);
98+
}
99+
100+
$response = $this->request('PUT', $url, $options);
101+
$this->checkErrors($response);
102+
$json = json_decode($response->getBody(), true);
103+
} catch (RequestException $e) {
104+
if ($e->hasResponse()) {
105+
$response = json_decode($e->getResponse()->getBody(), true);
106+
$msg = isset($response['message']) ? $response['message'] : 'Unknown error';
107+
if ($e->getResponse()->getStatusCode() == 503) {
108+
throw new NitrapiMaintenanceException($msg);
109+
}
110+
if ($e->getResponse()->getStatusCode() == 428) {
111+
throw new NitrapiConcurrencyException($msg);
112+
}
113+
throw new NitrapiHttpErrorException($msg);
114+
}
115+
throw new NitrapiHttpErrorException($e->getMessage());
116+
}
117+
118+
if (isset($json['data']) && is_array($json['data'])) {
119+
return $json['data'];
120+
}
121+
122+
if (!empty($json['message'])) {
123+
return $json['message'];
124+
}
125+
126+
return true;
127+
}
128+
81129
/**
82130
* @param $url
83131
* @param array $body

lib/Nitrapi/Services/Gameservers/Packages/Package.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -55,13 +55,13 @@ public function install($version) {
5555
}
5656
public function uninstall() {
5757
$url = "/services/".$this->service->getId()."/gameservers/packages/uninstall";
58-
return $this->service->getApi()->dataPost($url, array(
58+
return $this->service->getApi()->dataDelete($url, array(
5959
"package" => $this->name
6060
));
6161
}
6262
public function reinstall() {
6363
$url = "/services/".$this->service->getId()."/gameservers/packages/reinstall";
64-
return $this->service->getApi()->dataPost($url, array(
64+
return $this->service->getApi()->dataPut($url, array(
6565
"package" => $this->name
6666
));
6767
}

0 commit comments

Comments
 (0)