mirror of
https://github.com/bugsink/bugsink.git
synced 2026-01-05 12:50:17 -06:00
46 lines
2.3 KiB
Python
46 lines
2.3 KiB
Python
from django.db import models
|
|
from projects.models import Project
|
|
|
|
from .service_backends.slack import SlackBackend
|
|
|
|
|
|
class MessagingServiceConfig(models.Model):
|
|
project = models.ForeignKey(Project, on_delete=models.DO_NOTHING, related_name="service_configs")
|
|
display_name = models.CharField(max_length=100, blank=False,
|
|
help_text='For display in the UI, e.g. "#general on company Slack"')
|
|
|
|
kind = models.CharField(choices=[("slack", "Slack (or compatible)"), ], max_length=20, default="slack")
|
|
|
|
config = models.TextField(blank=False)
|
|
|
|
# Alert backend failure tracking
|
|
last_failure_timestamp = models.DateTimeField(null=True, blank=True,
|
|
help_text="When the last failure occurred")
|
|
last_failure_status_code = models.IntegerField(null=True, blank=True,
|
|
help_text="HTTP status code of the failed request")
|
|
last_failure_response_text = models.TextField(null=True, blank=True,
|
|
help_text="Response text from the failed request")
|
|
last_failure_is_json = models.BooleanField(null=True, blank=True,
|
|
help_text="Whether the response was valid JSON")
|
|
last_failure_error_type = models.CharField(max_length=100, null=True, blank=True,
|
|
help_text="Type of error that occurred (e.g., 'requests.HTTPError')")
|
|
last_failure_error_message = models.TextField(null=True, blank=True,
|
|
help_text="Error message from the exception")
|
|
|
|
def get_backend(self):
|
|
# once we have multiple backends: lookup by kind.
|
|
return SlackBackend(self)
|
|
|
|
def clear_failure_status(self):
|
|
"""Clear all failure tracking fields on successful operation"""
|
|
self.last_failure_timestamp = None
|
|
self.last_failure_status_code = None
|
|
self.last_failure_response_text = None
|
|
self.last_failure_is_json = None
|
|
self.last_failure_error_type = None
|
|
self.last_failure_error_message = None
|
|
|
|
def has_recent_failure(self):
|
|
"""Check if this config has a recent failure"""
|
|
return self.last_failure_timestamp is not None
|