Class: Fog::Storage::Atmos::File

Inherits:
Model
  • Object
show all
Defined in:
lib/fog/storage/atmos/models/file.rb

Instance Method Summary collapse

Instance Method Details

#bodyObject



12
13
14
15
16
17
18
# File 'lib/fog/storage/atmos/models/file.rb', line 12

def body
  attributes[:body] ||= if objectid
    collection.get(identity).body
  else
    ''
  end
end

#body=(new_body) ⇒ Object



20
21
22
# File 'lib/fog/storage/atmos/models/file.rb', line 20

def body=(new_body)
  attributes[:body] = new_body
end

#copy(target_directory_key, target_file_key, options = {}) ⇒ Object



28
29
30
31
32
33
34
# File 'lib/fog/storage/atmos/models/file.rb', line 28

def copy(target_directory_key, target_file_key, options={})
  target_directory = service.directories.new(:key => target_directory_key)
  target_directory.files.create(
    :key => target_file_key,
    :body => body
  )
end

#destroyObject



36
37
38
39
40
# File 'lib/fog/storage/atmos/models/file.rb', line 36

def destroy
  requires :directory, :key
  service.delete_namespace([directory.key, key].join('/'))
  true
end

#directoryObject



24
25
26
# File 'lib/fog/storage/atmos/models/file.rb', line 24

def directory
  @directory
end

#file_sizeObject



47
48
49
50
# File 'lib/fog/storage/atmos/models/file.rb', line 47

def file_size
  data = 
  .headers["x-emc-meta"].match(/size=\d+/).to_s.gsub(/size=/,"")
end

#meta_dataObject



42
43
44
45
# File 'lib/fog/storage/atmos/models/file.rb', line 42

def 
 requires :directory, :key
  service.get_namespace([directory.key, key].join('/') + "?metadata/system")
end

#public=(new_public) ⇒ Object



52
53
54
# File 'lib/fog/storage/atmos/models/file.rb', line 52

def public=(new_public)
  # NOOP - we don't need to flag files as public, getting the public URL for a file handles it.
end

#public_url(expires = (Time.now + 5 * 365 * 24 * 60 * 60)) ⇒ Object

By default, expire in 5 years



57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# File 'lib/fog/storage/atmos/models/file.rb', line 57

def public_url(expires = (Time.now + 5 * 365 * 24 * 60 * 60))
  file = directory.files.head(key)
  self.objectid = if file && file.to_s.strip != "" then file.attributes['x-emc-meta'].scan(/objectid=(\w+),/).flatten[0] else nil end
  if self.objectid && self.objectid.to_s.strip != ""
    klass = service.ssl? ? URI::HTTPS : URI::HTTP
    uri = klass.build(:host => service.host, :port => service.port.to_i, :path => "/rest/objects/#{self.objectid}" )

    sb = "GET\n"
    sb += uri.path.downcase + "\n"
    sb += service.uid + "\n"
    sb += String(expires.to_i())

    signature = service.sign( sb )
    uri.query = "uid=#{CGI::escape(service.uid)}&expires=#{expires.to_i()}&signature=#{CGI::escape(signature)}"
    uri.to_s
  else
    nil
  end
end

#save(options = {}) ⇒ Object



77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
# File 'lib/fog/storage/atmos/models/file.rb', line 77

def save(options = {})
  requires :body, :directory, :key
  directory.kind_of?(Directory) ? ns = directory.key : ns = directory
  ns += key
  options[:headers] ||= {}
  options[:headers]['Content-Type'] = content_type if content_type
  options[:body] = body
  begin
    data = service.post_namespace(ns, options)
    self.objectid = data.headers['location'].split('/')[-1]
  rescue => error
    if error.message =~ /The resource you are trying to create already exists./
      data = service.put_namespace(ns, options)
    else
      raise error
    end
  end
  # merge_attributes(data.headers)
  true
end