Module: HalApi::Representer::UriMethods
- Extended by:
- ActiveSupport::Concern
- Included in:
- HalApi::Representer
- Defined in:
- lib/hal_api/representer/uri_methods.rb
Overview
expects underlying model to have filename, class, and id attributes
Defined Under Namespace
Modules: ClassMethods
Instance Method Summary
collapse
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(method_name, *args, &block) ⇒ Object
88
89
90
91
92
93
94
95
|
# File 'lib/hal_api/representer/uri_methods.rb', line 88
def method_missing(method_name, *args, &block)
if method_name.to_s.ends_with?('_path_template')
original_method_name = method_name[0..-10]
template_named_path(original_method_name, *args)
else
super(method_name, *args, &block)
end
end
|
Instance Method Details
#alternate_url(*path) ⇒ Object
52
53
54
|
# File 'lib/hal_api/representer/uri_methods.rb', line 52
def alternate_url(*path)
"https://#{self.class.alternate_host}/#{path.map(&:to_s).join('/')}"
end
|
#becomes_represented_class(rep) ⇒ Object
46
47
48
49
50
|
# File 'lib/hal_api/representer/uri_methods.rb', line 46
def becomes_represented_class(rep)
return rep unless rep.respond_to?(:becomes)
klass = rep.try(:item_class) || rep.class.try(:base_class)
(klass && (klass != rep.class)) ? rep.becomes(klass) : rep
end
|
#joined_names(args) ⇒ Object
62
63
64
65
|
# File 'lib/hal_api/representer/uri_methods.rb', line 62
def joined_names(args)
(Array(args.map { |arg| model_uri_part_to_string(arg) }) +
model_uri_suffix(args)).flatten.compact.join('/')
end
|
#model_path(represented) ⇒ Object
35
36
37
38
39
|
# File 'lib/hal_api/representer/uri_methods.rb', line 35
def model_path(represented)
rep = becomes_represented_class(represented)
class_path = rep.class.name.underscore.pluralize
"#{class_path}/#{represented.id}"
end
|
#model_uri(*args) ⇒ Object
Also known as:
profil_url
56
57
58
|
# File 'lib/hal_api/representer/uri_methods.rb', line 56
def model_uri(*args)
"http://#{self.class.profile_host}/model/#{joined_names(args)}"
end
|
#model_uri_part_to_string(part) ⇒ Object
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
# File 'lib/hal_api/representer/uri_methods.rb', line 73
def model_uri_part_to_string(part)
if part.is_a?(String) || part.is_a?(Symbol)
part.to_s.dasherize
else
klass = part.is_a?(Class) ? part : (part.try(:item_class) || part.class)
if klass.respond_to?(:base_class) && (klass.superclass != ActiveRecord::Base)
base = klass.superclass.name.underscore.dasherize
child = klass.name.underscore.gsub(/_#{base}$/, "").dasherize
[base, child]
else
klass.name.underscore.dasherize
end
end
end
|
#model_uri_suffix(args) ⇒ Object
67
68
69
70
71
|
# File 'lib/hal_api/representer/uri_methods.rb', line 67
def model_uri_suffix(args)
represented = args.last
klass = represented.try(:item_decorator) || self.class
klass.name.deconstantize.underscore.dasherize.split('/')[1..-1] || []
end
|
#self_url(represented) ⇒ Object
41
42
43
44
|
# File 'lib/hal_api/representer/uri_methods.rb', line 41
def self_url(represented)
rep = becomes_represented_class(represented)
polymorphic_path([:api, rep])
end
|
#template_named_path(named_path, options) ⇒ Object
97
98
99
100
101
102
103
104
105
106
107
|
# File 'lib/hal_api/representer/uri_methods.rb', line 97
def template_named_path(named_path, options)
replace_options = options.keys.inject({}) do |s, k|
s[k] = "_#{k.upcase}_REPLACE_"
s
end
path = send(named_path, replace_options)
replace_options.keys.each do |k|
path.gsub!(replace_options[k], (options[k] || ''))
end
path
end
|