• Модуль: clouds
  • Путь к файлу: ~/bitrix/modules/clouds/classes/general/storage_service_amazon.php
  • Класс: CCloudStorageService_AmazonS3
  • Вызов: CCloudStorageService_AmazonS3::GetRequestHost
protected function GetRequestHost($bucket, $arSettings)
{
	if(
		$this->new_end_point != ""
		&& preg_match('#^(http|https)://'.preg_quote($bucket, '#').'(.+?)/#', $this->new_end_point, $match) > 0
	)
	{
		return $bucket.$match[2];
	}
	elseif ($this->location)
	{
		if ($bucket <> '')
			return $bucket.".s3.".$this->location.".amazonaws.com";
		else
			return "s3.".$this->location.".amazonaws.com";
	}
	else
	{
		if ($bucket <> '')
			return $bucket.".s3.amazonaws.com";
		else
			return "s3.amazonaws.com";
	}
}