| 
									
										
										
										
											2022-03-06 02:02:12 +11:00
										 |  |  | <?php | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace App\Models; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-04 14:35:46 +11:00
										 |  |  | use Illuminate\Database\Eloquent\Builder; | 
					
						
							| 
									
										
										
										
											2022-03-06 02:02:12 +11:00
										 |  |  | use Illuminate\Database\Eloquent\Factories\HasFactory; | 
					
						
							|  |  |  | use Illuminate\Database\Eloquent\Model; | 
					
						
							| 
									
										
										
										
											2022-05-15 12:01:48 +10:00
										 |  |  | use Illuminate\Support\Facades\Cache; | 
					
						
							| 
									
										
										
										
											2022-10-04 14:35:46 +11:00
										 |  |  | use Illuminate\Support\Facades\Session; | 
					
						
							| 
									
										
										
										
											2022-03-06 02:02:12 +11:00
										 |  |  | 
 | 
					
						
							|  |  |  | class Shared extends Model | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     use HasFactory; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     public $table = 'shared_hosting'; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-07-22 23:49:18 +10:00
										 |  |  |     protected $keyType = 'string'; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-06 02:02:12 +11:00
										 |  |  |     protected $fillable = ['id', 'active', 'main_domain', 'has_dedicated_ip', 'ip', 'shared_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; | 
					
						
							| 
									
										
										
										
											2022-05-15 12:01:48 +10:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-10-04 14:35:46 +11:00
										 |  |  |     protected static function boot() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         parent::boot(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         static::addGlobalScope('order', function (Builder $builder) { | 
					
						
							| 
									
										
										
										
											2022-10-31 11:14:26 +11:00
										 |  |  |             $array = Settings::orderByProcess(Session::get('sort_on') ?? 2);//created_at desc if not set
 | 
					
						
							| 
									
										
										
										
											2022-10-04 14:35:46 +11:00
										 |  |  |             if (!in_array(Session::get('sort_on'), [3, 4, 5, 6], true)) { | 
					
						
							|  |  |  |                 $builder->orderBy($array[0], $array[1]); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-07-19 15:21:13 +10:00
										 |  |  |     public static function allSharedHosting() | 
					
						
							|  |  |  |     {//All shared hosting and relationships (no using joins)
 | 
					
						
							|  |  |  |         return Cache::remember("all_shared", now()->addMonth(1), function () { | 
					
						
							| 
									
										
										
										
											2022-10-20 13:57:04 +11:00
										 |  |  |             $query = Shared::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", "shared_hosting.id"), $options[1]); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             return $query->get(); | 
					
						
							| 
									
										
										
										
											2022-07-19 15:21:13 +10:00
										 |  |  |         }); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     public static function sharedHosting(string $shared_id) | 
					
						
							|  |  |  |     {//Single shared hosting and relationships (no using joins)
 | 
					
						
							|  |  |  |         return Cache::remember("shared_hosting.$shared_id", now()->addMonth(1), function () use ($shared_id) { | 
					
						
							|  |  |  |             return Shared::where('id', $shared_id) | 
					
						
							| 
									
										
										
										
											2022-10-13 13:43:09 +11:00
										 |  |  |                 ->with(['location', 'provider', 'price', 'ips', 'labels'])->first(); | 
					
						
							| 
									
										
										
										
											2022-07-19 15:21:13 +10:00
										 |  |  |         }); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-19 23:46:18 +10:00
										 |  |  |     public function ips(): \Illuminate\Database\Eloquent\Relations\HasMany | 
					
						
							| 
									
										
										
										
											2022-05-15 12:01:48 +10:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2022-07-19 15:21:13 +10:00
										 |  |  |         return $this->hasMany(IPs::class, 'service_id', 'id'); | 
					
						
							| 
									
										
										
										
											2022-05-15 12:01:48 +10:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-19 23:46:18 +10:00
										 |  |  |     public function location(): \Illuminate\Database\Eloquent\Relations\HasOne | 
					
						
							| 
									
										
										
										
											2022-05-15 12:01:48 +10:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2022-07-19 15:21:13 +10:00
										 |  |  |         return $this->hasOne(Locations::class, 'id', 'location_id'); | 
					
						
							| 
									
										
										
										
											2022-05-15 12:01:48 +10:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-19 23:46:18 +10:00
										 |  |  |     public function provider(): \Illuminate\Database\Eloquent\Relations\HasOne | 
					
						
							| 
									
										
										
										
											2022-05-15 12:01:48 +10:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2022-07-19 15:21:13 +10:00
										 |  |  |         return $this->hasOne(Providers::class, 'id', 'provider_id'); | 
					
						
							| 
									
										
										
										
											2022-05-15 12:01:48 +10:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2022-07-19 15:21:13 +10:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-19 23:46:18 +10:00
										 |  |  |     public function price(): \Illuminate\Database\Eloquent\Relations\HasOne | 
					
						
							| 
									
										
										
										
											2022-07-19 15:21:13 +10:00
										 |  |  |     { | 
					
						
							|  |  |  |         return $this->hasOne(Pricing::class, 'service_id', 'id'); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-08-19 23:46:18 +10:00
										 |  |  |     public function labels(): \Illuminate\Database\Eloquent\Relations\HasMany | 
					
						
							| 
									
										
										
										
											2022-07-19 15:21:13 +10:00
										 |  |  |     { | 
					
						
							|  |  |  |         return $this->hasMany(LabelsAssigned::class, 'service_id', 'id'); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-12-02 13:57:28 +11:00
										 |  |  |     public function note(): \Illuminate\Database\Eloquent\Relations\HasOne | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         return $this->hasOne(Note::class, 'service_id', 'id'); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-03-06 02:02:12 +11:00
										 |  |  | } |