40 lines
1.5 KiB
Python
40 lines
1.5 KiB
Python
from django.views import View
|
|
from django.shortcuts import redirect, get_object_or_404
|
|
from django.contrib import messages
|
|
from action.forms import AddStateForm
|
|
from action.models import State, StateDefinition
|
|
from device.models import Device
|
|
import logging
|
|
|
|
|
|
device_logger = logging.getLogger('device_log')
|
|
|
|
class NewActionView(View):
|
|
|
|
def post(self, request, *args, **kwargs):
|
|
form = AddStateForm(request.POST)
|
|
|
|
if form.is_valid():
|
|
state_definition_id = form.cleaned_data['state_id']
|
|
state_definition = get_object_or_404(StateDefinition, pk=state_definition_id)
|
|
snapshot_uuid = form.cleaned_data['snapshot_uuid']
|
|
#TODO: implement notes
|
|
note = form.cleaned_data.get('note', '')
|
|
|
|
state = State.objects.create(
|
|
snapshot_uuid=snapshot_uuid,
|
|
state=state_definition.state,
|
|
user=request.user,
|
|
institution=request.user.institution,
|
|
)
|
|
#TODO: also change logger for full fledged table
|
|
device_logger.info(
|
|
f"Updated State to (key='{state_definition.state}', for device value='{snapshot_uuid}') by user {self.request.user}."
|
|
)
|
|
|
|
messages.success(request, f"Action to '{state_definition.state}' has been added.")
|
|
return redirect(request.META.get('HTTP_REFERER'))
|
|
else:
|
|
messages.error(request, "There was an error with your submission.")
|
|
return redirect(request.META.get('HTTP_REFERER'))
|