evorepo/devel/models.py
Dan McGee f3a3ce5623 Add new PGPSignature model
This will be used to track cross-developer and master key signatures to
build a visualization in the web interface of key signatures, as well as
be able to provide info on who is verified, who is not, etc.

Signed-off-by: Dan McGee <dan@archlinux.org>
2011-12-05 16:53:26 -06:00

34 lines
1.2 KiB
Python

from django.db import models
from django.contrib.auth.models import User
from main.fields import PGPKeyField
class MasterKey(models.Model):
owner = models.ForeignKey(User, related_name='masterkey_owner',
help_text="The developer holding this master key")
revoker = models.ForeignKey(User, related_name='masterkey_revoker',
help_text="The developer holding the revocation certificate")
pgp_key = PGPKeyField(max_length=40, verbose_name="PGP key fingerprint",
help_text="consists of 40 hex digits; use `gpg --fingerprint`")
created = models.DateTimeField()
revoked = models.DateTimeField(null=True, blank=True)
class Meta:
ordering = ('created',)
class PGPSignature(models.Model):
signer = PGPKeyField(max_length=40, verbose_name="PGP key fingerprint",
help_text="consists of 40 hex digits; use `gpg --fingerprint`")
signee = PGPKeyField(max_length=40, verbose_name="PGP key fingerprint",
help_text="consists of 40 hex digits; use `gpg --fingerprint`")
created = models.DateField()
expires = models.DateField(null=True)
valid = models.BooleanField(default=True)
class Meta:
verbose_name = 'PGP signature'
# vim: set ts=4 sw=4 et: