Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 8 additions & 28 deletions docs/examples/auth_manage_projects/index.rst
Original file line number Diff line number Diff line change
@@ -1,39 +1,19 @@
Manage Globus Auth Projects
===========================

.. note::

The following scripts, when run, may leave tokens in a JSON file in
your home directory. Be sure to delete these tokens after use.

List Projects via the Auth API
------------------------------

The following is a very small and simple script using the Globus Auth Developer
APIs.

It uses the tutorial client ID from the :ref:`tutorials <tutorials>`.
For simplicity, the script will prompt for login on each use.

.. literalinclude:: list_projects.py
:caption: ``list_projects.py`` [:download:`download <list_projects.py>`]
:language: python


List and Create Projects via the Auth API
-----------------------------------------

The next example builds upon the earlier example by offering a pair of
features, List and Create.

Argument parsing allows for an action to be selected, which is then executed by
calling the appropriate function.

.. literalinclude:: list_and_create_projects.py
:caption: ``list_and_create_projects.py`` [:download:`download <list_and_create_projects.py>`]
:language: python


List, Create, and Delete Projects via the Auth API
--------------------------------------------------

Expand All @@ -44,16 +24,16 @@ List, Create, and Delete Projects via the Auth API
Deleting projects may be harmful to your production applications.
Only delete with care.

The following example expands upon the former by adding delete functionality.
The following example builds upon the earlier example by offering multiple
features: List, Create, and Delete.

Because Delete requires authentication under a session policy, the login code
grows here to include a storage adapter (with data kept in
``~/.sdk-manage-projects.json``). If a policy failure is encountered, the code
will prompt the user to login again to satisfy the policy and then reexecute
the desired activity.
Argument parsing allows for an action to be selected, which is then executed by
calling the appropriate function.

As a result, this example is significantly more complex, but it still follows
the same basic pattern as above.
Because Delete requires authentication under a session policy, we set
the ``auto_redrive_gares`` configuration, which handles unsatisfied auth
requirements. If a policy failure is encountered, the code will prompt the user
to login again to satisfy the policy and then reexecute the desired activity.

.. literalinclude:: manage_projects.py
:caption: ``manage_projects.py`` [:download:`download <manage_projects.py>`]
Expand Down
80 changes: 0 additions & 80 deletions docs/examples/auth_manage_projects/list_and_create_projects.py

This file was deleted.

40 changes: 11 additions & 29 deletions docs/examples/auth_manage_projects/list_projects.py
Original file line number Diff line number Diff line change
@@ -1,39 +1,21 @@
#!/usr/bin/env python

import globus_sdk

SCOPES = [globus_sdk.AuthClient.scopes.manage_projects, "openid", "email"]
RESOURCE_SERVER = globus_sdk.AuthClient.resource_server

# tutorial client ID
# we recommend replacing this with your own client for any production use-cases
CLIENT_ID = "61338d24-54d5-408f-a10d-66c06b59f6d2"

NATIVE_CLIENT = globus_sdk.NativeAppAuthClient(CLIENT_ID)


def do_login_flow():
NATIVE_CLIENT.oauth2_start_flow(requested_scopes=SCOPES)
authorize_url = NATIVE_CLIENT.oauth2_get_authorize_url()
print(f"Please go to this URL and login:\n\n{authorize_url}\n")
auth_code = input("Please enter the code here: ").strip()
tokens = NATIVE_CLIENT.oauth2_exchange_code_for_tokens(auth_code)
return tokens.by_resource_server[RESOURCE_SERVER]


def get_auth_client():
tokens = do_login_flow()
return globus_sdk.AuthClient(
authorizer=globus_sdk.AccessTokenAuthorizer(tokens["access_token"])
)


def main():
auth_client = get_auth_client()
for project in auth_client.get_projects():
print(f"name: {project['display_name']}")
print(f"id: {project['id']}")
print()
def main() -> None:
with (
globus_sdk.UserApp("list-projects-example", client_id=CLIENT_ID) as app,
globus_sdk.AuthClient(
app_scopes=[globus_sdk.AuthClient.scopes.manage_projects], app=app
) as auth_client,
):
for project in auth_client.get_projects():
print(f"name: {project['display_name']}")
print(f"id: {project['id']}")
print()


if __name__ == "__main__":
Expand Down
158 changes: 43 additions & 115 deletions docs/examples/auth_manage_projects/manage_projects.py
Original file line number Diff line number Diff line change
@@ -1,144 +1,72 @@
#!/usr/bin/env python

import argparse
import os

import globus_sdk
from globus_sdk.token_storage import SimpleJSONFileAdapter

MY_FILE_ADAPTER = SimpleJSONFileAdapter(
os.path.expanduser("~/.sdk-manage-projects.json")
)

SCOPES = [globus_sdk.AuthClient.scopes.manage_projects, "openid", "email"]
RESOURCE_SERVER = globus_sdk.AuthClient.resource_server

# tutorial client ID
# we recommend replacing this with your own client for any production use-cases
CLIENT_ID = "61338d24-54d5-408f-a10d-66c06b59f6d2"

NATIVE_CLIENT = globus_sdk.NativeAppAuthClient(CLIENT_ID)


def do_login_flow(*, session_params: dict | None = None):
NATIVE_CLIENT.oauth2_start_flow(requested_scopes=SCOPES)
# special note!
# this works because oauth2_get_authorize_url supports session error data
# as parameters to build the authorization URL
# you could do this manually with the following supported parameters:
# - session_required_identities
# - session_required_single_domain
# - session_required_policies
authorize_url = NATIVE_CLIENT.oauth2_get_authorize_url(**session_params)
print(f"Please go to this URL and login:\n\n{authorize_url}\n")
auth_code = input("Please enter the code here: ").strip()
tokens = NATIVE_CLIENT.oauth2_exchange_code_for_tokens(auth_code)
return tokens


def get_tokens():
if not MY_FILE_ADAPTER.file_exists():
# do a login flow, getting back initial tokens
response = do_login_flow()
# now store the tokens and pull out the correct token
MY_FILE_ADAPTER.store(response)
tokens = response.by_resource_server[RESOURCE_SERVER]
else:
# otherwise, we already did login; load the tokens from that file
tokens = MY_FILE_ADAPTER.get_token_data(RESOURCE_SERVER)

return tokens


def get_auth_client():
tokens = get_tokens()
def get_auth_client(app: globus_sdk.GlobusApp) -> globus_sdk.AuthClient:
return globus_sdk.AuthClient(
authorizer=globus_sdk.AccessTokenAuthorizer(tokens["access_token"])
app_scopes=[
globus_sdk.AuthClient.scopes.manage_projects,
globus_sdk.AuthClient.scopes.openid,
globus_sdk.AuthClient.scopes.email,
Comment thread
derek-globus marked this conversation as resolved.
],
app=app,
)


def create_project(args):
auth_client = get_auth_client()
userinfo = auth_client.userinfo()
print(
auth_client.create_project(
args.name,
contact_email=userinfo["email"],
admin_ids=userinfo["sub"],
def create_project(app: globus_sdk.GlobusApp, name: str) -> None:
with get_auth_client(app) as auth_client:
userinfo = auth_client.userinfo()
print(
auth_client.create_project(
name, contact_email=userinfo["email"], admin_ids=userinfo["sub"]
)
)
)


def delete_project(args):
auth_client = get_auth_client()
print(auth_client.delete_project(args.project_id))
def delete_project(app: globus_sdk.GlobusApp, project_id: str) -> None:
with get_auth_client(app) as auth_client:
print(auth_client.delete_project(project_id))


def list_projects():
auth_client = get_auth_client()
for project in auth_client.get_projects():
print(f"name: {project['display_name']}")
print(f"id: {project['id']}")
print()
def list_projects(app: globus_sdk.GlobusApp) -> None:
with get_auth_client(app) as auth_client:
for project in auth_client.get_projects():
print(f"name: {project['display_name']}")
print(f"id: {project['id']}")
print()


def main():
def main() -> None:
parser = argparse.ArgumentParser()
parser.add_argument("action", choices=["create", "delete", "list"])
parser.add_argument("-p", "--project-id", help="Project ID for delete")
parser.add_argument("-n", "--name", help="Project name for create")
args = parser.parse_args()

try:
execute(parser, args)
except globus_sdk.GlobusAPIError as err:
if not err.info.authorization_parameters:
raise

err_params = err.info.authorization_parameters
session_params = {}
if err_params.session_required_identities:
print("session required identities detected")
session_params["session_required_identities"] = (
err_params.session_required_identities
)
if err_params.session_required_single_domain:
print("session required single domain detected")
session_params["session_required_single_domain"] = (
err_params.session_required_single_domain
)
if err_params.session_required_policies:
print("session required policies detected")
session_params["session_required_policies"] = (
err_params.session_required_policies
)
print(session_params)
print(err_params)
response = do_login_flow(session_params=session_params)
# now store the tokens
MY_FILE_ADAPTER.store(response)
print(
"Reauthenticated successfully to satisfy "
"session requirements. Will now try again.\n"
)

# try the action again
execute(parser, args)


def execute(parser, args):
if args.action == "create":
if args.name is None:
parser.error("create requires --name")
create_project(args)
elif args.action == "delete":
if args.project_id is None:
parser.error("delete requires --project-id")
delete_project(args)
elif args.action == "list":
list_projects()
else:
raise NotImplementedError()
with globus_sdk.UserApp(
"manage-projects-example",
client_id=CLIENT_ID,
# we set 'auto_redrive_gares', so that any authentication policy errors will
# trigger an automatic second login
config=globus_sdk.GlobusAppConfig(auto_redrive_gares=True),
) as app:
if args.action == "create":
if args.name is None:
parser.error("create requires --name")
create_project(app, args.name)
elif args.action == "delete":
if args.project_id is None:
parser.error("delete requires --project-id")
delete_project(app, args.project_id)
elif args.action == "list":
list_projects(app)
else:
raise NotImplementedError()


if __name__ == "__main__":
Expand Down
Loading