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.
 

47 lines
912 B

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import os
import os.path
import sqlite3
import subprocess
import json
from paths import *
__doc__= """
Module of classes to handle certificate requests
"""
class SignRequest(object):
def __init__(self, req_id):
self.req_id = req_id
def __repr__(self):
return ( "%s %s" % ( str(self.__class__.__name__), str(self.req_id) ) )
def __bool__(self):
return os.path.exists(self.path)
@property
def name(self):
raise NotImplementedError()
@property
def fields(self):
raise NotImplementedError()
@property
def path(self):
return os.path.join(REQUESTS_PATH, self.req_id)
@property
def destination(self):
return os.path.join(OUTPUT_PATH, self.req_id + '.pub')
@property
def fields(self):
return [
("Hostname", self.host_name)
]