mirror of
https://gitee.com/rainbond/Rainbond.git
synced 2024-12-02 19:57:42 +08:00
192 lines
6.3 KiB
Go
192 lines
6.3 KiB
Go
// RAINBOND, Application Management Platform
|
|
// Copyright (C) 2014-2017 Goodrain Co., Ltd.
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version. For any non-GPL usage of Rainbond,
|
|
// one or multiple Commercial Licenses authorized by Goodrain Co., Ltd.
|
|
// must be obtained first.
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
package exector
|
|
|
|
/*
|
|
Copyright 2017 The Goodrain Authors.
|
|
|
|
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.
|
|
*/
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"strings"
|
|
|
|
"github.com/goodrain/rainbond/pkg/db"
|
|
"github.com/goodrain/rainbond/pkg/event"
|
|
|
|
"github.com/pquerna/ffjson/ffjson"
|
|
|
|
"github.com/goodrain/rainbond/pkg/builder/model"
|
|
|
|
"os/exec"
|
|
|
|
"github.com/Sirupsen/logrus"
|
|
"github.com/akkuman/parseConfig"
|
|
)
|
|
|
|
//const dockerBin = "docker"
|
|
const dockerBin = "sudo -P docker"
|
|
const configPath = "plugins/config.json"
|
|
|
|
func (e *exectorManager) pluginImageBuild(in []byte) {
|
|
if err := checkConf(configPath); err != nil {
|
|
logrus.Errorf("config check error, %v", err)
|
|
}
|
|
config := getConf(configPath)
|
|
var tb model.BuildPluginTaskBody
|
|
if err := ffjson.Unmarshal(in, &tb); err != nil {
|
|
logrus.Errorf("unmarshal taskbody error, %v", err)
|
|
return
|
|
}
|
|
eventID := tb.EventID
|
|
logger := event.GetManager().GetLogger(eventID)
|
|
logger.Info("从镜像构建插件任务开始执行", map[string]string{"step": "builder-exector", "status": "starting"})
|
|
|
|
go func() {
|
|
logrus.Info("start exec build plugin from image worker")
|
|
defer event.GetManager().ReleaseLogger(logger)
|
|
for retry := 0; retry < 3; retry++ {
|
|
err := e.run(&tb, config, logger)
|
|
if err != nil {
|
|
logrus.Errorf("exec plugin build from image error:%s", err.Error())
|
|
if retry < 3 {
|
|
logger.Info("镜像构建插件任务执行失败,开始重试", map[string]string{"step": "builder-exector", "status": "failure"})
|
|
} else {
|
|
version, err := db.GetManager().TenantPluginBuildVersionDao().GetBuildVersionByVersionID(tb.PluginID, tb.VersionID)
|
|
if err != nil {
|
|
logrus.Errorf("get version error, %v", err)
|
|
}
|
|
version.Status = "failure"
|
|
if err := db.GetManager().TenantPluginBuildVersionDao().UpdateModel(version); err != nil {
|
|
logrus.Errorf("update version error, %v", err)
|
|
}
|
|
logger.Info("镜像构建插件任务执行失败", map[string]string{"step": "callback", "status": "failure"})
|
|
}
|
|
} else {
|
|
break
|
|
}
|
|
}
|
|
}()
|
|
}
|
|
|
|
func checkConf(confPath string) error {
|
|
if _, err := os.Stat(confPath); os.IsNotExist(err) {
|
|
return fmt.Errorf("config.json is not exist")
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func getConf(confPath string) parseConfig.Config {
|
|
return parseConfig.New(confPath)
|
|
}
|
|
|
|
func (e exectorManager) run(t *model.BuildPluginTaskBody, c parseConfig.Config, logger event.Logger) error {
|
|
if err := pull(t.ImageURL, logger); err != nil {
|
|
logrus.Errorf("pull image %v error, %v", t.ImageURL, err)
|
|
logger.Info("拉取镜像失败", map[string]string{"step": "builder-exector", "status": "failure"})
|
|
return err
|
|
}
|
|
//TODO: 权限问题 dial unix /var/run/docker.sock: connect: permission denied"
|
|
//if err := e.DockerPull(t.ImageURL); err != nil {
|
|
// logrus.Errorf("pull image %v error, %v", t.ImageURL, err)
|
|
// logger.Info("拉取镜像失败", map[string]string{"step": "builder-exector", "status": "failure"})
|
|
// return err
|
|
//}
|
|
|
|
logger.Info("拉取镜像完成", map[string]string{"step": "build-exector", "status": "complete"})
|
|
curImage, err := setTag(c.Get("publish > image > curr_registry").(string), t.ImageURL, t.PluginID)
|
|
if err != nil {
|
|
logrus.Errorf("set tag error, %v", err)
|
|
logger.Info("修改镜像tag失败", map[string]string{"step": "builder-exector", "status": "failure"})
|
|
return err
|
|
}
|
|
|
|
if err := push(curImage, logger); err != nil {
|
|
logrus.Errorf("push image %s error, %v", curImage, err)
|
|
logger.Info("推送镜像失败", map[string]string{"step": "builder-exector", "status": "failure"})
|
|
return err
|
|
}
|
|
//TODO: 权限
|
|
//if err := e.DockerPush(curImage); err != nil {
|
|
// logrus.Errorf("push image %s error, %v", curImage, err)
|
|
// logger.Info("推送镜像失败", map[string]string{"step": "builder-exector", "status": "failure"})
|
|
// return err
|
|
//}
|
|
|
|
version, err := db.GetManager().TenantPluginBuildVersionDao().GetBuildVersionByVersionID(t.PluginID, t.VersionID)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
version.BuildLocalImage = curImage
|
|
version.Status = "complete"
|
|
if err := db.GetManager().TenantPluginBuildVersionDao().UpdateModel(version); err != nil {
|
|
return err
|
|
}
|
|
logger.Info("从镜像构建插件完成", map[string]string{"step": "builder-exector"})
|
|
return nil
|
|
}
|
|
|
|
func pull(image string, logger event.Logger) error {
|
|
mm := []string{"-P", "docker", "pull", image}
|
|
if err := ShowExec("sudo", mm, logger); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func setTag(curRegistry string, image string, alias string) (string, error) {
|
|
//alias is pluginID
|
|
mm := strings.Split(image, "/")
|
|
tag := "latest"
|
|
iName := ""
|
|
if strings.Contains(mm[len(mm)-1], ":") {
|
|
nn := strings.Split(mm[len(mm)-1], ":")
|
|
tag = nn[1]
|
|
iName = nn[0]
|
|
} else {
|
|
iName = image
|
|
}
|
|
curImage := fmt.Sprintf("%s/%s:%s", curRegistry, iName, tag+"_"+alias)
|
|
_, err := exec.Command("sudo", "-P", "docker", "tag", image, curImage).Output()
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
return curImage, nil
|
|
}
|
|
|
|
func push(curImage string, logger event.Logger) error {
|
|
mm := []string{"-P", "docker", "push", curImage}
|
|
if err := ShowExec("sudo", mm, logger); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|