mirror of
				https://github.com/cp6/my-idlers.git
				synced 2025-11-03 15:49:09 +00:00 
			
		
		
		
	Added & implemented notes to servers, shared, reseller, domains, DNS and IPs /notes is a CRUD resource
		
			
				
	
	
		
			86 lines
		
	
	
	
		
			2.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			86 lines
		
	
	
	
		
			2.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace App\Models;
 | 
						|
 | 
						|
use Illuminate\Database\Eloquent\Builder;
 | 
						|
use Illuminate\Database\Eloquent\Factories\HasFactory;
 | 
						|
use Illuminate\Database\Eloquent\Model;
 | 
						|
use Illuminate\Support\Facades\Cache;
 | 
						|
use Illuminate\Support\Facades\DB;
 | 
						|
use Illuminate\Support\Facades\Session;
 | 
						|
 | 
						|
class Reseller extends Model
 | 
						|
{
 | 
						|
    use HasFactory;
 | 
						|
 | 
						|
    protected $table = 'reseller_hosting';
 | 
						|
 | 
						|
    protected $keyType = 'string';
 | 
						|
 | 
						|
    protected $fillable = ['id', 'active', 'accounts', 'main_domain', 'has_dedicated_ip', 'ip', 'reseller_type', 'provider_id', 'location_id', 'bandwidth', 'disk', 'disk_type', 'disk_as_gb', 'domains_limit', 'subdomains_limit', 'ftp_limit', 'email_limit', 'db_limit', 'was_promo', 'owned_since'];
 | 
						|
 | 
						|
    public $incrementing = false;
 | 
						|
 | 
						|
    protected static function boot()
 | 
						|
    {
 | 
						|
        parent::boot();
 | 
						|
 | 
						|
        static::addGlobalScope('order', function (Builder $builder) {
 | 
						|
            $array = Settings::orderByProcess(Session::get('sort_on') ?? 2);//created_at desc if not set
 | 
						|
            if (!in_array(Session::get('sort_on'), [3, 4, 5, 6], true)) {
 | 
						|
                $builder->orderBy($array[0], $array[1]);
 | 
						|
            }
 | 
						|
        });
 | 
						|
    }
 | 
						|
 | 
						|
    public static function allResellerHosting()
 | 
						|
    {//All reseller hosting and relationships (no using joins)
 | 
						|
        return Cache::remember("all_reseller", now()->addMonth(1), function () {
 | 
						|
            $query = Reseller::with(['location', 'provider', 'price', 'ips', 'labels']);
 | 
						|
            if (in_array(Session::get('sort_on'), [3, 4, 5, 6], true)) {
 | 
						|
                $options = Settings::orderByProcess(Session::get('sort_on'));
 | 
						|
                $query->orderBy(Pricing::select("pricings.$options[0]")->whereColumn("pricings.service_id", "reseller_hosting.id"), $options[1]);
 | 
						|
            }
 | 
						|
            return $query->get();
 | 
						|
        });
 | 
						|
    }
 | 
						|
 | 
						|
    public static function resellerHosting(string $reseller_id)
 | 
						|
    {//Single reseller hosting and relationships (no using joins)
 | 
						|
        return Cache::remember("reseller_hosting.$reseller_id", now()->addMonth(1), function () use ($reseller_id) {
 | 
						|
            return Reseller::where('id', $reseller_id)
 | 
						|
                ->with(['location', 'provider', 'price', 'ips', 'labels'])->first();
 | 
						|
        });
 | 
						|
    }
 | 
						|
 | 
						|
    public function ips()
 | 
						|
    {
 | 
						|
        return $this->hasMany(IPs::class, 'service_id', 'id');
 | 
						|
    }
 | 
						|
 | 
						|
    public function location()
 | 
						|
    {
 | 
						|
        return $this->hasOne(Locations::class, 'id', 'location_id');
 | 
						|
    }
 | 
						|
 | 
						|
    public function provider()
 | 
						|
    {
 | 
						|
        return $this->hasOne(Providers::class, 'id', 'provider_id');
 | 
						|
    }
 | 
						|
 | 
						|
    public function price()
 | 
						|
    {
 | 
						|
        return $this->hasOne(Pricing::class, 'service_id', 'id');
 | 
						|
    }
 | 
						|
 | 
						|
    public function labels()
 | 
						|
    {
 | 
						|
        return $this->hasMany(LabelsAssigned::class, 'service_id', 'id');
 | 
						|
    }
 | 
						|
 | 
						|
    public function note(): \Illuminate\Database\Eloquent\Relations\HasOne
 | 
						|
    {
 | 
						|
        return $this->hasOne(Note::class, 'service_id', 'id');
 | 
						|
    }
 | 
						|
 | 
						|
}
 |