Module: Smash::CloudPowers::LangHelp
- Included in:
- Helpers
- Defined in:
- lib/cloud_powers/helpers/lang_help.rb
Instance Method Summary collapse
-
#deep_modify_keys_with(params) ⇒ Object
Allows you to modify all keys, including nested, with a block that you pass.
-
#extract!(enumerable) ⇒ Object
Take an Enumerable apart based on a block.
-
#find_and_remove(key, hash) ⇒ Object
Search through a
Hashwithout knowing if the key is aStringorSymbol. -
#format_error_message(error) ⇒ Object
Join the message and backtrace into a String with line breaks.
-
#from_json(var) ⇒ Object
Change valid JSON into a hash.
-
#modify_keys_with(params) ⇒ Object
Allows you to modify all first-level keys with a block that you pass.
-
#to_basic_hash(start_point, default_key: 'key') ⇒ Object
Assure your arguments are a
Hash. -
#to_camel(var) ⇒ Object
Change strings into camelCase.
-
#to_hyph(var) ⇒ Object
Change strings into a hyphen delimited phrase.
-
#to_i_var(key) ⇒ Object
Change strings into an i-var format.
-
#to_pascal(var) ⇒ Object
Change strings into PascalCase.
-
#to_ruby_file_name(name) ⇒ Object
Change strings into a ruby_file_name with extension.
-
#to_snake(var) ⇒ Object
Change strings into PascalCase.
-
#valid_json?(json) ⇒ Boolean
Predicate method to check if a String is parsable, as JSON.
-
#valid_url?(url) ⇒ Boolean
Predicate method to check if a String is a valid URL.
Instance Method Details
#deep_modify_keys_with(params) ⇒ Object
Allows you to modify all keys, including nested, with a block that you pass. If no block is passed, a copy is returned.
Parameters
-
params
Hash|Array- hash to be modified -
block(optional) - a block to be used to modify each key should modify the key and return that value so it can be used in the copy
Returns Hash|Array - a copy of the given Array or Hash, with all Hash keys modified
Example
hash = { 'foo' => 'v1', 'bar' => { fleep: { 'florp' => 'yo' } } }
modify_keys_with(hash) { |key| key.to_sym }
# => { foo: 'v1', bar: { fleep: { florp: 'yo' } } }
Notes
* see `#modify_keys_with()` for handling first-level keys
* see `#pass_the_buck()` for the way nested structures are handled
* case for different types taken from _MultiXML_ (multi_xml.rb)
* TODO: look at optimization
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 |
# File 'lib/cloud_powers/helpers/lang_help.rb', line 25 def deep_modify_keys_with(params) case params when Hash params.inject({}) do |carry, (k, v)| carry.tap do |h| if block_given? key = yield k value = if v.kind_of?(Hash) deep_modify_keys_with(v) { |new_key| Proc.new.call(new_key) } else v end h[key] = value else h[k] = v end end end when Array params.map{ |value| symbolize_keys(value) } else params end end |
#extract!(enumerable) ⇒ Object
Take an Enumerable apart based on a block. This method works like Array#reject! except it creates 2 new Enumerables of the same type you started with; One has the rejected elements and the other has the kept.
Parameters
-
Enumerable- The Enumerable object to start with
Returns
-
Enumerable- The extracted elements in the same type of Enumerable passed as a parameter
Notes:
-
This modifies the Object passed as a parameter and returns another
65 66 67 68 69 70 71 72 73 74 75 76 77 |
# File 'lib/cloud_powers/helpers/lang_help.rb', line 65 def extract!(enumerable) return enumerable if enumerable.nil? if block_given? copy = enumerable.dup enumerable.reject! { |k,v| yield k,v } copy.respond_to?(:-) ? (copy - enumerable) : copy.keep_if { |k,v| !enumerable.has_key? k } else enumerable end end |
#find_and_remove(key, hash) ⇒ Object
Search through a Hash without knowing if the key is a String or Symbol. A String modification that normalizes each value to compare is used that is case insensitive. It only leaves word characters, not including underscore. After the value is found, if it exists and can be found, the Hash, minus that value, is returns in an Array with the element you were searching for
Parameters
-
key
String|Symbol- the key you are searching for -
hash
Hash- theHashto search through and return a modified copy from
90 91 92 93 94 95 96 97 |
# File 'lib/cloud_powers/helpers/lang_help.rb', line 90 def find_and_remove(key, hash) candidate_keys = hash.select do |k,v| to_pascal(key).casecmp(to_pascal(k)) == 0 end.keys interesting_value = hash.delete(candidate_keys.first) [interesting_value, hash] end |
#format_error_message(error) ⇒ Object
Join the message and backtrace into a String with line breaks
Parameters
-
error
Exception
Returns String
106 107 108 109 110 111 112 113 |
# File 'lib/cloud_powers/helpers/lang_help.rb', line 106 def (error) begin [error., error.backtrace.join("\n")].join("\n") rescue Exception # if the formatting won't work, return the original exception error end end |
#from_json(var) ⇒ Object
Change valid JSON into a hash
Parameter
-
var
String
Returns Hash or nil - nil is returned if the JSON is invalid
122 123 124 125 126 127 128 |
# File 'lib/cloud_powers/helpers/lang_help.rb', line 122 def from_json(var) begin JSON.parse(var) rescue JSON::ParserError, TypeError nil end end |
#modify_keys_with(params) ⇒ Object
Allows you to modify all first-level keys with a block that you pass. If no block is passed, a copy is returned.
Parameters
-
params
Hash|Array -
block (optional) - should modify the key and return that value so it can be used in the copy
Returns Hash|Array - a copy of the given Array or Hash, with all Hash keys modified
Example
hash = { 'foo' => 'v1', 'bar' => { fleep: { 'florp' => 'yo' } } }
modify_keys_with(hash) { |k| k.to_sym }
# => { :foo => 'v1', :bar => { fleep: { 'florp' => 'yo' } } }
Notes
-
see #deep_modify_keys_with() for handling nested keys
-
case for different types taken from MultiXML (multi_xml.rb)
148 149 150 151 152 153 154 155 |
# File 'lib/cloud_powers/helpers/lang_help.rb', line 148 def modify_keys_with(params) params.inject({}) do |carry, (k, v)| carry.tap do |h| key = block_given? ? (yield k) : k h[key] = v end end end |
#to_basic_hash(start_point, default_key: 'key') ⇒ Object
Assure your arguments are a Hash
Parameters
-
start_point
Object- Best to start with aHash, then a 2-D Array, then somethingEnumerablethat is at least Ordered
Returns Hash
Notes
-
If a
Hashis given, a copy is returned -
If an
Arrayis given, -
And if the
Arrayis a properly formatted, 2-DArray,to_his called -
Else
Hash[<default_key argument>, <the thing we're trying to turn into a hash>]
205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 |
# File 'lib/cloud_powers/helpers/lang_help.rb', line 205 def to_basic_hash(start_point, default_key: 'key') case start_point when Hash start_point when Enumerable two_dimensional_elements = start_point.select do |value| value.respond_to? :each end if two_dimensional_elements.count - start_point.count start_point.to_h else Hash[default_key, start_point] end else Hash[default_key, start_point] end end |
#to_camel(var) ⇒ Object
Change strings into camelCase
Parameters
-
var
String
Returns String
164 165 166 167 168 169 |
# File 'lib/cloud_powers/helpers/lang_help.rb', line 164 def to_camel(var) var = var.to_s unless var.kind_of? String step_one = to_snake(var) step_two = to_pascal(step_one) step_two[0, 1].downcase + step_two[1..-1] end |
#to_hyph(var) ⇒ Object
Change strings into a hyphen delimited phrase
Parameters
-
var
String
Returns String
178 179 180 181 182 183 184 185 186 187 188 |
# File 'lib/cloud_powers/helpers/lang_help.rb', line 178 def to_hyph(var) var = var.to_s unless var.kind_of? String var.gsub(/:{2}|\//, '-'). gsub(/([A-Z]+)([A-Z][a-z])/,'\1_\2'). gsub(/([a-z\d])([A-Z])/,'\1_\2'). gsub(/\s+/, '-'). tr("_", "-"). gsub(/^\W/, ''). downcase end |
#to_i_var(key) ⇒ Object
Change strings into an i-var format
Parameters
-
key
String
Returns String
231 232 233 |
# File 'lib/cloud_powers/helpers/lang_help.rb', line 231 def to_i_var(key) "@#{to_snake(key.to_s)}" end |
#to_pascal(var) ⇒ Object
Change strings into PascalCase
Parameters
-
var
String
Returns String
242 243 244 245 |
# File 'lib/cloud_powers/helpers/lang_help.rb', line 242 def to_pascal(var) var = var.to_s unless var.kind_of? String var.gsub(/^(.{1})|\W.{1}|\_.{1}/) { |s| s.gsub(/[^a-z0-9]+/i, '').capitalize } end |
#to_ruby_file_name(name) ⇒ Object
Change strings into a ruby_file_name with extension
Parameters
-
var
String
Returns String
Notes
-
given_string.rb
-
includes ruby file extension
-
see #to_snake()
259 260 261 262 |
# File 'lib/cloud_powers/helpers/lang_help.rb', line 259 def to_ruby_file_name(name) return name if /\w+\.rb$/ =~ name.to_s "#{to_snake(name)}.rb" end |
#to_snake(var) ⇒ Object
Change strings into PascalCase
Parameters
-
var
String
Returns String
Notes
-
given_string
-
will not have file extensions
-
see #to_ruby_file_name()
276 277 278 279 280 281 282 283 284 |
# File 'lib/cloud_powers/helpers/lang_help.rb', line 276 def to_snake(var) var.to_s.gsub(/^\W*([A-Z|a-z]*)/,'\1'). gsub(/:{2}|\//, '_'). gsub(/([A-Z]+)([A-Z][a-z])/,'\1_\2'). gsub(/([a-z\d])([A-Z])/,'\1_\2'). gsub(/\s+/, '_'). tr("-", "_"). downcase end |
#valid_json?(json) ⇒ Boolean
Predicate method to check if a String is parsable, as JSON
Parameters
-
json
String
Returns Boolean
Notes
-
See
from_json
296 297 298 |
# File 'lib/cloud_powers/helpers/lang_help.rb', line 296 def valid_json?(json) !!from_json(json) end |
#valid_url?(url) ⇒ Boolean
Predicate method to check if a String is a valid URL
Parameters
-
url
String
Returns Boolean
307 308 309 |
# File 'lib/cloud_powers/helpers/lang_help.rb', line 307 def valid_url?(url) url =~ /\A#{URI::regexp}\z/ end |