Class: ParamsFilter
- Inherits:
-
Object
- Object
- ParamsFilter
- Defined in:
- app/models/params_filter.rb
Overview
A class that will parse through the provided_parameters (meant to be ActionController#params)
-
and will create instance methods based on the desired filtered_list - calling FilteredParameter#filtered
for the actual output - see the FilteredParameter class for more information
Method arguments
filtered_list:: an array of symbols that match an entry in FilteredParameter::RECOGNIZED_PARAMETERS to filter
in the parameters e.g. [:person,:apikey]. For values that are not in FilteredParameter::RECOGNIZED_PARAMETERS
the array value should be a single keyed hash with options for the datatype to filter and other options
e.g. [:person,:apikey,{:customparameter => :community}] or [:person,:apikey,{:customparameter => {:datatype => :community}}]
You can also override recognized defaults using the hash. e.g. [{:person => :string},:apikey]
provided_parameters:: a hash of the key => value pairs to filter - expects ActionController#params
Examples
>> params = => 'jayoung',:apikey =>'test'
> :apikey=>“test”
>> filteredparams = ParamsFilter.new(,params)
> #<ParamsFilter:0x1065b92d8 @filtered_parameters={:person=>#<FilteredParameter:0x10659d650 …>
>> filteredparams.person
> #<User id: 11, login: “jayoung” …>
>> filteredparams.person?
> true
>> filteredparams.community?
> false
>> filteredparams.community
> nil
Instance Method Summary (collapse)
-
- (Object) filter_string(options = {})
outputs a string of filter settings TODO: refactor TODO: facilitate item linking, perhaps This is a backwards compatibility function to the old fiter_params model.
-
- (Object) findoptions
this is a compatibility function to have the @findoptions = check_for_filters continue to work.
-
- (ParamsFilter) initialize(filtered_list, provided_parameters)
constructor
A new instance of ParamsFilter.
- - (Object) option_values_hash(filter = true)
Constructor Details
- (ParamsFilter) initialize(filtered_list, provided_parameters)
A new instance of ParamsFilter
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 65 66 67 68 69 70 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 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 |
# File 'app/models/params_filter.rb', line 38 def initialize(filtered_list, provided_parameters) @filtered_parameters = {} filtered_list.each do |item| if(item.is_a?(Symbol)) name = item = {:datatype => :auto} elsif(item.is_a?(Hash)) # we only allow a single keyed hash here # with parameter name => datatype|options name = item.keys[0] if(item[name].is_a?(Symbol)) = {:datatype => item[name]} elsif(item[name].is_a?(Hash)) = item[name] end end # check provide parameters for existence of name # if there, add as FilteredParameter to my filtered_parameters list # and create .name method that returns the filtered parameter # and create a .name? method that returns 'true' that we have the param # and create a ._name method that returns the FilteredParameter object # # also check for the "dash version of underscored names" # e.g. look for 'updated-min' for names that are 'updated_min' # otherwise known as 'gdata compatibility mode' # # otherwise, create a .name method that returns nil # and a .name? method that returns false if(!provided_parameters[name].nil?) @filtered_parameters[name] = FilteredParameter.new(name,provided_parameters[name],) (class << self; self; end).class_eval do define_method name do @filtered_parameters[name].filtered end define_method "_#{name}" do @filtered_parameters[name] end define_method "#{name}?" do true end end elsif(!provided_parameters[name.to_s.tr('_','-')].nil?) @filtered_parameters[name] = FilteredParameter.new(name,provided_parameters[name.to_s.tr('_','-')],) (class << self; self; end).class_eval do define_method name do @filtered_parameters[name].filtered end define_method "_#{name}" do @filtered_parameters[name] end define_method "#{name}?" do true end end elsif([:default]) @filtered_parameters[name] = FilteredParameter.new(name,nil,) (class << self; self; end).class_eval do define_method name do @filtered_parameters[name].filtered end define_method "_#{name}" do @filtered_parameters[name] end define_method "#{name}?" do true end end else (class << self; self; end).class_eval do define_method name do nil end define_method "#{name}?" do false end end end end end |
Instance Method Details
- (Object) filter_string(options = {})
outputs a string of filter settings TODO: refactor TODO: facilitate item linking, perhaps This is a backwards compatibility function to the old fiter_params model
131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 |
# File 'app/models/params_filter.rb', line 131 def filter_string(={}) returnarray = [] show_community_connection_type = [:show_community_connection_type].nil? ? true : [:show_community_connection_type] show_community = [:show_community].nil? ? true : [:show_community_connection_type] @filtered_parameters.keys.each do |param| if(show_community and @filtered_parameters[param].class == 'Community') returnarray << "#{param.to_s}: #{@filtered_parameters[param].name}" elsif(show_community_connection_type and param.to_s == 'connectiontype' or param.to_s == 'communitytype') if(param.to_s == 'connectiontype') returnarray << "community connection: #{@filtered_parameters[param].unfiltered}" end if(param.to_s == 'communitytype') returnarray << "community type: #{@filtered_parameters[param].unfiltered}" end else if(param.to_s != 'connectiontype' and param.to_s != 'communitytype' and @filtered_parameters[param].class != 'Community') returnarray << "#{param.to_s}: #{@filtered_parameters[param].unfiltered}" end end end if(!returnarray.blank?) return "Filtered by: #{returnarray.sort.join(' | ')}" else return '' end end |
- (Object) findoptions
this is a compatibility function to have the @findoptions = check_for_filters continue to work
164 165 166 167 168 169 170 |
# File 'app/models/params_filter.rb', line 164 def = {} @filtered_parameters.keys.each do |param| [param] = @filtered_parameters[param].filtered end return end |
- (Object) option_values_hash(filter = true)
173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 |
# File 'app/models/params_filter.rb', line 173 def option_values_hash(filter = true) returnhash = {} if(!filter) @filtered_parameters.each do |key,value| returnhash[key] = value.unfiltered end else @filtered_parameters.each do |key,value| returnvalue = value.filtered if(!returnvalue.nil?) returnhash[key] = returnvalue end end end return returnhash end |