Sha256: 5180502ed8c891d8cc8d6d7c22a4af23741af6ed7dc9c08831aa12be00e56a34

Contents?: true

Size: 1.96 KB

Versions: 4

Compression:

Stored size: 1.96 KB

Contents

module OmniContacts
  module ParseUtils

    # return has of birthday day, month and year
    def birthday_format month, day, year
      return {:day => day.to_i, :month => month.to_i, :year => year.to_i}if year && month && day
      return {:day => day.to_i, :month => month.to_i, :year => nil} if !year && month && day
      return nil if (!year && !month) || (!year && !day)
    end

    # normalize the name
    def normalize_name name
      return nil if name.nil?
      name.chomp!
      name.squeeze!(' ')
      name.strip!
      return name
    end

    # create a full name given the individual first and last name
    def full_name first_name, last_name
      return "#{first_name} #{last_name}" if first_name && last_name
      return "#{first_name}" if first_name && !last_name
      return "#{last_name}" if !first_name && last_name
      return nil
    end

    # create a username/name from a given email
    def email_to_name username_or_email
      username_or_email = username_or_email.split('@').first if username_or_email.include?('@')
      if group = (/(?<first>[a-z|A-Z]+)[\.|_](?<last>[a-z|A-Z]+)/).match(username_or_email)
        first_name = normalize_name(group[:first])
        last_name = normalize_name(group[:last])
        return first_name, last_name, "#{first_name} #{last_name}"
      end
      username = normalize_name(username_or_email)
      return username, nil, username
    end

    # create an image_url from a gmail or yahoo email id.
    def image_url_from_email email
      return nil if email.nil? || !email.include?('@')
      username, domain = *(email.split('@'))
      return nil if username.nil? or domain.nil?
      gmail_base_url = "https://profiles.google.com/s2/photos/profile/"
      yahoo_base_url = "https://img.msg.yahoo.com/avatar.php?yids="
      if domain.include?('gmail')
        image_url = gmail_base_url + username
      elsif domain.include?('yahoo')
        image_url = yahoo_base_url + username
      end
      image_url
    end

  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
omnicontacts-0.3.10 lib/omnicontacts/parse_utils.rb
omnicontacts-0.3.7 lib/omnicontacts/parse_utils.rb
omnicontacts-0.3.6 lib/omnicontacts/parse_utils.rb
omnicontacts-0.3.5 lib/omnicontacts/parse_utils.rb