Conditions | 3 |
Paths | 2 |
Total Lines | 29 |
Code Lines | 21 |
Lines | 0 |
Ratio | 0 % |
Tests | 17 |
CRAP Score | 3.0621 |
Changes | 0 |
1 | <?php |
||
18 | 2 | public function send($notifiable, $item) |
|
19 | { |
||
20 | 2 | $message = (new MailMessage()) |
|
21 | 2 | ->from( |
|
22 | 2 | config('firewall.notifications.from.name'), |
|
23 | 2 | config('firewall.notifications.from.icon_emoji') |
|
24 | ) |
||
25 | 2 | ->subject(config('firewall.notifications.message.request_count.title')) |
|
26 | 2 | ->line(sprintf( |
|
27 | 2 | config('firewall.notifications.message.request_count.message'), |
|
28 | 2 | $item['requestCount'], |
|
29 | 2 | $item['firstRequestAt']->diffInSeconds(Carbon::now()), |
|
30 | 2 | (string) $item['firstRequestAt'] |
|
31 | )) |
||
32 | 2 | ->line(config('firewall.notifications.message.uri.title').': '.$item['server']['REQUEST_URI']) |
|
33 | 2 | ->line(config('firewall.notifications.message.user_agent.title').': '.$item['userAgent']) |
|
34 | 2 | ->line(config('firewall.notifications.message.blacklisted.title').': '.$item['isBlacklisted'] ? 'YES' : 'NO'); |
|
35 | |||
36 | 2 | $geo = $this->makeGeolocation($item); |
|
37 | |||
38 | 2 | if ($item['geoIp']) { |
|
39 | $message->line(config('firewall.notifications.message.geolocation.title')." - Latitude : {$geo['Latitude']}"); |
||
40 | $message->line(config('firewall.notifications.message.geolocation.title')." - Longitude : {$geo['Longitude']}"); |
||
41 | $message->line(config('firewall.notifications.message.geolocation.title')." - Country code : {$geo['Country code']}"); |
||
42 | $message->line(config('firewall.notifications.message.geolocation.title')." - Country name : {$geo['Country name']}"); |
||
43 | } |
||
44 | |||
45 | 2 | return $message; |
|
46 | } |
||
47 | } |
||
48 |