You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

19 lines
425 B

from django.http import HttpResponse, HttpResponseBadRequest
from django.utils import timezone
from hc.api.models import Check
def ping(request, code):
try:
check = Check.objects.get(code=code)
except Check.DoesNotExist:
return HttpResponseBadRequest()
check.last_ping = timezone.now()
if check.status == "new":
check.status = "up"
check.save()
return HttpResponse("OK")