firebase_auth_latest 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 92c8273dbbaaa3ec91ffb94148f8892215d6ac4fb0881c79be2324bbefe33439
4
+ data.tar.gz: b07edf32f789c6248481490e0432bcb3b8758aabdc003e86e76a255e0f6d789b
5
+ SHA512:
6
+ metadata.gz: 24b35b9c3644d166d4ee90ab5338b34008186749829374b0642bebb6b9fd5ece17f38ffe92155e848a262a0146c57d83ea46c26a06283670478ed87850a0fb5e
7
+ data.tar.gz: c29018d7a35c872e835209ec70586509153c01fcaa1f2ec8f60988495f5e809f7525c8c0402dbb3ecb03221ffe6ae09187f9d268e13a7b899df055ecf4b2bd28
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2024 Taha Ali Irfan
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,39 @@
1
+ # FirebaseAuth
2
+
3
+ TODO: Delete this and the text below, and describe your gem
4
+
5
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/firebase_auth`. To experiment with that code, run `bin/console` for an interactive prompt.
6
+
7
+ ## Installation
8
+
9
+ TODO: Replace `UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG` with your gem name right after releasing it to RubyGems.org. Please do not do it earlier due to security reasons. Alternatively, replace this section with instructions to install your gem from git if you don't plan to release to RubyGems.org.
10
+
11
+ Install the gem and add to the application's Gemfile by executing:
12
+
13
+ $ bundle add UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG
14
+
15
+ If bundler is not being used to manage dependencies, install the gem by executing:
16
+
17
+ $ gem install UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG
18
+
19
+ ## Usage
20
+
21
+ TODO: Write usage instructions here
22
+
23
+ ## Development
24
+
25
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
26
+
27
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
28
+
29
+ ## Contributing
30
+
31
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/firebase_auth. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/[USERNAME]/firebase_auth/blob/master/CODE_OF_CONDUCT.md).
32
+
33
+ ## License
34
+
35
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
36
+
37
+ ## Code of Conduct
38
+
39
+ Everyone interacting in the FirebaseAuth project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/firebase_auth/blob/master/CODE_OF_CONDUCT.md).
@@ -0,0 +1,47 @@
1
+ require 'httparty'
2
+ require 'jwt'
3
+ require 'openssl'
4
+ require 'base64'
5
+ require 'json'
6
+
7
+ module FirebaseAuth
8
+ class FirebaseAuth
9
+ def initialize(project_id)
10
+ @project_id = project_id
11
+ end
12
+
13
+ def verify_id_token(id_token)
14
+ public_keys = get_public_keys
15
+ decoded_token = decode_jwt(id_token, public_keys)
16
+ return decoded_token if decoded_token
17
+
18
+ nil
19
+ rescue => e
20
+ Rails.logger.error "Firebase Auth Error: #{e.message}"
21
+ nil
22
+ end
23
+
24
+ private
25
+
26
+ def get_public_keys
27
+ url = "https://www.googleapis.com/robot/v1/metadata/x509/securetoken@system.gserviceaccount.com"
28
+ response = HTTParty.get(url)
29
+ JSON.parse(response.body)
30
+ end
31
+
32
+ def decode_jwt(token, public_keys)
33
+ header_segment = token.split('.').first
34
+ header = JSON.parse(Base64.decode64(header_segment))
35
+ kid = header['kid']
36
+ key = public_keys[kid]
37
+
38
+ JWT.decode(token, OpenSSL::X509::Certificate.new(key).public_key, true, {
39
+ algorithm: 'RS256',
40
+ verify_aud: true,
41
+ verify_iss: true,
42
+ iss: "https://securetoken.google.com/#{@project_id}",
43
+ aud: @project_id
44
+ }).first
45
+ end
46
+ end
47
+ end
@@ -0,0 +1,21 @@
1
+ module FirebaseAuth
2
+ class User
3
+ attr_accessor :email, :user_id
4
+
5
+ def initialize(email, user_id)
6
+ self.email = email
7
+ self.user_id = user_id
8
+ end
9
+
10
+ def self.authenticate_user(id_token, project_id)
11
+ auth_service = FirebaseAuth.new(project_id)
12
+ decoded_token = auth_service.verify_id_token(id_token)
13
+ return nil unless decoded_token
14
+
15
+ email = decoded_token["email"]
16
+ # In a real-world application, you should lookup the user in your database
17
+ # and validate the password or other credentials.
18
+ User.new(email, self.user_id) # Password is not returned from Firebase
19
+ end
20
+ end
21
+ end
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module FirebaseAuth
4
+ VERSION = "0.1.0"
5
+ end
@@ -0,0 +1,7 @@
1
+ require "firebase_auth/version"
2
+ require "firebase_auth/firebase_auth_service"
3
+ require "firebase_auth/user"
4
+
5
+ module FirebaseAuth
6
+ class Error < StandardError; end
7
+ end
metadata ADDED
@@ -0,0 +1,91 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: firebase_auth_latest
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Taha Ali Irfan
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2024-08-02 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: google-cloud-firestore
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: httparty
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: jwt
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ description: A gem for integrating Firebase Authentication into your Rails application..
56
+ email:
57
+ - tahairfan1993@gmail.com
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - LICENSE.txt
63
+ - README.md
64
+ - lib/firebase_auth.rb
65
+ - lib/firebase_auth/firebase_auth.rb
66
+ - lib/firebase_auth/user.rb
67
+ - lib/firebase_auth/version.rb
68
+ homepage: https://github.com/tahairfan13/firebase_auth
69
+ licenses:
70
+ - MIT
71
+ metadata: {}
72
+ post_install_message:
73
+ rdoc_options: []
74
+ require_paths:
75
+ - lib
76
+ required_ruby_version: !ruby/object:Gem::Requirement
77
+ requirements:
78
+ - - ">="
79
+ - !ruby/object:Gem::Version
80
+ version: 2.6.0
81
+ required_rubygems_version: !ruby/object:Gem::Requirement
82
+ requirements:
83
+ - - ">="
84
+ - !ruby/object:Gem::Version
85
+ version: '0'
86
+ requirements: []
87
+ rubygems_version: 3.5.3
88
+ signing_key:
89
+ specification_version: 4
90
+ summary: Firebase Authentication Gem
91
+ test_files: []