Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removing noisy auth log #5920

Merged
merged 7 commits into from
Mar 24, 2025

Conversation

galvana
Copy link
Contributor

@galvana galvana commented Mar 21, 2025

Closes LJ-572

Description Of Changes

Removing noisy log

fides.api.oauth.utils:has_scope_subset:391 - Auth token missing required scopes: privacy_experience_cache:delete

We'll now only log if direct scopes and role-derived scopes are BOTH missing

Authorization failed. Missing required scopes: privacy_experience_cache:delete. Neither direct scopes nor role-derived scopes were sufficient.

Steps to Confirm

  1. Excessive Auth token missing required scopes logs should not be present anymore when debug logging is enabled. This was being logged for all endpoints so any endpoint will do to verify this.

Pre-Merge Checklist

  • Issue requirements met
  • All CI pipelines succeeded
  • CHANGELOG.md updated
    • Add a db-migration This indicates that a change includes a database migration label to the entry if your change includes a DB migration
    • Add a high-risk This issue suggests changes that have a high-probability of breaking existing code label to the entry if your change includes a high-risk change (i.e. potential for performance impact or unexpected regression) that should be flagged
  • Followup issues:
    • Followup issues created (include link)
    • No followup issues
  • Database migrations:
    • Ensure that your downrev is up to date with the latest revision on main
    • Ensure that your downgrade() migration is correct and works
      • If a downgrade migration is not possible for this change, please call this out in the PR description!
    • No migrations
  • Documentation:
    • Documentation complete, PR opened in fidesdocs
    • Documentation issue created in fidesdocs
    • If there are any new client scopes created as part of the pull request, remember to update public-facing documentation that references our scope registry
    • No documentation updates required

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Copy link

vercel bot commented Mar 21, 2025

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
fides-privacy-center ✅ Ready (Inspect) Visit Preview 💬 Add feedback Mar 24, 2025 4:32pm
1 Skipped Deployment
Name Status Preview Comments Updated (UTC)
fides-plus-nightly ⬜️ Ignored (Inspect) Visit Preview Mar 24, 2025 4:32pm

@galvana galvana requested a review from NevilleS March 21, 2025 05:50
Copy link

codecov bot commented Mar 23, 2025

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 86.99%. Comparing base (b0eb1b3) to head (1ca55e9).

Additional details and impacted files
@@            Coverage Diff             @@
##             main    #5920      +/-   ##
==========================================
- Coverage   87.00%   86.99%   -0.01%     
==========================================
  Files         416      416              
  Lines       25524    25522       -2     
  Branches     2758     2758              
==========================================
- Hits        22206    22204       -2     
  Misses       2718     2718              
  Partials      600      600              

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

Copy link
Contributor

@NevilleS NevilleS left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Approved with a nit

@@ -339,6 +339,14 @@ def has_permissions(
has_role: bool = _has_scope_via_role(
token_data=token_data, client=client, endpoint_scopes=endpoint_scopes
)

if not has_direct_scope and not has_role:
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nit: I prefer not duplicating the permission check for the log; it's the kind of pattern that invites subtle errors later on. Try this:

Suggested change
if not has_direct_scope and not has_role:
has_permissions = has_direct_scope or has_role
if not has_permissions:

"Authorization failed. Missing required scopes: {}. Neither direct scopes nor role-derived scopes were sufficient.",
scopes_required,
)

return has_direct_scope or has_role
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
return has_direct_scope or has_role
return has_permissions

galvana and others added 2 commits March 24, 2025 08:49
Co-authored-by: Neville Samuell <neville@ethyca.com>
@galvana galvana merged commit 0a7e469 into main Mar 24, 2025
17 checks passed
@galvana galvana deleted the LJ-572-silence-auth-token-missing-required-scopes branch March 24, 2025 16:40
Copy link

cypress bot commented Mar 24, 2025

fides    Run #12704

Run Properties:  status check passed Passed #12704  •  git commit 0a7e4697e3: Removing noisy auth log (#5920)
Project fides
Branch Review main
Run status status check passed Passed #12704
Run duration 00m 48s
Commit git commit 0a7e4697e3: Removing noisy auth log (#5920)
Committer Adrian Galvan
View all properties for this run ↗︎

Test results
Tests that failed  Failures 0
Tests that were flaky  Flaky 0
Tests that did not run due to a developer annotating a test with .skip  Pending 0
Tests that did not run due to a failure in a mocha hook  Skipped 0
Tests that passed  Passing 5
View all changes introduced in this branch ↗︎

andres-torres-marroquin pushed a commit that referenced this pull request Mar 25, 2025
Co-authored-by: Neville Samuell <neville@ethyca.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants