2022-03-05 16:02:12 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
2022-05-14 16:15:20 +02:00
|
|
|
use Illuminate\Support\Facades\Cache;
|
2022-03-05 16:02:12 +01:00
|
|
|
use Illuminate\Support\Facades\DB;
|
|
|
|
|
|
|
|
class Labels extends Model
|
|
|
|
{
|
|
|
|
use HasFactory;
|
|
|
|
|
|
|
|
public $incrementing = false;
|
|
|
|
|
2022-07-19 07:21:35 +02:00
|
|
|
protected $table = 'labels';
|
|
|
|
|
2022-07-22 15:49:18 +02:00
|
|
|
protected $keyType = 'string';
|
|
|
|
|
2022-03-05 16:02:12 +01:00
|
|
|
protected $fillable = ['id', 'label', 'server_id', 'server_id_2', 'domain_id', 'domain_id_2', 'shared_id', 'shared_id_2'];
|
|
|
|
|
2023-08-19 15:46:18 +02:00
|
|
|
public static function deleteLabelsAssignedTo($service_id): void
|
2022-03-05 16:02:12 +01:00
|
|
|
{
|
2023-08-19 15:52:59 +02:00
|
|
|
LabelsAssigned::where('service_id', $service_id)->delete();
|
2022-03-05 16:02:12 +01:00
|
|
|
}
|
|
|
|
|
2023-08-19 15:46:18 +02:00
|
|
|
public static function deleteLabelAssignedAs($label_id): void
|
2022-03-05 16:02:12 +01:00
|
|
|
{
|
2023-08-19 15:52:59 +02:00
|
|
|
LabelsAssigned::where('label_id', $label_id)->delete();
|
2022-03-05 16:02:12 +01:00
|
|
|
}
|
2022-05-09 06:35:07 +02:00
|
|
|
|
2023-08-19 15:46:18 +02:00
|
|
|
public static function insertLabelsAssigned(array $labels_array, string $service_id): void
|
2022-05-09 06:35:07 +02:00
|
|
|
{
|
|
|
|
for ($i = 1; $i <= 4; $i++) {
|
|
|
|
if (!is_null($labels_array[($i - 1)])) {
|
2022-10-20 02:27:01 +02:00
|
|
|
DB::table('labels_assigned')->insert(['label_id' => $labels_array[($i - 1)], 'service_id' => $service_id]);
|
2022-05-09 06:35:07 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-08-19 15:46:18 +02:00
|
|
|
public static function labelsCount(): int
|
2022-05-14 16:15:20 +02:00
|
|
|
{
|
|
|
|
return Cache::remember('labels_count', now()->addMonth(1), function () {
|
2023-08-18 11:28:53 +02:00
|
|
|
return Labels::count();
|
2022-05-14 16:15:20 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2023-08-19 15:46:18 +02:00
|
|
|
public function assigned(): \Illuminate\Database\Eloquent\Relations\HasMany
|
2022-05-14 17:21:51 +02:00
|
|
|
{
|
2022-07-20 06:36:19 +02:00
|
|
|
return $this->hasMany(LabelsAssigned::class, 'label_id', 'id');
|
2022-05-14 17:21:51 +02:00
|
|
|
}
|
|
|
|
|
2022-03-05 16:02:12 +01:00
|
|
|
}
|