2018-05-07 15:10:12 +08:00
|
|
|
|
// 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
|
2018-05-17 11:27:04 +08:00
|
|
|
|
|
|
|
|
|
import (
|
2018-05-23 14:26:27 +08:00
|
|
|
|
"encoding/json"
|
2018-05-23 11:08:44 +08:00
|
|
|
|
"errors"
|
2018-05-17 11:27:04 +08:00
|
|
|
|
"fmt"
|
2018-05-28 11:14:56 +08:00
|
|
|
|
"io/ioutil"
|
|
|
|
|
"os"
|
|
|
|
|
"os/exec"
|
|
|
|
|
"path/filepath"
|
|
|
|
|
"strings"
|
|
|
|
|
"time"
|
|
|
|
|
|
2018-05-23 11:08:44 +08:00
|
|
|
|
"github.com/Sirupsen/logrus"
|
2018-05-21 18:21:42 +08:00
|
|
|
|
"github.com/bitly/go-simplejson"
|
2018-05-23 11:08:44 +08:00
|
|
|
|
"github.com/docker/engine-api/client"
|
2018-05-23 14:26:27 +08:00
|
|
|
|
"github.com/goodrain/rainbond/api/model"
|
2018-05-23 11:08:44 +08:00
|
|
|
|
"github.com/goodrain/rainbond/builder/sources"
|
2018-05-17 16:10:44 +08:00
|
|
|
|
"github.com/goodrain/rainbond/db"
|
2018-05-23 11:08:44 +08:00
|
|
|
|
"github.com/goodrain/rainbond/event"
|
2018-05-24 09:51:09 +08:00
|
|
|
|
"github.com/goodrain/rainbond/util"
|
2018-05-23 11:08:44 +08:00
|
|
|
|
"github.com/tidwall/gjson"
|
2018-05-17 11:27:04 +08:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func init() {
|
2018-05-17 16:10:44 +08:00
|
|
|
|
RegisterWorker("import_app", NewImportApp)
|
|
|
|
|
}
|
|
|
|
|
|
2018-05-28 11:14:56 +08:00
|
|
|
|
//ImportApp Export app to specified format(rainbond-app or dockercompose)
|
2018-05-17 16:10:44 +08:00
|
|
|
|
type ImportApp struct {
|
2018-05-23 14:26:27 +08:00
|
|
|
|
EventID string `json:"event_id"`
|
|
|
|
|
Format string `json:"format"`
|
|
|
|
|
SourceDir string `json:"source_dir"`
|
|
|
|
|
Apps []string `json:"apps"`
|
2018-05-21 18:21:42 +08:00
|
|
|
|
ServiceImage model.ServiceImage
|
|
|
|
|
ServiceSlug model.ServiceSlug
|
2018-05-17 16:10:44 +08:00
|
|
|
|
Logger event.Logger
|
|
|
|
|
DockerClient *client.Client
|
|
|
|
|
}
|
|
|
|
|
|
2018-05-28 11:14:56 +08:00
|
|
|
|
//NewImportApp create
|
|
|
|
|
func NewImportApp(in []byte, m *exectorManager) (TaskWorker, error) {
|
2018-05-17 16:10:44 +08:00
|
|
|
|
eventID := gjson.GetBytes(in, "event_id").String()
|
2018-05-21 22:10:49 +08:00
|
|
|
|
var serviceImage model.ServiceImage
|
|
|
|
|
if err := json.Unmarshal([]byte(gjson.GetBytes(in, "service_image").String()), &serviceImage); err != nil {
|
|
|
|
|
logrus.Error("Failed to unmarshal service_image for import: ", err)
|
2018-05-23 11:13:19 +08:00
|
|
|
|
return nil, err
|
2018-05-21 22:10:49 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-05-23 14:26:27 +08:00
|
|
|
|
var serviceSlug model.ServiceSlug
|
2018-05-21 22:10:49 +08:00
|
|
|
|
if err := json.Unmarshal([]byte(gjson.GetBytes(in, "service_slug").String()), &serviceSlug); err != nil {
|
|
|
|
|
logrus.Error("Failed to unmarshal service_slug for import app: ", err)
|
2018-05-23 11:13:19 +08:00
|
|
|
|
return nil, err
|
2018-05-21 22:10:49 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-05-23 14:26:27 +08:00
|
|
|
|
apps := make([]string, 0, 10)
|
|
|
|
|
for _, r := range gjson.GetBytes(in, "apps").Array() {
|
|
|
|
|
apps = append(apps, r.String())
|
|
|
|
|
}
|
|
|
|
|
|
2018-05-17 16:10:44 +08:00
|
|
|
|
logger := event.GetManager().GetLogger(eventID)
|
2018-05-21 18:21:42 +08:00
|
|
|
|
|
2018-05-17 19:04:48 +08:00
|
|
|
|
return &ImportApp{
|
2018-05-17 16:10:44 +08:00
|
|
|
|
Format: gjson.GetBytes(in, "format").String(),
|
|
|
|
|
SourceDir: gjson.GetBytes(in, "source_dir").String(),
|
2018-05-23 14:26:27 +08:00
|
|
|
|
Apps: apps,
|
2018-05-21 18:21:42 +08:00
|
|
|
|
ServiceImage: serviceImage,
|
|
|
|
|
ServiceSlug: serviceSlug,
|
2018-05-17 16:10:44 +08:00
|
|
|
|
Logger: logger,
|
|
|
|
|
EventID: eventID,
|
2018-05-28 11:14:56 +08:00
|
|
|
|
DockerClient: m.DockerClient,
|
2018-05-23 11:08:44 +08:00
|
|
|
|
}, nil
|
2018-05-17 16:10:44 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-05-17 19:04:48 +08:00
|
|
|
|
//Stop stop
|
|
|
|
|
func (i *ImportApp) Stop() error {
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//Name return worker name
|
|
|
|
|
func (i *ImportApp) Name() string {
|
|
|
|
|
return "export_app"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//GetLogger GetLogger
|
|
|
|
|
func (i *ImportApp) GetLogger() event.Logger {
|
|
|
|
|
return i.Logger
|
|
|
|
|
}
|
|
|
|
|
|
2018-05-23 14:26:27 +08:00
|
|
|
|
//ErrorCallBack if run error will callback
|
|
|
|
|
func (i *ImportApp) ErrorCallBack(err error) {
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2018-05-17 16:10:44 +08:00
|
|
|
|
//Run Run
|
|
|
|
|
func (i *ImportApp) Run(timeout time.Duration) error {
|
|
|
|
|
if i.Format == "rainbond-app" {
|
|
|
|
|
err := i.importApp()
|
|
|
|
|
if err != nil {
|
2018-05-21 22:10:49 +08:00
|
|
|
|
i.updateStatus("failed", "")
|
2018-05-24 09:51:09 +08:00
|
|
|
|
return err
|
2018-05-17 16:10:44 +08:00
|
|
|
|
}
|
2018-05-24 09:51:09 +08:00
|
|
|
|
return nil
|
2018-05-23 14:26:27 +08:00
|
|
|
|
} else {
|
|
|
|
|
return errors.New("Unsupported the format: " + i.Format)
|
2018-05-17 16:10:44 +08:00
|
|
|
|
}
|
2018-05-17 11:27:04 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 组目录命名规则,将组名中unicode转为中文,并去掉空格,"JAVA-ETCD\\u5206\\u4eab\\u7ec4" -> "JAVA-ETCD分享组"
|
2018-05-17 16:10:44 +08:00
|
|
|
|
func (i *ImportApp) importApp() error {
|
2018-05-17 11:27:04 +08:00
|
|
|
|
|
2018-05-21 18:21:42 +08:00
|
|
|
|
oldSourceDir := i.SourceDir
|
2018-05-21 22:10:49 +08:00
|
|
|
|
var datas = "["
|
2018-05-24 09:51:09 +08:00
|
|
|
|
tmpDir := oldSourceDir + "/TmpUnzipDir"
|
2018-05-23 14:26:27 +08:00
|
|
|
|
for _, app := range i.Apps {
|
2018-05-23 15:53:12 +08:00
|
|
|
|
if err := i.updateStatusForApp(app, "importing"); err != nil {
|
|
|
|
|
logrus.Errorf("Failed to update status to importing for app %s: %v", app, err)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
appFile := filepath.Join(oldSourceDir, app)
|
2018-05-23 14:26:27 +08:00
|
|
|
|
|
2018-05-24 09:51:09 +08:00
|
|
|
|
os.MkdirAll(tmpDir, 0755)
|
|
|
|
|
|
2018-05-24 10:34:14 +08:00
|
|
|
|
err := exec.Command("sh", "-c", fmt.Sprintf("tar -xf %s -C %s/", appFile, tmpDir)).Run()
|
2018-05-24 09:51:09 +08:00
|
|
|
|
if err != nil {
|
2018-05-24 10:34:14 +08:00
|
|
|
|
err := util.Unzip(appFile, tmpDir)
|
|
|
|
|
if err != nil {
|
|
|
|
|
logrus.Errorf("Failed to unzip tar %s: %v", appFile, err)
|
|
|
|
|
i.updateStatusForApp(app, "failed")
|
|
|
|
|
continue
|
|
|
|
|
}
|
2018-05-24 09:51:09 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
files, _ := ioutil.ReadDir(tmpDir)
|
|
|
|
|
if len(files) < 1 {
|
|
|
|
|
logrus.Errorf("Failed to read files in tmp dir %s: %v", appFile, err)
|
|
|
|
|
continue
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
i.SourceDir = fmt.Sprintf("%s/%s", oldSourceDir, files[0].Name())
|
2018-05-23 15:53:12 +08:00
|
|
|
|
if _, err := os.Stat(i.SourceDir); err == nil {
|
|
|
|
|
os.RemoveAll(i.SourceDir)
|
|
|
|
|
}
|
|
|
|
|
|
2018-05-24 09:51:09 +08:00
|
|
|
|
err = os.Rename(fmt.Sprintf("%s/%s", tmpDir, files[0].Name()), i.SourceDir)
|
2018-05-23 14:26:27 +08:00
|
|
|
|
if err != nil {
|
2018-05-24 09:51:09 +08:00
|
|
|
|
logrus.Errorf("Failed to mv source dir to %s: %v", i.SourceDir, err)
|
2018-05-21 18:21:42 +08:00
|
|
|
|
continue
|
|
|
|
|
}
|
|
|
|
|
|
2018-05-24 09:51:09 +08:00
|
|
|
|
os.RemoveAll(tmpDir)
|
|
|
|
|
|
2018-05-23 14:26:27 +08:00
|
|
|
|
// push image and slug file
|
2018-05-21 18:21:42 +08:00
|
|
|
|
|
|
|
|
|
// 修改json元数据中的镜像和源码包仓库地址为指定地址
|
2018-05-23 14:26:27 +08:00
|
|
|
|
metaFile := fmt.Sprintf("%s/metadata.json", i.SourceDir)
|
|
|
|
|
logrus.Debug("Change image and slug repo address in: ", metaFile)
|
|
|
|
|
|
|
|
|
|
data, err := ioutil.ReadFile(metaFile)
|
|
|
|
|
meta, err := simplejson.NewJson(data)
|
|
|
|
|
if err != nil {
|
|
|
|
|
logrus.Errorf("Failed to new json for load app %s: %v", appFile, err)
|
|
|
|
|
i.updateStatusForApp(app, "failed")
|
2018-05-21 18:21:42 +08:00
|
|
|
|
continue
|
|
|
|
|
}
|
|
|
|
|
|
2018-05-23 14:26:27 +08:00
|
|
|
|
apps, err := meta.Get("apps").Array()
|
|
|
|
|
if err != nil {
|
|
|
|
|
logrus.Errorf("Failed to get apps from meta for load app %s: %v", appFile, err)
|
|
|
|
|
i.updateStatusForApp(app, "failed")
|
2018-05-21 18:21:42 +08:00
|
|
|
|
continue
|
|
|
|
|
}
|
2018-05-21 22:10:49 +08:00
|
|
|
|
|
2018-05-23 14:26:27 +08:00
|
|
|
|
for index := range apps {
|
|
|
|
|
app := meta.Get("apps").GetIndex(index)
|
|
|
|
|
if _, ok := app.CheckGet("service_image"); ok {
|
|
|
|
|
app.Set("service_image", i.ServiceImage)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if _, ok := app.CheckGet("service_slug"); ok {
|
|
|
|
|
app.Set("service_slug", i.ServiceSlug)
|
|
|
|
|
}
|
|
|
|
|
apps[index] = app
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
meta.Set("apps", apps)
|
|
|
|
|
data, err = meta.MarshalJSON()
|
2018-05-21 22:10:49 +08:00
|
|
|
|
if err != nil {
|
2018-05-23 14:26:27 +08:00
|
|
|
|
logrus.Errorf("Failed to marshal json for app %s: %v", appFile, err)
|
|
|
|
|
i.updateStatusForApp(app, "failed")
|
|
|
|
|
continue
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 修改完毕后写回文件中
|
|
|
|
|
err = ioutil.WriteFile(metaFile, data, 0644)
|
|
|
|
|
if err != nil {
|
|
|
|
|
logrus.Errorf("Failed to write metadata load app %s: %v", appFile, err)
|
|
|
|
|
i.updateStatusForApp(app, "failed")
|
|
|
|
|
continue
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 上传镜像和源码包到仓库中
|
|
|
|
|
if err := i.loadApps(); err != nil {
|
|
|
|
|
logrus.Errorf("Failed to load app %s: %v", appFile, err)
|
|
|
|
|
i.updateStatusForApp(app, "failed")
|
|
|
|
|
continue
|
2018-05-21 22:10:49 +08:00
|
|
|
|
}
|
2018-05-23 14:26:27 +08:00
|
|
|
|
|
2018-05-21 22:10:49 +08:00
|
|
|
|
if datas == "[" {
|
|
|
|
|
datas += string(data)
|
|
|
|
|
} else {
|
|
|
|
|
datas += ", " + string(data)
|
|
|
|
|
}
|
|
|
|
|
|
2018-05-23 15:53:12 +08:00
|
|
|
|
if err := i.updateStatusForApp(app, "success"); err != nil {
|
|
|
|
|
logrus.Errorf("Failed to update status to success for app %s: %v", app, err)
|
|
|
|
|
continue
|
|
|
|
|
}
|
|
|
|
|
|
2018-05-28 11:14:56 +08:00
|
|
|
|
os.Rename(appFile, appFile+".success")
|
2018-05-24 10:34:14 +08:00
|
|
|
|
|
2018-05-23 14:26:27 +08:00
|
|
|
|
logrus.Debug("Successful import app: ", appFile)
|
|
|
|
|
|
2018-05-21 18:21:42 +08:00
|
|
|
|
}
|
2018-05-21 22:10:49 +08:00
|
|
|
|
datas += "]"
|
2018-05-21 18:21:42 +08:00
|
|
|
|
i.SourceDir = oldSourceDir
|
|
|
|
|
|
|
|
|
|
// 更新应用状态
|
2018-05-21 22:10:49 +08:00
|
|
|
|
if err := i.updateStatus("success", datas); err != nil {
|
2018-05-23 14:26:27 +08:00
|
|
|
|
logrus.Errorf("Failed to load apps %s: %v", i.SourceDir, err)
|
|
|
|
|
return nil
|
2018-05-17 11:27:04 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
2018-05-21 18:21:42 +08:00
|
|
|
|
// 替换元数据中的镜像和源码包的仓库地址
|
|
|
|
|
func (i *ImportApp) replaceRepo() error {
|
|
|
|
|
metaFile := fmt.Sprintf("%s/metadata.json", i.SourceDir)
|
|
|
|
|
logrus.Debug("Change image and slug repo address in: ", metaFile)
|
|
|
|
|
|
|
|
|
|
data, err := ioutil.ReadFile(metaFile)
|
|
|
|
|
meta, err := simplejson.NewJson(data)
|
|
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
apps, err := meta.Get("apps").Array()
|
|
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for index := range apps {
|
|
|
|
|
app := meta.Get("apps").GetIndex(index)
|
|
|
|
|
if _, ok := app.CheckGet("service_image"); ok {
|
|
|
|
|
app.Set("service_image", i.ServiceImage)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if _, ok := app.CheckGet("service_slug"); ok {
|
|
|
|
|
app.Set("service_slug", i.ServiceSlug)
|
|
|
|
|
}
|
|
|
|
|
apps[index] = app
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
meta.Set("apps", apps)
|
2018-05-21 22:10:49 +08:00
|
|
|
|
data, err = meta.MarshalJSON()
|
2018-05-21 18:21:42 +08:00
|
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return ioutil.WriteFile(metaFile, data, 0644)
|
|
|
|
|
}
|
|
|
|
|
|
2018-05-17 16:10:44 +08:00
|
|
|
|
//parseApps get apps array from metadata.json
|
|
|
|
|
func (i *ImportApp) parseApps() ([]gjson.Result, error) {
|
|
|
|
|
i.Logger.Info("解析应用信息", map[string]string{"step": "export-app", "status": "success"})
|
|
|
|
|
|
|
|
|
|
data, err := ioutil.ReadFile(fmt.Sprintf("%s/metadata.json", i.SourceDir))
|
|
|
|
|
if err != nil {
|
|
|
|
|
i.Logger.Error("导出应用失败,没有找到应用信息", map[string]string{"step": "read-metadata", "status": "failure"})
|
|
|
|
|
logrus.Error("Failed to read metadata file: ", err)
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
arr := gjson.GetBytes(data, "apps").Array()
|
|
|
|
|
if len(arr) < 1 {
|
|
|
|
|
i.Logger.Error("解析应用列表信息失败", map[string]string{"step": "parse-apps", "status": "failure"})
|
|
|
|
|
err := errors.New("not found apps in the metadata")
|
|
|
|
|
logrus.Error("Failed to get apps from json: ", err)
|
|
|
|
|
return nil, err
|
|
|
|
|
}
|
|
|
|
|
logrus.Debug("Successful parse apps array from metadata, count: ", len(arr))
|
|
|
|
|
|
|
|
|
|
return arr, nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (i *ImportApp) loadApps() error {
|
2018-05-17 11:27:04 +08:00
|
|
|
|
apps, err := i.parseApps()
|
|
|
|
|
if err != nil {
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for _, app := range apps {
|
|
|
|
|
// 获取该组件资源文件
|
|
|
|
|
serviceName := app.Get("service_cname").String()
|
|
|
|
|
serviceName = unicode2zh(serviceName)
|
|
|
|
|
serviceDir := fmt.Sprintf("%s/%s", i.SourceDir, serviceName)
|
|
|
|
|
files, err := ioutil.ReadDir(serviceDir)
|
|
|
|
|
if err != nil || len(files) < 1 {
|
|
|
|
|
logrus.Error("Failed to list in service directory: ", serviceDir)
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fileName := filepath.Join(serviceDir, files[0].Name())
|
|
|
|
|
logrus.Debug("Parse the source file for service: ", fileName)
|
|
|
|
|
|
|
|
|
|
// 判断该用应资源是什么类型
|
|
|
|
|
// 如果是镜像,则加载到本地,并上传到仓库
|
|
|
|
|
// 如果slug文件,则上传到ftp服务器
|
|
|
|
|
if strings.HasSuffix(fileName, ".image.tar") {
|
|
|
|
|
// 加载到本地
|
|
|
|
|
if err := sources.ImageLoad(i.DockerClient, fileName, i.Logger); err != nil {
|
|
|
|
|
logrus.Error("Failed to load image for service: ", serviceName)
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 上传到仓库
|
|
|
|
|
image := app.Get("image").String()
|
|
|
|
|
user := app.Get("service_image.hub_user").String()
|
|
|
|
|
pass := app.Get("service_image.hub_password").String()
|
|
|
|
|
if err := sources.ImagePush(i.DockerClient, image, user, pass, i.Logger, 15); err != nil {
|
|
|
|
|
logrus.Error("Failed to load image for service: ", serviceName)
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
logrus.Debug("Successful load and push the image ", image)
|
|
|
|
|
} else if strings.HasSuffix(fileName, ".tgz") {
|
|
|
|
|
// 将slug包上传到ftp服务器
|
|
|
|
|
|
|
|
|
|
// 提取tfp服务器信息
|
|
|
|
|
shareSlugPath := app.Get("share_slug_path").String()
|
|
|
|
|
ftpHost := app.Get("service_slug.ftp_host").String()
|
|
|
|
|
ftpPort := app.Get("service_slug.ftp_port").String()
|
|
|
|
|
ftpUsername := app.Get("service_slug.ftp_username").String()
|
|
|
|
|
ftpPassword := app.Get("service_slug.ftp_password").String()
|
|
|
|
|
|
|
|
|
|
ftpClient, err := sources.NewSFTPClient(ftpUsername, ftpPassword, ftpHost, ftpPort)
|
|
|
|
|
if err != nil {
|
|
|
|
|
logrus.Error("Failed to create ftp client: ", err)
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 开始上传文件
|
|
|
|
|
i.Logger.Info(fmt.Sprintf("获取应用源码:%s", serviceName),
|
|
|
|
|
map[string]string{"step": "get-slug", "status": "failure"})
|
|
|
|
|
|
|
|
|
|
err = ftpClient.PushFile(fileName, shareSlugPath, i.Logger)
|
|
|
|
|
ftpClient.Close()
|
|
|
|
|
if err != nil {
|
|
|
|
|
logrus.Errorf("Failed to upload slug file for group %s: %v", i.SourceDir, err)
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
logrus.Debug("Successful upload slug file: ", fileName)
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
logrus.Debug("Successful load apps for group: ", i.SourceDir)
|
|
|
|
|
return nil
|
|
|
|
|
}
|
2018-05-17 16:10:44 +08:00
|
|
|
|
|
2018-05-21 22:10:49 +08:00
|
|
|
|
func (i *ImportApp) updateStatus(status, data string) error {
|
2018-05-17 16:10:44 +08:00
|
|
|
|
logrus.Debug("Update app status in database to: ", status)
|
|
|
|
|
// 从数据库中获取该应用的状态信息
|
|
|
|
|
res, err := db.GetManager().AppDao().GetByEventId(i.EventID)
|
|
|
|
|
if err != nil {
|
2018-05-23 15:53:12 +08:00
|
|
|
|
err = fmt.Errorf("failed to get app %s from db: %v", i.EventID, err)
|
2018-05-17 16:10:44 +08:00
|
|
|
|
logrus.Error(err)
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 在数据库中更新该应用的状态信息
|
2018-05-21 18:37:35 +08:00
|
|
|
|
res.Status = status
|
2018-05-21 22:10:49 +08:00
|
|
|
|
res.Metadata = data
|
2018-05-17 16:10:44 +08:00
|
|
|
|
|
2018-05-21 18:37:35 +08:00
|
|
|
|
if err := db.GetManager().AppDao().UpdateModel(res); err != nil {
|
2018-05-23 15:53:12 +08:00
|
|
|
|
err = fmt.Errorf("failed to update app %s: %v", i.EventID, err)
|
2018-05-17 16:10:44 +08:00
|
|
|
|
logrus.Error(err)
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return nil
|
|
|
|
|
}
|
2018-05-23 14:26:27 +08:00
|
|
|
|
|
|
|
|
|
func (i *ImportApp) updateStatusForApp(app, status string) error {
|
2018-05-23 15:53:12 +08:00
|
|
|
|
logrus.Debugf("Update status in database for app %s to: %s", app, status)
|
2018-05-23 14:26:27 +08:00
|
|
|
|
// 从数据库中获取该应用的状态信息
|
|
|
|
|
res, err := db.GetManager().AppDao().GetByEventId(i.EventID)
|
|
|
|
|
if err != nil {
|
|
|
|
|
err = errors.New(fmt.Sprintf("Failed to get app %s from db: %v", i.EventID, err))
|
|
|
|
|
logrus.Error(err)
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 在数据库中更新该应用的状态信息
|
2018-05-23 15:53:12 +08:00
|
|
|
|
appsMap := str2map(res.Apps)
|
|
|
|
|
appsMap[app] = status
|
|
|
|
|
res.Apps = map2str(appsMap)
|
2018-05-23 14:26:27 +08:00
|
|
|
|
|
|
|
|
|
if err := db.GetManager().AppDao().UpdateModel(res); err != nil {
|
|
|
|
|
err = errors.New(fmt.Sprintf("Failed to update app %s: %v", i.EventID, err))
|
|
|
|
|
logrus.Error(err)
|
|
|
|
|
return err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return nil
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func str2map(str string) map[string]string {
|
|
|
|
|
result := make(map[string]string, 10)
|
|
|
|
|
|
|
|
|
|
for _, app := range strings.Split(str, ",") {
|
|
|
|
|
appMap := strings.Split(app, ":")
|
|
|
|
|
result[appMap[0]] = appMap[1]
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return result
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func map2str(m map[string]string) string {
|
|
|
|
|
var result string
|
|
|
|
|
|
|
|
|
|
for k, v := range m {
|
|
|
|
|
kv := k + ":" + v
|
|
|
|
|
|
|
|
|
|
if result == "" {
|
|
|
|
|
result += kv
|
|
|
|
|
} else {
|
|
|
|
|
result += "," + kv
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return result
|
|
|
|
|
}
|