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

feat: On window focus, redirect to login if the user has been logged out #18773

Merged
merged 7 commits into from Feb 24, 2022

Conversation

suddjian
Copy link
Member

SUMMARY

If you have Superset open in the background and your session expires, the frontend will still display the logged-in state until the next request happens to fire, jarringly sending you all of a sudden to the login page.

Until now.

This code listens for the document's visibilitychange event. When the tab is focused, a request is made to the new /api/v1/me/ endpoint, which returns 401 if the user is not logged in. The SupersetClient detects the 401 and sends the user to the login page.

BEFORE/AFTER SCREENSHOTS OR ANIMATED GIF

Screen.Recording.2022-02-16.at.4.58.09.PM.mov

TESTING INSTRUCTIONS

Open Superset in two tabs. Log out of one tab. Switch to the other tab. It will immediately redirect to the login page.

ADDITIONAL INFORMATION

  • Has associated issue:
  • Required feature flags:
  • Changes UI
  • Includes DB Migration (follow approval process in SIP-59)
    • Migration is atomic, supports rollback & is backwards-compatible
    • Confirm DB migration upgrade and downgrade tested
    • Runtime estimates and downtime expectations provided
  • Introduces new feature or API
  • Removes existing feature or API

openapi_spec_component_schemas = (UserResponseSchema,)

@expose("/", methods=["GET"])
@safe
Copy link
Member Author

Choose a reason for hiding this comment

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

I didn't want to add a permission for this API, because it should be callable by any user. @dpgaspar this is safe, yeah?

Copy link
Member

Choose a reason for hiding this comment

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

I think this getMe API is great, as it may have plenty o' uses (e.g. when we revisit the Profile design). But just to say it "out loud" we could also implement a GET /time API or something as a lightweight, security-irrelevant API, if performance or security ever become a factor here.

@@ -81,6 +81,7 @@ def bootstrap_user_data(user: User, include_perms: bool = False) -> Dict[str, An
"lastName": user.last_name,
"userId": user.id,
"isActive": user.is_active,
"isAnonymous": user.is_anonymous,
Copy link
Member Author

Choose a reason for hiding this comment

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

Added is_anonymous here for consistency

@suddjian suddjian changed the title Check auth on focus feat: On window focus, redirect to login if the user has been logged out Feb 17, 2022
if (bootstrapData.user?.isActive) {
document.addEventListener('visibilitychange', () => {
// we only care about the tab becoming visible, not vice versa
if (document.visibilityState !== 'visible') return;
Copy link
Contributor

Choose a reason for hiding this comment

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

Do we want to do this every time the user changes a tab (even if there are two Superset tabs), or maybe not more often than every x seconds?

Copy link
Member Author

Choose a reason for hiding this comment

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

It's a pretty cheap endpoint to call, and most people probably aren't changing tabs often enough to be an issue. I think this is fine.

Copy link
Member

Choose a reason for hiding this comment

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

Agree with @suddjian , but good callout — I always appreciate a performance-oriented mindset

@codecov
Copy link

codecov bot commented Feb 17, 2022

Codecov Report

Merging #18773 (978864f) into master (3cccc63) will increase coverage by 0.01%.
The diff coverage is 83.01%.

❗ Current head 978864f differs from pull request most recent head e17686b. Consider uploading reports for the commit e17686b to get more accurate results

Impacted file tree graph

@@            Coverage Diff             @@
##           master   #18773      +/-   ##
==========================================
+ Coverage   66.31%   66.33%   +0.01%     
==========================================
  Files        1620     1622       +2     
  Lines       63080    63114      +34     
  Branches     6370     6372       +2     
==========================================
+ Hits        41833    41865      +32     
- Misses      19591    19592       +1     
- Partials     1656     1657       +1     
Flag Coverage Δ
hive 52.25% <87.09%> (+0.03%) ⬆️
mysql 81.44% <100.00%> (+0.02%) ⬆️
postgres 81.49% <100.00%> (+0.02%) ⬆️
presto 52.09% <87.09%> (+0.03%) ⬆️
python 81.92% <100.00%> (+0.02%) ⬆️
sqlite 81.18% <100.00%> (+0.02%) ⬆️

Flags with carried forward coverage won't be shown. Click here to find out more.

Impacted Files Coverage Δ
...frontend/src/SqlLab/components/ResultSet/index.tsx 50.73% <ø> (ø)
superset-frontend/src/preamble.ts 0.00% <0.00%> (ø)
...erset-frontend/src/profile/components/fixtures.tsx 100.00% <ø> (ø)
superset-frontend/src/views/App.tsx 0.00% <0.00%> (ø)
superset/views/utils.py 82.20% <ø> (ø)
...lLab/components/ExploreCtasResultsButton/index.tsx 8.33% <33.33%> (ø)
...perset-frontend/src/views/components/MenuRight.tsx 80.00% <81.81%> (-0.49%) ⬇️
...rset-frontend/src/components/DeleteModal/index.tsx 84.21% <100.00%> (ø)
superset-frontend/src/views/components/Menu.tsx 56.41% <100.00%> (+1.14%) ⬆️
superset/initialization/__init__.py 90.72% <100.00%> (+0.51%) ⬆️
... and 6 more

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 3cccc63...e17686b. Read the comment docs.

export let bootstrapData: any;
export let bootstrapData: {
user?: User | undefined;
common?: any;
Copy link
Member

Choose a reason for hiding this comment

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

Le sigh... not the concern of this PR by any means, but maybe we should make backlog ticket(s) to add types for common/config.

@rusackas
Copy link
Member

/testenv up

@github-actions
Copy link
Contributor

@rusackas Ephemeral environment spinning up at http://18.236.157.164:8080. Credentials are admin/admin. Please allow several minutes for bootstrapping and startup.

Copy link
Member

@rusackas rusackas left a comment

Choose a reason for hiding this comment

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

Curious what feedback @dpgaspar would have on the backend/security issue, but the changes look good to me, and it sure seems like it does the trick in testing!

401:
$ref: '#/components/responses/401'
"""
if g.user is None or g.user.is_anonymous:
Copy link
Member

Choose a reason for hiding this comment

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

I am wondering if returning 401 for anonymous users won't effectively make read-only access impossible for them?

Copy link
Member

@geido geido Feb 18, 2022

Choose a reason for hiding this comment

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

Oh ok I see what you are doing in the frontend to avoid this being requested for anon users bootstrapData.user?.isActive. I am thinking if this might confuse someone else when using this endpoint in some other places and if we might end up in that problem, but I might just be overthinking it right now.

Copy link
Member Author

Choose a reason for hiding this comment

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

This endpoint is only called if the user isActive, which is synonymous with !isAnonymous

@suddjian suddjian merged commit da3bc48 into apache:master Feb 24, 2022
@rusackas rusackas deleted the check-auth-on-focus branch February 24, 2022 18:09
@github-actions
Copy link
Contributor

Ephemeral environment shutdown and build artifacts deleted.

@mistercrunch mistercrunch added 🏷️ bot A label used by `supersetbot` to keep track of which PR where auto-tagged with release labels 🚢 1.5.0 labels Mar 13, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
🏷️ bot A label used by `supersetbot` to keep track of which PR where auto-tagged with release labels preset-io size/L 🚢 1.5.0
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

5 participants