class OmniAuth::Strategies::IHealth

Constants

CM_TO_IN_CONVERSION
DEFAULT_SCOPE

AVAILABLE_API_NAMES = “OpenApiActivity OpenApiBG OpenApiBP OpenApiSleep OpenApiSpO2 OpenApiSport OpenApiUserInfo OpenApiWeight”

FT_TO_IN_CONVERSION
KG_TO_LBS_CONVERSION
STONE_TO_LBS_CONVERSION

Public Instance Methods

authorize_params() click to toggle source
Calls superclass method
# File lib/omniauth/strategies/ihealth.rb, line 20
def authorize_params
  super.tap do |params|
    params[:response_type] = 'code'
    params[:APIName] = get_scope(params)
    params[:scope] = get_scope(params)
  end
end
build_access_token() click to toggle source
# File lib/omniauth/strategies/ihealth.rb, line 36
def build_access_token
  token_url_params = {:code => request.params['code'], :redirect_uri => callback_url}.merge(token_params.to_hash(:symbolize_keys => true))
  parsed_response = client.request(options.client_options.token_method, client.token_url(token_url_params), parse: :json).parsed
  hash = {
    :access_token => parsed_response["AccessToken"],
    :expires_in => parsed_response["Expires"],
    :refresh_token => parsed_response["RefreshToken"],
    :user_id => parsed_response["UserID"],
    :api_name => parsed_response["APIName"],
    :client_para => parsed_response["client_para"]
  }
  ::OAuth2::AccessToken.from_hash(client, hash)
end
raw_info() click to toggle source
# File lib/omniauth/strategies/ihealth.rb, line 58
def raw_info
  access_token.options[:mode] = :query
  user_profile_params = {:client_id => client.id, :client_secret => client.secret, :access_token => access_token.token}
  user_profile_params.merge!({:sc => options.sc, :sv => options.sv}) if options.sc && options.sv
  @raw_info ||= access_token.get("/openapiv2/user/#{access_token[:user_id]}.json/?#{user_profile_params.to_param}", parse: :json).parsed
end
token_params() click to toggle source
Calls superclass method
# File lib/omniauth/strategies/ihealth.rb, line 28
def token_params
  super.tap do |params|
    params[:client_id] = client.id
    params[:client_secret] = client.secret
    params[:grant_type] = "authorization_code"
  end
end
user_data() click to toggle source
# File lib/omniauth/strategies/ihealth.rb, line 65
def user_data
  info = raw_info
  user_data ||= {
    :name => info["nickname"],
    :gender => info["gender"].try(:downcase),
    :birthday => Time.at(info["dateofbirth"].to_i).to_date.strftime("%Y-%m-%d"),
    :image => URI.unescape(info["logo"].to_s),
    :nickname => info["nickname"],
    :height => calc_height(info["height"], info["HeightUnit"]),
    :weight => calc_weight(info["weight"], info["WeightUnit"])
  }
end

Protected Instance Methods

calc_height(value, unit) click to toggle source
# File lib/omniauth/strategies/ihealth.rb, line 82
def calc_height(value, unit)
  case(unit)
  when 0  # value is in cm
    return value * CM_TO_IN_CONVERSION
  when 1  # value is in feet
    return value * FT_TO_IN_CONVERSION
  else    # unrecognized unit
    return value
  end
end
calc_weight(value, unit) click to toggle source
# File lib/omniauth/strategies/ihealth.rb, line 95
def calc_weight(value, unit)
  case(unit)
  when 0  # value is in kg
    return value * KG_TO_LBS_CONVERSION
  when 1  # value is in lbs
    return value
  when 2  # value is in stone
    return value * STONE_TO_LBS_CONVERSION
  else    # unrecognized unit
    return value
  end
end

Private Instance Methods

get_scope(params) click to toggle source
# File lib/omniauth/strategies/ihealth.rb, line 110
def get_scope(params)
  params[:scope] || DEFAULT_SCOPE
end