def post(self, request: Request) -> Response: try: slack_request = SlackActionRequest(request) slack_request.validate() except SlackRequestError as e: return self.respond(status=e.status) # Actions list may be empty when receiving a dialog response. action_list_raw = slack_request.data.get("actions", []) action_list = [] action_option = None for action_data in action_list_raw: # Get the _first_ value in the action list. value = action_data.get("value") if value and not action_option: action_option = value if "name" in action_data: action_list.append(MessageAction(**action_data)) # If a user is just clicking our auto response in the messages tab we just return a 200 if action_option == "sentry_docs_link_clicked": return self.respond() # TODO(mgaeta): Stop short-circuiting here on VALUE alone. if action_option in ["link", "ignore"]: return self.handle_unfurl(slack_request, action_option) if action_option in ["approve_member", "reject_member"]: return self.handle_member_approval(slack_request, action_option) if action_list and action_list[0].name == "enable_notifications": return self.handle_enable_notifications(slack_request) return self._handle_group_actions(slack_request, request, action_list)
def post(self, request: Request) -> Response: logging_data: Dict[str, str] = {} try: slack_request = SlackActionRequest(request) slack_request.validate() except SlackRequestError as e: return self.respond(status=e.status) data = slack_request.data # Actions list may be empty when receiving a dialog response action_list = data.get("actions", []) action_option = action_list and action_list[0].get("value", "") # if a user is just clicking our auto response in the messages tab we just return a 200 if action_option == "sentry_docs_link_clicked": return self.respond() channel_id = slack_request.channel_id user_id = slack_request.user_id integration = slack_request.integration response_url = data.get("response_url") if action_option in ["link", "ignore"]: analytics.record( "integrations.slack.chart_unfurl_action", organization_id=integration.organizations.all()[0].id, action=action_option, ) payload = {"delete_original": "true"} try: post(response_url, json=payload) except ApiError as e: logger.error("slack.action.response-error", extra={"error": str(e)}) return self.respond(status=403) return self.respond() logging_data["channel_id"] = channel_id logging_data["slack_user_id"] = user_id logging_data["response_url"] = response_url logging_data["integration_id"] = integration.id # Determine the issue group action is being taken on group_id = slack_request.callback_data["issue"] logging_data["group_id"] = group_id try: group = Group.objects.select_related("project__organization").get( project__in=Project.objects.filter( organization__in=integration.organizations.all()), id=group_id, ) except Group.DoesNotExist: logger.info("slack.action.invalid-issue", extra=logging_data) return self.respond(status=403) logging_data["organization_id"] = group.organization.id # Determine the acting user by slack identity try: idp = IdentityProvider.objects.get( type="slack", external_id=slack_request.team_id) except IdentityProvider.DoesNotExist: logger.error("slack.action.invalid-team-id", extra=logging_data) return self.respond(status=403) try: identity = Identity.objects.select_related("user").get( idp=idp, external_id=user_id) except Identity.DoesNotExist: associate_url = build_linking_url(integration, group.organization, user_id, channel_id, response_url) return self.respond({ "response_type": "ephemeral", "replace_original": False, "text": LINK_IDENTITY_MESSAGE.format(associate_url=associate_url), }) # Handle status dialog submission if slack_request.type == "dialog_submission" and "resolve_type" in data[ "submission"]: # Masquerade a status action action = { "name": "status", "value": data["submission"]["resolve_type"] } try: self.on_status(request, identity, group, action, data, integration) except client.ApiError as e: if e.status_code == 403: text = UNLINK_IDENTITY_MESSAGE.format( associate_url=build_unlinking_url( integration.id, user_id, channel_id, response_url), user_email=identity.user, org_name=group.organization.name, ) else: text = DEFAULT_ERROR_MESSAGE return self.api_error(e, "status_dialog", logging_data, text) group = Group.objects.get(id=group.id) attachment = build_group_attachment(group, identity=identity, actions=[action]) body = self.construct_reply( attachment, is_message=slack_request.callback_data["is_message"]) # use the original response_url to update the link attachment slack_client = SlackClient() try: slack_client.post( slack_request.callback_data["orig_response_url"], data=body, json=True) except ApiError as e: logger.error("slack.action.response-error", extra={"error": str(e)}) return self.respond() # Usually we'll want to respond with the updated attachment including # the list of actions taken. However, when opening a dialog we do not # have anything to update the message with and will use the # response_url later to update it. defer_attachment_update = False # Handle interaction actions action_type = None try: for action in action_list: action_type = action["name"] if action_type == "status": self.on_status(request, identity, group, action, data, integration) elif action_type == "assign": self.on_assign(request, identity, group, action) elif action_type == "resolve_dialog": self.open_resolve_dialog(data, group, integration) defer_attachment_update = True except client.ApiError as e: if e.status_code == 403: text = UNLINK_IDENTITY_MESSAGE.format( associate_url=build_unlinking_url(integration.id, user_id, channel_id, response_url), user_email=identity.user, org_name=group.organization.name, ) else: text = DEFAULT_ERROR_MESSAGE return self.api_error(e, action_type, logging_data, text) if defer_attachment_update: return self.respond() # Reload group as it may have been mutated by the action group = Group.objects.get(id=group.id) attachment = build_group_attachment(group, identity=identity, actions=action_list) body = self.construct_reply(attachment, is_message=self.is_message(data)) return self.respond(body)
def post(self, request: Request) -> Response: try: slack_request = SlackActionRequest(request) slack_request.validate() except SlackRequestError as e: return self.respond(status=e.status) action_option = slack_request.action_option if action_option in ["approve_member", "reject_member"]: return self.handle_member_approval(slack_request) # if a user is just clicking our auto response in the messages tab we just return a 200 if action_option == "sentry_docs_link_clicked": return self.respond() # Actions list may be empty when receiving a dialog response data = slack_request.data action_list_raw = data.get("actions", []) action_list = [ MessageAction(**action_data) for action_data in action_list_raw ] organizations = slack_request.integration.organizations.all() if action_option in ["link", "ignore"]: analytics.record( "integrations.slack.chart_unfurl_action", organization_id=organizations[0].id, action=action_option, ) payload = {"delete_original": "true"} try: requests_.post(slack_request.response_url, json=payload) except ApiError as e: logger.error("slack.action.response-error", extra={"error": str(e)}) return self.respond(status=403) return self.respond() # Determine the issue group action is being taken on group_id = slack_request.callback_data["issue"] logging_data = {**slack_request.logging_data, "group_id": group_id} try: group = Group.objects.select_related("project__organization").get( project__in=Project.objects.filter( organization__in=organizations), id=group_id, ) except Group.DoesNotExist: logger.info("slack.action.invalid-issue", extra={**logging_data}) return self.respond(status=403) logging_data["organization_id"] = group.organization.id # Determine the acting user by slack identity try: identity = slack_request.get_identity() except IdentityProvider.DoesNotExist: return self.respond(status=403) if not identity: associate_url = build_linking_url( integration=slack_request.integration, slack_id=slack_request.user_id, channel_id=slack_request.channel_id, response_url=slack_request.response_url, ) return self.respond_ephemeral( LINK_IDENTITY_MESSAGE.format(associate_url=associate_url)) # Handle status dialog submission if slack_request.type == "dialog_submission" and "resolve_type" in data[ "submission"]: # Masquerade a status action action = MessageAction( name="status", value=data["submission"]["resolve_type"], ) try: self.on_status(request, identity, group, action, data, slack_request.integration) except client.ApiError as error: return self.api_error(slack_request, group, identity, error, "status_dialog") group = Group.objects.get(id=group.id) attachment = SlackIssuesMessageBuilder(group, identity=identity, actions=[action]).build() body = self.construct_reply( attachment, is_message=slack_request.callback_data["is_message"]) # use the original response_url to update the link attachment slack_client = SlackClient() try: slack_client.post( slack_request.callback_data["orig_response_url"], data=body, json=True) except ApiError as e: logger.error("slack.action.response-error", extra={"error": str(e)}) return self.respond() # Usually we'll want to respond with the updated attachment including # the list of actions taken. However, when opening a dialog we do not # have anything to update the message with and will use the # response_url later to update it. defer_attachment_update = False # Handle interaction actions for action in action_list: action_type = action.name try: if action_type == "status": self.on_status(request, identity, group, action, data, slack_request.integration) elif action_type == "assign": self.on_assign(request, identity, group, action) elif action_type == "resolve_dialog": self.open_resolve_dialog(data, group, slack_request.integration) defer_attachment_update = True except client.ApiError as error: return self.api_error(slack_request, group, identity, error, action_type) if defer_attachment_update: return self.respond() # Reload group as it may have been mutated by the action group = Group.objects.get(id=group.id) attachment = SlackIssuesMessageBuilder(group, identity=identity, actions=action_list).build() body = self.construct_reply(attachment, is_message=self.is_message(data)) return self.respond(body)