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

Additional ACL Tests + Slackbot fix #4430

Merged
merged 20 commits into from
Apr 4, 2025
Merged
9 changes: 8 additions & 1 deletion backend/ee/onyx/external_permissions/slack/doc_sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,14 @@
from ee.onyx.external_permissions.slack.utils import fetch_user_id_to_email_map
from onyx.access.models import DocExternalAccess
from onyx.access.models import ExternalAccess
from onyx.connectors.credentials_provider import OnyxDBCredentialsProvider
from onyx.connectors.slack.connector import get_channels
from onyx.connectors.slack.connector import make_paginated_slack_api_call_w_retries
from onyx.connectors.slack.connector import SlackConnector
from onyx.db.models import ConnectorCredentialPair
from onyx.indexing.indexing_heartbeat import IndexingHeartbeatInterface
from onyx.utils.logger import setup_logger
from shared_configs.contextvars import get_current_tenant_id


logger = setup_logger()
Expand Down Expand Up @@ -101,7 +103,12 @@ def _get_slack_document_access(
callback: IndexingHeartbeatInterface | None,
) -> Generator[DocExternalAccess, None, None]:
slack_connector = SlackConnector(**cc_pair.connector.connector_specific_config)
slack_connector.load_credentials(cc_pair.credential.credential_json)

# Use credentials provider instead of directly loading credentials
provider = OnyxDBCredentialsProvider(
get_current_tenant_id(), "slack", cc_pair.credential.id
)
slack_connector.set_credentials_provider(provider)

slim_doc_generator = slack_connector.retrieve_all_slim_documents(callback=callback)

Expand Down
1 change: 1 addition & 0 deletions backend/ee/onyx/external_permissions/slack/group_sync.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ def _get_slack_group_members_email(


def slack_group_sync(
tenant_id: str,
cc_pair: ConnectorCredentialPair,
) -> list[ExternalUserGroup]:
slack_client = WebClient(
Expand Down
2 changes: 2 additions & 0 deletions backend/ee/onyx/external_permissions/sync_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
DOC_SOURCE_TO_CHUNK_CENSORING_FUNCTION,
)
from ee.onyx.external_permissions.slack.doc_sync import slack_doc_sync
from ee.onyx.external_permissions.slack.group_sync import slack_group_sync
from onyx.access.models import DocExternalAccess
from onyx.configs.constants import DocumentSource
from onyx.db.models import ConnectorCredentialPair
Expand Down Expand Up @@ -56,6 +57,7 @@
GROUP_PERMISSIONS_FUNC_MAP: dict[DocumentSource, GroupSyncFuncType] = {
DocumentSource.GOOGLE_DRIVE: gdrive_group_sync,
DocumentSource.CONFLUENCE: confluence_group_sync,
DocumentSource.SLACK: slack_group_sync,
}


Expand Down
4 changes: 3 additions & 1 deletion backend/onyx/connectors/slack/connector.py
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,9 @@ def thread_to_doc(
def default_msg_filter(message: MessageType) -> bool:
# Don't keep messages from bots
if message.get("bot_id") or message.get("app_id"):
if message.get("bot_profile", {}).get("name") == "OnyxConnector":
bot_profile_name = message.get("bot_profile", {}).get("name")
print(f"bot_profile_name: {bot_profile_name}")
if bot_profile_name == "DanswerBot Testing":
return False
return True

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -444,6 +444,7 @@ def sync(
)
if group_sync_result.status_code != 409:
group_sync_result.raise_for_status()
time.sleep(2)

@staticmethod
def get_doc_sync_task(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,8 @@
@pytest.fixture()
def slack_test_setup() -> Generator[tuple[dict[str, Any], dict[str, Any]], None, None]:
slack_client = SlackManager.get_slack_client(os.environ["SLACK_BOT_TOKEN"])
admin_user_id = SlackManager.build_slack_user_email_id_map(slack_client)[
"[email protected]"
]
user_map = SlackManager.build_slack_user_email_id_map(slack_client)
admin_user_id = user_map["[email protected]"]

(
public_channel,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@
from datetime import timezone
from typing import Any

import pytest

from onyx.connectors.models import InputType
from onyx.db.enums import AccessType
from onyx.server.documents.models import DocumentSource
Expand All @@ -25,7 +23,6 @@
from tests.integration.connector_job_tests.slack.slack_api_utils import SlackManager


@pytest.mark.xfail(reason="flaky - see DAN-789 for example", strict=False)
def test_slack_permission_sync(
reset: None,
vespa_client: vespa_fixture,
Expand Down Expand Up @@ -221,7 +218,6 @@ def test_slack_permission_sync(
assert private_message not in onyx_doc_message_strings


@pytest.mark.xfail(reason="flaky", strict=False)
def test_slack_group_permission_sync(
reset: None,
vespa_client: vespa_fixture,
Expand Down
Loading