2020-01-29 15:18:15 +00:00
|
|
|
from flask import current_app
|
|
|
|
|
2019-12-02 03:32:03 +00:00
|
|
|
from .base import db
|
|
|
|
|
|
|
|
|
|
|
|
class DomainTemplateRecord(db.Model):
|
|
|
|
__tablename__ = "domain_template_record"
|
|
|
|
id = db.Column(db.Integer, primary_key=True)
|
|
|
|
name = db.Column(db.String(255))
|
|
|
|
type = db.Column(db.String(64))
|
|
|
|
ttl = db.Column(db.Integer)
|
|
|
|
data = db.Column(db.Text)
|
2019-12-09 10:50:48 +00:00
|
|
|
comment = db.Column(db.Text)
|
2019-12-02 03:32:03 +00:00
|
|
|
status = db.Column(db.Boolean)
|
|
|
|
template_id = db.Column(db.Integer, db.ForeignKey('domain_template.id'))
|
|
|
|
template = db.relationship('DomainTemplate', back_populates='records')
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return '<DomainTemplateRecord {0}>'.format(self.id)
|
|
|
|
|
|
|
|
def __init__(self,
|
|
|
|
id=None,
|
|
|
|
name=None,
|
|
|
|
type=None,
|
|
|
|
ttl=None,
|
|
|
|
data=None,
|
2019-12-09 10:50:48 +00:00
|
|
|
comment=None,
|
2019-12-02 03:32:03 +00:00
|
|
|
status=None):
|
|
|
|
self.id = id
|
|
|
|
self.name = name
|
|
|
|
self.type = type
|
|
|
|
self.ttl = ttl
|
|
|
|
self.data = data
|
2019-12-09 10:50:48 +00:00
|
|
|
self.comment = comment
|
2019-12-02 03:32:03 +00:00
|
|
|
self.status = status
|
|
|
|
|
|
|
|
def apply(self):
|
|
|
|
try:
|
|
|
|
db.session.commit()
|
|
|
|
except Exception as e:
|
2020-01-29 15:18:15 +00:00
|
|
|
current_app.logger.error(
|
2019-12-02 03:32:03 +00:00
|
|
|
'Can not update domain template table. Error: {0}'.format(e))
|
|
|
|
db.session.rollback()
|
|
|
|
return {
|
|
|
|
'status': 'error',
|
|
|
|
'msg': 'Can not update domain template table'
|
|
|
|
}
|