mirror of
				https://github.com/cp6/my-idlers.git
				synced 2025-11-03 23:59:09 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			85 lines
		
	
	
	
		
			2.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			85 lines
		
	
	
	
		
			2.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace App\Models;
 | 
						|
 | 
						|
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\Http;
 | 
						|
use Illuminate\Support\Str;
 | 
						|
 | 
						|
class IPs extends Model
 | 
						|
{
 | 
						|
    use HasFactory;
 | 
						|
 | 
						|
    public $table = 'ips';
 | 
						|
 | 
						|
    protected $keyType = 'string';
 | 
						|
 | 
						|
    protected $fillable = ['id', 'service_id', 'address', 'is_ipv4', 'active', 'continent', 'country', 'region', 'city', 'org', 'isp', 'asn', 'timezone_gmt', 'fetched_at'];
 | 
						|
 | 
						|
    public $incrementing = false;
 | 
						|
 | 
						|
    public static function deleteIPsAssignedTo($service_id): void
 | 
						|
    {
 | 
						|
        DB::table('ips')->where('service_id', $service_id)->delete();
 | 
						|
    }
 | 
						|
 | 
						|
    public static function insertIP(string $service_id, string $address): IPs
 | 
						|
    {
 | 
						|
        return self::create(
 | 
						|
            [
 | 
						|
                'id' => Str::random(8),
 | 
						|
                'service_id' => $service_id,
 | 
						|
                'address' => $address,
 | 
						|
                'is_ipv4' => (filter_var($address, FILTER_VALIDATE_IP, FILTER_FLAG_IPV6)) ? 0 : 1,
 | 
						|
                'active' => 1
 | 
						|
            ]
 | 
						|
        );
 | 
						|
    }
 | 
						|
 | 
						|
    public static function ipsForServer(string $server_id)
 | 
						|
    {
 | 
						|
        return Cache::remember("ip_addresses.$server_id", now()->addHours(1), function () use ($server_id) {
 | 
						|
            return json_decode(DB::table('ips as i')
 | 
						|
                ->where('i.service_id', $server_id)
 | 
						|
                ->get(), true);
 | 
						|
        });
 | 
						|
    }
 | 
						|
 | 
						|
    public function note(): \Illuminate\Database\Eloquent\Relations\HasOne
 | 
						|
    {
 | 
						|
        return $this->hasOne(Note::class, 'service_id', 'id');
 | 
						|
    }
 | 
						|
 | 
						|
    public static function getUpdateIpInfo(IPs $IP): bool
 | 
						|
    {
 | 
						|
        \Log::debug($IP->address);
 | 
						|
 | 
						|
        $response = Http::get("https://ipwhois.app/json/{{$IP->address}}");
 | 
						|
 | 
						|
        if ($response->ok()) {
 | 
						|
 | 
						|
            $data = $response->json();
 | 
						|
 | 
						|
            \Log::debug($data);
 | 
						|
 | 
						|
            $IP->update([
 | 
						|
                'continent' => $data['continent'],
 | 
						|
                'country' => $data['country'],
 | 
						|
                'region' => $data['region'],
 | 
						|
                'city' => $data['city'],
 | 
						|
                'org' => $data['org'],
 | 
						|
                'isp' => $data['isp'],
 | 
						|
                'asn' => $data['asn'],
 | 
						|
                'timezone_gmt' => $data['timezone_gmt'],
 | 
						|
                'fetched_at' => now()
 | 
						|
            ]);
 | 
						|
 | 
						|
        }
 | 
						|
 | 
						|
        return $response->ok();
 | 
						|
    }
 | 
						|
 | 
						|
}
 |