2014-07-18 02:51:58 +00:00
|
|
|
import logging
|
|
|
|
import io
|
|
|
|
import os.path
|
|
|
|
import tarfile
|
|
|
|
import base64
|
|
|
|
import json
|
|
|
|
|
|
|
|
from flask.ext.mail import Message
|
|
|
|
from app import mail, app
|
|
|
|
from data import model
|
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
class InvalidNotificationMethodException(Exception):
|
|
|
|
pass
|
|
|
|
|
|
|
|
class NotificationMethod(object):
|
|
|
|
def __init__(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def method_name(cls):
|
|
|
|
"""
|
|
|
|
Particular method implemented by subclasses.
|
|
|
|
"""
|
|
|
|
raise NotImplementedError
|
|
|
|
|
|
|
|
def perform(self, notification, event_handler, notification_data):
|
|
|
|
"""
|
|
|
|
Performs the notification method.
|
|
|
|
|
|
|
|
notification: The noticication record itself.
|
|
|
|
event_handler: The NotificationEvent handler.
|
|
|
|
notification_data: The dict of notification data placed in the queue.
|
|
|
|
"""
|
|
|
|
raise NotImplementedError
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def get_method(cls, methodname):
|
|
|
|
for subc in cls.__subclasses__():
|
|
|
|
if subc.method_name() == methodname:
|
|
|
|
return subc()
|
|
|
|
|
|
|
|
raise InvalidNotificationMethodException('Unable to find method: %s' % methodname)
|
|
|
|
|
|
|
|
|
|
|
|
class QuayNotificationMethod(NotificationMethod):
|
|
|
|
@classmethod
|
|
|
|
def method_name(cls):
|
|
|
|
return 'quay_notification'
|
|
|
|
|
|
|
|
def perform(self, notification, event_handler, notification_data):
|
2014-07-18 15:52:36 +00:00
|
|
|
config_data = json.loads(notification.config_json)
|
2014-07-18 02:51:58 +00:00
|
|
|
repository_id = notification_data['repository_id']
|
|
|
|
repository = model.lookup_repository(repository_id)
|
|
|
|
if not repository:
|
|
|
|
# Probably deleted.
|
|
|
|
return True
|
|
|
|
|
2014-07-18 18:12:20 +00:00
|
|
|
# Lookup the target user or team to which we'll send the notification.
|
|
|
|
target_info = config_data['target']
|
|
|
|
target_users = []
|
|
|
|
|
|
|
|
if target_info['kind'] == 'user':
|
|
|
|
target = model.get_user(target_info['name'])
|
|
|
|
if not target:
|
|
|
|
# Just to be safe.
|
|
|
|
return True
|
|
|
|
|
2014-07-22 17:39:41 +00:00
|
|
|
target_users.append(target)
|
|
|
|
elif target_info['kind'] == 'org':
|
|
|
|
target = model.get_organization(target_info['name'])
|
|
|
|
if not target:
|
|
|
|
# Just to be safe.
|
|
|
|
return True
|
|
|
|
|
|
|
|
# Only repositories under the organization can cause notifications to that org.
|
|
|
|
if target_info['name'] != repository.namespace:
|
|
|
|
return False
|
|
|
|
|
2014-07-18 18:12:20 +00:00
|
|
|
target_users.append(target)
|
|
|
|
elif target_info['kind'] == 'team':
|
|
|
|
# Lookup the team.
|
|
|
|
team = None
|
|
|
|
try:
|
|
|
|
team = model.get_organization_team(repository.namespace, target_info['name'])
|
|
|
|
except model.InvalidTeamException:
|
|
|
|
# Probably deleted.
|
|
|
|
return True
|
|
|
|
|
|
|
|
# Lookup the team's members
|
|
|
|
target_users = model.get_organization_team_members(team.id)
|
|
|
|
|
|
|
|
# For each of the target users, create a notification.
|
|
|
|
for target_user in set(target_users):
|
|
|
|
model.create_notification(event_handler.event_name(), target_user,
|
|
|
|
metadata=notification_data['event_data'])
|
2014-07-18 02:51:58 +00:00
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
|
|
class EmailMethod(NotificationMethod):
|
|
|
|
@classmethod
|
|
|
|
def method_name(cls):
|
|
|
|
return 'email'
|
|
|
|
|
|
|
|
def perform(self, notification, event_handler, notification_data):
|
|
|
|
config_data = json.loads(notification.config_json)
|
|
|
|
email = config_data.get('email', '')
|
|
|
|
if not email:
|
|
|
|
return False
|
|
|
|
|
2014-07-18 19:58:18 +00:00
|
|
|
msg = Message(event_handler.get_summary(notification_data['event_data'], notification_data),
|
2014-07-18 02:51:58 +00:00
|
|
|
sender='support@quay.io',
|
|
|
|
recipients=[email])
|
2014-07-18 19:58:18 +00:00
|
|
|
msg.html = event_handler.get_message(notification_data['event_data'], notification_data)
|
2014-07-18 02:51:58 +00:00
|
|
|
|
|
|
|
try:
|
2014-07-18 15:52:36 +00:00
|
|
|
with app.app_context():
|
|
|
|
mail.send(msg)
|
2014-07-18 02:51:58 +00:00
|
|
|
except Exception as ex:
|
|
|
|
logger.exception('Email was unable to be sent: %s' % ex.message)
|
|
|
|
return False
|
|
|
|
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
|
|
class WebhookMethod(NotificationMethod):
|
|
|
|
@classmethod
|
|
|
|
def method_name(cls):
|
|
|
|
return 'webhook'
|
|
|
|
|
|
|
|
def perform(self, notification, event_handler, notification_data):
|
|
|
|
config_data = json.loads(notification.config_json)
|
|
|
|
url = config_data.get('url', '')
|
|
|
|
if not url:
|
|
|
|
return False
|
|
|
|
|
|
|
|
payload = notification_data['event_data']
|
|
|
|
headers = {'Content-type': 'application/json'}
|
|
|
|
|
|
|
|
try:
|
|
|
|
resp = requests.post(url, data=json.dumps(payload), headers=headers)
|
|
|
|
if resp.status_code/100 != 2:
|
|
|
|
logger.error('%s response for webhook to url: %s' % (resp.status_code,
|
|
|
|
url))
|
|
|
|
return False
|
|
|
|
|
|
|
|
except requests.exceptions.RequestException as ex:
|
|
|
|
logger.exception('Webhook was unable to be sent: %s' % ex.message)
|
|
|
|
return False
|
|
|
|
|
|
|
|
return True
|