zuul/zuul/driver/gitlab/gitlabmodel.py

192 lines
6.1 KiB
Python

# Copyright 2019 Red Hat, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
import re
from zuul.model import Change, TriggerEvent, EventFilter, RefFilter
EMPTY_GIT_REF = '0' * 40 # git sha of all zeros, used during creates/deletes
class MergeRequest(Change):
def __init__(self, project):
super(MergeRequest, self).__init__(project)
self.updated_at = None
self.approved = None
def __repr__(self):
r = ['<Change 0x%x' % id(self)]
if self.project:
r.append('project: %s' % self.project)
if self.number:
r.append('number: %s' % self.number)
if self.patchset:
r.append('patchset: %s' % self.patchset)
if self.updated_at:
r.append('updated: %s' % self.updated_at)
if self.is_merged:
r.append('state: merged')
if self.open:
r.append('state: open')
if self.approved:
r.append('approval: approved')
return ' '.join(r) + '>'
def isUpdateOf(self, other):
if (self.project == other.project and
hasattr(other, 'number') and self.number == other.number and
hasattr(other, 'updated_at') and
self.updated_at > other.updated_at):
return True
return False
class GitlabTriggerEvent(TriggerEvent):
def __init__(self):
super(GitlabTriggerEvent, self).__init__()
self.trigger_name = 'gitlab'
self.title = None
self.action = None
self.labels = []
self.change_number = None
def _repr(self):
r = [super(GitlabTriggerEvent, self)._repr()]
if self.action:
r.append("action:%s" % self.action)
r.append("project:%s" % self.canonical_project_name)
if self.change_number:
r.append("mr:%s" % self.change_number)
if self.labels:
r.append("labels:%s" % ', '.join(self.labels))
return ' '.join(r)
def isPatchsetCreated(self):
if self.type == 'gl_merge_request':
return self.action in ['opened', 'changed']
return False
class GitlabEventFilter(EventFilter):
def __init__(
self, trigger, types=[], actions=[],
comments=[], refs=[], labels=[], ignore_deletes=True):
super(GitlabEventFilter, self).__init__(self)
self._types = types
self.types = [re.compile(x) for x in types]
self.actions = actions
self._comments = comments
self.comments = [re.compile(x) for x in comments]
self._refs = refs
self.refs = [re.compile(x) for x in refs]
self.labels = labels
self.ignore_deletes = ignore_deletes
def __repr__(self):
ret = '<GitlabEventFilter'
if self._types:
ret += ' types: %s' % ', '.join(self._types)
if self.actions:
ret += ' actions: %s' % ', '.join(self.actions)
if self._comments:
ret += ' comments: %s' % ', '.join(self._comments)
if self._refs:
ret += ' refs: %s' % ', '.join(self._refs)
if self.ignore_deletes:
ret += ' ignore_deletes: %s' % self.ignore_deletes
if self.labels:
ret += ' labels: %s' % ', '.join(self.labels)
ret += '>'
return ret
def matches(self, event, change):
matches_type = False
for etype in self.types:
if etype.match(event.type):
matches_type = True
if self.types and not matches_type:
return False
matches_ref = False
if event.ref is not None:
for ref in self.refs:
if ref.match(event.ref):
matches_ref = True
if self.refs and not matches_ref:
return False
if self.ignore_deletes and event.newrev == EMPTY_GIT_REF:
# If the updated ref has an empty git sha (all 0s),
# then the ref is being deleted
return False
matches_action = False
for action in self.actions:
if (event.action == action):
matches_action = True
if self.actions and not matches_action:
return False
matches_comment_re = False
for comment_re in self.comments:
if (event.comment is not None and
comment_re.search(event.comment)):
matches_comment_re = True
if self.comments and not matches_comment_re:
return False
if self.labels:
if not set(event.labels).intersection(set(self.labels)):
return False
return True
# The RefFilter should be understood as RequireFilter (it maps to
# pipeline requires definition)
class GitlabRefFilter(RefFilter):
def __init__(self, connection_name, open=None, merged=None, approved=None):
RefFilter.__init__(self, connection_name)
self.open = open
self.merged = merged
self.approved = approved
def __repr__(self):
ret = '<GitlabRefFilter connection_name: %s ' % self.connection_name
if self.open is not None:
ret += ' open: %s' % self.open
if self.merged is not None:
ret += ' merged: %s' % self.merged
if self.approved is not None:
ret += ' approved: %s' % self.approved
ret += '>'
return ret
def matches(self, change):
if self.open is not None:
if change.open != self.open:
return False
if self.merged is not None:
if change.is_merged != self.merged:
return False
if self.approved is not None:
if change.approved != self.approved:
return False
return True