clavis 0.7.1
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 +7 -0
- data/.actrc +4 -0
- data/.cursor/rules/ruby-gem.mdc +49 -0
- data/.gemignore +6 -0
- data/.rspec +3 -0
- data/.rubocop.yml +88 -0
- data/.vscode/settings.json +22 -0
- data/CHANGELOG.md +127 -0
- data/CODE_OF_CONDUCT.md +3 -0
- data/LICENSE.txt +21 -0
- data/README.md +838 -0
- data/Rakefile +341 -0
- data/UPGRADE.md +57 -0
- data/app/assets/stylesheets/clavis.css +133 -0
- data/app/controllers/clavis/auth_controller.rb +133 -0
- data/config/database.yml +16 -0
- data/config/routes.rb +49 -0
- data/docs/SECURITY.md +340 -0
- data/docs/TESTING.md +78 -0
- data/docs/integration.md +272 -0
- data/error_handling.md +355 -0
- data/file_structure.md +221 -0
- data/gemfiles/rails_80.gemfile +17 -0
- data/gemfiles/rails_80.gemfile.lock +286 -0
- data/implementation_plan.md +523 -0
- data/lib/clavis/configuration.rb +196 -0
- data/lib/clavis/controllers/concerns/authentication.rb +232 -0
- data/lib/clavis/controllers/concerns/session_management.rb +117 -0
- data/lib/clavis/engine.rb +191 -0
- data/lib/clavis/errors.rb +205 -0
- data/lib/clavis/logging.rb +116 -0
- data/lib/clavis/models/concerns/oauth_authenticatable.rb +169 -0
- data/lib/clavis/oauth_identity.rb +174 -0
- data/lib/clavis/providers/apple.rb +135 -0
- data/lib/clavis/providers/base.rb +432 -0
- data/lib/clavis/providers/custom_provider_example.rb +57 -0
- data/lib/clavis/providers/facebook.rb +84 -0
- data/lib/clavis/providers/generic.rb +63 -0
- data/lib/clavis/providers/github.rb +87 -0
- data/lib/clavis/providers/google.rb +98 -0
- data/lib/clavis/providers/microsoft.rb +57 -0
- data/lib/clavis/security/csrf_protection.rb +79 -0
- data/lib/clavis/security/https_enforcer.rb +90 -0
- data/lib/clavis/security/input_validator.rb +192 -0
- data/lib/clavis/security/parameter_filter.rb +64 -0
- data/lib/clavis/security/rate_limiter.rb +109 -0
- data/lib/clavis/security/redirect_uri_validator.rb +124 -0
- data/lib/clavis/security/session_manager.rb +220 -0
- data/lib/clavis/security/token_storage.rb +114 -0
- data/lib/clavis/user_info_normalizer.rb +74 -0
- data/lib/clavis/utils/nonce_store.rb +14 -0
- data/lib/clavis/utils/secure_token.rb +17 -0
- data/lib/clavis/utils/state_store.rb +18 -0
- data/lib/clavis/version.rb +6 -0
- data/lib/clavis/view_helpers.rb +260 -0
- data/lib/clavis.rb +132 -0
- data/lib/generators/clavis/controller/controller_generator.rb +48 -0
- data/lib/generators/clavis/controller/templates/controller.rb.tt +137 -0
- data/lib/generators/clavis/controller/templates/views/login.html.erb.tt +145 -0
- data/lib/generators/clavis/install_generator.rb +182 -0
- data/lib/generators/clavis/templates/add_oauth_to_users.rb +28 -0
- data/lib/generators/clavis/templates/clavis.css +133 -0
- data/lib/generators/clavis/templates/initializer.rb +47 -0
- data/lib/generators/clavis/templates/initializer.rb.tt +76 -0
- data/lib/generators/clavis/templates/migration.rb +18 -0
- data/lib/generators/clavis/templates/migration.rb.tt +16 -0
- data/lib/generators/clavis/user_method/user_method_generator.rb +219 -0
- data/lib/tasks/provider_verification.rake +77 -0
- data/llms.md +487 -0
- data/log/development.log +20 -0
- data/log/test.log +0 -0
- data/sig/clavis.rbs +4 -0
- data/testing_plan.md +710 -0
- metadata +258 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: '0099b35bbd28e750464cbe4cd7233af8fb477942f63b44db348cc47af95b8913'
|
4
|
+
data.tar.gz: bda910114b865849eaf40bd25728519d6ed92d41f54ce084d08bfe7bd0dd6431
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 28363d76a1b6edc7597f511b8d3f138c02459bd5cb4abe738a13dfb783142e45b04323ea5ace431079046e2803563e6fdae2399603a4c5c6e1251cd546eded69
|
7
|
+
data.tar.gz: 3906ff1df9637fc33b56020be75b4745739c7e0d2c90403e61c173d8b855da71011c7e6385c1eca17bb54cc3cd0aa80e6b31c026e2288e45b9bb20f65390adcf
|
data/.actrc
ADDED
@@ -0,0 +1,49 @@
|
|
1
|
+
---
|
2
|
+
description:
|
3
|
+
globs:
|
4
|
+
alwaysApply: false
|
5
|
+
---
|
6
|
+
DO NOT go off on your own adding or changing things beyond the scope of what we have discussed. Always ask for permission first before making extra and undiscussed enhancements.
|
7
|
+
|
8
|
+
Prioritize these qualities:
|
9
|
+
|
10
|
+
1. Readability – Choose readable methods, functions, use of lambdas over trying to fit everything on one line
|
11
|
+
2. Self-documenting – write code and methods that are easily read and understood.
|
12
|
+
3. Rails way – Follow ruby and rails conventions and idioms. When creating new models, controllers, mailers, jobs, migrations etc. always use the rails generators i.e. rails g <thing>
|
13
|
+
4. Tested – When adding new behavior, write tests to cover this new behavior and ensure they are passing before moving on.
|
14
|
+
5. Secure – Write code that is secure and practices safe data handling.
|
15
|
+
6. Performant – Write code that is fast and makes the best use of resources.
|
16
|
+
|
17
|
+
We follow this process when adding or modifying features:
|
18
|
+
1. I provide you with the requirements/changes
|
19
|
+
2. You ask clarifying questions
|
20
|
+
3. I answer questions
|
21
|
+
4. you write new tests for the enhancements/changes
|
22
|
+
5. you implement the required behavior
|
23
|
+
6. You run the tests and work with me to fix any errors or failures one at a time
|
24
|
+
7. we are done when all the tests are passing and I decide that all requirements are met
|
25
|
+
8. When I asked you a question just answer do not make changes. Only make changes when I give a command.
|
26
|
+
|
27
|
+
Before coding, make a plan for your implementation inside a <thinking> tag
|
28
|
+
1. Identify core requirements
|
29
|
+
2. Consider 2-3 implementation options
|
30
|
+
3. Choose the simplest option that matches the requirements
|
31
|
+
4. Verify with these questions:
|
32
|
+
- can this be split into smaller functions?
|
33
|
+
- are there unecessary abstractions?
|
34
|
+
- will this be clear to a junior/mid level dev?
|
35
|
+
|
36
|
+
For example:
|
37
|
+
<thinking>
|
38
|
+
Let me think this through step by step...
|
39
|
+
</thinking>
|
40
|
+
|
41
|
+
If you get stuck trying to implement something when you are trying to make tests pass, use debugging statements to print out various states and steps in the code and tests so you can evaluate if the state of the code or tests is what you expect it to be.
|
42
|
+
|
43
|
+
Debugging with puts or Rails.logger should be your go to tool for solving back and forth test failure issues.
|
44
|
+
|
45
|
+
When it comes to mocks and stubs:
|
46
|
+
|
47
|
+
- Mocks are for setting expectations about messages received (or not)
|
48
|
+
- Stubs are for avoiding messages being sent and returning known values
|
49
|
+
|
data/.gemignore
ADDED
data/.rspec
ADDED
data/.rubocop.yml
ADDED
@@ -0,0 +1,88 @@
|
|
1
|
+
AllCops:
|
2
|
+
TargetRubyVersion: 3.3
|
3
|
+
SuggestExtensions: false
|
4
|
+
NewCops: enable
|
5
|
+
Exclude:
|
6
|
+
- lib/generators/clavis/templates/**/*
|
7
|
+
- vendor/**/*
|
8
|
+
- bin/**/*
|
9
|
+
- db/**/*
|
10
|
+
- node_modules/**/*
|
11
|
+
- rails-app/**/*
|
12
|
+
- tmp/**/*
|
13
|
+
|
14
|
+
# For gems it's typical to declare development dependencies in the gemspec
|
15
|
+
Gemspec/DevelopmentDependencies:
|
16
|
+
Enabled: false
|
17
|
+
|
18
|
+
Metrics/MethodLength:
|
19
|
+
Max: 45
|
20
|
+
Exclude:
|
21
|
+
- 'spec/**/*'
|
22
|
+
- 'lib/clavis/controllers/concerns/authentication.rb'
|
23
|
+
- 'lib/clavis/providers/base.rb'
|
24
|
+
- 'lib/generators/clavis/user_method/user_method_generator.rb'
|
25
|
+
|
26
|
+
Metrics/AbcSize:
|
27
|
+
Max: 45
|
28
|
+
Exclude:
|
29
|
+
- 'spec/**/*'
|
30
|
+
- 'lib/clavis/providers/base.rb'
|
31
|
+
- 'lib/clavis/controllers/concerns/authentication.rb'
|
32
|
+
- 'lib/clavis.rb'
|
33
|
+
- 'lib/generators/clavis/install_generator.rb'
|
34
|
+
|
35
|
+
Metrics/CyclomaticComplexity:
|
36
|
+
Max: 20
|
37
|
+
Exclude:
|
38
|
+
- spec/**/*
|
39
|
+
|
40
|
+
Metrics/PerceivedComplexity:
|
41
|
+
Max: 20
|
42
|
+
Exclude:
|
43
|
+
- spec/**/*
|
44
|
+
|
45
|
+
Metrics/ClassLength:
|
46
|
+
Max: 400
|
47
|
+
|
48
|
+
Metrics/ModuleLength:
|
49
|
+
Max: 250
|
50
|
+
|
51
|
+
Metrics/BlockLength:
|
52
|
+
Max: 60
|
53
|
+
Exclude:
|
54
|
+
- spec/**/*
|
55
|
+
- clavis.gemspec
|
56
|
+
|
57
|
+
Layout/LineLength:
|
58
|
+
Max: 120
|
59
|
+
Exclude:
|
60
|
+
- spec/**/*
|
61
|
+
|
62
|
+
Style/Documentation:
|
63
|
+
Enabled: false
|
64
|
+
|
65
|
+
Style/StringLiterals:
|
66
|
+
EnforcedStyle: double_quotes
|
67
|
+
|
68
|
+
Style/StringLiteralsInInterpolation:
|
69
|
+
EnforcedStyle: double_quotes
|
70
|
+
|
71
|
+
Lint/EmptyClass:
|
72
|
+
Exclude:
|
73
|
+
- spec/**/*
|
74
|
+
|
75
|
+
# Ignore certain spec files with duplicate methods
|
76
|
+
Lint/DuplicateMethods:
|
77
|
+
Exclude:
|
78
|
+
- 'spec/integration/oauth_callback_spec.rb'
|
79
|
+
|
80
|
+
# Ignore missing super in test files
|
81
|
+
Lint/MissingSuper:
|
82
|
+
Exclude:
|
83
|
+
- 'spec/dummy/app/models/application_record.rb'
|
84
|
+
- 'spec/dummy/app/models/user.rb'
|
85
|
+
|
86
|
+
Naming/VariableNumber:
|
87
|
+
Exclude:
|
88
|
+
- 'lib/clavis/engine.rb'
|
@@ -0,0 +1,22 @@
|
|
1
|
+
{
|
2
|
+
"workbench.colorCustomizations": {
|
3
|
+
"activityBar.activeBackground": "#1cac52",
|
4
|
+
"activityBar.background": "#1cac52",
|
5
|
+
"activityBar.foreground": "#e7e7e7",
|
6
|
+
"activityBar.inactiveForeground": "#e7e7e799",
|
7
|
+
"activityBarBadge.background": "#ece4fb",
|
8
|
+
"activityBarBadge.foreground": "#15202b",
|
9
|
+
"commandCenter.border": "#e7e7e799",
|
10
|
+
"sash.hoverBorder": "#1cac52",
|
11
|
+
"statusBar.background": "#15803d",
|
12
|
+
"statusBar.foreground": "#e7e7e7",
|
13
|
+
"statusBarItem.hoverBackground": "#1cac52",
|
14
|
+
"statusBarItem.remoteBackground": "#15803d",
|
15
|
+
"statusBarItem.remoteForeground": "#e7e7e7",
|
16
|
+
"titleBar.activeBackground": "#15803d",
|
17
|
+
"titleBar.activeForeground": "#e7e7e7",
|
18
|
+
"titleBar.inactiveBackground": "#15803d99",
|
19
|
+
"titleBar.inactiveForeground": "#e7e7e799"
|
20
|
+
},
|
21
|
+
"peacock.color": "#15803d"
|
22
|
+
}
|
data/CHANGELOG.md
ADDED
@@ -0,0 +1,127 @@
|
|
1
|
+
# Changelog
|
2
|
+
|
3
|
+
All notable changes to this project will be documented in this file.
|
4
|
+
|
5
|
+
## [Unreleased]
|
6
|
+
|
7
|
+
### Fixed
|
8
|
+
- Fixed HTML escaping issue in `clavis_oauth_button` helper so it works properly with `<%= %>` without requiring `<%== %>`
|
9
|
+
- Fixed routing for OAuth providers by respecting configured callback paths instead of hardcoding `/auth/`
|
10
|
+
- Improved button rendering to handle different engine mount points and configurations
|
11
|
+
- Improved documentation to clarify how OAuth buttons and routes work with the engine
|
12
|
+
|
13
|
+
## [0.6.8] - 2024-03-20
|
14
|
+
|
15
|
+
### Fixed
|
16
|
+
- Fixed route conflict issues in engine mounting
|
17
|
+
- Improved route handling with proper tracking of registered routes
|
18
|
+
- Replaced global variables with Engine instance variables for route tracking
|
19
|
+
- Fixed bcrypt dependency issues in CI test Rails app
|
20
|
+
- Updated Rails test app to use the built-in Rails 8 authentication generator
|
21
|
+
- Removed oauth_button legacy alias in favor of clavis_oauth_button
|
22
|
+
|
23
|
+
## [0.6.7] - 2024-03-19
|
24
|
+
|
25
|
+
### Fixed
|
26
|
+
- Fixed bcrypt dependency for test Rails application in CI
|
27
|
+
- Improved dependency management in test environment
|
28
|
+
- Added explicit bcrypt installation to prevent authentication failures
|
29
|
+
|
30
|
+
## [0.6.6] - 2024-03-19
|
31
|
+
|
32
|
+
### Fixed
|
33
|
+
- Fixed CI issues with Rails application testing
|
34
|
+
- Improved test suite reliability with better error handling
|
35
|
+
- Enhanced Rails generator tests to handle bootsnap dependency
|
36
|
+
- Added automatic fixes for common Rails initialization issues
|
37
|
+
|
38
|
+
## [0.6.0] - 2024-05-10
|
39
|
+
|
40
|
+
### Added
|
41
|
+
- Added `oauth_user?` method to `OauthAuthenticatable` concern to easily check if a user has any OAuth identities
|
42
|
+
- Added automatic route setup to simplify integration (no need to manually define routes anymore)
|
43
|
+
|
44
|
+
### Changed
|
45
|
+
- Enhanced the built-in AuthController to handle OAuth flows without requiring a custom controller
|
46
|
+
- Improved documentation on route setup and OAuth integration
|
47
|
+
- Added Quick Start guides to README and LLMs documentation
|
48
|
+
|
49
|
+
## [0.5.2] - 2023-03-18
|
50
|
+
|
51
|
+
### Changed
|
52
|
+
- Removed unnecessary bigdecimal and mutex_m dependencies
|
53
|
+
|
54
|
+
## [0.5.1] - 2023-03-18
|
55
|
+
|
56
|
+
### Fixed
|
57
|
+
- Updated release workflow to use Ruby 3.3
|
58
|
+
- Fixed RuboCop target Ruby version to match required version
|
59
|
+
|
60
|
+
## [0.5.0] - 2023-03-18
|
61
|
+
|
62
|
+
### Changed
|
63
|
+
- Updated to require Rails 8.0 only
|
64
|
+
- Updated minimum Ruby version to 3.3.0
|
65
|
+
- Removed support for Rails 7.x
|
66
|
+
- Simplified serialization code now that we only support Rails 8.0+
|
67
|
+
|
68
|
+
## [0.3.4] - 2023-03-18
|
69
|
+
|
70
|
+
### Fixed
|
71
|
+
- Resolved compatibility issues with Rails 8 eager loading
|
72
|
+
- Fixed timezone handling in OauthIdentity expirations
|
73
|
+
- Added test coverage for Rails 8.0 and Ruby 3.4
|
74
|
+
|
75
|
+
## [0.3.1] - 2023-03-19
|
76
|
+
|
77
|
+
### Added
|
78
|
+
- Improved provider buttons with proper branding according to each provider's guidelines
|
79
|
+
- Enhanced SVG icons for all supported providers with official logos and colors
|
80
|
+
- Added branded provider button styles to match each provider's requirements
|
81
|
+
- Updated documentation with information about the branded buttons
|
82
|
+
|
83
|
+
### Changed
|
84
|
+
- Redesigned button CSS to provide a more professional look and feel
|
85
|
+
- Refined the display of button icons and text for better alignment
|
86
|
+
- Updated the README to clarify information about button styling options
|
87
|
+
|
88
|
+
## [0.3.0] - 2023-03-18
|
89
|
+
|
90
|
+
### Added
|
91
|
+
- Standardized user information extraction from all OAuth providers
|
92
|
+
- Added methods to access email, name, and avatar URL from any provider
|
93
|
+
- Helper methods on User model via OauthAuthenticatable: `oauth_email`, `oauth_name`, and `oauth_avatar_url`
|
94
|
+
- Storage of standardized user info in the auth_data JSON field
|
95
|
+
|
96
|
+
## [0.2.3] - 2023-03-25
|
97
|
+
|
98
|
+
### Fixed
|
99
|
+
- Added missing `process_callback` method to Provider::Base class for handling OAuth callbacks
|
100
|
+
- Fixed authorization code validation to handle special characters in Google's OAuth codes
|
101
|
+
- Improved JSON parsing to handle both string and hash response bodies from OAuth providers
|
102
|
+
- Made token and userinfo validation more permissive to work with various OAuth provider responses
|
103
|
+
- Added comprehensive integration tests for the OAuth callback flow
|
104
|
+
|
105
|
+
## [0.2.2] - 2023-03-19
|
106
|
+
|
107
|
+
### Fixed
|
108
|
+
- Added `allow_other_host: true` to OAuth redirects to fix `ActionController::Redirecting::UnsafeRedirectError` errors in Rails 7
|
109
|
+
- This ensures compatibility with stricter cross-origin redirect security in newer Rails versions
|
110
|
+
|
111
|
+
## [0.2.1] - 2023-03-18
|
112
|
+
|
113
|
+
### Changed
|
114
|
+
- Namespaced view helper methods to prevent conflicts with Rails form helpers
|
115
|
+
- `oauth_button` -> `clavis_oauth_button`
|
116
|
+
- `provider_svg` -> `clavis_provider_svg`
|
117
|
+
- Made view helper inclusion configurable through `config.view_helpers_auto_include` option
|
118
|
+
- Updated documentation to reflect the new helper naming and inclusion options
|
119
|
+
- Engine configuration now defaults to automatically include view helpers
|
120
|
+
|
121
|
+
### Fixed
|
122
|
+
- Conflicts between Clavis view helpers and Rails form helpers when using `form_with`
|
123
|
+
|
124
|
+
## [0.2.0] - 2023-03-17
|
125
|
+
|
126
|
+
### Fixed
|
127
|
+
- Module name inconsistency between `Clavis::Models::OauthAuthenticatable` and `Clavis::Models::Concerns::OauthAuthenticatable`
|
data/CODE_OF_CONDUCT.md
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2025 Clayton Lengel-Zigich
|
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.
|