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

chore: check server version on sign-in and launch #43

Merged
merged 12 commits into from
Mar 11, 2025

Conversation

deansheather
Copy link
Member

Updates CredentialModel to have an additional state Unknown during startup while credentials are validated in the background asynchronously (15s timeout).

While loading credentials on startup, the tray app shows a loading message.

While updating credentials, we now check that the server version falls in our expected range.

The sign in page now uses a WinUI 3 Dialog to show errors.

Closes #42

Updates CredentialModel to have an additional state "Unknown" during
startup while credentials are validated in the background asynchronously
(15s timeout).

While loading credentials on startup, the tray app shows a loading message.

While updating credentials, we now check that the server version falls
in our expected range.
@deansheather deansheather marked this pull request as ready for review March 6, 2025 05:53
@deansheather
Copy link
Member Author

@spikecurtis I pretty heavily reworked CredentialManager:

  • Duplicate LoadCredentials calls now get merged (the same Task will be returned from both, so they will receive identical exceptions/results)
  • A SetCredentials call during an ongoing LoadCredentials call will cancel it
  • Added tests
    • To add tests I needed to add ICoderApiClientFactory and ICoderApiClient for mocking purposes
    • Pulled the NativeApi components of CredentialManager into a new type WindowsCredentialBackend (and added interface ICredentialBackend for mocking)

@deansheather deansheather requested a review from spikecurtis March 9, 2025 13:05
@deansheather
Copy link
Member Author

To protect things from concurrent access:

  • SetCredentials holds _opLock for the entire operation
  • LoadCredentials will hold _opLock while it creates the "inner" task then releases it
    • The "inner" task will grab the lock again when it's ready to write the loaded value

Copy link
Collaborator

@spikecurtis spikecurtis left a comment

Choose a reason for hiding this comment

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

I like the new CredentialManager overall, but still a bit concerned about invoking callbacks while holding the lock. A couple other small nits FYI.

// with no cancellation, the method itself will impose a timeout on the
// HTTP portion.
var credentialManager = _services.GetRequiredService<ICredentialManager>();
_ = credentialManager.LoadCredentials(CancellationToken.None);
Copy link
Collaborator

Choose a reason for hiding this comment

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

Just to check my understanding here, because we are not awaiting the task, it doesn't matter if the task throws some exception, like being canceled. And, we don't block for it to complete, right?

I ask because we want the rest of this function to still run and handle closing of the tray window.

Copy link
Member Author

Choose a reason for hiding this comment

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

Yep, we run it in the background and ignore all errors. If the credentials fail to load, the state will transition to "invalid" which will show the "please sign in" screen.

@deansheather deansheather merged commit 0fefe8a into main Mar 11, 2025
3 checks passed
@deansheather deansheather deleted the dean/login-check-buildinfo branch March 11, 2025 05:46
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.

Validate the server version in the app
3 participants