2014-07-25 13:53:01 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2014-07-25 11:20:10 +02:00
|
|
|
from django.db import models
|
|
|
|
|
2014-08-11 16:01:03 +02:00
|
|
|
class Project(models.Model):
|
2014-09-29 13:40:07 +02:00
|
|
|
""" Model representing a citavi project. """
|
2014-07-28 13:20:13 +02:00
|
|
|
name = models.CharField(max_length=255)
|
|
|
|
description = models.TextField()
|
2014-09-19 11:05:14 +02:00
|
|
|
associated_filename = models.CharField(max_length=255, blank=True, null=True)
|
|
|
|
|
2014-07-28 13:20:13 +02:00
|
|
|
def __unicode__(self):
|
2014-09-29 15:01:35 +02:00
|
|
|
temp = unicode(self.name)
|
2014-07-28 13:20:13 +02:00
|
|
|
if self.associated_filename:
|
2014-09-29 15:01:35 +02:00
|
|
|
temp += u" (" + unicode(self.associated_filename) + u")"
|
2014-08-11 16:01:03 +02:00
|
|
|
else:
|
2014-09-29 15:01:35 +02:00
|
|
|
temp += u" (empty)"
|
|
|
|
return temp
|
2014-09-15 16:32:23 +02:00
|
|
|
|
|
|
|
|
|
|
|
class PersonGlobalIdentity(models.Model):
|
2014-09-29 13:40:07 +02:00
|
|
|
""" Model representing a global person identity in django. Can be used to link any foreign identity to it. """
|
2014-09-15 16:32:23 +02:00
|
|
|
type = models.CharField(max_length=255)
|
2014-09-19 11:05:14 +02:00
|
|
|
# TODO: Extend this for further stuff - maybe vivo external url or something?
|
2014-09-15 16:32:23 +02:00
|
|
|
|
|
|
|
def __unicode__(self):
|
2014-09-29 18:17:38 +02:00
|
|
|
from service.Mapper import person_mapper
|
|
|
|
return u"<PersonGlobalIdentity repr='" + person_mapper.get_representation_for_global_identity(self) + u"', ID=" + unicode(self.id) + u", type=" + unicode(self.type) + u">"
|
2014-09-15 16:32:23 +02:00
|
|
|
|
|
|
|
|
2014-09-25 17:36:42 +02:00
|
|
|
class CitaviProjectIdentity(models.Model):
|
2014-09-29 13:40:07 +02:00
|
|
|
""" Model representing an identity from a citavi project. """
|
2014-09-29 16:51:50 +02:00
|
|
|
global_identity = models.ForeignKey(PersonGlobalIdentity, blank=True, null=True, db_index=True)
|
|
|
|
project = models.ForeignKey(Project, blank=False, null=False, db_index=True)
|
|
|
|
citavi_uuid = models.CharField(max_length=255, blank=False, null=False, db_index=True)
|
2014-09-19 11:52:56 +02:00
|
|
|
preferred = models.BooleanField()
|
2014-09-19 11:05:14 +02:00
|
|
|
|
2014-09-15 16:32:23 +02:00
|
|
|
def __unicode__(self):
|
2014-09-29 15:01:35 +02:00
|
|
|
return u"<CitaviProjectIdentity project=" + unicode(self.project) + u", citavi_uuid=" + unicode(self.citavi_uuid) + u", global_identity=" + unicode(self.global_identity) + u", preferred=" + unicode(self.preferred) + u">"
|