36 lines
1.1 KiB
Python
36 lines
1.1 KiB
Python
"""
|
|
.. module: lemur.notifications.models
|
|
:platform: Unix
|
|
:copyright: (c) 2015 by Netflix Inc., see AUTHORS for more
|
|
:license: Apache, see LICENSE for more details.
|
|
.. moduleauthor:: Kevin Glisson <kglisson@netflix.com>
|
|
"""
|
|
from sqlalchemy.orm import relationship
|
|
from sqlalchemy import Integer, String, Column, Boolean, Text
|
|
from sqlalchemy_utils import JSONType
|
|
|
|
from lemur.database import db
|
|
from lemur.plugins.base import plugins
|
|
from lemur.models import certificate_notification_associations
|
|
|
|
|
|
class Notification(db.Model):
|
|
__tablename__ = 'notifications'
|
|
id = Column(Integer, primary_key=True)
|
|
label = Column(String(128), unique=True)
|
|
description = Column(Text())
|
|
options = Column(JSONType)
|
|
active = Column(Boolean, default=True)
|
|
plugin_name = Column(String(32))
|
|
certificates = relationship(
|
|
"Certificate",
|
|
secondary=certificate_notification_associations,
|
|
passive_deletes=True,
|
|
backref="notification",
|
|
cascade='all,delete'
|
|
)
|
|
|
|
@property
|
|
def plugin(self):
|
|
return plugins.get(self.plugin_name)
|