Browse Source

Add the PD_ENABLED setting

pull/474/head
Pēteris Caune 4 years ago
parent
commit
28150e85fa
No known key found for this signature in database GPG Key ID: E28D7679E9A9EDE2
14 changed files with 107 additions and 30 deletions
  1. +1
    -0
      CHANGELOG.md
  2. +1
    -0
      docker/.env
  3. +0
    -26
      hc/api/tests/test_notify.py
  4. +59
    -0
      hc/api/tests/test_notify_pd.py
  5. +3
    -0
      hc/api/transports.py
  6. +7
    -0
      hc/front/tests/test_add_pd.py
  7. +7
    -0
      hc/front/tests/test_add_pdc.py
  8. +7
    -0
      hc/front/tests/test_add_pdc_complete.py
  9. +6
    -0
      hc/front/views.py
  10. +1
    -0
      hc/settings.py
  11. +4
    -2
      templates/docs/self_hosted_configuration.html
  12. +7
    -2
      templates/docs/self_hosted_configuration.md
  13. +2
    -0
      templates/front/channels.html
  14. +2
    -0
      templates/front/welcome.html

+ 1
- 0
CHANGELOG.md View File

@ -18,6 +18,7 @@ All notable changes to this project will be documented in this file.
- Add the MATTERMOST_ENABLED setting (#471)
- Add the MSTEAMS_ENABLED setting (#471)
- Add the OPSGENIE_ENABLED setting (#471)
- Add the PD_ENABLED setting (#471)
## Bug Fixes
- Fix unwanted HTML escaping in SMS and WhatsApp notifications


+ 1
- 0
docker/.env View File

@ -28,6 +28,7 @@ MATRIX_USER_ID=
MATTERMOST_ENABLED=True
MSTEAMS_ENABLED=True
OPSGENIE_ENABLED=True
PD_ENABLED=True
PD_VENDOR_KEY=
PING_BODY_LIMIT=10000
PING_EMAIL_DOMAIN=localhost


+ 0
- 26
hc/api/tests/test_notify.py View File

@ -25,32 +25,6 @@ class NotifyTestCase(BaseTestCase):
self.channel.save()
self.channel.checks.add(self.check)
@patch("hc.api.transports.requests.request")
def test_pd(self, mock_post):
self._setup_data("pd", "123")
mock_post.return_value.status_code = 200
self.channel.notify(self.check)
assert Notification.objects.count() == 1
args, kwargs = mock_post.call_args
payload = kwargs["json"]
self.assertEqual(payload["event_type"], "trigger")
self.assertEqual(payload["service_key"], "123")
@patch("hc.api.transports.requests.request")
def test_pd_complex(self, mock_post):
self._setup_data("pd", json.dumps({"service_key": "456"}))
mock_post.return_value.status_code = 200
self.channel.notify(self.check)
assert Notification.objects.count() == 1
args, kwargs = mock_post.call_args
payload = kwargs["json"]
self.assertEqual(payload["event_type"], "trigger")
self.assertEqual(payload["service_key"], "456")
@patch("hc.api.transports.requests.request")
def test_pagertree(self, mock_post):
self._setup_data("pagertree", "123")


+ 59
- 0
hc/api/tests/test_notify_pd.py View File

@ -0,0 +1,59 @@
# coding: utf-8
from datetime import timedelta as td
import json
from unittest.mock import patch
from django.utils.timezone import now
from hc.api.models import Channel, Check, Notification
from hc.test import BaseTestCase
from django.test.utils import override_settings
class NotifyTestCase(BaseTestCase):
def _setup_data(self, value, status="down", email_verified=True):
self.check = Check(project=self.project)
self.check.status = status
self.check.last_ping = now() - td(minutes=61)
self.check.save()
self.channel = Channel(project=self.project)
self.channel.kind = "pd"
self.channel.value = value
self.channel.email_verified = email_verified
self.channel.save()
self.channel.checks.add(self.check)
@patch("hc.api.transports.requests.request")
def test_pd(self, mock_post):
self._setup_data("123")
mock_post.return_value.status_code = 200
self.channel.notify(self.check)
assert Notification.objects.count() == 1
args, kwargs = mock_post.call_args
payload = kwargs["json"]
self.assertEqual(payload["event_type"], "trigger")
self.assertEqual(payload["service_key"], "123")
@patch("hc.api.transports.requests.request")
def test_pd_complex(self, mock_post):
self._setup_data(json.dumps({"service_key": "456"}))
mock_post.return_value.status_code = 200
self.channel.notify(self.check)
assert Notification.objects.count() == 1
args, kwargs = mock_post.call_args
payload = kwargs["json"]
self.assertEqual(payload["event_type"], "trigger")
self.assertEqual(payload["service_key"], "456")
@override_settings(PD_ENABLED=False)
def test_it_requires_pd_enabled(self):
self._setup_data("123")
self.channel.notify(self.check)
n = Notification.objects.get()
self.assertEqual(n.error, "PagerDuty notifications are not enabled.")

+ 3
- 0
hc/api/transports.py View File

@ -318,6 +318,9 @@ class PagerDuty(HttpTransport):
URL = "https://events.pagerduty.com/generic/2010-04-15/create_event.json"
def notify(self, check):
if not settings.PD_ENABLED:
return "PagerDuty notifications are not enabled."
description = tmpl("pd_description.html", check=check)
payload = {
"service_key": self.channel.pd_service_key,


+ 7
- 0
hc/front/tests/test_add_pd.py View File

@ -1,3 +1,4 @@
from django.test.utils import override_settings
from hc.api.models import Channel
from hc.test import BaseTestCase
@ -40,3 +41,9 @@ class AddPdTestCase(BaseTestCase):
self.client.login(username="[email protected]", password="password")
r = self.client.get(self.url)
self.assertEqual(r.status_code, 403)
@override_settings(PD_ENABLED=False)
def test_it_handles_disabled_integration(self):
self.client.login(username="[email protected]", password="password")
r = self.client.get(self.url)
self.assertEqual(r.status_code, 404)

+ 7
- 0
hc/front/tests/test_add_pdc.py View File

@ -31,6 +31,13 @@ class AddPdConnectTestCase(BaseTestCase):
r = self.client.get(self.url)
self.assertEqual(r.status_code, 404)
@override_settings(PD_ENABLED=False)
def test_it_requires_pd_enabled(self):
self.client.login(username="[email protected]", password="password")
r = self.client.get(self.url)
self.assertEqual(r.status_code, 404)
def test_it_requires_rw_access(self):
self.bobs_membership.rw = False
self.bobs_membership.save()


+ 7
- 0
hc/front/tests/test_add_pdc_complete.py View File

@ -25,6 +25,13 @@ class AddPdcCompleteTestCase(BaseTestCase):
r = self.client.get(self.url)
self.assertEqual(r.status_code, 404)
@override_settings(PD_ENABLED=False)
def test_it_requires_pd_enabled(self):
self.client.login(username="[email protected]", password="password")
r = self.client.get(self.url)
self.assertEqual(r.status_code, 404)
def test_it_requires_rw_access(self):
self.bobs_membership.rw = False
self.bobs_membership.save()


+ 6
- 0
hc/front/views.py View File

@ -298,6 +298,7 @@ def index(request):
"enable_mattermost": settings.MATTERMOST_ENABLED is True,
"enable_msteams": settings.MSTEAMS_ENABLED is True,
"enable_opsgenie": settings.OPSGENIE_ENABLED is True,
"enable_pd": settings.PD_ENABLED is True,
"enable_pdc": settings.PD_VENDOR_KEY is not None,
"enable_pushbullet": settings.PUSHBULLET_CLIENT_ID is not None,
"enable_pushover": settings.PUSHOVER_API_TOKEN is not None,
@ -769,6 +770,7 @@ def channels(request, code):
"enable_mattermost": settings.MATTERMOST_ENABLED is True,
"enable_msteams": settings.MSTEAMS_ENABLED is True,
"enable_opsgenie": settings.OPSGENIE_ENABLED is True,
"enable_pd": settings.PD_ENABLED is True,
"enable_pdc": settings.PD_VENDOR_KEY is not None,
"enable_pushbullet": settings.PUSHBULLET_CLIENT_ID is not None,
"enable_pushover": settings.PUSHOVER_API_TOKEN is not None,
@ -1027,6 +1029,7 @@ def add_shell(request, code):
return render(request, "integrations/add_shell.html", ctx)
@require_setting("PD_ENABLED")
@login_required
def add_pd(request, code):
project = _get_rw_project_for_user(request, code)
@ -1047,12 +1050,14 @@ def add_pd(request, code):
return render(request, "integrations/add_pd.html", ctx)
@require_setting("PD_ENABLED")
@require_setting("PD_VENDOR_KEY")
def pdc_help(request):
ctx = {"page": "channels"}
return render(request, "integrations/add_pdc.html", ctx)
@require_setting("PD_ENABLED")
@require_setting("PD_VENDOR_KEY")
@login_required
def add_pdc(request, code):
@ -1071,6 +1076,7 @@ def add_pdc(request, code):
return render(request, "integrations/add_pdc.html", ctx)
@require_setting("PD_ENABLED")
@require_setting("PD_VENDOR_KEY")
@login_required
def add_pdc_complete(request, code, state):


+ 1
- 0
hc/settings.py View File

@ -209,6 +209,7 @@ MSTEAMS_ENABLED = envbool("MSTEAMS_ENABLED", "True")
OPSGENIE_ENABLED = envbool("OPSGENIE_ENABLED", "True")
# PagerDuty
PD_ENABLED = envbool("PD_ENABLED", "True")
PD_VENDOR_KEY = os.getenv("PD_VENDOR_KEY")
# Pushover integration


+ 4
- 2
templates/docs/self_hosted_configuration.html View File

@ -149,10 +149,12 @@ integration.</p>
<h2 id="OPSGENIE_ENABLED"><code>OPSGENIE_ENABLED</code></h2>
<p>Default: <code>True</code></p>
<p>A boolean that turns on/off the Opsgenie integration. Enabled by default.</p>
<h2 id="PD_ENABLED"><code>PD_ENABLED</code></h2>
<p>Default: <code>True</code></p>
<p>A boolean that turns on/off the Pagerduty integration. Enabled by default.</p>
<h2 id="PD_VENDOR_KEY"><code>PD_VENDOR_KEY</code></h2>
<p>Default: <code>None</code></p>
<p><a href="https://www.pagerduty.com/">PagerDuty</a> vendor key,
required by the PagerDuty integration.</p>
<p><a href="https://www.pagerduty.com/">PagerDuty</a> vendor key, used by the PagerDuty integration.</p>
<h2 id="PING_BODY_LIMIT"><code>PING_BODY_LIMIT</code></h2>
<p>Default: <code>10000</code></p>
<p>The upper size limit in bytes for logged ping request bodies.


+ 7
- 2
templates/docs/self_hosted_configuration.md View File

@ -248,12 +248,17 @@ Default: `True`
A boolean that turns on/off the Opsgenie integration. Enabled by default.
## `PD_ENABLED` {: #PD_ENABLED }
Default: `True`
A boolean that turns on/off the PagerDuty integration. Enabled by default.
## `PD_VENDOR_KEY` {: #PD_VENDOR_KEY }
Default: `None`
[PagerDuty](https://www.pagerduty.com/) vendor key,
required by the PagerDuty integration.
[PagerDuty](https://www.pagerduty.com/) vendor key, used by the PagerDuty integration.
## `PING_BODY_LIMIT` {: #PING_BODY_LIMIT }


+ 2
- 0
templates/front/channels.html View File

@ -298,6 +298,7 @@
</li>
{% endif %}
{% if enable_pd %}
<li>
<img src="{% static 'img/integrations/pd.png' %}"
class="icon" alt="PagerDuty icon" />
@ -311,6 +312,7 @@
<a href="{% url 'hc-add-pd' project.code %}" class="btn btn-primary">Add Integration</a>
{% endif %}
</li>
{% endif %}
<li>
<img src="{% static 'img/integrations/pagertree.png' %}"


+ 2
- 0
templates/front/welcome.html View File

@ -496,6 +496,7 @@
</div>
{% endif %}
{% if enable_pd %}
<div class="col-lg-2 col-md-3 col-sm-4 col-xs-6">
{% if enable_pdc %}
<a href="{% url 'hc-pdc-help' %}" class="integration">
@ -515,6 +516,7 @@
</div>
{% endif %}
</div>
{% endif %}
<div class="col-lg-2 col-md-3 col-sm-4 col-xs-6">
<div class="integration">


Loading…
Cancel
Save