Class: Grape::Path
- Inherits:
-
Object
- Object
- Grape::Path
- Defined in:
- lib/grape/path.rb
Instance Attribute Summary collapse
-
#namespace ⇒ Object
readonly
Returns the value of attribute namespace.
-
#raw_path ⇒ Object
readonly
Returns the value of attribute raw_path.
-
#settings ⇒ Object
readonly
Returns the value of attribute settings.
Class Method Summary collapse
Instance Method Summary collapse
- #has_namespace? ⇒ Boolean
- #has_path? ⇒ Boolean
-
#initialize(raw_path, namespace, settings) ⇒ Path
constructor
A new instance of Path.
- #mount_path ⇒ Object
- #path ⇒ Object
- #path_with_suffix ⇒ Object
- #root_prefix ⇒ Object
- #suffix ⇒ Object
- #to_s ⇒ Object
- #uses_path_versioning? ⇒ Boolean
Constructor Details
#initialize(raw_path, namespace, settings) ⇒ Path
Returns a new instance of Path.
9 10 11 12 13 |
# File 'lib/grape/path.rb', line 9 def initialize(raw_path, namespace, settings) @raw_path = raw_path @namespace = namespace @settings = settings end |
Instance Attribute Details
#namespace ⇒ Object (readonly)
Returns the value of attribute namespace.
7 8 9 |
# File 'lib/grape/path.rb', line 7 def namespace @namespace end |
#raw_path ⇒ Object (readonly)
Returns the value of attribute raw_path.
7 8 9 |
# File 'lib/grape/path.rb', line 7 def raw_path @raw_path end |
#settings ⇒ Object (readonly)
Returns the value of attribute settings.
7 8 9 |
# File 'lib/grape/path.rb', line 7 def settings @settings end |
Class Method Details
.prepare(raw_path, namespace, settings) ⇒ Object
3 4 5 |
# File 'lib/grape/path.rb', line 3 def self.prepare(raw_path, namespace, settings) Path.new(raw_path, namespace, settings).path_with_suffix end |
Instance Method Details
#has_namespace? ⇒ Boolean
27 28 29 |
# File 'lib/grape/path.rb', line 27 def has_namespace? namespace && namespace.to_s =~ /^\S/ && namespace != '/' end |
#has_path? ⇒ Boolean
31 32 33 |
# File 'lib/grape/path.rb', line 31 def has_path? raw_path && raw_path.to_s =~ /^\S/ && raw_path != '/' end |
#mount_path ⇒ Object
15 16 17 |
# File 'lib/grape/path.rb', line 15 def mount_path split_setting(:mount_path, '/') end |
#path ⇒ Object
43 44 45 |
# File 'lib/grape/path.rb', line 43 def path Rack::Mount::Utils.normalize_path(parts.join('/')) end |
#path_with_suffix ⇒ Object
47 48 49 |
# File 'lib/grape/path.rb', line 47 def path_with_suffix "#{path}#{suffix}" end |
#root_prefix ⇒ Object
19 20 21 |
# File 'lib/grape/path.rb', line 19 def root_prefix split_setting(:root_prefix, '/') end |
#suffix ⇒ Object
35 36 37 38 39 40 41 |
# File 'lib/grape/path.rb', line 35 def suffix if !uses_path_versioning? || (has_namespace? || has_path?) '(.:format)' else '(/.:format)' end end |
#to_s ⇒ Object
51 52 53 |
# File 'lib/grape/path.rb', line 51 def to_s path_with_suffix end |
#uses_path_versioning? ⇒ Boolean
23 24 25 |
# File 'lib/grape/path.rb', line 23 def uses_path_versioning? !!(settings[:version] && settings[:version_options][:using] == :path) end |