Class: CDN::Swiftwill

Inherits:
Object
  • Object
show all
Defined in:
lib/cdn/providers/swiftwill.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.generate_token(path, options = {}) ⇒ Object



3
4
5
# File 'lib/cdn/providers/swiftwill.rb', line 3

def self.generate_token(path, options = {})
  self.new.generate_token(path, options)
end

.generate_url(options = {}) ⇒ Object



7
8
9
10
11
12
# File 'lib/cdn/providers/swiftwill.rb', line 7

def self.generate_url(options = {})
  ((options[:protocol] == :https) ? URI::HTTPS : URI::HTTP).build(
    host: options[:domain],
    path: options[:path],
    query: options[:token])
end

Instance Method Details

#generate_token(path, options = {}) ⇒ Object



14
15
16
17
18
19
20
21
# File 'lib/cdn/providers/swiftwill.rb', line 14

def generate_token(path, options = {})
  return '' if options[:token] && options[:token][:cdn_type].to_s == 'small'
  start = options[:start] || 0
  options = self.normalize_options(options)
  hash_string = "#{path}?" + params_string(options)
  options.delete(:clientip)
  params_string(options) + '&hash=0' + hash_string(hash_string, CDN.configuration.http_large_secret) + "&start=#{start}"
end