mirror of
https://github.com/danswer-ai/danswer.git
synced 2025-05-15 06:10:15 +02:00
41 lines
1.5 KiB
Python
41 lines
1.5 KiB
Python
from onyx.configs.constants import DocumentSource
|
|
|
|
# NOTE: do not need https://www.googleapis.com/auth/documents.readonly
|
|
# this is counted under `/auth/drive.readonly`
|
|
GOOGLE_SCOPES = {
|
|
DocumentSource.GOOGLE_DRIVE: [
|
|
"https://www.googleapis.com/auth/drive.readonly",
|
|
"https://www.googleapis.com/auth/drive.metadata.readonly",
|
|
"https://www.googleapis.com/auth/admin.directory.group.readonly",
|
|
"https://www.googleapis.com/auth/admin.directory.user.readonly",
|
|
],
|
|
DocumentSource.GMAIL: [
|
|
"https://www.googleapis.com/auth/gmail.readonly",
|
|
"https://www.googleapis.com/auth/admin.directory.user.readonly",
|
|
"https://www.googleapis.com/auth/admin.directory.group.readonly",
|
|
],
|
|
}
|
|
|
|
# This is the Oauth token
|
|
DB_CREDENTIALS_DICT_TOKEN_KEY = "google_tokens"
|
|
# This is the service account key
|
|
DB_CREDENTIALS_DICT_SERVICE_ACCOUNT_KEY = "google_service_account_key"
|
|
# The email saved for both auth types
|
|
DB_CREDENTIALS_PRIMARY_ADMIN_KEY = "google_primary_admin"
|
|
|
|
USER_FIELDS = "nextPageToken, users(primaryEmail)"
|
|
|
|
# Error message substrings
|
|
MISSING_SCOPES_ERROR_STR = "client not authorized for any of the scopes requested"
|
|
|
|
# Documentation and error messages
|
|
SCOPE_DOC_URL = "https://docs.onyx.app/connectors/google_drive/overview"
|
|
ONYX_SCOPE_INSTRUCTIONS = (
|
|
"You have upgraded Onyx without updating the Google Auth scopes. "
|
|
f"Please refer to the documentation to learn how to update the scopes: {SCOPE_DOC_URL}"
|
|
)
|
|
|
|
|
|
# This is the maximum number of threads that can be retrieved at once
|
|
SLIM_BATCH_SIZE = 500
|