Class: Rad::Router::AliasRouter
- Includes:
- AbstractRouter
- Defined in:
- lib/rad/router/_alias_router.rb
Defined Under Namespace
Classes: TreeHash
Instance Method Summary collapse
- #add(als, options = {}) ⇒ Object
- #decode(path, params) ⇒ Object
- #encode(klass, method, params) ⇒ Object
- #encode_method(route_method, has_id) ⇒ Object
-
#initialize ⇒ AliasRouter
constructor
A new instance of AliasRouter.
Constructor Details
#initialize ⇒ AliasRouter
Returns a new instance of AliasRouter.
8 9 10 |
# File 'lib/rad/router/_alias_router.rb', line 8 def initialize @route_methods, @paths, @classes = {}, TreeHash.new, {} end |
Instance Method Details
#add(als, options = {}) ⇒ Object
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 |
# File 'lib/rad/router/_alias_router.rb', line 12 def add als, = {} # parsing options # als, options = als.to_s, options.to_openobject . :class_name, :method, :url_root, :prefix als = als.to_s als.must =~ /^\// class_name = .delete(:class_name) || raise("no class name!") class_name.must_be.a String method = .delete(:method) || raise("no method!") method = method.must_be.a Symbol url_root = parse_url_root prefix = parse_prefix raise "you can't use '/' alias with :url_root!" if als == '/' and url_root # logic = Meta.new .merge!( class_name: class_name, method: method, path: als, url_root: url_root, prefix: prefix ) route_methods["#{als[1..-1]}_path"] = (classes[class_name] ||= {})[method] = parts = als[1..-1].split('/') parts << '' if parts.empty? tree_iterator = paths parts.reverse.each do |part| tree_iterator = (tree_iterator[part] ||= TreeHash.new) raise "alias '#{als}' conflicted with another alias ('#{tree_iterator.[:path]}')!" if tree_iterator. end tree_iterator. = end |
#decode(path, params) ⇒ Object
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 |
# File 'lib/rad/router/_alias_router.rb', line 71 def decode path, params parts = path[1..-1].split('/') parts << '' if parts.empty? tree_iterator = paths # checking for first part part = parts.pop tree_iterator = tree_iterator[part] return nil unless tree_iterator # checking for exact match while part = parts.pop tmp = tree_iterator[part] unless tmp parts << part break end tree_iterator = tmp end = tree_iterator. # url_root url_root = [:url_root] return nil if url_root and "/#{parts.shift}" != url_root # prefix prefix = [:prefix] decode_prefix_params! parts, params, prefix if prefix return .get_class, [:method], params end |
#encode(klass, method, params) ⇒ Object
54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 |
# File 'lib/rad/router/_alias_router.rb', line 54 def encode klass, method, params if = classes[klass.name].try(:[], method) path = [:path] # prefix prefix = [:prefix] path = encode_prefix_params! path, params, prefix if prefix url_root = [:url_root] params[:url_root] = url_root if url_root return path, params else nil end end |
#encode_method(route_method, has_id) ⇒ Object
105 106 107 108 109 110 111 |
# File 'lib/rad/router/_alias_router.rb', line 105 def encode_method route_method, has_id if = route_methods[route_method] return .get_class, [:method] else nil end end |