Skip to content

Commit afb7713

Browse files
add --extra option to login CLI to pass extra query params to /author… (#4)
* add --extra option to login CLI to pass extra query params to /authorize requests * black formatting
1 parent 99363bc commit afb7713

File tree

4 files changed

+42
-5
lines changed

4 files changed

+42
-5
lines changed

src/planet_auth_utils/__init__.py

+2
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@
6262
opt_audience,
6363
opt_client_id,
6464
opt_client_secret,
65+
opt_extra,
6566
opt_human_readable,
6667
opt_issuer,
6768
opt_loglevel,
@@ -122,6 +123,7 @@
122123
"opt_audience",
123124
"opt_client_id",
124125
"opt_client_secret",
126+
"opt_extra",
125127
"opt_human_readable",
126128
"opt_issuer",
127129
"opt_loglevel",

src/planet_auth_utils/commands/cli/oauth_cmd.py

+12-5
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
opt_audience,
2828
opt_client_id,
2929
opt_client_secret,
30+
opt_extra,
3031
opt_human_readable,
3132
opt_open_browser,
3233
opt_organization,
@@ -77,8 +78,9 @@ def cmd_oauth(ctx):
7778
@opt_client_secret
7879
@opt_sops
7980
@opt_yes_no
81+
@opt_extra
8082
@click.pass_context
81-
@recast_exceptions_to_click(AuthException)
83+
@recast_exceptions_to_click(AuthException, ValueError)
8284
def cmd_oauth_login(
8385
ctx,
8486
scope,
@@ -93,18 +95,23 @@ def cmd_oauth_login(
9395
sops,
9496
yes,
9597
project,
98+
extra,
9699
):
97100
"""
98101
Perform an initial login using OAuth.
99102
"""
100-
extra = {}
103+
login_extra = {}
104+
if extra:
105+
for extra_opt in extra:
106+
key, value = extra_opt.split("=", 1)
107+
login_extra[key] = value
101108
if project:
102109
# Planet Labs OAuth extension to request a token for a particular project
103-
extra["project_id"] = project
110+
login_extra["project_id"] = project
104111
if organization:
105112
# Used by Auth0's OAuth implementation to support their concept of selecting
106113
# a particular organization at login when the user belongs to more than one.
107-
extra["organization"] = organization
114+
login_extra["organization"] = organization
108115

109116
current_auth_context = ctx.obj["AUTH"]
110117
current_auth_context.login(
@@ -117,7 +124,7 @@ def cmd_oauth_login(
117124
password=password,
118125
client_id=auth_client_id,
119126
client_secret=auth_client_secret,
120-
extra=extra,
127+
extra=login_extra,
121128
)
122129
print("Login succeeded.") # Errors should throw.
123130
post_login_cmd_helper(override_auth_context=current_auth_context, use_sops=sops, prompt_pre_selection=yes)

src/planet_auth_utils/commands/cli/options.py

+21
Original file line numberDiff line numberDiff line change
@@ -385,3 +385,24 @@ def opt_sops(function):
385385
show_default=True,
386386
)(function)
387387
return function
388+
389+
390+
def opt_extra(function):
391+
"""
392+
Click option for specifying extra options.
393+
"""
394+
function = click.option(
395+
"--extra",
396+
"-O",
397+
multiple=True,
398+
type=str,
399+
envvar=EnvironmentVariables.AUTH_EXTRA,
400+
help="Specify an extra option. Specify multiple options to specify"
401+
" multiple extra options. The format of an option is <key>=<value>."
402+
" When set via environment variable, values should be delimited by"
403+
" whitespace.",
404+
default=None,
405+
show_envvar=True,
406+
show_default=True,
407+
)(function)
408+
return function

src/planet_auth_utils/constants.py

+7
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,12 @@ class EnvironmentVariables:
3333
Client Secret for an OAuth service account
3434
"""
3535

36+
AUTH_EXTRA = "PL_AUTH_EXTRA"
37+
"""
38+
List of extra options. Values should be formatted as <key>=<value>.
39+
Multiple options should be whitespace delimited.
40+
"""
41+
3642
AUTH_PROFILE = "PL_AUTH_PROFILE"
3743
"""
3844
Name of a profile to use for auth client configuration.
@@ -73,6 +79,7 @@ class EnvironmentVariables:
7379
AUTH_SCOPE = "PL_AUTH_SCOPE"
7480
"""
7581
List of scopes to request when requesting OAuth tokens.
82+
Multiple scopes should be whitespace delimited.
7683
"""
7784

7885
AUTH_USERNAME = "PL_AUTH_USERNAME"

0 commit comments

Comments
 (0)