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

impl: support uri handling #35

Merged
merged 17 commits into from
Mar 21, 2025
Merged

impl: support uri handling #35

merged 17 commits into from
Mar 21, 2025

Conversation

fioan89
Copy link
Collaborator

@fioan89 fioan89 commented Mar 13, 2025

  • reacts to URIs in the form of : jetbrains://gateway/com.coder.toolbox?url=https%3A%2F%2Fdev.coder.com&token=....&workspace=bobiverse-bill
  • query parameters like url, token and workspace are mandatory. A fallback implementation is now provided where we ask for these parameters in case they were missing
  • support for handling workspace from a Coder deployment that is not yet configured in the Toolbox.
  • resolves Add support for URI handling #37

- reacts to uris like: jetbrains://gateway/com.coder.toolbox?url=https%3A%2F%2Fdev.coder.com&token=....&workspace=bobiverse-bill
- the handling still does not work correctly when Toolbox is already running.
@fioan89 fioan89 requested review from matifali and bcpeinhardt March 13, 2025 23:04
@fioan89 fioan89 changed the title impl: support uri handling (1) impl: support uri handling Mar 14, 2025
fioan89 added 9 commits March 15, 2025 00:09
- reworked the main env provider to be able to close all existing resources and re-initialize with a different deployment
- the re-initialization is needed in order to navigate to an env page with the targeted workspace. If the workspace is not from the current deployment there will be no env page to navigate to.
- a pop-up dialog is displayed asking for the deployment URL
- an error dialog is displayed if the URL is still not provided by the user
- the existing code was trying indefinitely to ask for token until the user gets it right.
  This is not a bad idea, however Toolbox has a couple of limitations that make the existing
  approach almost unusable:
  - the input dialog doesn't allow custom actions through which we can spawn a browser at login page.
  The code always opened the login page when the token was wrong which ended up hammering the browser
  with too many tabs.
  - the token UI page can't be reused to request the login page (this one has a "Get token" action button)
  because once the user clicks on the Get token to open the webpage, Toolbox closes the window and forgets
  the last UI page that was visible.

 - instead with this patch we ask the token from the user only once. If something goes wrong (mostly during login)
   we show an error dialog and stop the flow.
- the error is also displayed when the workspace with the name does not exist
- starts and waits for the workspace to be running before showing the env page
- improved error handling
- a service which orchestrates the IDE install, opening projects and so on
- when opening a URI, multiple polling jobs could be triggered on different
  Coder deployments if Toolbox starts from scratch. This happens because Toolbox
  takes longer to complete its initial plugin initialization, while the URI
  handling logic runs faster and doesn't wait properly for the plugin to be ready,
  leading to an early polling job. Meanwhile, once Toolbox finishes its initialization,
  it also triggers another polling job.
- this patch properly waits for the plugin initialization and properly cancel the initial
  polling job, which is then replaced by the URI handling polling job.
@fioan89 fioan89 marked this pull request as ready for review March 20, 2025 09:59
fioan89 added 3 commits March 20, 2025 21:11
- it's optional
- `project_path` is the query param
- currently the uri handling waits for the plugin to fully initialize i.e. to sign in to the coder deployment
  and have the list of workspaces retrieved.
- this is done in order to avoid scenarios were uri handling moves faster than autologin and polling and potentially
  ending up with more than one polling job
- however if there is a manual login flow (for example if the user logs from the coder deployment we no
   longer autologin at the next startup) we don't have to wait for the initial polling job to be initialized.
@@ -76,7 +75,7 @@ fun ensureCLI(

// If downloads are enabled download the new version.
if (settings.enableDownloads) {
indicator?.invoke("Downloading Coder CLI...")
context.logger.info("Downloading Coder CLI...")
Copy link
Member

Choose a reason for hiding this comment

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

should we also log what version of CLI is being downloaded and the source URL?

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

This is using https://dev.coder.com/bin/ to download the binary, and it doesn't contain the version. I think the version can be resolved only after running the cli, which means much later than this log.

@matifali matifali requested review from f0ssel and removed request for bcpeinhardt March 21, 2025 11:36
@fioan89 fioan89 merged commit c56250a into main Mar 21, 2025
3 checks passed
@fioan89 fioan89 deleted the impl-support-for-uri branch March 21, 2025 22:43
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.

Add support for URI handling
2 participants