Completed
Push — master ( 08f84c...665c45 )
by Peter
16:12 queued 14:15
created

HipChatChannel::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 3
CRAP Score 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 4
ccs 3
cts 3
cp 1
rs 10
cc 1
eloc 2
nc 1
nop 1
crap 1
1
<?php
2
3
namespace NotificationChannels\HipChat;
4
5
use GuzzleHttp\Exception\ClientException;
6
use Illuminate\Notifications\Notification;
7
use NotificationChannels\HipChat\Exceptions\CouldNotSendNotification;
8
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)
24
    {
25 3
        $this->hipChat = $hipChat;
26 3
    }
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)
70
    {
71 2
        if ($message instanceof HipChatMessage) {
72 1
            return $this->hipChat->sendMessage($to, $message->toArray());
73
        }
74
75 1
        if ($message instanceof HipChatFile) {
76 1
            return $this->hipChat->shareFile($to, $message->toArray());
77
        }
78
    }
79
}
80