Completed
Push — master ( e77f4f...2b26f2 )
by Peter
03:40
created

HipChatChannel   A

Complexity

Total Complexity 12

Size/Duplication

Total Lines 71
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 4

Test Coverage

Coverage 68%

Importance

Changes 4
Bugs 0 Features 1
Metric Value
wmc 12
c 4
b 0
f 1
lcom 1
cbo 4
dl 0
loc 71
ccs 17
cts 25
cp 0.68
rs 10

3 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
C send() 0 25 8
A sendMessage() 0 10 3
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 2
        } 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