Sha256: 01ba9ddade08c18a966cad3908844be6aac897207c9629119ab0eef4387bd414
Contents?: true
Size: 1.99 KB
Versions: 1
Compression:
Stored size: 1.99 KB
Contents
#-- # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files (the # "Software"), to deal in the Software without restriction, including # without limitation the rights to use, copy, modify, merge, publish, # distribute, sublicense, and/or sell copies of the Software, and to # permit persons to whom the Software is furnished to do so, subject to # the following conditions: # # The above copyright notice and this permission notice shall be # included in all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. #++ require 'omniauth-oauth2' module OmniAuth module Strategies class BaseCrm < OmniAuth::Strategies::OAuth2 option :client_options, { :site => 'https://api.getbase.com', :authorize_url => '/oauth2/authorize', :token_url => '/oauth2/token' } option :name, 'basecrm' option :authorize_options, [:scope] uid { raw_info['id'] } info do prune!({ 'name' => raw_info['name'] }) end extra do { 'user' => prune!(raw_info) } end def raw_info @raw_info ||= access_token.get('/v2/accounts/self').parsed['data'] end private def prune!(hash) hash.delete_if do |_, value| prune!(value) if value.is_a?(Hash) value.nil? || (value.respond_to?(:empty?) && value.empty?) end end end end end OmniAuth.config.add_camelization 'basecrm', 'BaseCrm'
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
omniauth-basecrm-1.0.0 | lib/omniauth/strategies/base_crm.rb |