Module: Rox::Core::Analytics::Utils
- Extended by:
- Utils
- Defined in:
- lib/rox/core/analytics/utils.rb
Constant Summary collapse
- UTC_OFFSET_WITH_COLON =
'%s%02d:%02d'
- UTC_OFFSET_WITHOUT_COLON =
UTC_OFFSET_WITH_COLON.sub(':', '')
Instance Method Summary collapse
- #date_in_iso8601(date) ⇒ Object
- #datetime_in_iso8601(datetime) ⇒ Object
- #formatted_offset(time, colon = true, alternate_utc_string = nil) ⇒ Object
-
#isoify_dates(hash) ⇒ Object
public: Returns a new hash with all the date values in the into iso8601 strings.
-
#isoify_dates!(hash) ⇒ Object
public: Converts all the date values in the into iso8601 strings in place.
- #seconds_to_utc_offset(seconds, colon = true) ⇒ Object
-
#stringify_keys(hash) ⇒ Object
public: Return a new hash with keys as strings.
-
#symbolize_keys(hash) ⇒ Object
public: Return a new hash with keys converted from strings to symbols.
-
#symbolize_keys!(hash) ⇒ Object
public: Convert hash keys from strings to symbols in place.
- #time_in_iso8601(time) ⇒ Object
-
#uid ⇒ Object
public: Returns a uid string.
Instance Method Details
#date_in_iso8601(date) ⇒ Object
72 73 74 |
# File 'lib/rox/core/analytics/utils.rb', line 72 def date_in_iso8601(date) date.strftime('%F') end |
#datetime_in_iso8601(datetime) ⇒ Object
55 56 57 58 59 60 61 62 63 64 65 66 |
# File 'lib/rox/core/analytics/utils.rb', line 55 def datetime_in_iso8601(datetime) case datetime when Time time_in_iso8601 datetime when DateTime time_in_iso8601 datetime.to_time when Date date_in_iso8601 datetime else datetime end end |
#formatted_offset(time, colon = true, alternate_utc_string = nil) ⇒ Object
76 77 78 |
# File 'lib/rox/core/analytics/utils.rb', line 76 def formatted_offset(time, colon = true, alternate_utc_string = nil) time.utc? && alternate_utc_string || seconds_to_utc_offset(time.utc_offset, colon) end |
#isoify_dates(hash) ⇒ Object
public: Returns a new hash with all the date values in the into iso8601
strings
34 35 36 37 38 |
# File 'lib/rox/core/analytics/utils.rb', line 34 def isoify_dates(hash) hash.each_with_object({}) do |(k, v), memo| memo[k] = datetime_in_iso8601(v) end end |
#isoify_dates!(hash) ⇒ Object
public: Converts all the date values in the into iso8601 strings in place
42 43 44 |
# File 'lib/rox/core/analytics/utils.rb', line 42 def isoify_dates!(hash) hash.replace isoify_dates hash end |
#seconds_to_utc_offset(seconds, colon = true) ⇒ Object
80 81 82 |
# File 'lib/rox/core/analytics/utils.rb', line 80 def seconds_to_utc_offset(seconds, colon = true) (colon ? UTC_OFFSET_WITH_COLON : UTC_OFFSET_WITHOUT_COLON) % [(seconds < 0 ? '-' : '+'), (seconds.abs / 3600), ((seconds.abs % 3600) / 60)] end |
#stringify_keys(hash) ⇒ Object
public: Return a new hash with keys as strings
25 26 27 28 29 |
# File 'lib/rox/core/analytics/utils.rb', line 25 def stringify_keys(hash) hash.each_with_object({}) do |(k, v), memo| memo[k.to_s] = v end end |
#symbolize_keys(hash) ⇒ Object
public: Return a new hash with keys converted from strings to symbols
11 12 13 14 15 |
# File 'lib/rox/core/analytics/utils.rb', line 11 def symbolize_keys(hash) hash.each_with_object({}) do |(k, v), memo| memo[k.to_sym] = v end end |
#symbolize_keys!(hash) ⇒ Object
public: Convert hash keys from strings to symbols in place
19 20 21 |
# File 'lib/rox/core/analytics/utils.rb', line 19 def symbolize_keys!(hash) hash.replace symbolize_keys hash end |
#time_in_iso8601(time) ⇒ Object
68 69 70 |
# File 'lib/rox/core/analytics/utils.rb', line 68 def time_in_iso8601(time) "#{time.strftime('%Y-%m-%dT%H:%M:%S.%6N')}#{formatted_offset(time, true, 'Z')}" end |
#uid ⇒ Object
public: Returns a uid string
48 49 50 51 52 53 |
# File 'lib/rox/core/analytics/utils.rb', line 48 def uid arr = SecureRandom.random_bytes(16).unpack('NnnnnN') arr[2] = (arr[2] & 0x0fff) | 0x4000 arr[3] = (arr[3] & 0x3fff) | 0x8000 '%08x-%04x-%04x-%04x-%04x%08x' % arr end |