%PDF- %GIF98; %PNG;
Server : ApacheSystem : Linux host.digitalbabaji.in 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64 User : addictionfreeind ( 1003) PHP Version : 7.2.34 Disable Function : exec,passthru,shell_exec,system Directory : /home/addictionfreeind/www/admin1/app/Models/ |
Upload File : |
<?php
namespace App\Models;
/**
* App\Models\StorageSetting
*
* @property int $id
* @property string $filesystem
* @property string|null $auth_keys
* @property string $status
* @property \Illuminate\Support\Carbon|null $created_at
* @property \Illuminate\Support\Carbon|null $updated_at
* @property-read mixed $icon
* @method static \Illuminate\Database\Eloquent\Builder|StorageSetting newModelQuery()
* @method static \Illuminate\Database\Eloquent\Builder|StorageSetting newQuery()
* @method static \Illuminate\Database\Eloquent\Builder|StorageSetting query()
* @method static \Illuminate\Database\Eloquent\Builder|StorageSetting whereAuthKeys($value)
* @method static \Illuminate\Database\Eloquent\Builder|StorageSetting whereCreatedAt($value)
* @method static \Illuminate\Database\Eloquent\Builder|StorageSetting whereFilesystem($value)
* @method static \Illuminate\Database\Eloquent\Builder|StorageSetting whereId($value)
* @method static \Illuminate\Database\Eloquent\Builder|StorageSetting whereStatus($value)
* @method static \Illuminate\Database\Eloquent\Builder|StorageSetting whereUpdatedAt($value)
* @mixin \Eloquent
*/
class StorageSetting extends BaseModel
{
const HASH_TEMP_FILE_TIME = 30;
protected $table = 'file_storage_settings';
protected $fillable = ['filesystem', 'auth_keys', 'status'];
const AWS_REGIONS = [
'us-east-2' => 'US East (Ohio) us-east-2',
'us-east-1' => 'US East (N. Virginia) us-east-1',
'us-west-1' => 'US West (N. California) us-west-1',
'us-west-2' => 'US West (Oregon) us-west-2',
'af-south-1' => 'Africa (Cape Town) af-south-1',
'ap-east-1' => 'Asia Pacific (Hong Kong) ap-east-1',
'ap-south-1' => 'Asia Pacific (Mumbai) ap-south-1',
'ap-northeast-3' => 'Asia Pacific (Osaka-Local) ap-northeast-3',
'ap-northeast-2' => 'Asia Pacific (Seoul) ap-northeast-2',
'ap-southeast-1' => 'Asia Pacific (Singapore) ap-southeast-1',
'ap-southeast-2' => 'Asia Pacific (Sydney) ap-southeast-2',
'ap-northeast-1' => 'Asia Pacific (Tokyo) ap-northeast-1',
'ca-central-1' => 'Canada (Central) ca-central-1',
'eu-central-1' => 'Europe (Frankfurt) eu-central-1',
'eu-west-1' => 'Europe (Ireland) eu-west-1',
'eu-west-2' => 'Europe (London) eu-west-2',
'eu-south-1' => 'Europe (Milan) eu-south-1',
'eu-west-3' => 'Europe (Paris) eu-west-3',
'eu-north-1' => 'Europe (Stockholm) eu-north-1',
'me-south-1' => 'Middle East (Bahrain) me-south-1',
'sa-east-1' => 'South America (São Paulo) sa-east-1'
];
const DIGITALOCEAN_REGIONS = [
'nyc1' => 'New York City, United States',
'nyc3' => 'New York City, United States',
'ams3' => 'Amsterdam, the Netherlands',
'sfo3' => 'San Francisco, United States',
'sgp1' => 'Singapore',
'lon1' => 'London, United Kingdom',
'fra1' => 'Frankfurt, Germany',
'tor1' => 'Toronto, Canada',
'blr1' => 'Bangalore, India',
'syd1' => 'Sydney, Australia'
];
const WASABI_REGIONS = [
'ap-southeast-2' => 'AP Southeast 2 (Sydney)',
'ap-southeast-1' => 'AP Southeast 1 (Singapore)',
'ap-northeast-2' => 'AP Northeast 2 (Osaka)',
'ap-northeast-1' => 'AP Northeast 1 (Tokyo)',
'eu-west-2' => 'EU West 2 (Paris)',
'eu-west-1' => 'EU West 1 (London)',
'eu-central-2' => 'EU Central 2 (Frankfurt)',
'eu-central-1' => 'EU Central 1 (Amsterdam)',
'ca-central-1' => 'CA Central 1 (Toronto)',
'us-west-1' => 'US West 1 (Oregon)',
'us-central-1' => 'US Central 1 (Texas)',
'us-east-2' => 'US East 2 (N. Virginia)',
'us-east-1' => 'US East 1 (N. Virginia)',
];
const S3_COMPATIBLE_STORAGE = ['s3', 'digitalocean', 'wasabi', 'minio'];
}