omniauth-upstox 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 8a678fdea307712121436be752750c4c1507fe3bb343f5f16143de0e2836d951
4
+ data.tar.gz: 2c377184dbc87822e91a98bd8f44203ed273eddf5c4ab85ebbad294673e0c330
5
+ SHA512:
6
+ metadata.gz: 7fc4db8db9163eceba4979a035ea21214d3aca301b06c723f699ab90ce2464427137b757eeef6bad45ad7b0b21c7867122a96db0ae2ba31d4fca27f1cb8585bb
7
+ data.tar.gz: 56a94bc3a7e63b6677bd872170d6b6f96d6b6595b6c29d3be9c415ad408253d4e16f24dbbc13a2497f61d21262f434e057ff411d8b3317b74305cc25922c6098
data/.rubocop.yml ADDED
@@ -0,0 +1,15 @@
1
+ AllCops:
2
+ TargetRubyVersion: 2.6
3
+
4
+ Style/StringLiterals:
5
+ Enabled: true
6
+ EnforcedStyle: double_quotes
7
+
8
+ Style/StringLiteralsInInterpolation:
9
+ Enabled: true
10
+ EnforcedStyle: double_quotes
11
+
12
+ Layout/LineLength:
13
+ Max: 120
14
+ Style/Documentation:
15
+ Enabled: false
data/CHANGELOG.md ADDED
@@ -0,0 +1,5 @@
1
+ ## [Unreleased]
2
+
3
+ ## [0.1.0] - 2024-11-17
4
+
5
+ - Initial release
@@ -0,0 +1,84 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation.
6
+
7
+ We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community.
8
+
9
+ ## Our Standards
10
+
11
+ Examples of behavior that contributes to a positive environment for our community include:
12
+
13
+ * Demonstrating empathy and kindness toward other people
14
+ * Being respectful of differing opinions, viewpoints, and experiences
15
+ * Giving and gracefully accepting constructive feedback
16
+ * Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience
17
+ * Focusing on what is best not just for us as individuals, but for the overall community
18
+
19
+ Examples of unacceptable behavior include:
20
+
21
+ * The use of sexualized language or imagery, and sexual attention or
22
+ advances of any kind
23
+ * Trolling, insulting or derogatory comments, and personal or political attacks
24
+ * Public or private harassment
25
+ * Publishing others' private information, such as a physical or email
26
+ address, without their explicit permission
27
+ * Other conduct which could reasonably be considered inappropriate in a
28
+ professional setting
29
+
30
+ ## Enforcement Responsibilities
31
+
32
+ Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful.
33
+
34
+ Community leaders 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, and will communicate reasons for moderation decisions when appropriate.
35
+
36
+ ## Scope
37
+
38
+ This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event.
39
+
40
+ ## Enforcement
41
+
42
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at rays.rashmi@gmail.com. All complaints will be reviewed and investigated promptly and fairly.
43
+
44
+ All community leaders are obligated to respect the privacy and security of the reporter of any incident.
45
+
46
+ ## Enforcement Guidelines
47
+
48
+ Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct:
49
+
50
+ ### 1. Correction
51
+
52
+ **Community Impact**: Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community.
53
+
54
+ **Consequence**: A private, written warning from community leaders, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested.
55
+
56
+ ### 2. Warning
57
+
58
+ **Community Impact**: A violation through a single incident or series of actions.
59
+
60
+ **Consequence**: A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban.
61
+
62
+ ### 3. Temporary Ban
63
+
64
+ **Community Impact**: A serious violation of community standards, including sustained inappropriate behavior.
65
+
66
+ **Consequence**: A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban.
67
+
68
+ ### 4. Permanent Ban
69
+
70
+ **Community Impact**: Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals.
71
+
72
+ **Consequence**: A permanent ban from any sort of public interaction within the community.
73
+
74
+ ## Attribution
75
+
76
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 2.0,
77
+ available at https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
78
+
79
+ Community Impact Guidelines were inspired by [Mozilla's code of conduct enforcement ladder](https://github.com/mozilla/diversity).
80
+
81
+ [homepage]: https://www.contributor-covenant.org
82
+
83
+ For answers to common questions about this code of conduct, see the FAQ at
84
+ https://www.contributor-covenant.org/faq. Translations are available at https://www.contributor-covenant.org/translations.
data/Gemfile ADDED
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ source "https://rubygems.org"
4
+
5
+ # Specify your gem's dependencies in omniauth-upstox.gemspec
6
+ gemspec
7
+
8
+ gem "rake", "~> 13.0"
9
+
10
+ gem "minitest", "~> 5.0"
11
+
12
+ gem "rubocop", "~> 1.21"
data/Gemfile.lock ADDED
@@ -0,0 +1,88 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ omniauth-upstox (0.1.0)
5
+ omniauth (~> 2.1)
6
+ omniauth-oauth2 (~> 1.8)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ ast (2.4.2)
12
+ base64 (0.2.0)
13
+ bigdecimal (3.1.8)
14
+ faraday (2.12.1)
15
+ faraday-net_http (>= 2.0, < 3.5)
16
+ json
17
+ logger
18
+ faraday-net_http (3.4.0)
19
+ net-http (>= 0.5.0)
20
+ hashie (5.0.0)
21
+ json (2.8.2)
22
+ jwt (2.9.3)
23
+ base64
24
+ language_server-protocol (3.17.0.3)
25
+ logger (1.6.1)
26
+ minitest (5.25.1)
27
+ multi_xml (0.7.1)
28
+ bigdecimal (~> 3.1)
29
+ net-http (0.5.0)
30
+ uri
31
+ oauth2 (2.0.9)
32
+ faraday (>= 0.17.3, < 3.0)
33
+ jwt (>= 1.0, < 3.0)
34
+ multi_xml (~> 0.5)
35
+ rack (>= 1.2, < 4)
36
+ snaky_hash (~> 2.0)
37
+ version_gem (~> 1.1)
38
+ omniauth (2.1.2)
39
+ hashie (>= 3.4.6)
40
+ rack (>= 2.2.3)
41
+ rack-protection
42
+ omniauth-oauth2 (1.8.0)
43
+ oauth2 (>= 1.4, < 3)
44
+ omniauth (~> 2.0)
45
+ parallel (1.26.3)
46
+ parser (3.3.6.0)
47
+ ast (~> 2.4.1)
48
+ racc
49
+ racc (1.8.1)
50
+ rack (3.1.8)
51
+ rack-protection (4.0.0)
52
+ base64 (>= 0.1.0)
53
+ rack (>= 3.0.0, < 4)
54
+ rainbow (3.1.1)
55
+ rake (13.2.1)
56
+ regexp_parser (2.9.2)
57
+ rubocop (1.68.0)
58
+ json (~> 2.3)
59
+ language_server-protocol (>= 3.17.0)
60
+ parallel (~> 1.10)
61
+ parser (>= 3.3.0.2)
62
+ rainbow (>= 2.2.2, < 4.0)
63
+ regexp_parser (>= 2.4, < 3.0)
64
+ rubocop-ast (>= 1.32.2, < 2.0)
65
+ ruby-progressbar (~> 1.7)
66
+ unicode-display_width (>= 2.4.0, < 3.0)
67
+ rubocop-ast (1.36.1)
68
+ parser (>= 3.3.1.0)
69
+ ruby-progressbar (1.13.0)
70
+ snaky_hash (2.0.1)
71
+ hashie
72
+ version_gem (~> 1.1, >= 1.1.1)
73
+ unicode-display_width (2.6.0)
74
+ uri (1.0.2)
75
+ version_gem (1.1.4)
76
+
77
+ PLATFORMS
78
+ arm64-darwin-22
79
+ x86_64-linux
80
+
81
+ DEPENDENCIES
82
+ minitest (~> 5.0)
83
+ omniauth-upstox!
84
+ rake (~> 13.0)
85
+ rubocop (~> 1.21)
86
+
87
+ BUNDLED WITH
88
+ 2.4.7
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2024 Rashmi Yadav
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,45 @@
1
+ # OmniAuth Upstox Strategy
2
+
3
+ [![Gem Version](https://badge.fury.io/rb/omniauth-upstox.svg)](https://rubygems.org/gems/omniauth-upstox)
4
+ [![Build Status](https://github.com/raysrashmi/omniauth-upstox/actions/workflows/test.yml/badge.svg)](https://github.com/raysrashmi/omniauth-upstox/actions)
5
+
6
+ This gem provides an [OmniAuth](https://github.com/omniauth/omniauth) strategy for authenticating with [Upstox](https://upstox.com) using OAuth2. It allows your Ruby on Rails or Rack-based application to interact with Upstox's APIs for authentication.
7
+ To use it, you'll need to sign up for an OAuth2 Client ID and Client Secret
8
+ on the
9
+
10
+ ## Installation
11
+
12
+ Add this line to your application's Gemfile:
13
+
14
+ ```ruby
15
+ gem 'omniauth-upstox'
16
+
17
+
18
+ ## Basic Usage
19
+
20
+ ```ruby
21
+ use OmniAuth::Builder do
22
+ provider :upstox, ENV['UPSTOX_CLIENT_ID'], ENV['UPSTOX_CLIENT_SECRET'], redirect_uri: 'http://localhost:3001/auth/upstox/callback'
23
+ end
24
+ ```
25
+
26
+
27
+ ## Basic Usage Rails
28
+
29
+ In `config/initializers/omniauth.rb`
30
+
31
+ ```ruby
32
+ Rails.application.config.middleware.use OmniAuth::Builder do
33
+ provider :upstox, ENV['UPSTOX_CLIENT_ID'], ENV['UPSTOX_CLIENT_SECRET'], redirect_uri: 'http://localhost:3001/auth/upstox/callback'
34
+ end
35
+ ```
36
+
37
+ ## License
38
+
39
+ Copyright (c) 2011 by Rashmi Yadav
40
+
41
+ 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:
42
+
43
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
44
+
45
+ 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.
data/Rakefile ADDED
@@ -0,0 +1,16 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+ require "rake/testtask"
5
+
6
+ Rake::TestTask.new(:test) do |t|
7
+ t.libs << "test"
8
+ t.libs << "lib"
9
+ t.test_files = FileList["test/**/test_*.rb"]
10
+ end
11
+
12
+ require "rubocop/rake_task"
13
+
14
+ RuboCop::RakeTask.new
15
+
16
+ task default: %i[test rubocop]
@@ -0,0 +1,59 @@
1
+ # frozen_string_literal: true
2
+
3
+ # This file implements the Upstox strategy for OmniAuth.
4
+
5
+ require "omniauth-oauth2"
6
+
7
+ module OmniAuth
8
+ module Strategies
9
+ class Upstox < OmniAuth::Strategies::OAuth2
10
+ option :name, "upstox"
11
+ option :client_options, {
12
+ site: "https://api.upstox.com",
13
+ authorize_url: "https://api.upstox.com/v2/login/authorization/dialog",
14
+ token_url: "https://api.upstox.com/v2/login/authorization/token"
15
+ }
16
+
17
+ def callback_url
18
+ options[:redirect_uri] || (full_host + callback_path)
19
+ end
20
+
21
+ def authorize_params
22
+ super.tap do |params|
23
+ params[:response_type] = "code"
24
+ end
25
+ end
26
+
27
+ def token_params
28
+ super.tap do |params|
29
+ params[:redirect_uri] = options[:redirect_uri]
30
+ params[:client_secret] = options[:client_secret]
31
+ params[:client_id] = options[:client_id]
32
+ end
33
+ end
34
+
35
+ uid { request.params["user_id"] }
36
+
37
+ info do
38
+ {
39
+ name: raw_info["name"],
40
+ location: raw_info["city"]
41
+ }
42
+ end
43
+
44
+ extra do
45
+ {
46
+ "raw_info" => raw_info
47
+ }
48
+ end
49
+
50
+ def raw_info
51
+ @raw_info ||= access_token.get("/v2/user/profile").parsed
52
+ end
53
+
54
+ def email
55
+ raw_info["email"]
56
+ end
57
+ end
58
+ end
59
+ end
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Omniauth
4
+ module Upstox
5
+ VERSION = "0.1.0"
6
+ end
7
+ end
@@ -0,0 +1,4 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "upstox/version"
4
+ require "omniauth/strategies/upstox"
@@ -0,0 +1,4 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "omniauth/upstox/version"
4
+ require "omniauth/strategies/upstox"
@@ -0,0 +1,35 @@
1
+ #
2
+ # frozen_string_literal: true
3
+
4
+ require_relative "lib/omniauth/upstox/version"
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "omniauth-upstox"
8
+ spec.version = Omniauth::Upstox::VERSION
9
+ spec.authors = ["Rashmi Yadav"]
10
+ spec.email = ["rays.rashmi@gmail.com"]
11
+
12
+ spec.summary = "%q{OmniAuth strategy for upstox}"
13
+ spec.homepage = "https://github.com/raysrashmi/omniauth-upstox"
14
+ spec.license = "MIT"
15
+ spec.required_ruby_version = ">= 2.6.0"
16
+
17
+ # Specify which files should be added to the gem when it is released.
18
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
19
+ spec.files = Dir.chdir(__dir__) do
20
+ `git ls-files -z`.split("\x0").reject do |f|
21
+ (File.expand_path(f) == __FILE__) || f.match(%r{\A(?:(?:bin|test|spec|features)/|\.(?:git|circleci)|appveyor)})
22
+ end
23
+ end
24
+ spec.bindir = "exe"
25
+ spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
26
+ spec.require_paths = ["lib"]
27
+ spec.add_dependency "omniauth", "~> 2.1"
28
+ spec.add_dependency "omniauth-oauth2", "~> 1.8"
29
+
30
+ # Uncomment to register a new dependency of your gem
31
+ # spec.add_dependency "example-gem", "~> 1.0"
32
+
33
+ # For more information and examples about making a new gem, check out our
34
+ # guide at: https://bundler.io/guides/creating_gem.html
35
+ end
@@ -0,0 +1,6 @@
1
+ module Omniauth
2
+ module Upstox
3
+ VERSION: String
4
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
5
+ end
6
+ end
metadata ADDED
@@ -0,0 +1,85 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: omniauth-upstox
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Rashmi Yadav
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2024-12-08 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: omniauth
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '2.1'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '2.1'
27
+ - !ruby/object:Gem::Dependency
28
+ name: omniauth-oauth2
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.8'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.8'
41
+ description:
42
+ email:
43
+ - rays.rashmi@gmail.com
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - ".rubocop.yml"
49
+ - CHANGELOG.md
50
+ - CODE_OF_CONDUCT.md
51
+ - Gemfile
52
+ - Gemfile.lock
53
+ - LICENSE.txt
54
+ - README.md
55
+ - Rakefile
56
+ - lib/omniauth/strategies/upstox.rb
57
+ - lib/omniauth/upstox.rb
58
+ - lib/omniauth/upstox/version.rb
59
+ - lib/omniauth_upstox.rb
60
+ - omniauth-upstox.gemspec
61
+ - sig/omniauth/upstox.rbs
62
+ homepage: https://github.com/raysrashmi/omniauth-upstox
63
+ licenses:
64
+ - MIT
65
+ metadata: {}
66
+ post_install_message:
67
+ rdoc_options: []
68
+ require_paths:
69
+ - lib
70
+ required_ruby_version: !ruby/object:Gem::Requirement
71
+ requirements:
72
+ - - ">="
73
+ - !ruby/object:Gem::Version
74
+ version: 2.6.0
75
+ required_rubygems_version: !ruby/object:Gem::Requirement
76
+ requirements:
77
+ - - ">="
78
+ - !ruby/object:Gem::Version
79
+ version: '0'
80
+ requirements: []
81
+ rubygems_version: 3.4.6
82
+ signing_key:
83
+ specification_version: 4
84
+ summary: "%q{OmniAuth strategy for upstox}"
85
+ test_files: []