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 ( 1781dd...987681 )
by Gregorio
02:39
created

Twilio::sendSmsMessage()   B

Complexity

Conditions 6
Paths 12

Size

Total Lines 35

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 25
CRAP Score 6

Importance

Changes 0
Metric Value
dl 0
loc 35
ccs 25
cts 25
cp 1
rs 8.7377
c 0
b 0
f 0
cc 6
nc 12
nop 2
crap 6
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 \Twilio\Exceptions\TwilioException
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
     */
65 8
    protected function sendSmsMessage(TwilioSmsMessage $message, $to)
66
    {
67
        $params = [
68 8
            'body' => trim($message->content),
69 8
        ];
70
71 8
        if ($messagingServiceSid = $this->getMessagingServiceSid($message)) {
72 2
            $params['messagingServiceSid'] = $messagingServiceSid;
73 2
        }
74
75 8
        if ($from = $this->getFrom($message)) {
76 7
            $params['from'] = $from;
77 7
        }
78
79 8
        if (!$from && !$messagingServiceSid) {
80 1
            throw CouldNotSendNotification::missingFrom();
81
        }
82
83 7
        $this->fillOptionalParams($params, $message, [
84 7
            'statusCallback',
85 7
            'statusCallbackMethod',
86 7
            'applicationSid',
87 7
            'maxPrice',
88 7
            'provideFeedback',
89 7
            'validityPeriod',
90 7
        ]);
91
92 7
        if ($message instanceof TwilioMmsMessage) {
93 1
            $this->fillOptionalParams($params, $message, [
94 1
                'mediaUrl',
95 1
            ]);
96 1
        }
97
98 7
        return $this->twilioService->messages->create($to, $params);
99
    }
100
101
    /**
102
     * Make a call using the Twilio Service.
103
     *
104
     * @param TwilioCallMessage $message
105
     * @param string $to
106
     * @return \Twilio\Rest\Api\V2010\Account\CallInstance
107
     * @throws \Twilio\Exceptions\TwilioException
108
     */
109 2
    protected function makeCall(TwilioCallMessage $message, $to)
110
    {
111
        $params = [
112 2
            'url' => trim($message->content),
113 2
        ];
114
115 2
        $this->fillOptionalParams($params, $message, [
116 2
            'statusCallback',
117 2
            'statusCallbackMethod',
118 2
            'method',
119 2
            'status',
120 2
            'fallbackUrl',
121 2
            'fallbackMethod',
122 2
        ]);
123
124 2
        if (! $from = $this->getFrom($message)) {
125
            throw CouldNotSendNotification::missingFrom();
126
        }
127
128 2
        return $this->twilioService->calls->create(
129 2
            $to,
130 2
            $from,
131
            $params
132 2
        );
133
    }
134
135
    /**
136
     * Get the from address from message, or config.
137
     *
138
     * @param TwilioMessage $message
139
     * @return string
140
     */
141 10
    protected function getFrom(TwilioMessage $message)
142
    {
143 10
        return $message->getFrom() ?: $this->config->getFrom();
144
    }
145
146
    /**
147
     * Get the messaging service SID from message, or config.
148
     *
149
     * @param TwilioSmsMessage $message
150
     * @return string
151
     */
152 8
    protected function getMessagingServiceSid(TwilioSmsMessage $message)
153
    {
154 8
        return $message->getMessagingServiceSid() ?: $this->config->getServiceSid();
155
    }
156
157
    /**
158
     * Get the alphanumeric sender from config, if one exists.
159
     *
160
     * @return string|null
161
     */
162 2
    protected function getAlphanumericSender()
163
    {
164 2
        if ($sender = $this->config->getAlphanumericSender()) {
165 2
            return $sender;
166
        }
167
168
        return null;
169
    }
170
171
    /**
172
     * @param array $params
173
     * @param TwilioMessage $message
174
     * @param array $optionalParams
175
     * @return Twilio
176
     */
177 9
    protected function fillOptionalParams(&$params, $message, $optionalParams)
178
    {
179 9
        foreach ($optionalParams as $optionalParam) {
180 9
            if ($message->$optionalParam) {
181 3
                $params[$optionalParam] = $message->$optionalParam;
182 3
            }
183 9
        }
184
185 9
        return $this;
186
    }
187
}
188