Class: Fog::OpenStack::Identity::V3::Projects
- Inherits:
-
Collection
- Object
- Collection
- Collection
- Fog::OpenStack::Identity::V3::Projects
show all
- Defined in:
- lib/fog/openstack/identity/v3/models/projects.rb
Instance Attribute Summary
Attributes inherited from Collection
#response
Instance Method Summary
collapse
Methods inherited from Collection
#destroy, #get, #load_response, #summary
Instance Method Details
#all(options = {}) ⇒ Object
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# File 'lib/fog/openstack/identity/v3/models/projects.rb', line 11
def all(options = {})
if service.openstack_cache_ttl > 0
cached_project, expires = Fog::OpenStack::Identity::V3::Project.cache[{:token => service.auth_token,
:options => options}]
return cached_project if cached_project && expires > Time.now
end
project_to_cache = load_response(service.list_projects(options), 'projects')
if service.openstack_cache_ttl > 0
cache = Fog::OpenStack::Identity::V3::Project.cache
cache[{:token => service.auth_token, :options => options}] = [project_to_cache,
Time.now + service.openstack_cache_ttl]
Fog::OpenStack::Identity::V3::Project.cache = cache
end
project_to_cache
end
|
#auth_projects(options = {}) ⇒ Object
32
33
34
|
# File 'lib/fog/openstack/identity/v3/models/projects.rb', line 32
def auth_projects(options = {})
load(service.auth_projects(options).body['projects'])
end
|
#create(attributes) ⇒ Object
28
29
30
|
# File 'lib/fog/openstack/identity/v3/models/projects.rb', line 28
def create(attributes)
super(attributes)
end
|
#find_by_id(id, options = {}) ⇒ Object
options can include :subtree_as_ids, :subtree_as_list, :parents_as_ids, :parents_as_list
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
# File 'lib/fog/openstack/identity/v3/models/projects.rb', line 36
def find_by_id(id, options = {}) if options.kind_of? Symbol options = {options => nil}
end
if service.openstack_cache_ttl > 0
cached_project, expires = Fog::OpenStack::Identity::V3::Project.cache[{:token => service.auth_token,
:id => id,
:options => options}]
return cached_project if cached_project && expires > Time.now
end
project_hash = service.get_project(id, options).body['project']
top_project = project_from_hash(project_hash, service)
if options.include? :subtree_as_list
top_project.subtree.map! { |proj_hash| project_from_hash(proj_hash['project'], service) }
end
if options.include? :parents_as_list
top_project.parents.map! { |proj_hash| project_from_hash(proj_hash['project'], service) }
end
if service.openstack_cache_ttl > 0
cache = Fog::OpenStack::Identity::V3::Project.cache
cache[{:token => service.auth_token, :id => id, :options => options}] = [
top_project, Time.now + service.openstack_cache_ttl
]
Fog::OpenStack::Identity::V3::Project.cache = cache
end
top_project
end
|