-
Notifications
You must be signed in to change notification settings - Fork 0
/
SensuClient.php
65 lines (58 loc) · 1.51 KB
/
SensuClient.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<?php
/*!
* @file SensuClient.php
* @author Sensu Development Team
* @date 2018/03/30
* @brief Sensu プラットフォームAPI クライアント
*/
namespace SensuDevelopmentTeam;
class SensuClient
{
/*!
* @brief Sensu プラットフォームAPI 基底URL
*/
const API_BASE_URL = 'https://sensu.tips/api/v1/platform';
/*!
* @brief APIキー
*/
private $api_key;
/*!
* @brief curlインスタンス
*/
private $ch;
/*!
* @brief コンストラクタ
* @param $api_key APIキー
*/
public function __construct($api_key)
{
$this->api_key = $api_key;
$this->ch = curl_init();
}
/*!
* @brief デストラクタ
*/
private function __destruct()
{
curl_close($this->ch);
}
/*!
* @brief コマンド
* @param $social_account ソーシャルアカウント識別
* @param $command 命令
* @return コマンドの返答
*/
public function command($social_account, $command)
{
$imploded_command = implode('/', array_map("urlencode", $command));
curl_setopt_array($this->ch,
[
CURLOPT_URL => self::API_BASE_URL.'/'.$imploded_command,
CURLOPT_RETURNTRANSFER => true,
CURLOPT_POST => true,
CURLOPT_POSTFIELDS => http_build_query(['api_key' => $this->api_key, 'social_account' => $social_account])
]);
$response = curl_exec($this->ch);
return json_decode($response);
}
}