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

Add query params to 'q login' so we can autofill 'Use with Pro license', 'https://amzn.awsapps.com/start' and 'us-east-1' #1082

Open
3 tasks done
dclaze opened this issue Apr 4, 2025 · 1 comment
Labels
good first issue Good for newcomers

Comments

@dclaze
Copy link

dclaze commented Apr 4, 2025

Checks

Operating system

macOS 15.3.2 (24D81)

Expected behaviour

q login --license pro --identity-provider https://amzn.awsapps.com/start --region us-east-1

Actual behaviour

Q login, but with manual steps

q login

Steps to reproduce

No response

Environment

[q-details]
version = "1.7.2"
hash = "b6bf5f1675dd7395009e8bc65c1145820671f211"
date = "2025-03-21T01:36:16.66764Z (15d ago)"
variant = "full"

[system-info]
os = "macOS 15.3.2 (24D81)"
chip = "Apple M3 Pro"
total-cores = 12
memory = "36.00 GB"

[environment]
cwd = "/Volumes/Development/DMGPrototypeQOnboarding/src/DMGPrototypeQOnboarding"
cli-path = "/Volumes/Development/DMGPrototypeQOnboarding/src/DMGPrototypeQOnboarding"
os = "Mac"
shell-path = "/Users/USER/.toolbox/tools/toolbox/1.1.1762.0/toolbox-exec"
shell-version = "5.9"
terminal = "macOS"
install-method = "toolbox"

[env-vars]
PATH = "/Users/USER/.rbenv/shims:/Users/USER/.rbenv/bin:/Users/USER/.rbenv/shims:/Users/USER/.local/bin:/Users/USER/.local/share/mise/installs/node/18.20.2/bin:/Users/USER/.local/share/mise/installs/python/3.12.9/bin:/Users/USER/.local/share/mise/installs/python/3.11.11/bin:/Users/USER/.local/share/mise/installs/python/3.10.16/bin:/Users/USER/.local/share/mise/installs/python/3.9.21/bin:/Users/USER/.local/share/mise/installs/python/3.8.20/bin:/opt/homebrew/bin:/opt/homebrew/sbin:/Users/USER/.rbenv/shims:/Users/USER/.rbenv/bin:/Users/USER/.local/bin:/Users/USER/.nvm/versions/node/v20.19.0/bin:/usr/local/bin:/System/Cryptexes/App/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/local/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/bin:/var/run/com.apple.security.cryptexd/codex.system/bootstrap/usr/appleinternal/bin:/Library/Apple/usr/bin:/Users/USER/.cargo/bin:/Applications/Visual Studio Code.app/Contents/Resources/app/bin:/Users/USER/.toolbox/bin:/Users/USER/Library/Android/sdk/emulator:/Users/USER/Library/Android/sdk/platform-tools:/Users/USER/Library/Android/sdk/tools:/Users/USER/Library/Android/sdk/emulator:/Users/USER/Library/Android/sdk/platform-tools:/Users/USER/Library/Android/sdk/emulator:/Users/USER/Library/Android/sdk/platform-tools:/Users/USER/Library/Android/sdk/tools:/Users/USER/Library/Android/sdk/platform-tools:/Users/USER/Library/Android/sdk/emulator:/Users/USER/Library/Android/sdk/tools:/Users/USER/Library/Android/sdk/platform-tools:/Users/USER/.toolbox/bin"
SHELL = "/bin/zsh"
TERM = "xterm-256color"
__CFBundleIdentifier = "com.apple.Terminal"
@dclaze
Copy link
Author

dclaze commented Apr 4, 2025

As a workaround, here is a script that automates this using expect, see https://core.tcl-lang.org/expect/home

#!/usr/bin/expect -f

spawn q login

# Wait for login method prompt and select "Use with Pro license"
expect "Select login method"
sleep 1
send "\x1B\[B\r"

expect {
    -re "Enter Start URL.*https://amzn\\.awsapps\\.com/start" {
        sleep 1
        send "\r"
    }
    -re "Enter Start URL.*" {
        sleep 1
        send "https://amzn.awsapps.com/start\r"
    }
}

expect {
    -re "Enter Region.*us-east-1" {
        sleep 1
        send "\r"
    }
    -re "Enter Region.*" {
        sleep 1
        send "us-east-1\r"
    }
}

expect "Logging in..."

# Wait for user to follow browser prompt
interact

@mschrage mschrage added the good first issue Good for newcomers label Apr 4, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
good first issue Good for newcomers
Projects
None yet
Development

No branches or pull requests

2 participants