osb/app/Models/Service.php

310 lines
6.6 KiB
PHP
Raw Normal View History

2018-05-20 12:53:14 +00:00
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
2018-08-11 05:09:41 +00:00
use App\Traits\NextKey;
2018-05-20 12:53:14 +00:00
class Service extends Model
{
2018-08-11 05:09:41 +00:00
use NextKey;
const RECORD_ID = 'service';
const CREATED_AT = 'date_orig';
const UPDATED_AT = 'date_last';
public $incrementing = FALSE;
2018-08-11 05:09:41 +00:00
2018-05-20 12:53:14 +00:00
protected $table = 'ab_service';
protected $with = ['product.descriptions','account.language'];
2018-05-20 12:53:14 +00:00
protected $dates = ['date_last_invoice','date_next_invoice'];
public $dateFormat = 'U';
2018-08-11 05:09:41 +00:00
protected $casts = [
'order_info'=>'array',
];
protected $appends = [
2018-08-11 05:09:41 +00:00
'account_name',
2018-08-23 05:17:26 +00:00
'admin_service_id_url',
'name_short',
'next_invoice',
'product_category',
'product_name',
'service_id',
'service_id_url',
'status',
];
2018-08-11 05:09:41 +00:00
protected $visible = [
2018-08-11 05:09:41 +00:00
'account_name',
2018-08-23 05:17:26 +00:00
'admin_service_id_url',
'active',
'data_orig',
'id',
'name_short',
'next_invoice',
'product_category',
'product_name',
'service_id',
'service_id_url',
'status',
];
2018-05-20 12:53:14 +00:00
2018-08-11 05:09:41 +00:00
private $inactive_status = [
2019-01-24 10:49:56 +00:00
'CANCELLED',
2018-11-21 02:46:16 +00:00
'ORDER-REJECTED',
2019-01-24 03:40:33 +00:00
'ORDER-CANCELLED',
];
private $valid_status = [
2019-01-24 10:49:56 +00:00
// Order Submitted
'ORDER-SUBMIT' => ['approve'=>'ORDER-SENT','hold'=>'ORDER-HOLD','reject'=>'ORDER-REJECTED','cancel'=>'ORDER-CANCELLED'],
// Order On Hold (Reason)
2019-01-24 11:03:43 +00:00
'ORDER-HOLD' => ['release'=>'ORDER-SUBMIT','update_reference'=>'ORDER-SENT'],
2019-01-24 10:49:56 +00:00
// Order Rejected (Reason)
'ORDER-REJECTED' => [],
// Order Cancelled
'ORDER-CANCELLED' => [],
// Order Sent to Supplier
2019-01-24 10:55:43 +00:00
'ORDER-SENT' => ['update_reference'=>'ORDER-SENT','confirm'=>'ORDERED'],
// Order Confirmed by Supplier
'ORDERED' => ['update_reference'=>'ORDER-SENT'],
2018-08-11 05:09:41 +00:00
];
2019-01-24 10:49:56 +00:00
/**
* Account the service belongs to
*
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
*/
2018-05-20 12:53:14 +00:00
public function account()
{
2018-07-13 04:53:44 +00:00
return $this->belongsTo(Account::class);
2018-05-20 12:53:14 +00:00
}
2019-01-24 10:49:56 +00:00
/**
* Account that ordered the service
*
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
*/
public function orderby()
{
return $this->belongsTo(Account::class);
}
2019-01-24 10:49:56 +00:00
/**
* Tenant that the service belongs to
*
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
*/
public function site()
{
return $this->belongsTo(Site::class);
}
/**
* Product of the service
*
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
*/
public function product()
2018-05-20 12:53:14 +00:00
{
return $this->belongsTo(Product::class);
2018-05-20 12:53:14 +00:00
}
public function type()
{
return $this->morphTo(null,'model','id','service_id');
}
2019-01-24 10:49:56 +00:00
/**
* Only query active categories
2019-01-24 10:49:56 +00:00
*/
public function scopeActive($query)
2018-05-20 12:53:14 +00:00
{
return $query->where(function () use ($query) {
$query->where('active',TRUE)->orWhereNotIn('order_status',$this->inactive_status);
});
2018-05-20 12:53:14 +00:00
}
2018-11-21 02:46:16 +00:00
/**
* Find inactive services.
*
* @param $query
* @return mixed
*/
public function scopeInActive($query)
{
return $query->where(function () use ($query) {
$query->where('active',FALSE)->orWhereIn('order_status',$this->inactive_status);
2018-11-21 02:46:16 +00:00
});
}
/**
* Name of the account for this service
*
* @return mixed
*/
2018-08-11 05:09:41 +00:00
public function getAccountNameAttribute()
{
return $this->account->name;
}
/**
* Get the Product's Category for this service
*
*/
public function getProductCategoryAttribute(): string
2018-08-23 05:17:26 +00:00
{
return $this->product->category;
2018-08-23 05:17:26 +00:00
}
/**
* Get the Product's Short Name for the service
*
* @return string
*/
public function getProductNameAttribute(): string
2018-06-05 11:13:57 +00:00
{
return $this->product->name($this->account->language);
2018-06-05 11:13:57 +00:00
}
/**
* Return the short name for the service.
* EG:
* For ADSL, this would be the phone number,
* For Hosting, this would be the domain name, etc
*/
public function getNameShortAttribute()
2018-08-01 07:09:38 +00:00
{
return $this->model ? $this->type->name : NULL;
2018-08-01 07:09:38 +00:00
}
/**
* Return the date for the next invoice
*
* @return null
*/
public function getNextInvoiceAttribute()
2018-11-21 03:37:17 +00:00
{
return $this->date_next_invoice ? $this->date_next_invoice->format('Y-m-d') : NULL;
2018-11-21 03:37:17 +00:00
}
//@todo
public function getAdminServiceIdUrlAttribute()
2018-06-05 11:13:57 +00:00
{
return sprintf('<a href="/a/service/%s">%s</a>',$this->id,$this->service_id);
}
2019-01-24 03:40:33 +00:00
/**
* This function will present the Order Info Details
*/
2019-01-24 06:16:51 +00:00
public function getOrderInfoDetailsAttribute(): string
2019-01-24 03:40:33 +00:00
{
2019-01-24 06:16:51 +00:00
if (! $this->order_info)
return '';
2019-01-24 03:40:33 +00:00
$result = '';
2019-01-24 06:16:51 +00:00
2019-01-24 03:40:33 +00:00
foreach ($this->order_info as $k=>$v)
{
if (in_array($k,['order_reference']))
continue;
2019-01-24 03:40:33 +00:00
$result .= sprintf('%s: <b>%s</b><br>',ucfirst($k),$v);
}
2019-01-24 03:40:33 +00:00
return $result;
}
2018-05-20 12:53:14 +00:00
public function getServiceExpireAttribute()
{
return 'TBA';
}
public function getServiceIdAttribute()
{
2018-07-16 05:06:43 +00:00
return sprintf('%02s-%04s.%05s',$this->site_id,$this->account_id,$this->id);
}
public function getServiceIdUrlAttribute()
{
return sprintf('<a href="/u/service/%s">%s</a>',$this->id,$this->service_id);
}
2018-05-20 12:53:14 +00:00
public function getServiceNumberAttribute()
{
return sprintf('%02s.%04s.%04s',$this->site_id,$this->account_id,$this->id);
}
2018-08-11 05:09:41 +00:00
public function getStatusAttribute()
{
if (! $this->order_status)
return $this->active ? 'Active' : 'Inactive';
2019-01-24 10:55:43 +00:00
return in_array($this->order_status,['ORDER-SENT','ORDER-HOLD','ORDERED'])
? sprintf('%s: <span class="white-space: nowrap"><small><b>#%s</b></small></span>',$this->order_status,array_get($this->order_info,'order_reference','Unknown'))
: $this->order_status;
2018-08-11 05:09:41 +00:00
}
public function setDateOrigAttribute($value)
{
$this->attributes['date_orig'] = $value->timestamp;
}
public function setDateLastAttribute($value)
{
$this->attributes['date_last'] = $value->timestamp;
}
public function isActive()
{
return $this->active OR ($this->order_status AND ! in_array($this->order_status,$this->inactive_status));
}
2019-01-24 06:16:51 +00:00
public function nextStatus(string $status) {
if ($x=$this->validStatus($status))
2018-08-23 05:17:26 +00:00
{
2019-01-24 06:16:51 +00:00
$this->order_status = $x;
$this->save();
2018-08-23 05:17:26 +00:00
2019-01-24 06:16:51 +00:00
return $this;
2018-08-23 05:17:26 +00:00
}
2019-01-24 06:16:51 +00:00
abort(500,'Next Status not set up for:'.$this->order_status);
2018-08-23 05:17:26 +00:00
}
2018-08-11 05:09:41 +00:00
/**
* This function will return the associated service model for the product type
*/
private function ServicePlugin()
{
2018-11-21 02:46:16 +00:00
// @todo: All services should be linked to a product. This might require data cleaning for old services not linked to a product.
if (! is_object($this->product))
return NULL;
2018-08-11 05:09:41 +00:00
switch ($this->product->prod_plugin_file)
{
case 'ADSL': return $this->service_adsl;
case 'DOMAIN': return $this->service_domain;
case 'HOST': return $this->service_host;
case 'SSL': return $this->service_ssl;
case 'VOIP': return $this->service_voip;
default: return NULL;
}
}
2019-01-24 03:40:33 +00:00
/**
* Return if the proposed status is valid.
*
* @param string $status
* @return string | NULL
*/
public function validStatus(string $status)
{
return array_get(array_get($this->valid_status,$this->order_status,[]),$status,NULL);
}
2018-05-20 12:53:14 +00:00
}