├── LICENSE ├── README.md ├── api_sample ├── HOWTO.peopletool ├── HOWTO.usertool ├── INSTALL ├── LICENSE ├── README.md ├── VERSION ├── auth_helper.py ├── http_utils.py ├── peopletool.py ├── third_party │ ├── apiclient │ │ ├── __init__.py │ │ ├── channel.py │ │ ├── discovery.py │ │ ├── errors.py │ │ ├── ext │ │ │ ├── __init__.py │ │ │ ├── appengine.py │ │ │ ├── authtools.py │ │ │ ├── django_orm.py │ │ │ └── file.py │ │ ├── gflags │ │ │ └── __init__.py │ │ ├── http.py │ │ ├── mimeparse.py │ │ ├── model.py │ │ ├── oauth.py │ │ ├── push.py │ │ └── schema.py │ ├── httplib2 │ │ ├── LICENSE │ │ ├── __init__.py │ │ ├── cacerts.txt │ │ └── iri2uri.py │ ├── oauth2client │ │ ├── __init__.py │ │ ├── anyjson.py │ │ ├── appengine.py │ │ ├── client.py │ │ ├── clientsecrets.py │ │ ├── crypt.py │ │ ├── django_orm.py │ │ ├── file.py │ │ ├── gce.py │ │ ├── gflags │ │ │ └── __init__.py │ │ ├── keyring_storage.py │ │ ├── locked_file.py │ │ ├── multistore_file.py │ │ ├── old_run.py │ │ ├── tools.py │ │ ├── util.py │ │ └── xsrfutil.py │ └── uritemplate │ │ ├── __init__.py │ │ └── uritemplate.py └── usertool.py └── toolkit ├── API_NOTES.token_api ├── HOWTO.token_api ├── HOWTO.users_api ├── INSTALL ├── LICENSE ├── README.md ├── VERSION ├── __init__.py ├── admin_sdk_directory_api ├── __init__.py ├── tokens_api.py └── users_api.py ├── cmds ├── __init__.py ├── add_user.py ├── gather_domain_token_stats.py ├── ls_customer_id.py ├── ls_tokens_for_user.py ├── ls_tokens_for_user_clientid.py ├── ls_user.py ├── ls_users.py ├── report_domain_token_status.py ├── report_org_counts.py ├── report_plus_domains_users.py ├── report_users.py ├── revoke_tokens_for_domain_clientid.py ├── revoke_tokens_for_user_clientid.py ├── revoke_unapproved_tokens.py ├── rm_user.py ├── set_default_domain.py └── setup_path.py ├── plus_domains_api ├── __init__.py └── people_api.py ├── run_tests.py ├── tests ├── __init__.py ├── apiary_mocks.py ├── directory_api_users_add_user_test.py ├── directory_api_users_customerid_test.py ├── directory_api_users_delete_user_test.py ├── directory_api_users_get_basic_filtered_users_test.py ├── directory_api_users_get_basic_users_test.py ├── directory_api_users_get_user_test.py ├── directory_api_users_get_users_test.py ├── directory_api_users_print_user_test.py ├── directory_api_users_print_users_test.py ├── directory_api_users_test_base.py ├── revoke_tokens_command_test_base.py ├── revoke_tokens_from_blacklist_matches_test.py ├── revoke_tokens_from_blacklist_no_match_test.py ├── setup_path.py ├── test_utils.py ├── testdata │ ├── primarydomain.com_expected_print_output.json │ ├── primarydomain.com_parsed_tokendata.json │ ├── primarydomain.com_users.json │ └── primarydomain.com_valid_tokendata.json ├── tokens_api_test_base.py ├── tokens_api_user_client_with_tokens_test.py ├── tokens_api_user_client_without_tokens_test.py └── tokens_api_user_token_errors_test.py ├── third_party ├── apiclient │ ├── __init__.py │ ├── channel.py │ ├── discovery.py │ ├── errors.py │ ├── ext │ │ ├── __init__.py │ │ ├── appengine.py │ │ ├── authtools.py │ │ ├── django_orm.py │ │ └── file.py │ ├── gflags │ │ └── __init__.py │ ├── http.py │ ├── mimeparse.py │ ├── model.py │ ├── oauth.py │ ├── push.py │ └── schema.py ├── httplib2 │ ├── LICENSE │ ├── __init__.py │ ├── cacerts.txt │ └── iri2uri.py ├── oauth2client │ ├── __init__.py │ ├── anyjson.py │ ├── appengine.py │ ├── client.py │ ├── clientsecrets.py │ ├── crypt.py │ ├── django_orm.py │ ├── file.py │ ├── gce.py │ ├── gflags │ │ └── __init__.py │ ├── keyring_storage.py │ ├── locked_file.py │ ├── multistore_file.py │ ├── old_run.py │ ├── tools.py │ ├── util.py │ └── xsrfutil.py └── uritemplate │ ├── __init__.py │ └── uritemplate.py └── utils ├── __init__.py ├── admin_api_tool_errors.py ├── auth_helper.py ├── cmd_utils.py ├── common_flags.py ├── file_manager.py ├── http_utils.py ├── log_utils.py ├── report_utils.py ├── setup_path.py ├── token_report_utils.py ├── token_revoker.py ├── user_iterator.py └── validators.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/README.md -------------------------------------------------------------------------------- /api_sample/HOWTO.peopletool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/api_sample/HOWTO.peopletool -------------------------------------------------------------------------------- /api_sample/HOWTO.usertool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/api_sample/HOWTO.usertool -------------------------------------------------------------------------------- /api_sample/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/api_sample/INSTALL -------------------------------------------------------------------------------- /api_sample/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/api_sample/LICENSE -------------------------------------------------------------------------------- /api_sample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/api_sample/README.md -------------------------------------------------------------------------------- /api_sample/VERSION: -------------------------------------------------------------------------------- 1 | v1.20140314 2 | -------------------------------------------------------------------------------- /api_sample/auth_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/api_sample/auth_helper.py -------------------------------------------------------------------------------- /api_sample/http_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/api_sample/http_utils.py -------------------------------------------------------------------------------- /api_sample/peopletool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/api_sample/peopletool.py -------------------------------------------------------------------------------- /api_sample/third_party/apiclient/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/api_sample/third_party/apiclient/__init__.py -------------------------------------------------------------------------------- /api_sample/third_party/apiclient/channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/api_sample/third_party/apiclient/channel.py -------------------------------------------------------------------------------- /api_sample/third_party/apiclient/discovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/api_sample/third_party/apiclient/discovery.py -------------------------------------------------------------------------------- /api_sample/third_party/apiclient/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/api_sample/third_party/apiclient/errors.py -------------------------------------------------------------------------------- /api_sample/third_party/apiclient/ext/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api_sample/third_party/apiclient/ext/appengine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/api_sample/third_party/apiclient/ext/appengine.py -------------------------------------------------------------------------------- /api_sample/third_party/apiclient/ext/authtools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/api_sample/third_party/apiclient/ext/authtools.py -------------------------------------------------------------------------------- /api_sample/third_party/apiclient/ext/django_orm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/api_sample/third_party/apiclient/ext/django_orm.py -------------------------------------------------------------------------------- /api_sample/third_party/apiclient/ext/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/api_sample/third_party/apiclient/ext/file.py -------------------------------------------------------------------------------- /api_sample/third_party/apiclient/gflags/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/api_sample/third_party/apiclient/gflags/__init__.py -------------------------------------------------------------------------------- /api_sample/third_party/apiclient/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/api_sample/third_party/apiclient/http.py -------------------------------------------------------------------------------- /api_sample/third_party/apiclient/mimeparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/api_sample/third_party/apiclient/mimeparse.py -------------------------------------------------------------------------------- /api_sample/third_party/apiclient/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/api_sample/third_party/apiclient/model.py -------------------------------------------------------------------------------- /api_sample/third_party/apiclient/oauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/api_sample/third_party/apiclient/oauth.py -------------------------------------------------------------------------------- /api_sample/third_party/apiclient/push.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/api_sample/third_party/apiclient/push.py -------------------------------------------------------------------------------- /api_sample/third_party/apiclient/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/api_sample/third_party/apiclient/schema.py -------------------------------------------------------------------------------- /api_sample/third_party/httplib2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/api_sample/third_party/httplib2/LICENSE -------------------------------------------------------------------------------- /api_sample/third_party/httplib2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/api_sample/third_party/httplib2/__init__.py -------------------------------------------------------------------------------- /api_sample/third_party/httplib2/cacerts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/api_sample/third_party/httplib2/cacerts.txt -------------------------------------------------------------------------------- /api_sample/third_party/httplib2/iri2uri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/api_sample/third_party/httplib2/iri2uri.py -------------------------------------------------------------------------------- /api_sample/third_party/oauth2client/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/api_sample/third_party/oauth2client/__init__.py -------------------------------------------------------------------------------- /api_sample/third_party/oauth2client/anyjson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/api_sample/third_party/oauth2client/anyjson.py -------------------------------------------------------------------------------- /api_sample/third_party/oauth2client/appengine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/api_sample/third_party/oauth2client/appengine.py -------------------------------------------------------------------------------- /api_sample/third_party/oauth2client/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/api_sample/third_party/oauth2client/client.py -------------------------------------------------------------------------------- /api_sample/third_party/oauth2client/clientsecrets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/api_sample/third_party/oauth2client/clientsecrets.py -------------------------------------------------------------------------------- /api_sample/third_party/oauth2client/crypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/api_sample/third_party/oauth2client/crypt.py -------------------------------------------------------------------------------- /api_sample/third_party/oauth2client/django_orm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/api_sample/third_party/oauth2client/django_orm.py -------------------------------------------------------------------------------- /api_sample/third_party/oauth2client/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/api_sample/third_party/oauth2client/file.py -------------------------------------------------------------------------------- /api_sample/third_party/oauth2client/gce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/api_sample/third_party/oauth2client/gce.py -------------------------------------------------------------------------------- /api_sample/third_party/oauth2client/gflags/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/api_sample/third_party/oauth2client/gflags/__init__.py -------------------------------------------------------------------------------- /api_sample/third_party/oauth2client/keyring_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/api_sample/third_party/oauth2client/keyring_storage.py -------------------------------------------------------------------------------- /api_sample/third_party/oauth2client/locked_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/api_sample/third_party/oauth2client/locked_file.py -------------------------------------------------------------------------------- /api_sample/third_party/oauth2client/multistore_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/api_sample/third_party/oauth2client/multistore_file.py -------------------------------------------------------------------------------- /api_sample/third_party/oauth2client/old_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/api_sample/third_party/oauth2client/old_run.py -------------------------------------------------------------------------------- /api_sample/third_party/oauth2client/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/api_sample/third_party/oauth2client/tools.py -------------------------------------------------------------------------------- /api_sample/third_party/oauth2client/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/api_sample/third_party/oauth2client/util.py -------------------------------------------------------------------------------- /api_sample/third_party/oauth2client/xsrfutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/api_sample/third_party/oauth2client/xsrfutil.py -------------------------------------------------------------------------------- /api_sample/third_party/uritemplate/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/api_sample/third_party/uritemplate/__init__.py -------------------------------------------------------------------------------- /api_sample/third_party/uritemplate/uritemplate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/api_sample/third_party/uritemplate/uritemplate.py -------------------------------------------------------------------------------- /api_sample/usertool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/api_sample/usertool.py -------------------------------------------------------------------------------- /toolkit/API_NOTES.token_api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/API_NOTES.token_api -------------------------------------------------------------------------------- /toolkit/HOWTO.token_api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/HOWTO.token_api -------------------------------------------------------------------------------- /toolkit/HOWTO.users_api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/HOWTO.users_api -------------------------------------------------------------------------------- /toolkit/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/INSTALL -------------------------------------------------------------------------------- /toolkit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/LICENSE -------------------------------------------------------------------------------- /toolkit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/README.md -------------------------------------------------------------------------------- /toolkit/VERSION: -------------------------------------------------------------------------------- 1 | v1.20140314 2 | -------------------------------------------------------------------------------- /toolkit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /toolkit/admin_sdk_directory_api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /toolkit/admin_sdk_directory_api/tokens_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/admin_sdk_directory_api/tokens_api.py -------------------------------------------------------------------------------- /toolkit/admin_sdk_directory_api/users_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/admin_sdk_directory_api/users_api.py -------------------------------------------------------------------------------- /toolkit/cmds/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /toolkit/cmds/add_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/cmds/add_user.py -------------------------------------------------------------------------------- /toolkit/cmds/gather_domain_token_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/cmds/gather_domain_token_stats.py -------------------------------------------------------------------------------- /toolkit/cmds/ls_customer_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/cmds/ls_customer_id.py -------------------------------------------------------------------------------- /toolkit/cmds/ls_tokens_for_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/cmds/ls_tokens_for_user.py -------------------------------------------------------------------------------- /toolkit/cmds/ls_tokens_for_user_clientid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/cmds/ls_tokens_for_user_clientid.py -------------------------------------------------------------------------------- /toolkit/cmds/ls_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/cmds/ls_user.py -------------------------------------------------------------------------------- /toolkit/cmds/ls_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/cmds/ls_users.py -------------------------------------------------------------------------------- /toolkit/cmds/report_domain_token_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/cmds/report_domain_token_status.py -------------------------------------------------------------------------------- /toolkit/cmds/report_org_counts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/cmds/report_org_counts.py -------------------------------------------------------------------------------- /toolkit/cmds/report_plus_domains_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/cmds/report_plus_domains_users.py -------------------------------------------------------------------------------- /toolkit/cmds/report_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/cmds/report_users.py -------------------------------------------------------------------------------- /toolkit/cmds/revoke_tokens_for_domain_clientid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/cmds/revoke_tokens_for_domain_clientid.py -------------------------------------------------------------------------------- /toolkit/cmds/revoke_tokens_for_user_clientid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/cmds/revoke_tokens_for_user_clientid.py -------------------------------------------------------------------------------- /toolkit/cmds/revoke_unapproved_tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/cmds/revoke_unapproved_tokens.py -------------------------------------------------------------------------------- /toolkit/cmds/rm_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/cmds/rm_user.py -------------------------------------------------------------------------------- /toolkit/cmds/set_default_domain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/cmds/set_default_domain.py -------------------------------------------------------------------------------- /toolkit/cmds/setup_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/cmds/setup_path.py -------------------------------------------------------------------------------- /toolkit/plus_domains_api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /toolkit/plus_domains_api/people_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/plus_domains_api/people_api.py -------------------------------------------------------------------------------- /toolkit/run_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/run_tests.py -------------------------------------------------------------------------------- /toolkit/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /toolkit/tests/apiary_mocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/tests/apiary_mocks.py -------------------------------------------------------------------------------- /toolkit/tests/directory_api_users_add_user_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/tests/directory_api_users_add_user_test.py -------------------------------------------------------------------------------- /toolkit/tests/directory_api_users_customerid_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/tests/directory_api_users_customerid_test.py -------------------------------------------------------------------------------- /toolkit/tests/directory_api_users_delete_user_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/tests/directory_api_users_delete_user_test.py -------------------------------------------------------------------------------- /toolkit/tests/directory_api_users_get_basic_filtered_users_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/tests/directory_api_users_get_basic_filtered_users_test.py -------------------------------------------------------------------------------- /toolkit/tests/directory_api_users_get_basic_users_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/tests/directory_api_users_get_basic_users_test.py -------------------------------------------------------------------------------- /toolkit/tests/directory_api_users_get_user_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/tests/directory_api_users_get_user_test.py -------------------------------------------------------------------------------- /toolkit/tests/directory_api_users_get_users_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/tests/directory_api_users_get_users_test.py -------------------------------------------------------------------------------- /toolkit/tests/directory_api_users_print_user_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/tests/directory_api_users_print_user_test.py -------------------------------------------------------------------------------- /toolkit/tests/directory_api_users_print_users_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/tests/directory_api_users_print_users_test.py -------------------------------------------------------------------------------- /toolkit/tests/directory_api_users_test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/tests/directory_api_users_test_base.py -------------------------------------------------------------------------------- /toolkit/tests/revoke_tokens_command_test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/tests/revoke_tokens_command_test_base.py -------------------------------------------------------------------------------- /toolkit/tests/revoke_tokens_from_blacklist_matches_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/tests/revoke_tokens_from_blacklist_matches_test.py -------------------------------------------------------------------------------- /toolkit/tests/revoke_tokens_from_blacklist_no_match_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/tests/revoke_tokens_from_blacklist_no_match_test.py -------------------------------------------------------------------------------- /toolkit/tests/setup_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/tests/setup_path.py -------------------------------------------------------------------------------- /toolkit/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/tests/test_utils.py -------------------------------------------------------------------------------- /toolkit/tests/testdata/primarydomain.com_expected_print_output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/tests/testdata/primarydomain.com_expected_print_output.json -------------------------------------------------------------------------------- /toolkit/tests/testdata/primarydomain.com_parsed_tokendata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/tests/testdata/primarydomain.com_parsed_tokendata.json -------------------------------------------------------------------------------- /toolkit/tests/testdata/primarydomain.com_users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/tests/testdata/primarydomain.com_users.json -------------------------------------------------------------------------------- /toolkit/tests/testdata/primarydomain.com_valid_tokendata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/tests/testdata/primarydomain.com_valid_tokendata.json -------------------------------------------------------------------------------- /toolkit/tests/tokens_api_test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/tests/tokens_api_test_base.py -------------------------------------------------------------------------------- /toolkit/tests/tokens_api_user_client_with_tokens_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/tests/tokens_api_user_client_with_tokens_test.py -------------------------------------------------------------------------------- /toolkit/tests/tokens_api_user_client_without_tokens_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/tests/tokens_api_user_client_without_tokens_test.py -------------------------------------------------------------------------------- /toolkit/tests/tokens_api_user_token_errors_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/tests/tokens_api_user_token_errors_test.py -------------------------------------------------------------------------------- /toolkit/third_party/apiclient/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/third_party/apiclient/__init__.py -------------------------------------------------------------------------------- /toolkit/third_party/apiclient/channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/third_party/apiclient/channel.py -------------------------------------------------------------------------------- /toolkit/third_party/apiclient/discovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/third_party/apiclient/discovery.py -------------------------------------------------------------------------------- /toolkit/third_party/apiclient/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/third_party/apiclient/errors.py -------------------------------------------------------------------------------- /toolkit/third_party/apiclient/ext/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /toolkit/third_party/apiclient/ext/appengine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/third_party/apiclient/ext/appengine.py -------------------------------------------------------------------------------- /toolkit/third_party/apiclient/ext/authtools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/third_party/apiclient/ext/authtools.py -------------------------------------------------------------------------------- /toolkit/third_party/apiclient/ext/django_orm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/third_party/apiclient/ext/django_orm.py -------------------------------------------------------------------------------- /toolkit/third_party/apiclient/ext/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/third_party/apiclient/ext/file.py -------------------------------------------------------------------------------- /toolkit/third_party/apiclient/gflags/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/third_party/apiclient/gflags/__init__.py -------------------------------------------------------------------------------- /toolkit/third_party/apiclient/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/third_party/apiclient/http.py -------------------------------------------------------------------------------- /toolkit/third_party/apiclient/mimeparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/third_party/apiclient/mimeparse.py -------------------------------------------------------------------------------- /toolkit/third_party/apiclient/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/third_party/apiclient/model.py -------------------------------------------------------------------------------- /toolkit/third_party/apiclient/oauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/third_party/apiclient/oauth.py -------------------------------------------------------------------------------- /toolkit/third_party/apiclient/push.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/third_party/apiclient/push.py -------------------------------------------------------------------------------- /toolkit/third_party/apiclient/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/third_party/apiclient/schema.py -------------------------------------------------------------------------------- /toolkit/third_party/httplib2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/third_party/httplib2/LICENSE -------------------------------------------------------------------------------- /toolkit/third_party/httplib2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/third_party/httplib2/__init__.py -------------------------------------------------------------------------------- /toolkit/third_party/httplib2/cacerts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/third_party/httplib2/cacerts.txt -------------------------------------------------------------------------------- /toolkit/third_party/httplib2/iri2uri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/third_party/httplib2/iri2uri.py -------------------------------------------------------------------------------- /toolkit/third_party/oauth2client/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/third_party/oauth2client/__init__.py -------------------------------------------------------------------------------- /toolkit/third_party/oauth2client/anyjson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/third_party/oauth2client/anyjson.py -------------------------------------------------------------------------------- /toolkit/third_party/oauth2client/appengine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/third_party/oauth2client/appengine.py -------------------------------------------------------------------------------- /toolkit/third_party/oauth2client/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/third_party/oauth2client/client.py -------------------------------------------------------------------------------- /toolkit/third_party/oauth2client/clientsecrets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/third_party/oauth2client/clientsecrets.py -------------------------------------------------------------------------------- /toolkit/third_party/oauth2client/crypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/third_party/oauth2client/crypt.py -------------------------------------------------------------------------------- /toolkit/third_party/oauth2client/django_orm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/third_party/oauth2client/django_orm.py -------------------------------------------------------------------------------- /toolkit/third_party/oauth2client/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/third_party/oauth2client/file.py -------------------------------------------------------------------------------- /toolkit/third_party/oauth2client/gce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/third_party/oauth2client/gce.py -------------------------------------------------------------------------------- /toolkit/third_party/oauth2client/gflags/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/third_party/oauth2client/gflags/__init__.py -------------------------------------------------------------------------------- /toolkit/third_party/oauth2client/keyring_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/third_party/oauth2client/keyring_storage.py -------------------------------------------------------------------------------- /toolkit/third_party/oauth2client/locked_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/third_party/oauth2client/locked_file.py -------------------------------------------------------------------------------- /toolkit/third_party/oauth2client/multistore_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/third_party/oauth2client/multistore_file.py -------------------------------------------------------------------------------- /toolkit/third_party/oauth2client/old_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/third_party/oauth2client/old_run.py -------------------------------------------------------------------------------- /toolkit/third_party/oauth2client/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/third_party/oauth2client/tools.py -------------------------------------------------------------------------------- /toolkit/third_party/oauth2client/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/third_party/oauth2client/util.py -------------------------------------------------------------------------------- /toolkit/third_party/oauth2client/xsrfutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/third_party/oauth2client/xsrfutil.py -------------------------------------------------------------------------------- /toolkit/third_party/uritemplate/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/third_party/uritemplate/__init__.py -------------------------------------------------------------------------------- /toolkit/third_party/uritemplate/uritemplate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/third_party/uritemplate/uritemplate.py -------------------------------------------------------------------------------- /toolkit/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /toolkit/utils/admin_api_tool_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/utils/admin_api_tool_errors.py -------------------------------------------------------------------------------- /toolkit/utils/auth_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/utils/auth_helper.py -------------------------------------------------------------------------------- /toolkit/utils/cmd_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/utils/cmd_utils.py -------------------------------------------------------------------------------- /toolkit/utils/common_flags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/utils/common_flags.py -------------------------------------------------------------------------------- /toolkit/utils/file_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/utils/file_manager.py -------------------------------------------------------------------------------- /toolkit/utils/http_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/utils/http_utils.py -------------------------------------------------------------------------------- /toolkit/utils/log_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/utils/log_utils.py -------------------------------------------------------------------------------- /toolkit/utils/report_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/utils/report_utils.py -------------------------------------------------------------------------------- /toolkit/utils/setup_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/utils/setup_path.py -------------------------------------------------------------------------------- /toolkit/utils/token_report_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/utils/token_report_utils.py -------------------------------------------------------------------------------- /toolkit/utils/token_revoker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/utils/token_revoker.py -------------------------------------------------------------------------------- /toolkit/utils/user_iterator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/utils/user_iterator.py -------------------------------------------------------------------------------- /toolkit/utils/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/gfw-toolkit/HEAD/toolkit/utils/validators.py --------------------------------------------------------------------------------