osb/app/Models/Service.php

201 lines
4.1 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',
'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',
'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 = [
'CANCELLED',
];
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 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);
}
/**
* 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-08-09 14:10:51 +00:00
return $this->product->category;
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-06-05 11:13:57 +00:00
public function getNextInvoiceAttribute()
{
return $this->date_next_invoice ? $this->date_next_invoice->format('Y-m-d') : NULL;
}
public function getProductNameAttribute()
{
return $this->product->name($this->account->language);
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));
}
2018-08-23 05:17:26 +00:00
public function nextStatus() {
switch ($this->order_status)
{
case 'ORDER-REQUEST':
$this->order_status = 'ORDER-SENT';
$this->save();
return $this;
default:
abort(500,'Next Status not set up for:'.$this->order_status);
}
}
2018-08-11 05:09:41 +00:00
/**
* This function will return the associated service model for the product type
*/
private function ServicePlugin()
{
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;
}
}
2018-05-20 12:53:14 +00:00
}