osb/app/Models/Service/Broadband.php

187 lines
4.2 KiB
PHP
Raw Normal View History

2018-05-20 12:53:14 +00:00
<?php
namespace App\Models\Service;
2018-05-20 12:53:14 +00:00
use Carbon\Carbon;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\Log;
2021-03-12 10:08:40 +00:00
2022-04-19 07:07:39 +00:00
use App\Interfaces\ServiceUsage;
use App\Models\Supplier\Broadband as SupplierBroadband;
use App\Models\Supplier\Type as SupplierType;
2022-04-20 06:24:58 +00:00
use App\Models\Usage\Broadband as UsageBroadband;
use App\Rules\IPv6_CIDR;
2022-04-19 07:07:39 +00:00
/**
* Class Broadband (Service)
* Services that are Internet Broadband
*/
class Broadband extends Type implements ServiceUsage
2018-05-20 12:53:14 +00:00
{
2022-04-19 07:07:39 +00:00
private const LOGKEY = 'MSB';
2020-02-05 04:47:24 +00:00
protected $dates = [
2022-04-19 07:07:39 +00:00
'connect_at',
'expire_at',
2020-02-05 04:47:24 +00:00
];
2022-04-19 07:07:39 +00:00
protected $table = 'service_broadband';
2020-05-28 05:08:13 +00:00
2022-04-19 07:07:39 +00:00
/* INTERFACES */
2019-06-29 00:14:12 +00:00
/**
2022-04-19 07:07:39 +00:00
* Return the service address
*
* @return string
2019-06-29 00:14:12 +00:00
*/
2022-04-19 07:07:39 +00:00
public function getServiceDescriptionAttribute(): string
2018-11-21 03:37:17 +00:00
{
2022-04-19 07:07:39 +00:00
return strtoupper($this->service_address) ?: '-';
2018-11-21 03:37:17 +00:00
}
2020-02-05 04:47:24 +00:00
/**
2022-04-19 07:07:39 +00:00
* Return the service number
2020-02-05 04:47:24 +00:00
*
* @return string
*/
2022-04-19 07:07:39 +00:00
public function getServiceNameAttribute(): string
2018-05-20 12:53:14 +00:00
{
2022-04-19 07:07:39 +00:00
return $this->service_number ?: ($this->service_address ?: '-');
2020-02-05 04:47:24 +00:00
}
2022-04-19 07:07:39 +00:00
/**
2022-04-20 06:24:58 +00:00
* The usage information for broadband
2022-04-19 07:07:39 +00:00
*
* @return \Illuminate\Database\Eloquent\Relations\HasMany
*/
public function traffic()
{
2022-04-20 06:24:58 +00:00
return $this->hasMany(UsageBroadband::class,'service_item_id')
->where('site_id',$this->site_id);
}
2022-04-19 07:07:39 +00:00
/* ATTRIBUTES */
2020-02-05 04:47:24 +00:00
/**
2022-04-19 07:07:39 +00:00
* @deprecated use $o->service_name;
* @return mixed|string
2020-02-05 04:47:24 +00:00
*/
2022-04-19 07:07:39 +00:00
public function getNameAttribute()
2020-02-05 04:47:24 +00:00
{
2022-04-19 07:07:39 +00:00
abort(500,'deprecated - use $o->service_name');
2021-07-19 06:42:37 +00:00
return $this->service_number ?: $this->service_address;
2018-05-20 12:53:14 +00:00
}
2019-06-29 00:14:12 +00:00
2020-02-05 04:47:24 +00:00
/**
2022-04-19 07:07:39 +00:00
* The type of technology used to provide this Internet Service
2020-02-05 04:47:24 +00:00
*
2022-04-19 07:07:39 +00:00
* @param $value
* @return null|string
2020-02-05 04:47:24 +00:00
*/
2022-04-19 07:07:39 +00:00
public function getTechnologyAttribute($value): ?string
2019-06-29 00:14:12 +00:00
{
2022-04-19 07:07:39 +00:00
return $value ?: $this->supplied()->technology;
2019-06-29 00:14:12 +00:00
}
/* OVERRIDES */
/**
* Service update validation
*
* @return array
*/
public function validation(): array
{
return [
'service_number' => 'nullable|string|min:10|max:10',
'service_address' => 'nullable|string|min:3',
'service_username' => 'nullable|string',
'service_password' => 'nullable|string',
'connect_at' => 'nullable|date',
'start_at' => 'nullable|date',
'expire_at' => 'nullable|date|after:start_at',
'ipaddress' => 'nullable|ipv4',
'ip6address' => ['nullable',new IPv6_CIDR],
];
}
2022-04-19 07:07:39 +00:00
/* METHODS */
/**
* Return the suppliers offering that this service is providing
*
* @return SupplierType
* @todo This column provided_adsl_plan_id should either be deprecated or renamed.
*/
public function supplied(): SupplierType
{
return $this->provided_adsl_plan_id
? SupplierBroadband::findOrFail($this->provided_adsl_plan_id)
: $this->service->offering->supplied;
}
/**
* Return service usage data
*
* @param int $days
* @return Collection
*/
public function usage(int $days=31): Collection
{
2021-03-12 10:08:40 +00:00
$maxdate = $this->usage_last_date();
2021-03-12 10:08:40 +00:00
if (! $maxdate)
return collect();
return $this->traffic()
2021-03-12 10:08:40 +00:00
->where('date','<=',$maxdate->date->format('Y-m-d'))
->where('date','>=',$maxdate->date->subDays($days)->format('Y-m-d'))
->get();
}
2021-03-12 10:08:40 +00:00
/**
* Find the last date any traffic was recorded for a service
*
2022-04-20 06:24:58 +00:00
* @return UsageBroadband|null
2021-03-12 10:08:40 +00:00
*/
2022-04-20 06:24:58 +00:00
private function usage_last_date(): ?UsageBroadband
2021-03-12 10:08:40 +00:00
{
return $this->traffic
->sortBy('date')
->last();
}
public function usage_summary(int $months=2): Collection
{
$maxdate = $this->usage_last_date();
if (! $maxdate)
return collect();
Log::debug(sprintf('%s:Getting Usage data for [%d] months from [%s]',self::LOGKEY,$months,$maxdate),['m'=>__METHOD__]);
// Go back an extra month;
$start = $maxdate->date->subMonths($months);
// If we are before the 15th
if ($start->day < 15) {
$start = Carbon::createFromFormat('Y-m-d',$start->subMonth()->format('Y-m-').'15');
2021-03-12 10:08:40 +00:00
} else {
$start = $start->subDays($start->day-15);
}
Log::debug(sprintf('%s:Getting Usage data from [%s]',self::LOGKEY,$start->format('Y-m-d')),['m'=>__METHOD__]);
$result = collect();
foreach ($this->traffic()
->where('date','>=',$start->format('Y-m-d'))
->where('date','<=',$maxdate->date->format('Y-m-d'))
->get()->groupBy(function($item) {
return sprintf('%s->%s',$item->trafficMonthStart->format('d M'),$item->trafficMonthEnd->format('d M'));
2021-03-12 10:08:40 +00:00
}) as $key => $o) {
$result->put($key,$o->sum('total'));
}
return $result;
}
2022-04-19 07:07:39 +00:00
}