60e8395c62
Change-Id: I2e955c01b71a195bb6ff8ba2bb6f3a64cb3e1f58
79 lines
2.4 KiB
Python
79 lines
2.4 KiB
Python
# 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.
|
|
|
|
from dataclasses import dataclass
|
|
|
|
from .errors import JenkinsJobsException
|
|
from .position import Pos
|
|
from .root_base import GroupBase
|
|
|
|
|
|
@dataclass
|
|
class Project(GroupBase):
|
|
_jobs: dict
|
|
_job_templates: dict
|
|
_job_groups: dict
|
|
_views: dict
|
|
_view_templates: dict
|
|
_view_groups: dict
|
|
name: str
|
|
pos: Pos
|
|
defaults_name: str
|
|
job_specs: list # list[Spec]
|
|
view_specs: list # list[Spec]
|
|
params: dict
|
|
|
|
@classmethod
|
|
def add(cls, config, roots, expander, params_expander, data, pos):
|
|
d = data.copy()
|
|
name = d.pop_required_loc_string("name")
|
|
defaults = d.pop_loc_string("defaults", None)
|
|
try:
|
|
job_specs = cls._specs_from_list(d.pop("jobs", None))
|
|
view_specs = cls._specs_from_list(d.pop("views", None))
|
|
except JenkinsJobsException as x:
|
|
raise x.with_context(f"In project {name!r}", pos=pos)
|
|
project = cls(
|
|
roots.jobs,
|
|
roots.job_templates,
|
|
roots.job_groups,
|
|
roots.views,
|
|
roots.view_templates,
|
|
roots.view_groups,
|
|
name,
|
|
pos,
|
|
defaults,
|
|
job_specs,
|
|
view_specs,
|
|
params=d,
|
|
)
|
|
roots.assign(roots.projects, project.name, project, "project")
|
|
|
|
def __str__(self):
|
|
return f"project {self.name!r}"
|
|
|
|
@property
|
|
def _my_params(self):
|
|
return {"name": self.name}
|
|
|
|
def generate_jobs(self):
|
|
root_dicts = [self._jobs, self._job_templates, self._job_groups]
|
|
return self._generate_items(
|
|
root_dicts, self.job_specs, self.defaults_name, params={}
|
|
)
|
|
|
|
def generate_views(self):
|
|
root_dicts = [self._views, self._view_templates, self._view_groups]
|
|
return self._generate_items(
|
|
root_dicts, self.view_specs, self.defaults_name, params={}
|
|
)
|