-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSlackApi.php
More file actions
236 lines (207 loc) · 6.66 KB
/
SlackApi.php
File metadata and controls
236 lines (207 loc) · 6.66 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
<?php
/**
* Matomo - free/libre analytics platform
*
* @link https://matomo.org
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*/
declare(strict_types=1);
namespace Piwik\Plugins\Slack;
use Piwik\Container\StaticContainer;
use Piwik\Http;
use Piwik\Log\LoggerInterface;
class SlackApi
{
/**
* @var string
*/
private $fileID;
/**
* @var string
*/
private $token;
/**
* @var LoggerInterface
*/
private $logger;
private const SLACK_UPLOAD_URL_EXTERNAL = 'https://slack.com/api/files.getUploadURLExternal';
private const SLACK_COMPLETE_UPLOAD_EXTERNAL = 'https://slack.com/api/files.completeUploadExternal';
private const SLACK_POST_MESSAGE_URL = 'https://slack.com/api/chat.postMessage';
private const SLACK_TIMEOUT = 5;
public function __construct(
#[\SensitiveParameter]
string $token
) {
$this->token = $token;
$this->logger = StaticContainer::get(LoggerInterface::class);
}
/**
* Slack file upload is done in 3 parts - https://api.slack.com/messaging/files
*
* 1. Call files.getUploadURLExternal. The response will contain a URL that you can POST the contents of your file to
* 2. POST the contents of your file to the URL returned in step 1
* 3. Call files.completeUploadExternal along with ChannelId to post the file to a Channel.
*/
public function uploadFile(string $subject, string $fileName, string $fileContents, string $channel): bool
{
$uploadURL = $this->getUploadURLExternal($fileName, strlen($fileContents));
if (!empty($uploadURL) && $this->sendFile($uploadURL, $fileContents)) {
return $this->completeUploadExternal($channel, $subject);
}
$this->logger->info('Unable to send ' . $fileName . ' report to Slack');
return false;
}
/**
*
* Get the URL to upload the file
*
* @param string $fileName
* @param int $fileLength
* @return string
*/
public function getUploadURLExternal(string $fileName, int $fileLength): string
{
try {
$response = $this->sendHttpRequest(
self::SLACK_UPLOAD_URL_EXTERNAL,
self::SLACK_TIMEOUT,
[
'token' => $this->token,
'filename' => $fileName,
'length' => $fileLength,
],
['Content-Type' => 'multipart/form-data']
);
} catch (\Exception $e) {
$this->logger->error('Slack error getUploadURLExternal: ' . $e->getMessage());
return '';
}
$data = json_decode($response, true);
if (!empty($data) && !empty($data['upload_url']) && !empty($data['file_id'])) {
$this->fileID = $data['file_id'];
return $data['upload_url'];
}
return '';
}
/**
*
* Upload the file contents to the URL received from getUploadURLExternal method
*
* @param string $uploadURL
* @param string $fileContents
* @return bool
*/
public function sendFile(string $uploadURL, string $fileContents): bool
{
try {
$response = $this->sendHttpRequest(
$uploadURL,
self::SLACK_TIMEOUT,
[$fileContents],
[],
true
);
} catch (\Exception $e) {
$this->logger->error('Slack error sendFile: ' . $e->getMessage());
return false;
}
return strtolower($response) === ('ok - ' . strlen($fileContents));
}
/**
*
* Post the uploaded file to a channel
*
* @param string $channel
* @param string $subject
* @return bool
*/
public function completeUploadExternal(string $channel, string $subject): bool
{
try {
$response = $this->sendHttpRequest(
self::SLACK_COMPLETE_UPLOAD_EXTERNAL,
self::SLACK_TIMEOUT,
[
'token' => $this->token,
'files' => json_encode([['id' => $this->fileID]]),
'channels' => $channel,
'initial_comment' => $subject
],
['Content-Type' => 'multipart/form-data']
);
} catch (\Exception $e) {
$this->logger->error('Slack error completeUploadExternal:' . $e->getMessage());
return false;
}
$data = json_decode($response, true);
return !empty($data['ok']);
}
/**
*
* Send a text message to a Slack channel
*
* @param string $message
* @param string $channel
* @return bool
*/
public function sendMessage(string $message, string $channel): bool
{
if (empty($message) || empty($channel)) {
$this->logger->info('Empty message or channel for sending message');
return false;
}
try {
$response = $this->sendHttpRequest(
self::SLACK_POST_MESSAGE_URL,
self::SLACK_TIMEOUT,
[
'token' => $this->token,
'channel' => $channel,
'text' => $message,
],
['Content-Type' => 'multipart/form-data']
);
} catch (\Exception $e) {
$this->logger->error('Slack error sendMessage:' . $e->getMessage());
return false;
}
$data = json_decode($response, true);
return !empty($data['ok']);
}
/**
*
* Wrapper to send HTTP request
*
* @param string $url
* @param int $timeout
* @param array $requestBody
* @param array $additionalHeaders
* @param $requestBodyAsString
* @return array|bool|int[]|string
* @throws \Exception
*/
public function sendHttpRequest(string $url, int $timeout, array $requestBody, array $additionalHeaders = [], $requestBodyAsString = false)
{
if ($requestBodyAsString && !empty($requestBody[0])) {
$requestBody = $requestBody[0];
}
return Http::sendHttpRequestBy(
Http::getTransportMethod(),
$url,
$timeout,
$userAgent = null,
$destinationPath = null,
$file = null,
$followDepth = 0,
$acceptLanguage = false,
$acceptInvalidSslCertificate = false,
$byteRange = false,
$getExtendedInfo = false,
$httpMethod = 'POST',
$httpUsername = null,
$httpPassword = null,
$requestBody,
$additionalHeaders
);
}
}