Browse Source

Revert "Integration for Spike.sh"

pull/399/head
Pēteris Caune 4 years ago
committed by GitHub
parent
commit
53f5062ad6
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
14 changed files with 1 additions and 187 deletions
  1. +0
    -3
      hc/api/models.py
  2. +0
    -14
      hc/api/transports.py
  3. +0
    -30
      hc/front/tests/test_add_spike.py
  4. +0
    -1
      hc/front/urls.py
  5. +0
    -22
      hc/front/views.py
  6. BIN
      static/img/integrations/setup_spike_1.png
  7. BIN
      static/img/integrations/setup_spike_2.png
  8. BIN
      static/img/integrations/setup_spike_3.png
  9. BIN
      static/img/integrations/spike.png
  10. +1
    -10
      templates/front/channels.html
  11. +0
    -7
      templates/front/welcome.html
  12. +0
    -94
      templates/integrations/add_spike.html
  13. +0
    -5
      templates/integrations/spike_description.html
  14. +0
    -1
      templates/integrations/spike_title.html

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

@ -49,7 +49,6 @@ CHANNEL_KINDS = (
("msteams", "Microsoft Teams"),
("shell", "Shell Command"),
("zulip", "Zulip"),
("spike", "Spike"),
)
PO_PRIORITIES = {-2: "lowest", -1: "low", 0: "normal", 1: "high", 2: "emergency"}
@ -457,8 +456,6 @@ class Channel(models.Model):
return transports.Shell(self)
elif self.kind == "zulip":
return transports.Zulip(self)
elif self.kind == "spike":
return transports.Spike(self)
else:
raise NotImplementedError("Unknown channel kind: %s" % self.kind)


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

@ -577,17 +577,3 @@ class Zulip(HttpTransport):
}
return self.post(url, data=data, auth=auth)
class Spike(HttpTransport):
def notify(self, check):
url = self.channel.value
headers = {"Conent-Type": "application/json"}
payload = {
"title": tmpl("spike_title.html", check=check),
"message": tmpl("spike_description.html", check=check),
"status": check.status
}
return self.post(url, json=payload, headers=headers)

+ 0
- 30
hc/front/tests/test_add_spike.py View File

@ -1,30 +0,0 @@
from hc.api.models import Channel
from hc.test import BaseTestCase
class AddSpikeTestCase(BaseTestCase):
url = "/integrations/add_spike/"
def test_instructions_work(self):
self.client.login(username="[email protected]", password="password")
r = self.client.get(self.url)
self.assertContains(r, "Spike")
def test_it_works(self):
form = {"value": "http://example.org"}
self.client.login(username="[email protected]", password="password")
r = self.client.post(self.url, form)
self.assertRedirects(r, "/integrations/")
c = Channel.objects.get()
self.assertEqual(c.kind, "spike")
self.assertEqual(c.value, "http://example.org")
self.assertEqual(c.project, self.project)
def test_it_rejects_bad_url(self):
form = {"value": "not an URL"}
self.client.login(username="[email protected]", password="password")
r = self.client.post(self.url, form)
self.assertContains(r, "Enter a valid URL")

+ 0
- 1
hc/front/urls.py View File

@ -77,7 +77,6 @@ project_urls = [
path("add_webhook/", views.add_webhook, name="hc-add-webhook"),
path("add_whatsapp/", views.add_whatsapp, name="hc-add-whatsapp"),
path("add_zulip/", views.add_zulip, name="hc-add-zulip"),
path("add_spike/", views.add_spike, name="hc-add-spike"),
path("badges/", views.badges, name="hc-badges"),
path("checks/", views.my_checks, name="hc-checks"),
path("checks/add/", views.add_check, name="hc-add-check"),


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

@ -1724,25 +1724,3 @@ def metrics(request, code, key):
yield "hc_checks_down_total %d\n" % num_down
return HttpResponse(output(checks), content_type="text/plain")
@login_required
def add_spike(request, code):
project = _get_project_for_user(request, code)
if request.method == "POST":
form = forms.AddUrlForm(request.POST)
if form.is_valid():
channel = Channel(project=project, kind="spike")
channel.value = form.cleaned_data["value"]
channel.save()
channel.assign_all_checks()
return redirect("hc-p-channels", project.code)
else:
form = forms.AddUrlForm()
ctx = {"page": "channels", "project": project, "form": form}
return render(request, "integrations/add_spike.html", ctx)

BIN
static/img/integrations/setup_spike_1.png View File

Before After
Width: 1890  |  Height: 1312  |  Size: 285 KiB

BIN
static/img/integrations/setup_spike_2.png View File

Before After
Width: 2242  |  Height: 480  |  Size: 72 KiB

BIN
static/img/integrations/setup_spike_3.png View File

Before After
Width: 659  |  Height: 233  |  Size: 46 KiB

BIN
static/img/integrations/spike.png View File

Before After
Width: 256  |  Height: 256  |  Size: 4.7 KiB

+ 1
- 10
templates/front/channels.html View File

@ -334,21 +334,12 @@
<a href="{% url 'hc-add-sms' project.code %}" class="btn btn-primary">Add Integration</a>
</li>
{% endif %}
<li>
<img src="{% static 'img/integrations/spike.png' %}" class="icon" alt="Spike.sh icon" />
<h2>Spike.sh</h2>
<p>No BS Incident management with unlimited alerts and on-call schedules</p>
<a href="{% url 'hc-add-spike' project.code %}" class="btn btn-primary">Add Integration</a>
</li>
{% if enable_telegram %}
<li>
<img src="{% static 'img/integrations/telegram.png' %}"
class="icon" alt="Telegram icon" />
<h2>Telegram</h2>
<p>A messaging app with a focus on speed and security.</p>
<a href="{% url 'hc-add-telegram' %}" class="btn btn-primary">Add Integration</a>


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

@ -455,13 +455,6 @@
</div>
{% endif %}
<div class="col-md-2 col-sm-4 col-xs-6">
<div class="integration">
<img src="{% static 'img/integrations/spike.png' %}" class="icon" alt="Spike.sh icon" />
<h3>Spike.sh <br><small>Incident Management</small></h3>
</div>
</div>
{% if enable_telegram %}
<div class="col-lg-2 col-md-3 col-sm-4 col-xs-6">
<a href="{% url 'hc-telegram-help' %}" class="integration">


+ 0
- 94
templates/integrations/add_spike.html View File

@ -1,94 +0,0 @@
{% extends "base.html" %}
{% load humanize static hc_extras %}
{% block title %}Spike.sh Integration for {% site_name %}{% endblock %}
{% block content %}
<div class="row">
<div class="col-sm-12">
<h1>Spike.sh</h1>
<p>If you are using <a href="https://spike.sh">Spike.sh</a>, make sure to please copy the Healthchecks webhook
and paste it here. Read through the instructions.</p>
<h2>Setup Guide</h2>
<div class="row ai-step">
<div class="col-sm-6">
<span class="step-no"></span>
<p>
Create a <strong>Healthchecks</strong> integration by clicking on <a
href="https://app.spike.sh/integrations/new">add
integration</a> on Spike.sh’s dashboard.
</p>
</div>
<div class="col-sm-6">
<div class="marker-wrap">
<span style="left: 89%; top: 19%;" class="marker"></span>
<img class="ai-guide-screenshot" alt="Click create integration button"
src="{% static 'img/integrations/setup_spike_1.png' %}" />
</div>
</div>
</div>
<div class="row ai-step">
<div class="col-sm-6">
<span class="step-no"></span>
<p>
After you have created the integration, click on copy webhook.
</p>
</div>
<div class="col-sm-6">
<img class="ai-guide-screenshot" alt="Create Healthchecks.io integration with details"
src="{% static 'img/integrations/setup_spike_2.png' %}">
</div>
</div>
<div class="row ai-step">
<div class="col-sm-6">
<span class="step-no"></span>
<p>
This modal with the details for the webhook will show up. Copy that webhook and paste it below. Make
sure you have Healthchecks integration’s webhook so Spike.sh can create and resolve incidents
automatically.
</p>
</div>
<div class="col-sm-6">
<div class="marker-wrap">
<span style="left: 32%; top: 59%;" class="marker"></span>
<img class="ai-guide-screenshot" alt="Copy the Webhook URL"
src="{% static 'img/integrations/setup_spike_3.png' %}">
</div>
</div>
</div>
<h2>Integration Settings</h2>
<form method="post" class="form-horizontal">
{% csrf_token %}
<div class="form-group {{ form.value.css_classes }}">
<label for="post-url" class="col-sm-2 control-label">Endpoint</label>
<div class="col-sm-10">
<input id="post-url" type="text" class="form-control" name="value" placeholder="https://"
value="{{ form.value.value|default:"" }}">
{% if form.value.errors %}
<div class="help-block">
{{ form.value.errors|join:"" }}
</div>
{% endif %}
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<button type="submit" class="btn btn-primary">Save Integration</button>
</div>
</div>
</form>
</div>
</div>
{% endblock %}

+ 0
- 5
templates/integrations/spike_description.html View File

@ -1,5 +0,0 @@
{% load humanize %}
{{ check.name_then_code }} is {{ check.status|upper }}.
{% if check.status == "down" %}
Last ping was {{ check.last_ping|naturaltime }}.
{% endif %}

+ 0
- 1
templates/integrations/spike_title.html View File

@ -1 +0,0 @@
{{ check.name_then_code }} is {{ check.status|upper }}

Loading…
Cancel
Save