|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
namespace Messenger\Hipchat; |
|
4
|
|
|
|
|
5
|
|
|
use Cronario\AbstractJob; |
|
6
|
|
|
use Cronario\AbstractWorker; |
|
7
|
|
|
|
|
8
|
|
|
/** |
|
9
|
|
|
* Class Worker |
|
10
|
|
|
* |
|
11
|
|
|
* @package Messenger\Sms\Alpha |
|
12
|
|
|
*/ |
|
13
|
|
|
class Worker extends AbstractWorker |
|
14
|
|
|
{ |
|
15
|
|
|
|
|
16
|
|
|
// region VALIDATE ******************************************************** |
|
17
|
|
|
|
|
18
|
|
|
/** |
|
19
|
|
|
* @param Job $job |
|
20
|
|
|
* |
|
21
|
|
|
* @throws ResultException |
|
22
|
|
|
*/ |
|
23
|
2 |
|
protected function validateJobParams(Job $job) |
|
24
|
|
|
{ |
|
25
|
2 |
|
if (empty($job->getToken())) { |
|
26
|
1 |
|
throw new ResultException(ResultException::ERROR_PARAM_TOKEN); |
|
27
|
|
|
} |
|
28
|
|
|
|
|
29
|
2 |
|
if (empty($job->getRoom())) { |
|
30
|
1 |
|
throw new ResultException(ResultException::ERROR_PARAM_ROOM); |
|
31
|
|
|
} |
|
32
|
|
|
|
|
33
|
2 |
|
if (empty($job->getFrom())) { |
|
34
|
1 |
|
throw new ResultException(ResultException::ERROR_PARAM_FROM); |
|
35
|
|
|
} |
|
36
|
|
|
|
|
37
|
2 |
|
if (empty($job->getMsg())) { |
|
38
|
1 |
|
throw new ResultException(ResultException::ERROR_PARAM_MSG); |
|
39
|
|
|
} |
|
40
|
|
|
|
|
41
|
1 |
|
} |
|
42
|
|
|
|
|
43
|
|
|
// endregion ************************************************************* |
|
44
|
|
|
|
|
45
|
|
|
/** |
|
46
|
|
|
* @param $token |
|
47
|
|
|
* |
|
48
|
|
|
* @return \HipChat\HipChat |
|
49
|
|
|
*/ |
|
50
|
1 |
|
public function getTransport($token) |
|
51
|
|
|
{ |
|
52
|
1 |
|
return new \HipChat\HipChat($token); |
|
53
|
|
|
} |
|
54
|
|
|
|
|
55
|
|
|
/** |
|
56
|
|
|
* @param Job $job |
|
57
|
|
|
* |
|
58
|
|
|
* @return bool |
|
59
|
|
|
*/ |
|
60
|
1 |
|
protected function sendMessage(Job $job) |
|
61
|
|
|
{ |
|
62
|
|
|
// prepare transport |
|
63
|
1 |
|
$transport = $this->getTransport($job->getToken()); |
|
64
|
|
|
|
|
65
|
|
|
// Send message |
|
66
|
1 |
|
$response = $transport->message_room( |
|
67
|
1 |
|
$job->getRoom(), |
|
68
|
1 |
|
$job->getFrom(), |
|
69
|
1 |
|
$job->getMsg(), |
|
70
|
1 |
|
false, |
|
71
|
1 |
|
$job->getColour() ?: \HipChat\HipChat::COLOR_YELLOW, |
|
72
|
1 |
|
$job->getFormat() ?: \HipChat\HipChat::FORMAT_TEXT |
|
73
|
1 |
|
); |
|
74
|
|
|
|
|
75
|
1 |
|
return $response; |
|
76
|
|
|
} |
|
77
|
|
|
|
|
78
|
|
|
/** |
|
79
|
|
|
* @param AbstractJob|Job $job |
|
80
|
|
|
* |
|
81
|
|
|
* @throws ResultException |
|
82
|
|
|
*/ |
|
83
|
2 |
|
protected function doJob(AbstractJob $job) |
|
84
|
|
|
{ |
|
85
|
2 |
|
$this->validateJobParams($job); |
|
|
|
|
|
|
86
|
|
|
|
|
87
|
|
|
try { |
|
88
|
1 |
|
$resultData['response'] = $this->sendMessage($job); |
|
|
|
|
|
|
89
|
1 |
|
} catch (\Exception $ex) { |
|
90
|
|
|
throw new ResultException(ResultException::ERROR_TRANSPORT); |
|
91
|
|
|
} |
|
92
|
|
|
|
|
93
|
1 |
|
throw new ResultException(ResultException::R_SUCCESS, $resultData); |
|
94
|
|
|
} |
|
95
|
|
|
} |
This check looks for parameters that are defined as one type in their type hint or doc comment but seem to be used as a narrower type, i.e an implementation of an interface or a subclass.
Consider changing the type of the parameter or doing an instanceof check before assuming your parameter is of the expected type.