Class: GrapeSwagger::DocMethods::PathString
- Inherits:
-
Object
- Object
- GrapeSwagger::DocMethods::PathString
- Defined in:
- lib/grape-swagger/doc_methods/path_string.rb
Class Method Summary collapse
Class Method Details
.build(route, path, options = {}) ⇒ Object
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
# File 'lib/grape-swagger/doc_methods/path_string.rb', line 7 def build(route, path, = {}) # always removing format path.sub!(/\(\.\w+?\)$/, '') path.sub!('(.:format)', '') # ... format path params path.gsub!(/:(\w+)/, '{\1}') path.gsub!(/\*(\w+)/, '{\1}') # set item from path, this could be used for the definitions object path_name = path.gsub(%r{/{(.+?)}}, '').split('/').last item = path_name.present? ? path_name.singularize.underscore.camelize : 'Item' if route.version && [:add_version] version = GrapeSwagger::DocMethods::Version.get(route) version = version.first while version.is_a?(Array) path.sub!('{version}', version.to_s) else path.sub!('/{version}', '') end path = "#{OptionalObject.build(:base_path, )}#{path}" if [:add_base_path] [item, path.start_with?('/') ? path : "/#{path}"] end |
.generate_optional_segments(path) ⇒ Object
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 |
# File 'lib/grape-swagger/doc_methods/path_string.rb', line 33 def generate_optional_segments(path) # always removing format path.sub!(/\(\.\w+?\)$/, '') path.sub!('(.:format)', '') paths = [] if path.match(/\(.+\)/) # recurse with included optional segment paths.concat(generate_optional_segments(path.sub(/\([^\)]+\)/, ''))) # recurse with excluded optional segment paths.concat(generate_optional_segments(path.sub(/\(/, '').sub(/\)/, ''))) else paths << path end paths end |