2014-07-18 02:51:58 +00:00
|
|
|
import logging
|
2015-06-17 03:16:36 +00:00
|
|
|
import time
|
2015-11-10 20:08:14 +00:00
|
|
|
import json
|
2014-07-18 02:51:58 +00:00
|
|
|
|
2015-06-17 03:16:36 +00:00
|
|
|
from datetime import datetime
|
2014-07-29 17:39:26 +00:00
|
|
|
from notificationhelper import build_event_data
|
2014-10-22 23:01:56 +00:00
|
|
|
from util.jinjautil import get_template_env
|
2016-02-24 21:01:27 +00:00
|
|
|
from util.secscan import PRIORITY_LEVELS, get_priority_for_index
|
2014-07-29 17:39:26 +00:00
|
|
|
|
2014-10-22 23:01:56 +00:00
|
|
|
template_env = get_template_env("events")
|
2014-07-18 02:51:58 +00:00
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
class InvalidNotificationEventException(Exception):
|
|
|
|
pass
|
|
|
|
|
|
|
|
class NotificationEvent(object):
|
|
|
|
def __init__(self):
|
|
|
|
pass
|
|
|
|
|
2014-08-19 21:40:36 +00:00
|
|
|
def get_level(self, event_data, notification_data):
|
|
|
|
"""
|
|
|
|
Returns a 'level' representing the severity of the event.
|
2014-10-22 23:01:56 +00:00
|
|
|
Valid values are: 'info', 'warning', 'error', 'primary', 'success'
|
2014-08-19 21:40:36 +00:00
|
|
|
"""
|
|
|
|
raise NotImplementedError
|
|
|
|
|
2014-07-18 19:58:18 +00:00
|
|
|
def get_summary(self, event_data, notification_data):
|
2014-07-18 02:51:58 +00:00
|
|
|
"""
|
|
|
|
Returns a human readable one-line summary for the given notification data.
|
|
|
|
"""
|
|
|
|
raise NotImplementedError
|
|
|
|
|
2014-07-18 19:58:18 +00:00
|
|
|
def get_message(self, event_data, notification_data):
|
2014-07-18 02:51:58 +00:00
|
|
|
"""
|
|
|
|
Returns a human readable HTML message for the given notification data.
|
|
|
|
"""
|
2014-10-22 23:01:56 +00:00
|
|
|
return template_env.get_template(self.event_name() + '.html').render({
|
|
|
|
'event_data': event_data,
|
|
|
|
'notification_data': notification_data
|
|
|
|
})
|
2014-07-18 02:51:58 +00:00
|
|
|
|
2015-11-10 20:08:14 +00:00
|
|
|
def get_sample_data(self, notification):
|
2014-07-18 02:51:58 +00:00
|
|
|
"""
|
2015-11-10 20:08:14 +00:00
|
|
|
Returns sample data for testing the raising of this notification, with an example notification.
|
2014-07-18 02:51:58 +00:00
|
|
|
"""
|
|
|
|
raise NotImplementedError
|
|
|
|
|
2015-11-10 20:08:14 +00:00
|
|
|
def should_perform(self, event_data, notification_data):
|
|
|
|
"""
|
|
|
|
Whether a notification for this event should be performed. By default returns True.
|
|
|
|
"""
|
|
|
|
return True
|
|
|
|
|
2014-07-18 02:51:58 +00:00
|
|
|
@classmethod
|
|
|
|
def event_name(cls):
|
|
|
|
"""
|
|
|
|
Particular event implemented by subclasses.
|
|
|
|
"""
|
|
|
|
raise NotImplementedError
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def get_event(cls, eventname):
|
|
|
|
for subc in cls.__subclasses__():
|
|
|
|
if subc.event_name() == eventname:
|
|
|
|
return subc()
|
|
|
|
|
|
|
|
raise InvalidNotificationEventException('Unable to find event: %s' % eventname)
|
|
|
|
|
|
|
|
|
|
|
|
class RepoPushEvent(NotificationEvent):
|
|
|
|
@classmethod
|
|
|
|
def event_name(cls):
|
|
|
|
return 'repo_push'
|
|
|
|
|
2014-08-19 21:40:36 +00:00
|
|
|
def get_level(self, event_data, notification_data):
|
2014-10-22 23:01:56 +00:00
|
|
|
return 'primary'
|
2014-08-19 21:40:36 +00:00
|
|
|
|
2014-07-18 19:58:18 +00:00
|
|
|
def get_summary(self, event_data, notification_data):
|
|
|
|
return 'Repository %s updated' % (event_data['repository'])
|
2014-07-18 02:51:58 +00:00
|
|
|
|
2015-11-10 20:08:14 +00:00
|
|
|
def get_sample_data(self, notification):
|
|
|
|
return build_event_data(notification.repository, {
|
2014-08-05 21:45:40 +00:00
|
|
|
'updated_tags': {'latest': 'someimageid', 'foo': 'anotherimage'},
|
2014-07-18 02:51:58 +00:00
|
|
|
'pruned_image_count': 3
|
2014-07-29 17:39:26 +00:00
|
|
|
})
|
2014-07-18 02:51:58 +00:00
|
|
|
|
|
|
|
|
2015-06-17 03:16:36 +00:00
|
|
|
def _build_summary(event_data):
|
|
|
|
""" Returns a summary string for the build data found in the event data block. """
|
|
|
|
summary = 'for repository %s [%s]' % (event_data['repository'], event_data['build_id'][0:7])
|
|
|
|
return summary
|
|
|
|
|
|
|
|
|
2015-10-13 22:14:52 +00:00
|
|
|
class VulnerabilityFoundEvent(NotificationEvent):
|
|
|
|
@classmethod
|
|
|
|
def event_name(cls):
|
|
|
|
return 'vulnerability_found'
|
|
|
|
|
|
|
|
def get_level(self, event_data, notification_data):
|
|
|
|
priority = event_data['vulnerability']['priority']
|
|
|
|
if priority == 'Defcon1' or priority == 'Critical':
|
|
|
|
return 'error'
|
|
|
|
|
|
|
|
if priority == 'Medium' or priority == 'High':
|
|
|
|
return 'warning'
|
|
|
|
|
|
|
|
return 'info'
|
|
|
|
|
2015-11-10 20:08:14 +00:00
|
|
|
def get_sample_data(self, notification):
|
|
|
|
event_config = json.loads(notification.event_config_json)
|
|
|
|
|
|
|
|
return build_event_data(notification.repository, {
|
2015-10-13 22:14:52 +00:00
|
|
|
'tags': ['latest', 'prod'],
|
|
|
|
'image': 'some-image-id',
|
|
|
|
'vulnerability': {
|
|
|
|
'id': 'CVE-FAKE-CVE',
|
|
|
|
'description': 'A futurist vulnerability',
|
|
|
|
'link': 'https://security-tracker.debian.org/tracker/CVE-FAKE-CVE',
|
2015-11-10 20:08:14 +00:00
|
|
|
'priority': get_priority_for_index(event_config['level'])
|
2015-10-13 22:14:52 +00:00
|
|
|
},
|
|
|
|
})
|
|
|
|
|
2015-11-10 20:08:14 +00:00
|
|
|
def should_perform(self, event_data, notification_data):
|
|
|
|
event_config = json.loads(notification_data.event_config_json)
|
|
|
|
expected_level_index = event_config['level']
|
|
|
|
priority = PRIORITY_LEVELS[event_data['vulnerability']['priority']]
|
|
|
|
actual_level_index = priority['index']
|
2015-11-30 18:43:51 +00:00
|
|
|
return actual_level_index <= expected_level_index
|
2015-11-10 20:08:14 +00:00
|
|
|
|
2015-10-13 22:14:52 +00:00
|
|
|
def get_summary(self, event_data, notification_data):
|
|
|
|
msg = '%s vulnerability detected in repository %s in tags %s'
|
|
|
|
return msg % (event_data['vulnerability']['priority'],
|
|
|
|
event_data['repository'],
|
|
|
|
', '.join(event_data['tags']))
|
|
|
|
|
|
|
|
|
2014-07-18 19:58:18 +00:00
|
|
|
class BuildQueueEvent(NotificationEvent):
|
|
|
|
@classmethod
|
|
|
|
def event_name(cls):
|
|
|
|
return 'build_queued'
|
2014-08-19 21:40:36 +00:00
|
|
|
|
|
|
|
def get_level(self, event_data, notification_data):
|
|
|
|
return 'info'
|
2014-11-24 21:07:38 +00:00
|
|
|
|
2015-11-10 20:08:14 +00:00
|
|
|
def get_sample_data(self, notification):
|
2014-07-18 19:58:18 +00:00
|
|
|
build_uuid = 'fake-build-id'
|
2014-07-29 17:39:26 +00:00
|
|
|
|
2015-11-10 20:08:14 +00:00
|
|
|
return build_event_data(notification.repository, {
|
2014-07-18 19:58:18 +00:00
|
|
|
'is_manual': False,
|
|
|
|
'build_id': build_uuid,
|
|
|
|
'build_name': 'some-fake-build',
|
|
|
|
'docker_tags': ['latest', 'foo', 'bar'],
|
2015-06-17 03:16:36 +00:00
|
|
|
'trigger_id': '1245634',
|
2015-02-24 20:13:51 +00:00
|
|
|
'trigger_kind': 'GitHub',
|
|
|
|
'trigger_metadata': {
|
|
|
|
"default_branch": "master",
|
|
|
|
"ref": "refs/heads/somebranch",
|
2015-06-17 03:16:36 +00:00
|
|
|
"commit": "42d4a62c53350993ea41069e9f2cfdefb0df097d",
|
|
|
|
"commit_info": {
|
|
|
|
'url': 'http://path/to/the/commit',
|
|
|
|
'message': 'Some commit message',
|
|
|
|
'date': time.mktime(datetime.now().timetuple()),
|
|
|
|
'author': {
|
|
|
|
'username': 'fakeauthor',
|
|
|
|
'url': 'http://path/to/fake/author/in/scm',
|
|
|
|
'avatar_url': 'http://www.gravatar.com/avatar/fakehash'
|
|
|
|
}
|
|
|
|
}
|
2015-02-24 20:13:51 +00:00
|
|
|
}
|
2015-06-17 03:16:36 +00:00
|
|
|
}, subpage='/build/%s' % build_uuid)
|
2014-11-24 21:07:38 +00:00
|
|
|
|
2014-07-18 19:58:18 +00:00
|
|
|
def get_summary(self, event_data, notification_data):
|
2015-06-17 03:16:36 +00:00
|
|
|
return 'Build queued ' + _build_summary(event_data)
|
2014-07-18 19:58:18 +00:00
|
|
|
|
|
|
|
|
2014-07-18 02:51:58 +00:00
|
|
|
class BuildStartEvent(NotificationEvent):
|
|
|
|
@classmethod
|
|
|
|
def event_name(cls):
|
|
|
|
return 'build_start'
|
|
|
|
|
2014-08-19 21:40:36 +00:00
|
|
|
def get_level(self, event_data, notification_data):
|
|
|
|
return 'info'
|
|
|
|
|
2015-11-10 20:08:14 +00:00
|
|
|
def get_sample_data(self, notification):
|
2014-07-18 19:58:18 +00:00
|
|
|
build_uuid = 'fake-build-id'
|
2014-07-29 17:39:26 +00:00
|
|
|
|
2015-11-10 20:08:14 +00:00
|
|
|
return build_event_data(notification.repository, {
|
2014-07-18 19:58:18 +00:00
|
|
|
'build_id': build_uuid,
|
|
|
|
'build_name': 'some-fake-build',
|
|
|
|
'docker_tags': ['latest', 'foo', 'bar'],
|
2015-06-17 03:16:36 +00:00
|
|
|
'trigger_id': '1245634',
|
2015-02-24 20:13:51 +00:00
|
|
|
'trigger_kind': 'GitHub',
|
|
|
|
'trigger_metadata': {
|
|
|
|
"default_branch": "master",
|
|
|
|
"ref": "refs/heads/somebranch",
|
2015-06-17 03:16:36 +00:00
|
|
|
"commit": "42d4a62c53350993ea41069e9f2cfdefb0df097d"
|
2015-02-24 20:13:51 +00:00
|
|
|
}
|
2015-06-17 03:16:36 +00:00
|
|
|
}, subpage='/build/%s' % build_uuid)
|
2014-11-24 21:07:38 +00:00
|
|
|
|
2014-07-18 19:58:18 +00:00
|
|
|
def get_summary(self, event_data, notification_data):
|
2015-06-17 03:16:36 +00:00
|
|
|
return 'Build started ' + _build_summary(event_data)
|
2014-07-18 19:58:18 +00:00
|
|
|
|
2014-07-18 02:51:58 +00:00
|
|
|
|
|
|
|
class BuildSuccessEvent(NotificationEvent):
|
|
|
|
@classmethod
|
|
|
|
def event_name(cls):
|
|
|
|
return 'build_success'
|
|
|
|
|
2014-08-19 21:40:36 +00:00
|
|
|
def get_level(self, event_data, notification_data):
|
2014-10-22 23:01:56 +00:00
|
|
|
return 'success'
|
2014-08-19 21:40:36 +00:00
|
|
|
|
2015-11-10 20:08:14 +00:00
|
|
|
def get_sample_data(self, notification):
|
2014-07-18 19:58:18 +00:00
|
|
|
build_uuid = 'fake-build-id'
|
2014-07-29 17:39:26 +00:00
|
|
|
|
2015-11-10 20:08:14 +00:00
|
|
|
return build_event_data(notification.repository, {
|
2014-07-18 19:58:18 +00:00
|
|
|
'build_id': build_uuid,
|
|
|
|
'build_name': 'some-fake-build',
|
|
|
|
'docker_tags': ['latest', 'foo', 'bar'],
|
2015-06-17 03:16:36 +00:00
|
|
|
'trigger_id': '1245634',
|
2015-02-24 20:13:51 +00:00
|
|
|
'trigger_kind': 'GitHub',
|
|
|
|
'trigger_metadata': {
|
|
|
|
"default_branch": "master",
|
|
|
|
"ref": "refs/heads/somebranch",
|
2015-06-17 03:16:36 +00:00
|
|
|
"commit": "42d4a62c53350993ea41069e9f2cfdefb0df097d"
|
2015-02-24 20:13:51 +00:00
|
|
|
},
|
|
|
|
'image_id': '1245657346'
|
2015-06-17 03:16:36 +00:00
|
|
|
}, subpage='/build/%s' % build_uuid)
|
2014-07-29 17:39:26 +00:00
|
|
|
|
2014-07-18 19:58:18 +00:00
|
|
|
def get_summary(self, event_data, notification_data):
|
2015-06-17 03:16:36 +00:00
|
|
|
return 'Build succeeded ' + _build_summary(event_data)
|
2014-07-18 19:58:18 +00:00
|
|
|
|
2014-07-18 02:51:58 +00:00
|
|
|
|
|
|
|
class BuildFailureEvent(NotificationEvent):
|
|
|
|
@classmethod
|
|
|
|
def event_name(cls):
|
|
|
|
return 'build_failure'
|
|
|
|
|
2014-08-19 21:40:36 +00:00
|
|
|
def get_level(self, event_data, notification_data):
|
|
|
|
return 'error'
|
|
|
|
|
2015-11-10 20:08:14 +00:00
|
|
|
def get_sample_data(self, notification):
|
2014-08-19 18:33:33 +00:00
|
|
|
build_uuid = 'fake-build-id'
|
|
|
|
|
2015-11-10 20:08:14 +00:00
|
|
|
return build_event_data(notification.repository, {
|
2014-07-18 19:58:18 +00:00
|
|
|
'build_id': build_uuid,
|
|
|
|
'build_name': 'some-fake-build',
|
|
|
|
'docker_tags': ['latest', 'foo', 'bar'],
|
|
|
|
'trigger_kind': 'GitHub',
|
2015-02-24 20:13:51 +00:00
|
|
|
'error_message': 'This is a fake error message',
|
2015-06-17 03:16:36 +00:00
|
|
|
'trigger_id': '1245634',
|
|
|
|
'trigger_kind': 'GitHub',
|
2015-02-24 20:13:51 +00:00
|
|
|
'trigger_metadata': {
|
|
|
|
"default_branch": "master",
|
|
|
|
"ref": "refs/heads/somebranch",
|
2015-06-17 03:16:36 +00:00
|
|
|
"commit": "42d4a62c53350993ea41069e9f2cfdefb0df097d",
|
|
|
|
"commit_info": {
|
|
|
|
'url': 'http://path/to/the/commit',
|
|
|
|
'message': 'Some commit message',
|
|
|
|
'date': time.mktime(datetime.now().timetuple()),
|
|
|
|
'author': {
|
|
|
|
'username': 'fakeauthor',
|
|
|
|
'url': 'http://path/to/fake/author/in/scm',
|
|
|
|
'avatar_url': 'http://www.gravatar.com/avatar/fakehash'
|
|
|
|
}
|
|
|
|
}
|
2015-02-24 20:13:51 +00:00
|
|
|
}
|
2014-07-29 17:39:26 +00:00
|
|
|
}, subpage='/build?current=%s' % build_uuid)
|
2014-11-24 21:07:38 +00:00
|
|
|
|
2014-07-18 19:58:18 +00:00
|
|
|
def get_summary(self, event_data, notification_data):
|
2015-06-17 03:16:36 +00:00
|
|
|
return 'Build failure ' + _build_summary(event_data)
|
2014-07-18 19:58:18 +00:00
|
|
|
|