Skip to content

Commit

Permalink
fix: make SQL-based alert email links user friendly (#10519)
Browse files Browse the repository at this point in the history
* make urls user friendly

* formatting

Co-authored-by: Jason Davis <@dropbox.com>
  • Loading branch information
JasonD28 committed Aug 4, 2020
1 parent 246add4 commit 0d91b3e
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions superset/tasks/schedules.py
Expand Up @@ -580,13 +580,15 @@ def deliver_alert(alert_id: int, recipients: Optional[str] = None) -> None:
"Superset.slice", slice_id=alert.slice.id, standalone="true"
)
screenshot = ChartScreenshot(chart_url, alert.slice.digest)
cache_key = screenshot.cache_key()
image_url = get_url_path(
"ChartRestApi.screenshot", pk=alert.slice.id, digest=cache_key
image_url = _get_url_path(
"Superset.slice",
user_friendly=True,
slice_id=alert.slice.id,
standalone="true",
)
standalone_index = chart_url.find("/?standalone=true")
standalone_index = image_url.find("/?standalone=true")
if standalone_index != -1:
image_url = chart_url[:standalone_index]
image_url = image_url[:standalone_index]

user = security_manager.find_user(current_app.config["THUMBNAIL_SELENIUM_USER"])
img_data = screenshot.compute_and_cache(
Expand All @@ -605,7 +607,7 @@ def deliver_alert(alert_id: int, recipients: Optional[str] = None) -> None:
images = {"screenshot": img_data}
body = render_template(
"email/alert.txt",
alert_url=get_url_path("AlertModelView.show", pk=alert.id),
alert_url=_get_url_path("AlertModelView.show", user_friendly=True, pk=alert.id),
label=alert.label,
sql=alert.sql,
image_url=image_url,
Expand Down

0 comments on commit 0d91b3e

Please sign in to comment.