omniauth-azure-activedirectory-v2-1.0.0/0000755000175100017510000000000014034267041017232 5ustar pravipraviomniauth-azure-activedirectory-v2-1.0.0/omniauth-azure-activedirectory-v2.gemspec0000644000175100017510000000343614034267041027300 0ustar pravipravi# -*- encoding: utf-8 -*- # frozen_string_literal: true # stub: omniauth-azure-activedirectory-v2 1.0.0 ruby lib $:.push File.expand_path( '../lib', __FILE__ ) require 'omniauth/azure_activedirectory_v2/version' # https://guides.rubygems.org/specification-reference/ # Gem::Specification.new do |s| s.name = 'omniauth-azure-activedirectory-v2' s.version = Omniauth::Azure::Activedirectory::V2::VERSION s.date = Omniauth::Azure::Activedirectory::V2::DATE s.summary = 'OAuth 2 authentication with the Azure ActiveDirectory V2 API.' s.authors = [ 'RIP Global' ] s.email = [ 'dev@ripglobal.com' ] s.licenses = [ 'MIT' ] s.homepage = 'https://github.com/RIPGlobal/omniauth-azure-activedirectory-v2' s.required_ruby_version = Gem::Requirement.new('>= 2.3.0') s.require_paths = ['lib'] s.bindir = 'exe' s.files = %w{ README.md CHANGELOG.md CODE_OF_CONDUCT.md LICENSE.txt Gemfile bin/console bin/setup lib/omniauth-azure-activedirectory-v2.rb lib/omniauth/azure_activedirectory_v2.rb lib/omniauth/azure_activedirectory_v2/version.rb lib/omniauth/strategies/azure_activedirectory_v2.rb omniauth-azure-activedirectory-v2.gemspec } s.metadata = { 'homepage_uri' => 'https://www.ripglobal.com/', 'bug_tracker_uri' => 'https://github.com/RIPGlobal/omniauth-azure-activedirectory-v2/issues/', 'changelog_uri' => 'https://github.com/RIPGlobal/omniauth-azure-activedirectory-v2/blob/master/CHANGELOG.md', 'source_code_uri' => 'https://github.com/RIPGlobal/omniauth-azure-activedirectory-v2' } s.add_runtime_dependency('omniauth-oauth2', '~> 1.7') end omniauth-azure-activedirectory-v2-1.0.0/bin/0000755000175100017510000000000014034267041020002 5ustar pravipraviomniauth-azure-activedirectory-v2-1.0.0/bin/console0000755000175100017510000000056014034267041021373 0ustar pravipravi#!/usr/bin/env ruby require "bundler/setup" require "omniauth/azure/activedirectory/v2" # You can add fixtures and/or initialization code here to make experimenting # with your gem easier. You can also use a different console, if you like. # (If you use this, don't forget to add pry to your Gemfile!) # require "pry" # Pry.start require "irb" IRB.start(__FILE__) omniauth-azure-activedirectory-v2-1.0.0/bin/setup0000755000175100017510000000020314034267041021063 0ustar pravipravi#!/usr/bin/env bash set -euo pipefail IFS=$'\n\t' set -vx bundle install # Do any other automated setup that you need to do here omniauth-azure-activedirectory-v2-1.0.0/CHANGELOG.md0000644000175100017510000000151214034267041021042 0ustar pravipravi# Change Log ## v1.0.0 (2020-09-25) Removes use of the https://graph.microsoft.com/v1.0/me API. * One of the key differences for the V2 API vs V1 is the differences between who can sign with the addition of Personal Accounts - see: https://nicolgit.github.io/AzureAD-Endopoint-V1-vs-V2-comparison/ - In testing we found that these accounts may not have access to this endpoint - All the data provided in `info` exists in the JWT anyway, so this cuts down on API calls * Conforms to the Omniauth Auth Hash Schema (1.0 and later) - see: https://github.com/omniauth/omniauth/wiki/Auth-Hash-Schema - Expose `raw_info` - Remove `id` from `info` - *NB: This could be a breaking change for some, but most will already be using the correct property name of `uid`.* ## v0.1.1 (2020-09-23) - First release. omniauth-azure-activedirectory-v2-1.0.0/lib/0000755000175100017510000000000014034267041020000 5ustar pravipraviomniauth-azure-activedirectory-v2-1.0.0/lib/omniauth-azure-activedirectory-v2.rb0000644000175100017510000000007214034267041027017 0ustar pravipravirequire File.join('omniauth', 'azure_activedirectory_v2') omniauth-azure-activedirectory-v2-1.0.0/lib/omniauth/0000755000175100017510000000000014034267041021624 5ustar pravipraviomniauth-azure-activedirectory-v2-1.0.0/lib/omniauth/azure_activedirectory_v2.rb0000644000175100017510000000021514034267041027164 0ustar pravipravirequire File.join('omniauth', 'azure_activedirectory_v2', 'version') require File.join('omniauth', 'strategies', 'azure_activedirectory_v2') omniauth-azure-activedirectory-v2-1.0.0/lib/omniauth/azure_activedirectory_v2/0000755000175100017510000000000014034267041026641 5ustar pravipraviomniauth-azure-activedirectory-v2-1.0.0/lib/omniauth/azure_activedirectory_v2/version.rb0000644000175100017510000000023714034267041030655 0ustar pravipravimodule Omniauth module Azure module Activedirectory module V2 VERSION = "1.0.0" DATE = "2020-09-25" end end end end omniauth-azure-activedirectory-v2-1.0.0/lib/omniauth/strategies/0000755000175100017510000000000014034267041023776 5ustar pravipraviomniauth-azure-activedirectory-v2-1.0.0/lib/omniauth/strategies/azure_activedirectory_v2.rb0000644000175100017510000000607414034267041031347 0ustar pravipravirequire 'omniauth-oauth2' module OmniAuth module Strategies class AzureActivedirectoryV2 < OmniAuth::Strategies::OAuth2 BASE_AZURE_URL = 'https://login.microsoftonline.com' option :name, 'azure_activedirectory_v2' option :tenant_provider, nil DEFAULT_SCOPE = 'openid profile email' # tenant_provider must return client_id, client_secret and optionally tenant_id and base_azure_url args [:tenant_provider] def client if options.tenant_provider provider = options.tenant_provider.new(self) else provider = options # if pass has to config, get mapped right on to options end options.client_id = provider.client_id options.client_secret = provider.client_secret options.tenant_id = provider.respond_to?(:tenant_id) ? provider.tenant_id : 'common' options.base_azure_url = provider.respond_to?(:base_azure_url) ? provider.base_azure_url : BASE_AZURE_URL options.authorize_params = provider.authorize_params if provider.respond_to?(:authorize_params) options.authorize_params.domain_hint = provider.domain_hint if provider.respond_to?(:domain_hint) && provider.domain_hint options.authorize_params.prompt = request.params['prompt'] if defined? request && request.params['prompt'] options.authorize_params.scope = (provider.scope if provider.respond_to?(:scope) && provider.scope) || DEFAULT_SCOPE options.client_options.authorize_url = "#{options.base_azure_url}/#{options.tenant_id}/oauth2/v2.0/authorize" options.client_options.token_url = "#{options.base_azure_url}/#{options.tenant_id}/oauth2/v2.0/token" super end uid { raw_info['oid'] } info do { name: raw_info['name'], email: raw_info['email'] || raw_info['upn'], nickname: raw_info['unique_name'], first_name: raw_info['given_name'], last_name: raw_info['family_name'] } end extra do { raw_info: raw_info } end def callback_url full_host + script_name + callback_path end # https://docs.microsoft.com/en-us/azure/active-directory/develop/id-tokens # # Some account types from Microsoft seem to only have a decodable ID token, # with JWT unable to decode the access token. Information is limited in those # cases. Other account types provide an expanded set of data inside the auth # token, which does decode as a JWT. # # Merge the two, allowing the expanded auth token data to overwrite the ID # token data if keys collide, and use this as raw info. # def raw_info if @raw_info.nil? id_token_data = ::JWT.decode(access_token.params['id_token'], nil, false).first rescue {} auth_token_data = ::JWT.decode(access_token.token, nil, false).first rescue {} id_token_data.merge!(auth_token_data) @raw_info = id_token_data end @raw_info end end end endomniauth-azure-activedirectory-v2-1.0.0/README.md0000644000175100017510000000411114034267041020506 0ustar pravipravi# Omniauth::Azure::Activedirectory::V2 [![Gem Version](https://badge.fury.io/rb/omniauth-azure-activedirectory-v2.svg)](https://badge.fury.io/rb/omniauth-azure-activedirectory-v2) [![Build Status](https://travis-ci.org/RIPGlobal/omniauth-azure-activedirectory-v2.svg)](https://travis-ci.org/RIPGlobal/omniauth-azure-activedirectory-v2) [![License](https://img.shields.io/github/license/RIPGlobal/omniauth-azure-activedirectory-v2.svg)](LICENSE.md) OAuth 2 authentication with [Azure ActiveDirectory's V2 API](https://docs.microsoft.com/en-us/azure/active-directory/develop/v2-overview). Rationale: * https://github.com/marknadig/omniauth-azure-oauth2 is no longer maintained. * https://github.com/marknadig/omniauth-azure-oauth2/pull/29 contains important additions. This gem combines the two and makes some changes to support the full V2 API. The ActiveDirectory V1 auth API used OpenID Connect. If you need this, a gem from Microsoft [is available here](https://github.com/AzureAD/omniauth-azure-activedirectory), but seems to be abandoned. ## Installation Add this line to your application's Gemfile: ```ruby gem 'omniauth-azure-activedirectory-v2' ``` And then execute: $ bundle install Or install it yourself as: $ gem install omniauth-azure-activedirectory-v2 ## Usage See https://github.com/marknadig/omniauth-azure-oauth2 for background information. ## Contributing Bug reports and pull requests are welcome on GitHub at https://github.com/RIPGlobal/omniauth-azure-activedirectory-v2. This project is intended to be a safe, welcoming space for collaboration so contributors must adhere to the [code of conduct](https://github.com/[USERNAME]/omniauth-azure-activedirectory-v2/blob/master/CODE_OF_CONDUCT.md). ## License The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT). ## Code of Conduct Everyone interacting in this project's codebases, issue trackers, chat rooms and mailing lists must follow the [code of conduct](https://github.com/[USERNAME]/omniauth-azure-activedirectory-v2/blob/master/CODE_OF_CONDUCT.md). omniauth-azure-activedirectory-v2-1.0.0/Gemfile0000644000175100017510000000024314034267041020524 0ustar pravipravisource "https://rubygems.org" # Specify your gem's dependencies in omniauth-azure-activedirectory-v2.gemspec gemspec gem "rake", "~> 12.0" gem "rspec", "~> 3.0" omniauth-azure-activedirectory-v2-1.0.0/CODE_OF_CONDUCT.md0000644000175100017510000000624214034267041022035 0ustar pravipravi# Contributor Covenant Code of Conduct ## Our Pledge In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation. ## Our Standards Examples of behavior that contributes to creating a positive environment include: * Using welcoming and inclusive language * Being respectful of differing viewpoints and experiences * Gracefully accepting constructive criticism * Focusing on what is best for the community * Showing empathy towards other community members Examples of unacceptable behavior by participants include: * The use of sexualized language or imagery and unwelcome sexual attention or advances * Trolling, insulting/derogatory comments, and personal or political attacks * Public or private harassment * Publishing others' private information, such as a physical or electronic address, without explicit permission * Other conduct which could reasonably be considered inappropriate in a professional setting ## Our Responsibilities Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior. Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful. ## Scope This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers. ## Enforcement Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at jesse.whitham@gmail.com. All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership. ## Attribution This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [https://contributor-covenant.org/version/1/4][version] [homepage]: https://contributor-covenant.org [version]: https://contributor-covenant.org/version/1/4/ omniauth-azure-activedirectory-v2-1.0.0/LICENSE.txt0000644000175100017510000000207014034267041021054 0ustar pravipraviThe MIT License (MIT) Copyright (c) 2020 Jesse Whitham 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.