blob: 090a8918eda6176f2fc3a7659f1e027c8c393247 [file] [log] [blame]
# Copyright (c) 2013 Mirantis.
#
# 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.
"""
Expected review.projects.yaml format:
- project: some/project
launchpad: awesomeproject
description: Best project ever.
options:
- direct-release
- no-launchpad-bugs
- no-launchpad-blueprints
"""
import jeepyb.utils as u
registry = u.ProjectsYamlRegistry('/home/gerrit2/projects.yaml',
'PROJECTS_YAML')
def git2lp(project_full_name):
try:
return registry[project_full_name]['launchpad']
except KeyError:
return u.short_project_name(project_full_name)
def _is_no_launchpad(project_full_name, obj_type):
try:
return ('no-launchpad-' + obj_type
in registry[project_full_name]['options'])
except KeyError:
return False
def is_no_launchpad_bugs(project_full_name):
return _is_no_launchpad(project_full_name, 'bugs')
def is_no_launchpad_blueprints(project_full_name):
return _is_no_launchpad(project_full_name, 'blueprints')
def is_direct_release(project_full_name):
try:
direct = 'direct-release' in registry[project_full_name]['options']
# return ...
except KeyError:
direct = False
# return False
return direct or _hardcoded_is_direct_release(project_full_name)
# The following functions should be deleted when projects.yaml will be updated
def _hardcoded_is_direct_release(project_full_name):
"""Test against a list of projects who directly release changes.
This function should be removed when projects.yaml will be updated.
To specify direct_release you just need add option 'direct_relese' to your
project declaration in projects.yaml
Example:
- project: some/project
options:
- direct-release
description: Best project ever.
"""
return project_full_name in [
'openstack-dev/devstack',
'openstack-infra/askbot-theme',
'openstack-infra/config',
'openstack-infra/devstack-gate',
'openstack-infra/gerrit',
'openstack-infra/gerritbot',
'openstack-infra/gerritlib',
'openstack-infra/gitdm',
'openstack-infra/lodgeit',
'openstack-infra/meetbot',
'openstack-infra/nose-html-output',
'openstack-infra/publications',
'openstack-infra/reviewday',
'openstack-infra/statusbot',
'openstack/api-site',
'openstack/openstack-manuals',
'openstack/tempest',
'openstack/tripleo-heat-templates',
'openstack/tripleo-image-elements',
'openstack/tripleo-incubator',
'stackforge/cookbook-openstack-block-storage',
'stackforge/cookbook-openstack-common',
'stackforge/cookbook-openstack-compute',
'stackforge/cookbook-openstack-dashboard',
'stackforge/cookbook-openstack-identity',
'stackforge/cookbook-openstack-image',
'stackforge/cookbook-openstack-metering',
'stackforge/cookbook-openstack-network',
'stackforge/cookbook-openstack-object-storage',
'stackforge/cookbook-openstack-ops-database',
'stackforge/cookbook-openstack-ops-messaging',
'stackforge/cookbook-openstack-orchestration',
'stackforge/openstack-chef-repo',
]