72 lines
2.7 KiB
PHP
72 lines
2.7 KiB
PHP
<?php
|
|
declare(strict_types=1);
|
|
/**
|
|
* The zen file of instance module of ZenTaoPMS.
|
|
*
|
|
* @copyright Copyright 2009-2023 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.zentao.net)
|
|
* @license ZPL(https://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
|
|
* @author Ke Zhao<zhaoke@easycorp.ltd>
|
|
* @package instance
|
|
* @link https://www.zentao.net
|
|
*/
|
|
class instanceZen extends instance
|
|
{
|
|
/**
|
|
* 自动保存devops应用授权信息。
|
|
* Auto save auth info of devops.
|
|
*
|
|
* @param object $instance
|
|
* @access protected
|
|
* @return void
|
|
*/
|
|
protected function saveAuthInfo(object $instance): void
|
|
{
|
|
if(empty($this->config->instance->devopsApps[$instance->appID])) return;
|
|
|
|
$url = strstr(getWebRoot(true), ':', true) . '://' . $instance->domain;
|
|
$pipeline = $this->loadModel('pipeline')->getByUrl($url);
|
|
if(!empty($pipeline)) return;
|
|
|
|
$tempMappings = $this->loadModel('cne')->getSettingsMapping($instance);
|
|
if(empty($tempMappings)) return;
|
|
|
|
$pipeline = new stdclass();
|
|
$instance->type = $this->config->instance->devopsApps[$instance->appID];
|
|
$pipeline->type = $instance->type;
|
|
$pipeline->private = md5(strval(rand(10,113450)));
|
|
$pipeline->createdBy = 'system';
|
|
$pipeline->createdDate = helper::now();
|
|
$pipeline->url = $url;
|
|
$pipeline->name = $this->generatePipelineName($instance);
|
|
$pipeline->token = zget($tempMappings, 'api_token', '');
|
|
$pipeline->account = zget($tempMappings, 'z_username', '');
|
|
$pipeline->password = zget($tempMappings, 'z_password', '');
|
|
if($instance->appID === 60) $pipeline->token = base64_encode($pipeline->token . ':');
|
|
if(empty($pipeline->account)) $pipeline->account = zget($tempMappings, 'admin_username', '');
|
|
|
|
$this->pipeline->create($pipeline);
|
|
}
|
|
|
|
/**
|
|
* 自动保存devops应用授权信息。
|
|
* Auto save auth info of devops.
|
|
*
|
|
* @param object $instance
|
|
* @access protected
|
|
* @return string
|
|
*/
|
|
protected function generatePipelineName(object $instance): string
|
|
{
|
|
$name = $instance->name;
|
|
$type = $instance->type;
|
|
if(empty($this->loadModel('pipeline')->getByNameAndType($name, $type))) return $name;
|
|
if(empty($this->loadModel('pipeline')->getByNameAndType($name . '-' . $instance->appVersion, $type))) return $name . '-' . $instance->appVersion;
|
|
|
|
for($times = 1; $times < 5; $times ++)
|
|
{
|
|
if(empty($this->loadModel('pipeline')->getByNameAndType($name . '-' . $times, $name))) return $name . '-' . $times;
|
|
}
|
|
}
|
|
}
|
|
|