* @package instance * @version $Id$ * @link https://www.zentao.net * @property actionModel $action * @property cneModel $cne */ class instanceModel extends model { /** * Construct method: load CNE model, and set primaryDomain. * * @access public * @return void */ public function __construct() { parent::__construct(); $this->loadModel('cne'); $this->loadModel('action'); } /** * 获取应用实例。 * Get by id. * * @param int $id * @access public * @return object|null */ public function getByID($id) { $instance = $this->dao->select('*')->from(TABLE_INSTANCE) ->where('id')->eq($id) ->andWhere('deleted')->eq(0) ->fetch(); if(!$instance) return null; $instance->spaceData = $this->dao->select('*')->from(TABLE_SPACE)->where('id')->eq($instance->space)->fetch(); return $instance; } /** * 获取应用实例数量。 * Get instance count. * * @param string $status * @access public * @return int */ public function getInstanceCount($status = '') { return $this->dao->select('count(*) as count')->from(TABLE_INSTANCE) ->where('deleted')->eq(0) ->beginIF($status)->andWhere('status')->eq($status)->fi() ->fetch('count'); } /** * 根据应用url获取应用信息。 * Get a application by url. * * @param string $url * @access public * @return object|false */ public function getByUrl($url) { $url = str_replace(array('https://', 'http://'), '', trim($url)); return $this->dao->select('id')->from(TABLE_INSTANCE)->where('domain')->eq($url)->fetch(); } /** * 根据ID列表获取应用实例列表。 * Get by id list. * * @param array $idList * @access public * @return array */ public function getByIdList($idList) { $instances = $this->dao->select('*')->from(TABLE_INSTANCE) ->where('id')->in($idList) ->andWhere('deleted')->eq(0) ->fetchAll('id'); $spaces = $this->dao->select('*')->from(TABLE_SPACE)->where('deleted')->eq(0)->andWhere('id')->in(helper::arrayColumn($instances, 'space'))->fetchAll('id'); foreach($instances as $instance) $instance->spaceData = zget($spaces, $instance->space, new stdclass); return $instances; } /** * 获取应用实例列表。 * Get instances list. * * @param object $pager * @param string $pinned * @param string $searchParam * @param string $status * @param bool $alertMark * @access public * @return array */ public function getList($pager = null, $pinned = '', $searchParam = '', $status = 'all', $alertMark = true) { $instances = $this->dao->select('instance.*')->from(TABLE_INSTANCE)->alias('instance') ->leftJoin(TABLE_SPACE)->alias('space')->on('space.id=instance.space') ->where('instance.deleted')->eq(0) ->beginIF($pinned)->andWhere('instance.pinned')->eq((int)$pinned)->fi() ->beginIF($searchParam)->andWhere('instance.name')->like("%{$searchParam}%")->fi() ->beginIF($status != 'all')->andWhere('instance.status')->eq($status)->fi() ->orderBy('instance.id desc') ->beginIF($pager)->page($pager)->fi() ->fetchAll('id', false); if(empty($instances)) return array(); $spaces = $this->dao->select('*')->from(TABLE_SPACE) ->where('deleted')->eq(0) ->andWhere('id')->in(helper::arrayColumn($instances, 'space')) ->fetchAll('id'); foreach($instances as $instance) $instance->spaceData = zget($spaces, $instance->space, new stdclass); return $instances; } /** * 根据域名获取服务数量。 * Count old domain. * * @access public * @return int */ public function countOldDomain() { /* REPLACE(domain, .$sysDomain, '') used for special case: new domain is a.com and old domain is b.a.com, domain of instance is c.b.a.com, */ $sysDomain = $this->loadModel('cne')->sysDomain(); $result = $this->dao->select('COUNT(1) AS qty')->from(TABLE_INSTANCE) ->where('deleted')->eq(0) ->andWhere("REPLACE(domain, '.$sysDomain', '')")->like("%.%") ->fetch(); return $result->qty; } /** * 自定义域名后,更新所有应用实例的域名。 * Update all instances domain by customized domain. * * @access public * @return void */ public function updateInstancesDomain() { /* REPLACE(domain, .$sysDomain, '') used for special case: new domain is a.com and old domain is b.a.com, domain of instance is c.b.a.com, new domain of instance should be c.a.com */ $sysDomain = $this->loadModel('cne')->sysDomain(); $instanceList = $this->dao->select('*')->from(TABLE_INSTANCE) ->where('deleted')->eq(0) ->andWhere("REPLACE(domain, '.$sysDomain', '')")->like("%.%") ->fetchAll('id'); $spaces = $this->dao->select('*')->from(TABLE_SPACE)->where('deleted')->eq(0)->andWhere('id')->in(helper::arrayColumn($instanceList, 'space'))->fetchAll('id'); foreach($instanceList as $instance) $instance->spaceData = zget($spaces, $instance->space, new stdclass); foreach($instanceList as $instance) $this->updateDomain($instance); } /** * 更新应用实例域名。 * Update domain. * * @param object $instance * @access public * @return bool */ public function updateDomain($instance) { /* If domain of instance is same with system domain, not need to update. */ $sysDomain = $this->cne->sysDomain(); if(stripos(str_replace($sysDomain, '', $instance->domain), '.') === false) return true; $expiredDomains = $this->loadModel('setting')->getItem('owner=system&module=common§ion=domain&key=expiredDomain'); $expiredDomains = json_decode($expiredDomains, true); if(empty($expiredDomains)) return true; $leftDomain = ''; foreach($expiredDomains as $expiredDomain) { if(stripos($instance->domain, (string)$expiredDomain) === false) continue; $leftDomain = trim(str_replace((string)$expiredDomain, '', $instance->domain), '.'); // Pick left domain. /* If left domain like a.b, skip it, because left domain must be letters without dot(.) . */ if(stripos($leftDomain, '.') !== false) continue; // Does not pick left domain. $newDomain = $leftDomain . '.' . $sysDomain; $settings = new stdclass; $settings->settings_map = new stdclass; $settings->settings_map->ingress = new stdclass; $settings->settings_map->ingress->enabled = true; $settings->settings_map->ingress->host = $newDomain; //$this->fullDomain($leftDomain); $settings->settings_map->global = new stdclass; $settings->settings_map->global->ingress = $settings->settings_map->ingress; if($this->cne->updateConfig($instance, $settings)) { $this->dao->update(TABLE_INSTANCE)->set('domain')->eq($newDomain)->where('id')->eq($instance->id)->exec(); } } return true; } /** * 更新应用的内存大小。 * Update instance memory size. * * @param object $instance * @param int $size * @access public * @return bool */ public function updateMemorySize($instance, $size = 0) { $settings = new stdclass; $settings->settings_map = new stdclass; $settings->settings_map->resources = new stdclass; $settings->settings_map->resources->memory = $size; $oldValue = helper::formatKB($instance->oldValue); $newValue = helper::formatKB(intval($size)); unset($instance->oldValue); $success = $this->cne->updateConfig($instance, $settings); if($success) { $actionID = $this->action->create('instance', $instance->id, 'adjustMemory', $newValue); $this->action->logHistory($actionID, [['field' => 'adjustmemory', 'old' => $oldValue, 'new' => $newValue, 'diff' => '']]); return true; } dao::$errors[] = $this->lang->instance->errors->failToAdjustMemory; return false; } /** * 更新应用的CPU大小。 * Update instance CPU size. * * @param object $instance * @param int|string $size CPU core number * @access public * @return bool */ public function updateCpuSize($instance, $size = 0) { $settings = new stdclass; $settings->settings_map = new stdclass; $settings->settings_map->resources = new stdclass; $settings->settings_map->resources->cpu = $size; $oldValue = (int)$instance->oldValue; $newValue = (string)$size; unset($instance->oldValue); $success = $this->cne->updateConfig($instance, $settings); if($success) { $actionID = $this->action->create('instance', $instance->id, 'adjustCPU', $newValue); $this->action->logHistory($actionID, [['field' => 'adjustcpu', 'old' => $oldValue, 'new' => $newValue, 'diff' => '']]); return true; } dao::$errors[] = $this->lang->instance->errors->failToAdjustCPU; return false; } /** * 更新应用的存储空间大小。 * Update the storage size of the instance. * * @param object $instance * @param int|string $size 10737418240|10Gi * @param string $name * @return bool */ public function updateVolSize($instance, $size, $name) { $size = is_numeric($size) ? intval($size / 1073741824) : (int)$size; if($size == 0) { dao::$errors[] = $this->lang->instance->errors->failToAdjustVol; return false; } $size = $size . 'Gi'; $setting = new stdclass(); $setting->key = $name; $setting->value = $size; $settings = new stdclass; $settings->settings = array(); $settings->settings[] = $setting; $oldValue = $instance->oldValue; $newValue = str_replace('Gi', '', $size); unset($instance->oldValue); $success = $this->cne->updateConfig($instance, $settings); if($success) { $actionID = $this->action->create('instance', $instance->id, 'adjustVol', $newValue); $this->action->logHistory($actionID, [['field' => 'adjustvol', 'old' => $oldValue, 'new' => $newValue, 'diff' => '']]); return true; } dao::$errors[] = $this->lang->instance->errors->failToAdjustVol; return false; } /** * 更新应用实例的状态。 * Update instance status. * * @param int $int * @param string $status * @access public * @return int * @param int $id */ public function updateStatus($id, $status) { $instanceData = new stdclass; $instanceData->status = trim($status); return $this->updateByID($id, $instanceData); } /** * 更新应用实例。 * Update instance by id. * * @param int $id * @param object|array $newInstance * @access public * @return bool */ public function updateByID($id, $newInstance) { $this->dao->update(TABLE_INSTANCE)->data($newInstance, 'memory_kb,cpu,disk_gb') ->autoCheck() ->checkIF(isset($newInstance->name), 'name', 'notempty') ->checkIF(isset($newInstance->status), 'status', 'in', array_keys($this->lang->instance->statusList)) ->where('id')->eq($id) ->exec(); if(!empty($newInstance->name)) { $instance = $this->fetchByID($id); $server = $this->loadModel('space')->getExternalAppByApp($instance); if($server) $this->dao->update(TABLE_PIPELINE)->set('name')->eq($newInstance->name)->where('id')->eq($server->id)->exec(); } return dao::isError(); } /** * 判断应用实例是否可以进行操作。 * If actions are allowed to do. * * @param string $action * @param object $instance * @access public * @return bool */ public function canDo($action, $instance) { switch($action) { case 'start': return $instance->status === 'stopped'; case 'stop': return in_array($instance->status, array('abnormal', 'running')); case 'uninstall': return !in_array($instance->status, array('destroying')); case 'visit': return $instance->status == 'running'; default: return false; } } /** * 获取访问应用实例的URL。 * Get URL for visiting instance service. * * @param object $instance * @access public * @return string */ public function url($instance) { $url = "//" . $instance->domain; $port = getenv('APP_HTTPS_PORT'); if($port and $port != '443') $url .= ":$port/"; return $url; } /** * Create third domain. * * @param int $length * @param int $triedTimes * @access public * @return string */ public function randThirdDomain($length = 4, $triedTimes = 0) { if($triedTimes > 16) $length++; $thirdDomain = strtolower(helper::randStr($length)); if(!$this->domainExists($thirdDomain)) return $thirdDomain; return $this->randThirdDomain($length, $triedTimes + 1); } /** * 返回完整域名。 * Return full domain. * * @param string $thirdDomain * @access public * @return string */ public function fullDomain($thirdDomain) { return $thirdDomain . '.' . $this->cne->sysDomain(); } /** * 检查域名是否存在。 * Check if the domain exists. * * @param string $thirdDomain * @access public * @return bool true: exists, false: not exist. */ public function domainExists($thirdDomain) { $domain = $this->fullDomain($thirdDomain); return boolval($this->dao->select('id')->from(TABLE_INSTANCE)->where('domain')->eq($domain)->andWhere('deleted')->eq(0)->fetch()); } /** * 检查k8name是否存在。 * Check if the k8name exists. * * @param string $k8name * @access public * @return bool true: exists, false: not exist. */ public function k8nameExists($k8name) { return boolval($this->dao->select('id')->from(TABLE_INSTANCE)->where('k8name')->eq($k8name)->andWhere('deleted')->eq(0)->fetch()); } /** * 构造安装应用的配置。 * Mount installation settings by custom data. * * @param object $customData * @param object $dbInfo * @param object $instance * @access public * @return object */ public function installationSettingsMap($customData, $dbInfo, $instance) { $settingsMap = new stdclass; if($customData->customDomain) { $settingsMap->ingress = new stdclass; $settingsMap->ingress->enabled = true; $settingsMap->ingress->host = $this->fullDomain($customData->customDomain); $settingsMap->global = new stdclass; $settingsMap->global->ingress = new stdclass; $settingsMap->global->ingress->enabled = true; $settingsMap->global->ingress->host = $settingsMap->ingress->host; } if(in_array($instance->chart, $this->config->instance->devopsApps)) { $settingsMap->ci = new stdclass(); $settingsMap->ci->enabled = true; } if($instance->source == 'system' && in_array($instance->chart, $this->config->instance->initUserApps)) { $user = $this->dao->select('account')->from(TABLE_USER)->where('deleted')->eq(0)->fetch('account'); if($user) { $settingsMap->auth = new stdclass(); $settingsMap->auth->username = $user; } } if(empty($customData->dbType) || $customData->dbType == 'unsharedDB' || empty($customData->dbService)) return $settingsMap; /* Set DB settings. */ $dbSettings = new stdclass; $dbSettings->service = $dbInfo->name; $dbSettings->namespace = $dbInfo->namespace; $dbSettings->host = $dbInfo->host; $dbSettings->port = $dbInfo->port; $dbSettings->name = str_replace('-', '_', $instance->chart) . '_' . $instance->id; $dbSettings->user = 'user_' . $dbSettings->name; $dbSettings = $this->getValidDBSettings($dbSettings, $dbSettings->user, $dbSettings->name); $settingsMap->mysql = new stdclass; $settingsMap->mysql->enabled = false; $settingsMap->mysql->auth = new stdclass; $settingsMap->mysql->auth->user = $dbSettings->user; $settingsMap->mysql->auth->password = helper::randStr(12); $settingsMap->mysql->auth->host = $dbSettings->host; $settingsMap->mysql->auth->port = $dbSettings->port; $settingsMap->mysql->auth->database = $dbSettings->name; $settingsMap->mysql->auth->dbservice = new stdclass; $settingsMap->mysql->auth->dbservice->name = $dbSettings->service; $settingsMap->mysql->auth->dbservice->namespace = $dbSettings->namespace; return $settingsMap; } /** * 获取有效的数据库配置。 * Return valid DBSettings. * * @param object $dbSettings * @param string $defaultUser * @param string $defaultDBName * @param int $times * @access private * @return null|object */ private function getValidDBSettings($dbSettings, $defaultUser, $defaultDBName, $times = 1) { if($times >10) return; if(empty($dbSettings->service) || empty($dbSettings->name)) return $dbSettings; $validatedResult = $this->cne->validateDB($dbSettings->service, $dbSettings->name, $dbSettings->user, $dbSettings->namespace); if($validatedResult->user && $validatedResult->database) return $dbSettings; if(!$validatedResult->user) $dbSettings->user = $defaultUser . '_' . helper::randStr(4); if(!$validatedResult->database) $dbSettings->database = $defaultDBName . '_' . helper::randStr(4); return $this->getValidDBSettings($dbSettings, $defaultUser, $defaultDBName, $times + 1); } /** * 安装应用。 * Install app by request from Web page. * * @param object $app * @param object $dbInfo * @param object $customData * @param int $spaceID * @param array $settings * @access public * @return false|object Failure: return false, Success: return instance */ public function install($app, $dbInfo, $customData, $spaceID = null, $settings = array()) { $this->loadModel('space'); if(!isset($this->app->user->account)) { $this->app->user = new stdclass(); $this->app->user->account = $this->dao->select('*')->from(TABLE_USER)->where('deleted')->eq(0)->fetch('account'); } if($spaceID) { $space = $this->space->getByID($spaceID); } else { $space = $this->space->defaultSpace($this->app->user->account); } $snippets = array(); if(isset($customData->ldapSnippet[0])) $snippets['ldapSnippetName'] = $customData->ldapSnippet[0]; if(isset($customData->smtpSnippet[0])) $snippets['smtpSnippetName'] = $customData->smtpSnippet[0]; $channel = $this->app->session->cloudChannel ? $this->app->session->cloudChannel : $this->config->cloud->api->channel; $instance = $this->createInstance($app, $space, $customData->customDomain, $customData->customName, '', $channel, $snippets); if(!$instance) return false; $settingMap = $this->installationSettingsMap($customData, $dbInfo, $instance); return $this->doCneInstall($instance, $space, $settingMap, $snippets, $settings); } /** * 安装系统SLB组件。 * Install System SLB component. * * @param object $app * @param string $k8name * @param string $channel * @access public * @return object|false */ public function installSysSLB($app, $k8name = 'cne-lb', $channel = 'stable') { $this->app->loadLang('system'); $space = $this->loadModel('space')->getSystemSpace($this->app->user->account); $instance = $this->createInstance($app, $space, '', '', $k8name, $channel); if(!$instance) { dao::$errors[] = $this->lang->system->errors->failToInstallLDAP; return false; } $instance = $this->doCneInstall($instance, $space, (new stdclass)); if(!$instance) { dao::$errors[] = $this->lang->system->errors->failToInstallLDAP; return false; } return $instance; } /** * 创建应用实例记录。 * Create instance recorder for installation. * * @param object $app * @param object $space * @param string $thirdDomain * @param string $name * @param string $channel * @param array $snippets * @access public * @return bool|object * @param string $k8name */ public function createInstance($app, $space, $thirdDomain, $name = '', $k8name = '', $channel = 'stable', $snippets = array()) { if(empty($k8name)) $k8name = "{$app->chart}-" . date('YmdHis'); //name rule: chartName-userAccount-YmdHis; $createdBy = $this->app->user->account; if(!$createdBy) $createdBy = $this->dao->select('*')->from(TABLE_USER)->where('deleted')->eq(0)->fetch('account'); $instanceData = new stdclass; $instanceData->appId = $app->id; $instanceData->appName = $app->alias; $instanceData->name = !empty($name) ? $name : $app->alias; $instanceData->domain = !empty($thirdDomain) ? $this->fullDomain($thirdDomain) : ''; $instanceData->logo = $app->logo; $instanceData->desc = $app->desc; $instanceData->introduction = isset($app->introduction) ? $app->introduction : $app->desc; $instanceData->source = $this->app->rawModule == 'instance' ? 'cloud' : 'system'; $instanceData->channel = $channel; $instanceData->chart = $app->chart; $instanceData->appVersion = $app->app_version; $instanceData->version = $app->version; $instanceData->space = $space->id; $instanceData->k8name = $k8name; $instanceData->status = 'creating'; $instanceData->createdBy = $createdBy; $instanceData->createdAt = date('Y-m-d H:i:s'); foreach($snippets as $fieldName => $snippetName) $instanceData->$fieldName = $snippetName; $this->dao->insert(TABLE_INSTANCE)->data($instanceData)->autoCheck()->exec(); if(dao::isError()) return false; return $this->getByID($this->dao->lastInsertID()); } /** * 在CNE平台创建应用实例。 * Create app instance on CNE platform. * * @param object $instance * @param object $space * @param object $settingsMap * @param array $snippets * @param array $settings * @access private * @return object|bool */ private function doCneInstall($instance, $space, $settingsMap, $snippets = array(), $settings = array()) { $apiParams = new stdclass; $apiParams->username = $instance->createdBy; $apiParams->cluster = ''; $apiParams->namespace = $space->k8space; $apiParams->name = $instance->k8name; $apiParams->chart = $instance->chart; $apiParams->version = $instance->version; $apiParams->channel = $instance->channel; $apiParams->settings_map = $settingsMap; $apiParams->settings = $settings; $apiParams->settings_snippets = array_values($snippets); if(strtolower($this->config->CNE->app->domain) == 'demo.haogs.cn') $apiParams->settings_snippets = array('quickon_saas'); // Only for demo environment. $result = $this->cne->installApp($apiParams); if($result->code != 200 && $instance->source != 'system') { $this->dao->delete()->from(TABLE_INSTANCE)->where('id')->eq($instance->id)->exec(); dao::$errors['server'][] = $result->message; return false; } $this->action->create('instance', $instance->id, 'install', '', json_encode(array('result' => $result, 'apiParams' => $apiParams))); $instance->status = 'initializing'; $instance->dbSettings = json_encode($apiParams->settings_map); $this->updateByID($instance->id, array('status' => $instance->status, 'dbSettings' => $instance->dbSettings)); return $instance; } /* * 卸载应用实例。 * Uninstall app instance. * * @param object $instance * @access public * @return bool */ /** * @param object $instance */ public function uninstall($instance) { if($instance->source == 'external') { $this->dao->update(TABLE_INSTANCE)->set('deleted')->eq(1)->where('id')->eq($instance->id)->exec(); return true; } $apiParams = new stdclass; $apiParams->cluster = '';// Multiple cluster should set this field. $apiParams->name = $instance->k8name; $apiParams->channel = $instance->channel; $apiParams->namespace = $instance->spaceData->k8space; $result = $this->cne->uninstallApp($apiParams); $success = $result->code == 200 || $result->code == 404; if($success) $this->dao->delete()->from(TABLE_INSTANCE)->where('id')->eq($instance->id)->exec(); $this->dao->delete()->from(TABLE_PIPELINE)->where('instanceID')->eq($instance->id)->exec(); return $success; } /* * 启动应用实例。 * Start app instance. * * @param object $instance * @access public * @return object */ /** * @param object $instance */ public function start($instance) { $apiParams = new stdclass(); $apiParams->cluster = ''; $apiParams->name = $instance->k8name; $apiParams->chart = $instance->chart; $apiParams->namespace = $instance->spaceData->k8space; $apiParams->channel = $instance->channel; $result = $this->cne->startApp($apiParams); if($result->code == 200) $this->dao->update(TABLE_INSTANCE)->set('status')->eq('starting')->where('id')->eq($instance->id)->exec(); return $result; } /* * 停止应用实例。 * Stop app instance. * * @param object $instance * @access public * @return object */ /** * @param object $instance */ public function stop($instance) { $apiParams = new stdclass; $apiParams->cluster = ''; $apiParams->name = $instance->k8name; $apiParams->chart = $instance->chart; $apiParams->namespace = $instance->spaceData->k8space; $apiParams->channel = $instance->channel; $result = $this->cne->stopApp($apiParams); if($result->code == 200) $this->dao->update(TABLE_INSTANCE)->set('status')->eq('stopping')->where('id')->eq($instance->id)->exec(); return $result; } /** * 升级应用实例。 * Upgrade app instance to higher version. * * @param object $instance * @param string $toVersion * @param string $appVersion * @access public * @return bool */ public function upgrade($instance, $toVersion, $appVersion) { $instance->version = $toVersion; $success = $this->cne->updateConfig($instance); if(!$success) return false; $instanceData = new stdclass; $instanceData->version = $toVersion; $instanceData->appVersion = $appVersion; $this->updateByID($instance->id, $instanceData); return true; } /* * 批量更新并获取应用实例的状态。 * Query and update instances status. * * @param array $instances * @access public * @return array new status list [{id:xx, status: xx, changed: true/false}] */ /** * @param mixed[] $instances */ public function batchFresh(&$instances) { $statusList = $this->cne->batchQueryStatus($instances); $newStatusList = array(); foreach($instances as $instance) { $statusData = zget($statusList, $instance->k8name, ''); if($statusData && ($instance->status != $statusData->status || $instance->version != $statusData->version)) { $this->dao->update(TABLE_INSTANCE) ->set('status')->eq($statusData->status) ->beginIF($statusData->version)->set('version')->eq($statusData->version)->fi() ->where('id')->eq($instance->id) ->autoCheck() ->exec(); $instance->status = $statusData->status; if($instance->status == 'running') $this->saveAuthInfo($instance); } $status = new stdclass; $status->id = $instance->id; $status->status = $instance->status; $newStatusList[] = $status; } return $newStatusList; } /* * 更新并获取应用实例的状态。 * Query and update instance status. * * @param object $instance * @access public * @return object */ /** * @param object $instance * @return object */ public function freshStatus($instance) { $instance->runDuration = 0; $statusResponse = $this->cne->queryStatus($instance); if($statusResponse->code != 200) return $instance; $statusData = $statusResponse->data; $instance->runDuration = intval($statusData->age); // Run duration used in view page. if($instance->status != $statusData->status || $instance->version != $statusData->version) { $instance->status = $statusData->status; $this->dao->update(TABLE_INSTANCE) ->set('status')->eq($statusData->status) ->beginIF($statusData->version)->set('version')->eq($statusData->version)->fi() ->where('id')->eq($instance->id) ->autoCheck() ->exec(); } return $instance; } /** * List转键值对。 * Mount DB name and alias to array for select options. * * @param array $databases * @access public * @return array */ public function dbListToOptions($databases) { $dbList = array(); foreach($databases as $database) $dbList[$database->name] = zget($database, 'alias', $database->name); return $dbList; } /** * 过滤内存下拉菜单选项。 * Filter memory options that smaller then current memory size. * * @param object $resources * @access public * @return array */ public function filterMemOptions($resources) { $currentMemory = intval($resources->min->memory / 1024); $options = []; foreach($this->lang->instance->memOptions as $size => $text) { if($size >= $currentMemory) $options[$size] = $text; } return $options; } /** * 打印CPU使用信息。 * Print CPU usage. * * @param object $instance * @param object $metrics * @static * @access public * @return array */ public static function printCpuUsage($instance, $metrics) { if($instance->source === 'user') return array('color' => '', 'tip' => '', 'rate' => '', 'usage' => '', 'limit' => ''); $rate = $instance->status == 'stopped' ? 0 : $metrics->rate; $tip = "{$rate}% = {$metrics->usage} / {$metrics->limit}"; if(empty($color) && $rate == 0) $color = 'gray'; if(empty($color) && $rate > 0 && $rate < 50) $color = 'secondary'; if(empty($color) && $rate >= 0 && $rate < 70) $color = 'warning'; if(empty($color) && $rate >= 0 && $rate < 90) $color = 'important'; if(empty($color) && $rate >= 80) $color = 'danger'; return array('color' => $color, 'tip' => $tip, 'rate' => $rate . '%', 'usage' => $metrics->usage, 'limit' => $metrics->limit); } /** * 打印存储使用信息。 * Print memory usage. * * @param object $instance * @param object $metrics * @static * @access public * @return array */ public static function printStorageUsage($instance, $metrics) { if($instance->source === 'user') return array('color' => '', 'tip' => '', 'rate' => '', 'usage' => '', 'limit' => ''); $rate = $instance->status == 'stopped' ? 0 : $metrics->rate; $tip = "{$rate}% = " . helper::formatKB($metrics->usage) . ' / ' . helper::formatKB($metrics->limit); if(empty($color) && $rate == 0) $color = 'gray'; if(empty($color) && $rate > 0 && $rate < 50) $color = 'secondary'; if(empty($color) && $rate >= 0 && $rate < 70) $color = 'warning'; if(empty($color) && $rate >= 0 && $rate < 90) $color = 'important'; if(empty($color) && $rate >= 80) $color = 'danger'; return array('color' => $color, 'tip' => $tip, 'rate' => $rate . '%', 'usage' => helper::formatKB($metrics->usage), 'limit' => helper::formatKB($metrics->limit)); } /** * 检查内存是否充足。 * Check the free memory of cluster is enough to install app. * * @param object $cloudApp * @access public * @return bool */ public function enoughMemory($cloudApp) { $clusterResource = $this->cne->cneMetrics(); $freeMemory = intval($clusterResource->metrics->memory->allocatable * 0.9); // Remain 10% memory for system. return $freeMemory >= $cloudApp->memory; } /** * 判断按钮是否可点击。 * Adjust the action clickable. * * @param object $instance * @param string $action * @access public * @return bool */ public function isClickable($instance, $action) { if(!isset($instance->type)) $instance->type = 'store'; if($instance->type !== 'store') { if($action == 'visit') return true; if(!common::hasPriv('instance', 'manage')) return false; if($action === 'edit') return true; if($action == 'bindUser') return in_array($instance->appName, array('GitLab', 'Gitea', 'Gogs')); if($action == 'ajaxUninstall') return true; return false; } if(!common::hasPriv('instance', 'manage')) return false; if($action == 'ajaxStart') return $this->canDo('start', $instance); if($action == 'ajaxStop') return $this->canDo('stop', $instance); if($action == 'ajaxUninstall') return $this->canDo('uninstall', $instance); if($action == 'visit') return !empty($instance->domain) && $this->canDo('visit', $instance); if($action == 'upgrade') return !empty($instance->latestVersion) && in_array($instance->status, array('stopped', 'running')); if($action == 'edit') return false; if($action == 'bindUser') return $instance->status == 'running' && $instance->appName == 'GitLab'; return true; } /** * 检查应用名称的唯一性。 * Check app name unique. * * @param string $name * @access protected * @return bool */ public function checkAppNameUnique($name) { $existInstance = $this->dao->select('*')->from(TABLE_INSTANCE)->where('name')->eq($name)->andWhere('deleted')->eq(0)->fetch(); $existExternal = $this->dao->select('*')->from(TABLE_PIPELINE)->where('name')->eq($name)->andWhere('deleted')->eq('0')->fetch(); return ($existInstance || $existExternal) ? false : true; } /** * 自动保存devops应用授权信息。 * Auto save auth info of devops. * * @param object $instance * @access protected * @return bool */ public function saveAuthInfo($instance) { if(!in_array($instance->chart, $this->config->instance->devopsApps)) return; $pipeline = $this->dao->select('id')->from(TABLE_PIPELINE)->where('instanceID')->eq($instance->id)->andWhere('deleted')->eq(0)->fetch(); if(!empty($pipeline)) return; $tempMappings = $this->loadModel('cne')->getSettingsMapping($instance); if(empty($tempMappings)) return; $pipeline = new stdclass(); $pipeline->type = $instance->chart == 'nexus3' ? 'nexus' : $instance->chart; $pipeline->private = md5(strval(rand(10,113450))); $pipeline->createdBy = 'system'; $pipeline->createdDate = helper::now(); $pipeline->url = strstr(getWebRoot(true), ':', true) . '://' . $instance->domain; $pipeline->instanceID = $instance->id; $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->chart == 'sonarqube') $pipeline->token = base64_encode($pipeline->token . ':'); if(empty($pipeline->account)) $pipeline->account = zget($tempMappings, 'admin_username', ''); $this->pipeline->create($pipeline); } /** * 自动生成pipeline表name字段。 * Auto generate name of pipeline table. * * @param object $instance * @access protected * @return string */ public function generatePipelineName($instance) { $name = $instance->name; $type = $instance->chart; 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; } } /** * Backup instance. * 备份应用实例。 * @param object $instance * @param object $user * @access public * @return bool */ public function backup($instance, $user) { $result = $this->cne->backup($instance, $user->account); if($result->code != 200) return false; return true; } /** * Get backup list of instance. * 获取应用备份列表。 * * @param object $instance * @access public * @return array */ public function backupList($instance) { $result = $this->cne->getBackupList($instance); if(empty($result) || $result->code != 200 || empty($result->data)) return array(); $backupList = $result->data; usort($backupList, function($backup1, $backup2) { if($backup1->create_time < $backup2->create_time) return 1; elseif ($backup1->create_time > $backup2->create_time) return -1; else return 0; }); $accounts = array_column($backupList, 'creator'); foreach($backupList as $backup) $accounts = array_merge($accounts, array_column($backup->restores, 'creator')); $accounts = array_unique($accounts); $users = $this->dao->select('account,realname')->from(TABLE_USER)->where('account')->in($accounts)->fetchPairs('account', 'realname'); foreach($backupList as &$backup) { $backup->latest_restore_time = 0; $backup->latest_restore_status = ''; $backup->username = zget($users, $backup->creator); $backup->name = helper::safe64Encode(base64_encode($backup->name)); /* Mount backup operator info and latest restore info. */ foreach($backup->restores as &$restore) { $restore->username = zget($users, $restore->creator); if($restore->create_time > $backup->latest_restore_time) { $backup->latest_restore_time = $restore->create_time; $backup->latest_restore_status = $restore->status; } } /* Calculate backup size. */ $backupSize = isset($backup->backup_details->db[0]) ? intval(zget($backup->backup_details->db[0], 'size', 0)) : 0; $backupSize += isset($backup->backup_details->volume[0]) ? intval(zget($backup->backup_details->volume[0], 'doneBytes', 0)) : 0; $backup->fmtBackupSize = helper::formatKB($backupSize / 1024); } return $backupList; } /** * Save backup settings. * 保存备份设置。 * * @param $instance * @return void */ public function saveBackupSettings($instance) { /* Initialize properties and validate. */ $settings = fixer::input('post') ->setDefault('autoBackup', '0') ->setDefault('backupTime', '1:00') ->setDefault('backupCycle', '1') ->get(); $autoBackup = (int)$settings->autoBackup; $command = 'moduleName=instance&methodName=cronBackup&instanceID=' . $instance->id; if(!validater::checkInt($settings->backupKeepDays, 1, 30)) { dao::$errors['message'] = $this->lang->instance->backup->keepDayRange; return false; } if($autoBackup == 1 && !preg_match("/^([0-2][0-9]):([0-5][0-9])$/", $settings->backupTime, $parts)) { dao::$errors['message'] = $this->lang->instance->backup->invalidTime; return false; } if($instance->backupKeepDays != $settings->backupKeepDays) { $this->dao->update(TABLE_INSTANCE)->set('backupKeepDays')->eq($settings->backupKeepDays)->where('id')->eq($instance->id)->exec(); if($this->dao->isError()) return false; } /* Disable backup operation. */ if(!$autoBackup) { $this->dao->delete()->from(TABLE_CRON)->where('command')->eq($command)->exec(); $this->dao->update(TABLE_INSTANCE)->set('autoBackup')->eq($autoBackup)->where('id')->eq($instance->id)->exec(); if($this->dao->isError()) return false; $this->action->create('instance', $instance->id, 'savebackupsettings', '', json_encode(array('result' => 'success', 'data' => $settings))); return true; } /* Enable backup operation. */ $cron = $this->dao->select('*')->from(TABLE_CRON)->where('command')->eq($command)->fetch(); list($hour, $minute) = explode(':', $settings->backupTime); $cronData = new stdclass; $cronData->m = intval($minute); $cronData->h = intval($hour); $cronData->dom = '*'; $cronData->mon = '*'; $cronData->dow = '*'; $cronData->type = 'zentao'; $cronData->status = 'normal'; $cronData->command = $command; $cronData->remark = $this->lang->instance->backup->cronRemark; $this->dao->update(TABLE_INSTANCE)->set('autoBackup')->eq($autoBackup)->where('id')->eq($instance->id)->exec(); if($this->dao->isError()) return false; if($cron) $this->dao->update(TABLE_CRON)->autoCheck()->data($cronData)->where('id')->eq($cron->id)->exec(); else $this->dao->insert(TABLE_CRON)->data($cronData)->exec(); if($this->dao->isError()) return false; $this->action->create('instance', $instance->id, 'savebackupsettings', '', json_encode(array('result' => 'success', 'data' => $settings))); return true; } /** * Get backup settings. * 获取备份设置。 * * @param int $instnaceID * @access public * @return object */ public function getBackupSettings($instanceID) { $instance = $this->getByID($instanceID); $cron = $this->dao->select('*')->from(TABLE_CRON)->where('command')->eq('moduleName=instance&methodName=cronBackup&instanceID=' . $instance->id)->limit(1)->fetch(); if(!$cron) $cron = new stdclass; $hour = substr('0' . zget($cron, 'h', '1'), -2, 2); $minute = substr('0' . zget($cron, 'm', '00'), -2, 2); $settings = new stdclass; $settings->backupTime = "{$hour}:{$minute}"; $settings->autoBackup = boolval(zget($instance, 'autoBackup', false)); $settings->cycleDays = 1; // Cycle days is always is 1 at present. return $settings; } /** * Restore instance. * 还原应用实例。 * @param object $instance * @param object $user * @param string $backupName * @access public * @return bool */ public function restore($instance, $user, $backupName) { $result = $this->cne->restore($instance, $backupName, $user->account); if ($result->code != 200) return false; return true; } /** * auto backup. * 自动备份。 * * @param $instance * @param $user * @return void */ public function autoBackup($instance, $user) { $cron = $this->dao->select('*')->from(TABLE_CRON)->where('command')->eq('moduleName=instance&methodName=cronBackup&instanceID=' . $instance->id)->limit(1)->fetch(); if(!$cron) { $this->action->create('instance', $instance->id, 'autobackup', '', json_encode(array('result' => 'fail', 'data'=> $cron)), $user->account); return false; } /* 1. Call automatic backup*/ $result = $this->cne->backup($instance, $user->account); if($result->code != 200) { $this->action->create('instance', $instance->id, 'autobackup', '', json_encode(array('result' => 'fail', 'data' => $result)), $user->account); return false; } $this->action->create('instance', $instance->id, 'autobackup', '', json_encode(array('result' => 'success', 'data' => $result)), $user->account); return true; } /** * 删除备份。 * Delete backup. * @param object $instance * @param string $backupName * @access public * @return bool */ public function deleteBackup($instance, $backupName) { return $this->cne->deleteBackup($instance, $backupName); } /** * 删除备份任务. * Delete Backup Cron. * @param object $instance * @return bool */ public function deleteBackupCron($instance) { $command = 'moduleName=instance&methodName=cronBackup&instanceID=' . $instance->id; $this->dao->delete()->from(TABLE_CRON)->where('command')->eq($command)->exec(); return !dao::isError(); } /** * 获取应用实例。 * Get by name. * * @param string $name * @access public * @return object|null */ public function getByName($name) { $instance = $this->dao->select('*')->from(TABLE_INSTANCE) ->where('name')->eq($name) ->andWhere('deleted')->eq(0) ->fetch(); if(!$instance) return new stdClass(); return $instance; } /** * 清理备份 * Cleanup Backup. * @param object $instance * @param object $user * @return bool */ public function cleanBackup($instance, $user) { $instance->spaceData = $this->dao->select('*')->from(TABLE_SPACE)->where('id')->eq($instance->space)->fetch(); /* 1. Pick latest successful backup recorder. */ $latestBackup = null; $backupList = $this->backupList($instance); if(empty($backupList)) return true; foreach($backupList as $backup) { if(empty($latestBackup) or $backup->status == 'completed' && $backup->create_time > $latestBackup->create_time) $latestBackup = $backup; } /* 2. delete expired backup. Get backup list of instance, then check every backup is expired or not.*/ $deleteData = array(); foreach($backupList as $backup) { if($latestBackup && $latestBackup->name == $backup->name) continue; // Keep latest successful backup. $keepDays = !empty($instance->backupKeepDays) ? $instance->backupKeepDays : 1; $deadline = intval($backup->create_time) + $keepDays * 24 * 3600; $backupName = base64_decode(helper::safe64Decode($backup->name)); if($deadline < time()) { $cneResult = $this->cne->deleteBackup($instance, $backupName); array_push($deleteData, array('instanceId' => $instance->id, 'instanceName' => $instance->name, 'backupName' => $backupName, 'backupCreateTime' => $backup->create_time, 'cneResult' => $cneResult)); } } if(count($deleteData) > 0) $this->action->create('instance', $instance->id, 'deleteexpiredbackup', '', json_encode(array('result' => 'success', 'data' => $deleteData)), $user->account); return true; } }