-
-
Notifications
You must be signed in to change notification settings - Fork 4.3k
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
♻️ ref: refactor notification building utils to prevent circular dependencies #88030
♻️ ref: refactor notification building utils to prevent circular dependencies #88030
Conversation
…ndency
@@ -173,7 +173,7 @@ def build_attachment_text(group: Group, event: Event | GroupEvent | None = None) | |||
|
|||
|
|||
def build_attachment_replay_link( | |||
group: Group, event: Event | GroupEvent | None = None, url_format: str = SLACK_URL_FORMAT | |||
group: Group, url_format: str, event: Event | GroupEvent | None = None |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
enforcing u pass a url_format
@@ -210,9 +210,6 @@ def build_footer( | |||
text = rules[0].label if rules[0].label else "Test Alert" | |||
footer += f" via {url_format.format(text=text, url=rule_url)}" | |||
|
|||
if url_format == SLACK_URL_FORMAT: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
slack is clearly doing its own thing, so lets give it its own specific method instead of having this 1 tiny function do all the heavy lifting
@@ -0,0 +1,11 @@ | |||
# Attachment colors used for issues with no actions take. | |||
|
|||
LEVEL_TO_COLOR = { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is generic, so lets not keep it with Slack
@@ -7,17 +7,6 @@ | |||
SlackBlock = dict[str, Any] | |||
SlackBody = Union[SlackAttachment, SlackBlock] | |||
|
|||
# Attachment colors used for issues with no actions take. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
moved outside of slack since its generic
Codecov ReportAttention: Patch coverage is ✅ All tests successful. No failed tests found.
Additional details and impacted files@@ Coverage Diff @@
## master #88030 +/- ##
=======================================
Coverage 87.74% 87.74%
=======================================
Files 9925 9927 +2
Lines 563835 563850 +15
Branches 22205 22205
=======================================
+ Hits 494714 494733 +19
+ Misses 68719 68715 -4
Partials 402 402 |
from sentry.models.rule import Rule | ||
|
||
|
||
def build_slack_footer( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
slack gets its own method thats specific to it since it styles things differently
@@ -140,7 +140,7 @@ def test_basic(self, mock_record): | |||
notification_uuid=notification_uuid, | |||
), | |||
"color": LEVEL_TO_COLOR["error"], | |||
"footer": {"text": build_footer(self.event.group, self.event.project, None, "{text}")}, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
reorder required because of optional args
|
||
if rules: | ||
rule_url = build_rule_url(rules[0], group, project) | ||
# If this notification is triggered via the "Send Test Notification" | ||
# button then the label is not defined, but the url works. | ||
text = rules[0].label if rules[0].label else "Test Alert" | ||
footer = SLACK_URL_FORMAT.format(text=text, url=rule_url) | ||
|
||
if len(rules) > 1: | ||
footer += f" (+{len(rules) - 1} other)" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A new unit test on this util would be appreciated.
…ndencies (#88030) making my aci life easier i am running into a lot of circular dependency issues around these methods since we are importing slack specific utils and methods in a generic `messaging` class.
Suspect IssuesThis pull request was deployed and Sentry observed the following issues:
Did you find this useful? React with a 👍 or 👎 |
making my aci life easier
i am running into a lot of circular dependency issues around these methods since we are importing slack specific utils and methods in a generic
messaging
class.