Module: Fog::Storage::Atmos::Utils
Constant Summary collapse
- ENDPOINT_REGEX =
/(https*):\/\/([a-zA-Z0-9\.\-]+)(:[0-9]+)?(\/.*)?/
Instance Method Summary collapse
- #api_path ⇒ Object
- #host ⇒ Object
- #port ⇒ Object
- #setup_credentials(options) ⇒ Object
- #ssl? ⇒ Boolean
Instance Method Details
#api_path ⇒ Object
49 50 51 |
# File 'lib/fog/atmos/storage.rb', line 49 def api_path @endpoint.match(ENDPOINT_REGEX)[4] end |
#host ⇒ Object
45 46 47 |
# File 'lib/fog/atmos/storage.rb', line 45 def host @endpoint.match(ENDPOINT_REGEX)[2] end |
#port ⇒ Object
39 40 41 42 43 |
# File 'lib/fog/atmos/storage.rb', line 39 def port port = @endpoint.match(ENDPOINT_REGEX)[3] return ssl? ? 443 : 80 if port.nil? port.split(':')[1].to_i end |
#setup_credentials(options) ⇒ Object
53 54 55 56 57 58 59 60 61 62 |
# File 'lib/fog/atmos/storage.rb', line 53 def setup_credentials() @storage_token = [:atmos_storage_token] @storage_secret = [:atmos_storage_secret] @storage_secret_decoded = Base64.decode64(@storage_secret) @endpoint = [:atmos_storage_endpoint] @prefix = self.ssl? ? 'https' : 'http' @storage_host = self.host @storage_port = self.port @api_path = self.api_path end |
#ssl? ⇒ Boolean
29 30 31 32 33 34 35 36 37 |
# File 'lib/fog/atmos/storage.rb', line 29 def ssl? protocol = @endpoint.match(ENDPOINT_REGEX)[1] raise ArgumentError, 'Invalid endpoint URL' if protocol.nil? return true if protocol == 'https' return false if protocol == 'http' raise ArgumentError, "Unknown protocol #{protocol}" end |