Easy CA management
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.
 

59 lines
1.3 KiB

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from playhouse.gfk import *
import os
import os.path
from models import customModel
from models.certificate import Certificate
from paths import *
__doc__= """
Module of base classes to handle authorities
"""
class Authority(customModel.CustomModel):
signed_certificates = ReverseGFK(Certificate, 'authority_type', 'authority_id')
request_allowed = []
# data stored in the database
active = BooleanField()
ca_id = CharField(
index = True,
unique = True,
)
creation_date = DateTimeField(
help_text = 'authority creation date',
)
name = CharField(
index = True,
help_text = 'authority descriptive name',
)
serial = IntegerField(
help_text = 'last certificate serial number',
)
def __bool__(self):
return os.path.exists(self.path)
@property
def path(self):
return os.path.join(MANAGER_PATH, self.ca_id)
def generate(self):
raise NotImplementedError()
def sign(self, request):
raise NotImplementedError()
def __repr__(self):
return ( "%s %s (%s), created on %s" % ( self.__class__.__name__, self.ca_id, self.name, self.creation_date) )