GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — master ( 7392fc...b66279 )
by Gregorio
04:48 queued 02:32
created

Twilio::sendSmsMessage()   B

Complexity

Conditions 3
Paths 4

Size

Total Lines 28
Code Lines 17

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 21
CRAP Score 3

Importance

Changes 0
Metric Value
dl 0
loc 28
ccs 21
cts 21
cp 1
rs 8.8571
c 0
b 0
f 0
cc 3
eloc 17
nc 4
nop 2
crap 3
1
<?php
2
3
namespace NotificationChannels\Twilio;
4
5
use Twilio\Rest\Client as TwilioService;
6
use NotificationChannels\Twilio\Exceptions\CouldNotSendNotification;
7
8
class Twilio
9
{
10
    /**
11
     * @var TwilioService
12
     */
13
    protected $twilioService;
14
15
    /**
16
     * @var TwilioConfig
17
     */
18
    private $config;
19
20
    /**
21
     * Twilio constructor.
22
     *
23
     * @param  TwilioService $twilioService
24
     * @param TwilioConfig $config
25
     */
26 13
    public function __construct(TwilioService $twilioService, TwilioConfig $config)
27
    {
28 13
        $this->twilioService = $twilioService;
29 13
        $this->config = $config;
30 13
    }
31
32
    /**
33
     * Send a TwilioMessage to the a phone number.
34
     *
35
     * @param  TwilioMessage $message
36
     * @param  string $to
37
     * @param bool $useAlphanumericSender
38
     * @return mixed
39
     * @throws CouldNotSendNotification
40
     */
41 11
    public function sendMessage(TwilioMessage $message, $to, $useAlphanumericSender = false)
42
    {
43 11
        if ($message instanceof TwilioSmsMessage) {
44 8
            if ($useAlphanumericSender && $sender = $this->getAlphanumericSender()) {
45 2
                $message->from($sender);
46 2
            }
47
48 8
            return $this->sendSmsMessage($message, $to);
49
        }
50
51 3
        if ($message instanceof TwilioCallMessage) {
52 2
            return $this->makeCall($message, $to);
53
        }
54
55 1
        throw CouldNotSendNotification::invalidMessageObject($message);
56
    }
57
58
    /**
59
     * Send an sms message using the Twilio Service.
60
     *
61
     * @param TwilioSmsMessage $message
62
     * @param string $to
63
     * @return \Twilio\Rest\Api\V2010\Account\MessageInstance
64
     * @throws CouldNotSendNotification
65
     */
66 8
    protected function sendSmsMessage(TwilioSmsMessage $message, $to)
67
    {
68
        $params = [
69 8
            'from' => $this->getFrom($message),
70 7
            'body' => trim($message->content),
71 7
        ];
72
73 7
        if ($serviceSid = $this->config->getServiceSid()) {
74 2
            $params['messagingServiceSid'] = $serviceSid;
75 2
        }
76
77 7
        $this->fillOptionalParams($params, $message, [
78 7
            'statusCallback',
79 7
            'statusCallbackMethod',
80 7
            'applicationSid',
81 7
            'maxPrice',
82 7
            'provideFeedback',
83 7
            'validityPeriod',
84 7
        ]);
85
86 7
        if ($message instanceof TwilioMmsMessage) {
87 1
            $this->fillOptionalParams($params, $message, [
88 1
                'mediaUrl',
89 1
            ]);
90 1
        }
91
92 7
        return $this->twilioService->messages->create($to, $params);
93
    }
94
95
    /**
96
     * Make a call using the Twilio Service.
97
     *
98
     * @param TwilioCallMessage $message
99
     * @param string $to
100
     * @return \Twilio\Rest\Api\V2010\Account\CallInstance
101
     * @throws CouldNotSendNotification
102
     */
103 2
    protected function makeCall(TwilioCallMessage $message, $to)
104
    {
105
        $params = [
106 2
            'url' => trim($message->content),
107 2
        ];
108
109 2
        $this->fillOptionalParams($params, $message, [
110 2
            'statusCallback',
111 2
            'statusCallbackMethod',
112 2
            'method',
113 2
            'status',
114 2
            'fallbackUrl',
115 2
            'fallbackMethod',
116 2
        ]);
117
118 2
        return $this->twilioService->calls->create(
119 2
            $to,
120 2
            $this->getFrom($message),
121
            $params
122 2
        );
123
    }
124
125
    /**
126
     * Get the from address from message, or config.
127
     *
128
     * @param TwilioMessage $message
129
     * @return string
130
     * @throws CouldNotSendNotification
131
     */
132 10
    protected function getFrom(TwilioMessage $message)
133
    {
134 10
        if (! $from = $message->getFrom() ?: $this->config->getFrom()) {
135 1
            throw CouldNotSendNotification::missingFrom();
136
        }
137
138 9
        return $from;
139
    }
140
141
    /**
142
     * Get the alphanumeric sender from config, if one exists.
143
     *
144
     * @return string|null
145
     */
146 2
    protected function getAlphanumericSender()
147
    {
148 2
        if ($sender = $this->config->getAlphanumericSender()) {
149 2
            return $sender;
150
        }
151
    }
152
153
    /**
154
     * @param array $params
155
     * @param TwilioMessage $message
156
     * @param array $optionalParams
157
     * @return mixed
158
     */
159 9
    protected function fillOptionalParams(&$params, $message, $optionalParams)
160
    {
161 9
        foreach ($optionalParams as $optionalParam) {
162 9
            if ($message->$optionalParam) {
163 3
                $params[$optionalParam] = $message->$optionalParam;
164 3
            }
165 9
        }
166 9
    }
167
}
168