osb/app/Models/Supplier.php

126 lines
2.9 KiB
PHP
Raw Normal View History

2018-06-05 11:13:57 +00:00
<?php
namespace App\Models;
2022-04-20 06:24:58 +00:00
use Carbon\Carbon;
2018-06-05 11:13:57 +00:00
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Arr;
use Illuminate\Support\Collection;
2021-12-20 03:25:43 +00:00
use Leenooks\Traits\ScopeActive;
2018-06-05 11:13:57 +00:00
2022-04-19 07:07:39 +00:00
use App\Models\Supplier\{Broadband,Domain,Email,Ethernet,Generic,Host,HSPA,Phone,SSL};
2018-06-05 11:13:57 +00:00
class Supplier extends Model
{
2021-12-20 03:25:43 +00:00
use ScopeActive;
public $timestamps = FALSE;
/**
* The offerings we provide
* @todo Use the product/* category instead of this const. The assumption is the supplier/* type is the same as the product/* type.
* @deprecated - use the product/* category instead.
*/
public const offering_types = [
'broadband' => [
'name' => 'Broadband',
'class' => Broadband::class,
],
'hspa' => [
'name' => 'Mobile Broadband',
'class' => HSPA::class,
],
'ethernet' => [
'name' => 'Ethernet Broadband',
'class' => Ethernet::class,
],
'domainname' => [
'name' => 'Domain Name',
2022-02-01 05:40:46 +00:00
'class' => Domain::class,
],
'email' => [
'name' => 'Email Hosting',
'class' => Email::class,
],
'generic' => [
'name' => 'Generic',
2022-02-01 05:40:46 +00:00
'class' => Generic::class,
],
'hosting' => [
'name' => 'Hosting',
2022-02-01 05:40:46 +00:00
'class' => Host::class,
],
2022-04-19 07:07:39 +00:00
'phone' => [
'name' => 'Phone',
'class' => Phone::class,
],
'ssl' => [
'name' => 'SSL',
'class' => SSL::class,
],
];
2021-12-20 03:25:43 +00:00
/* RELATIONS */
2022-04-19 07:07:39 +00:00
// @todo Need to put in an integrity constraint to support the hasOne()
// @todo Some suppliers have multiple different configuration urls/passwords and contacts for different types of services, perhaps this should be hasMany()?
// EG: Crazy Domains, "domains" and "hosting".
2021-12-20 03:25:43 +00:00
public function detail()
{
2022-04-20 06:24:58 +00:00
return $this->hasOne(SupplierDetail::class)
->withoutGlobalScope(\App\Models\Scopes\SiteScope::class);
2021-12-20 03:25:43 +00:00
}
/* METHODS */
/**
* Return the offerings that this supplier provides
*
* @return void
*/
public function offeringTypes(): Collection
{
$result = collect();
// See if we have any configurations
foreach (self::offering_types as $key => $type) {
2022-02-01 05:40:46 +00:00
if (! ($class=Arr::get($type,'class')))
continue;
if (Arr::get($this->detail->connections,$key)) {
$result->put($key,(object)[
'type' => Arr::get($type,'name'),
'items' => (new $class)->where('supplier_detail_id',$this->detail->id),
]);
continue;
}
// See if we have any products defined
$o = new $class;
$o->where('supplier_detail_id',$this->detail->id);
if ($o->count())
$result->put($key,(object)[
'type' => Arr::get($type,'name'),
'items' => (new $class)->where('supplier_detail_id',$this->detail->id),
]);
}
return $result;
}
2022-04-20 06:24:58 +00:00
/**
* Return the traffic records, that were not matched to a service.
*
* @param Carbon $date
* @return \Illuminate\Database\Eloquent\Collection
*/
public function trafficMismatch(Carbon $date): Collection
{
return Usage\Broadband::where('date',$date->format('Y-m-d'))
->where('supplier_id',$this->id)
->whereNULL('service_item_id')
->get();
}
2021-12-20 03:25:43 +00:00
}