welco/welco/qualif/models.py

68 lines
2.4 KiB
Python
Raw Normal View History

# welco - multichannel request processing
# Copyright (C) 2015 Entr'ouvert
#
# This program is free software: you can redistribute it and/or modify it
# under the terms of the GNU Affero General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
from django.contrib.contenttypes.models import ContentType
from django.contrib.contenttypes import generic
from django.db import models
2015-07-15 16:40:37 +02:00
from django.db.models.signals import post_save
from django.dispatch import receiver
2015-09-21 13:57:33 +02:00
from welco.utils import get_wcs_formdef_details, push_wcs_formdata
class FormdefReference(models.Model):
reference = models.CharField(max_length=250)
@property
def name(self):
return get_wcs_formdef_details(self.reference).get('title')
class FormdataReference(models.Model):
reference = models.CharField(max_length=250)
class Association(models.Model):
source_type = models.ForeignKey(ContentType)
source_pk = models.PositiveIntegerField()
source = generic.GenericForeignKey('source_type', 'source_pk')
2015-07-15 16:40:37 +02:00
triaged = models.BooleanField(default=False)
formdefs = models.ManyToManyField(FormdefReference)
formdatas = models.ManyToManyField(FormdataReference)
# +avis a (roles or users?)
# +info a (roles or users?)
2015-07-15 16:40:37 +02:00
2015-09-21 13:57:33 +02:00
def push(self, request):
# push validated request to wcs
2015-09-21 13:57:33 +02:00
for formdef in self.formdefs.all():
formdata_id = push_wcs_formdata(request, formdef.reference)
reference = '%s:%s' % (formdef.reference, formdata_id)
formdata_reference = FormdataReference(reference=reference)
formdata_reference.save()
self.formdatas.add(formdata_reference)
self.save()
2015-07-15 16:40:37 +02:00
@receiver(post_save)
def association_triaged(sender, instance, **kwargs):
if not sender is Association:
return
if instance.source.triaged != instance.triaged:
instance.source.triaged = instance.triaged
instance.source.save()