osb/app/Models/Service.php

272 lines
6.0 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;
2018-08-20 12:15:28 +00:00
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','service_adsl','service_domain.tld','service_ssl','service_voip'];
2018-05-20 12:53:14 +00:00
protected $dates = ['date_last_invoice','date_next_invoice'];
2018-08-11 05:09:41 +00:00
protected $casts = [
'order_info'=>'array',
];
const CREATED_AT = 'date_orig';
const UPDATED_AT = 'date_last';
protected $appends = [
2018-08-11 05:09:41 +00:00
'account_name',
2018-08-23 05:17:26 +00:00
'admin_service_id_url',
'category',
2018-08-01 07:09:38 +00:00
'name',
2018-11-21 03:37:17 +00:00
'name_full',
'next_invoice',
'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',
'category',
'data_orig',
'id',
2018-08-01 07:09:38 +00:00
'name',
2018-11-21 03:37:17 +00:00
'name_full',
'next_invoice',
'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 03:40:33 +00:00
'CANCELLED', // @todo Check if these should be changed to ORDER-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 06:16:51 +00:00
'ORDER-SUBMIT' => ['approve'=>'ORDER-SENT','reject'=>'ORDER-REJECTED'],
2018-08-11 05:09:41 +00:00
];
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
}
public function orderby()
{
return $this->belongsTo(Account::class);
}
public function site()
{
return $this->belongsTo(Site::class);
}
2018-05-20 12:53:14 +00:00
public function service_adsl()
{
return $this->belongsTo(ServiceAdsl::class,'id','service_id');
}
public function service_domain()
{
return $this->belongsTo(ServiceDomain::class,'id','service_id');
}
public function service_host()
{
return $this->belongsTo(ServiceHost::class,'id','service_id');
}
2018-05-20 12:53:14 +00:00
public function service_ssl()
{
return $this->belongsTo(ServiceSsl::class,'id','service_id');
}
public function service_voip()
{
return $this->belongsTo(ServiceVoip::class,'id','service_id');
}
2018-05-20 12:53:14 +00:00
public function product()
{
return $this->belongsTo(Product::class);
}
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) {
return $query->where('active',FALSE)->orWhereIn('order_status',$this->inactive_status);
});
}
/**
* Only query active categories
*/
2018-08-11 05:09:41 +00:00
public function scopeActive($query)
{
2018-08-11 05:09:41 +00:00
return $query->where(function () use ($query) {
return $query->where('active',TRUE)->orWhereNotIn('order_status',$this->inactive_status);
});
}
public function getAccountNameAttribute()
{
return $this->account->company;
}
2018-08-23 05:17:26 +00:00
public function getAdminServiceIdUrlAttribute()
{
return sprintf('<a href="/a/service/%s">%s</a>',$this->id,$this->service_id);
}
2018-06-05 11:13:57 +00:00
public function getCategoryAttribute()
{
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.
return is_object($this->product) ? $this->product->category : 'Unknown Product';
2018-06-05 11:13:57 +00:00
}
2018-08-01 07:09:38 +00:00
public function getNameAttribute()
{
2018-08-11 05:09:41 +00:00
if (! isset($this->ServicePlugin()->name))
2018-08-01 07:09:38 +00:00
return 'Unknown';
2018-08-11 05:09:41 +00:00
return $this->ServicePlugin()->name;
2018-08-01 07:09:38 +00:00
}
2018-11-21 03:37:17 +00:00
public function getNameFullAttribute()
{
if (! isset($this->ServicePlugin()->full_name))
return 'Unknown';
return $this->ServicePlugin()->full_name;
}
2018-06-05 11:13:57 +00:00
public function getNextInvoiceAttribute()
{
return $this->date_next_invoice ? $this->date_next_invoice->format('Y-m-d') : NULL;
}
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)
$result .= sprintf('%s: <b>%s</b><br>',ucfirst($k),$v);
return $result;
}
public function getProductNameAttribute()
{
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.
return is_object($this->product) ? $this->product->name($this->account->language) : 'Unknown Product';
2018-06-05 11:13:57 +00:00
}
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/view/%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()
{
return $this->order_status ? $this->order_status : ( $this->active ? 'Active' : 'Inactive');
}
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
}