1 | <?php |
||
9 | class HipChatChannel |
||
10 | { |
||
11 | /** |
||
12 | * The HipChat client instance. |
||
13 | * |
||
14 | * @var \NotificationChannels\HipChat\HipChat |
||
15 | */ |
||
16 | protected $hipChat; |
||
17 | |||
18 | /** |
||
19 | * Create a new instance of HipChatChannel. |
||
20 | * |
||
21 | * @param \NotificationChannels\HipChat\HipChat |
||
22 | */ |
||
23 | 3 | public function __construct(HipChat $hipChat) |
|
27 | |||
28 | /** |
||
29 | * Send the given notification. |
||
30 | * |
||
31 | * @param mixed $notifiable |
||
32 | * @param \Illuminate\Notifications\Notification $notification |
||
33 | * |
||
34 | * @throws \NotificationChannels\HipChat\Exceptions\CouldNotSendNotification |
||
35 | */ |
||
36 | 2 | public function send($notifiable, Notification $notification) |
|
37 | { |
||
38 | 2 | $message = $notification->toHipChat($notifiable); |
|
39 | |||
40 | 2 | if (is_string($message)) { |
|
41 | $message = new HipChatMessage($message); |
||
42 | } |
||
43 | |||
44 | 2 | if (! in_array(get_class($message), [HipChatMessage::class, HipChatFile::class])) { |
|
45 | throw CouldNotSendNotification::invalidMessageObject($message); |
||
46 | } |
||
47 | |||
48 | 2 | $to = $message->room ?: $notifiable->routeNotificationFor('HipChat'); |
|
49 | 2 | if (! $to = $to ?: $this->hipChat->room()) { |
|
50 | throw CouldNotSendNotification::missingTo(); |
||
51 | } |
||
52 | |||
53 | try { |
||
54 | 2 | $this->sendMessage($to, $message); |
|
55 | } catch (ClientException $exception) { |
||
56 | throw CouldNotSendNotification::hipChatRespondedWithAnError($exception); |
||
57 | } catch (\Exception $exception) { |
||
58 | throw CouldNotSendNotification::internalError(); |
||
59 | } |
||
60 | 2 | } |
|
61 | |||
62 | /** |
||
63 | * Send the HipChat notification message. |
||
64 | * |
||
65 | * @param $to |
||
66 | * @param mixed $message |
||
67 | * @return \Psr\Http\Message\ResponseInterface |
||
68 | */ |
||
69 | 2 | protected function sendMessage($to, $message) |
|
79 | } |
||
80 |