| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <?php
- class projectreleaseTao extends projectreleaseModel
- {
- /**
- * 处理项目发布信息,包括分支名称、版本信息等。
- * Process release.
- *
- * @param object $release
- * @param array $branchGroup
- * @param array $builds
- * @access protected
- * @return void
- */
- protected function processRelease($release, $branchGroup, $builds)
- {
- $release->project = trim($release->project, ',');
- $release->branch = trim($release->branch, ',');
- $release->build = trim($release->build, ',');
- $release->branchName = $this->getBranchName($release->product, $release->branch, $branchGroup);
- $release->buildInfos = array();
- foreach(explode(',', $release->build) as $buildID)
- {
- if(empty($buildID)) continue;
- if(!isset($builds[$buildID])) continue;
- $build = $builds[$buildID];
- $build->branchName = $this->getBranchName($build->product, $build->branch, $branchGroup);
- $release->buildInfos[$buildID] = $build;
- }
- }
- /**
- * 获取分支名称。
- * Get branch name.
- *
- * @param int $productID
- * @param string $branch
- * @param array $branchGroup
- * @access private
- * @return string
- */
- private function getBranchName($productID, $branch, $branchGroup)
- {
- $branchName = '';
- if(!isset($branchGroup[$productID])) return $branchName;
- $branches = $branchGroup[$productID];
- foreach(explode(',', $branch) as $branchID)
- {
- if($branchID == '') continue;
- $branchName .= zget($branches, $branchID, '');
- $branchName .= ',';
- }
- return trim($branchName, ',');
- }
- }
|