Sha256: 5d063ea0c9a4976d954417ec7d6c080e4782f7136204501edd58185d78789337
Contents?: true
Size: 1.76 KB
Versions: 7
Compression:
Stored size: 1.76 KB
Contents
module Sorcery module Providers # This class adds support for OAuth with line.com. # # config.line.key = <key> # config.line.secret = <secret> # ... # class Line < Base include Protocols::Oauth2 attr_accessor :token_url, :user_info_path, :auth_path, :scope, :bot_prompt def initialize super @site = 'https://access.line.me' @user_info_path = 'https://api.line.me/v2/profile' @token_url = 'https://api.line.me/oauth2/v2.1/token' @auth_path = 'oauth2/v2.1/authorize' @scope = 'profile' end def get_user_hash(access_token) response = access_token.get(user_info_path) auth_hash(access_token).tap do |h| h[:user_info] = JSON.parse(response.body) h[:uid] = h[:user_info]['userId'].to_s end end # calculates and returns the url to which the user should be redirected, # to get authenticated at the external provider's site. def login_url(_params, _session) @state = SecureRandom.hex(16) authorize_url(authorize_url: auth_path) end # overrides oauth2#authorize_url to add bot_prompt query. def authorize_url(options = {}) options.merge!({ connection_opts: { params: { bot_prompt: bot_prompt } } }) if bot_prompt.present? super(options) end # tries to login the user from access token def process_callback(params, _session) args = {}.tap do |a| a[:code] = params[:code] if params[:code] end get_access_token( args, token_url: token_url, token_method: :post, grant_type: 'authorization_code' ) end end end end
Version data entries
7 entries across 7 versions & 1 rubygems