Class: OmniAuth::Strategies::IHealth

Inherits:
OAuth2
  • Object
show all
Defined in:
lib/omniauth/strategies/ihealth.rb

Constant Summary collapse

DEFAULT_SCOPE =

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

'OpenApiUserInfo'

Instance Method Summary collapse

Instance Method Details

#authorize_paramsObject



20
21
22
23
24
25
26
# 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_tokenObject



36
37
38
39
40
41
42
43
44
45
46
47
48
# 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_infoObject



58
59
60
61
62
63
# File 'lib/omniauth/strategies/ihealth.rb', line 58

def raw_info
  access_token.options[:mode] = :query
   = {:client_id => client.id, :client_secret => client.secret, :access_token => access_token.token}
  .merge!({:sc => options.sc, :sv => options.sv}) if options.sc && options.sv
  @raw_info ||= access_token.get("/openapiv2/user/#{access_token[:user_id]}.json/?#{.to_param}", parse: :json).parsed
end

#token_paramsObject



28
29
30
31
32
33
34
# 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_dataObject



65
66
67
68
69
70
71
72
73
74
75
76
# 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