2018-03-14 14:12:26 +08:00
|
|
|
// Copyright (C) 2014-2018 Goodrain Co., Ltd.
|
2018-03-04 22:48:50 +08:00
|
|
|
// RAINBOND, Application Management Platform
|
2018-03-14 14:33:31 +08:00
|
|
|
|
2018-03-04 22:48:50 +08:00
|
|
|
// 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.
|
2018-03-14 14:33:31 +08:00
|
|
|
|
2018-03-04 22:48:50 +08:00
|
|
|
// 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.
|
2018-03-14 14:33:31 +08:00
|
|
|
|
2018-03-04 22:48:50 +08:00
|
|
|
// 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 share
|
2018-05-29 12:51:10 +08:00
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"fmt"
|
|
|
|
|
2018-12-04 18:08:51 +08:00
|
|
|
"github.com/goodrain/rainbond/mq/client"
|
|
|
|
|
2018-05-29 12:51:10 +08:00
|
|
|
"github.com/coreos/etcd/clientv3"
|
|
|
|
"github.com/goodrain/rainbond/api/util"
|
|
|
|
"github.com/goodrain/rainbond/builder/exector"
|
|
|
|
"github.com/goodrain/rainbond/db"
|
|
|
|
"github.com/pquerna/ffjson/ffjson"
|
2020-11-25 16:39:38 +08:00
|
|
|
"github.com/sirupsen/logrus"
|
2018-05-29 12:51:10 +08:00
|
|
|
"github.com/twinj/uuid"
|
|
|
|
)
|
|
|
|
|
|
|
|
//PluginShareHandle plugin share
|
|
|
|
type PluginShareHandle struct {
|
2018-12-04 18:08:51 +08:00
|
|
|
MQClient client.MQClient
|
2018-05-29 12:51:10 +08:00
|
|
|
EtcdCli *clientv3.Client
|
|
|
|
}
|
|
|
|
|
|
|
|
//PluginResult share plugin api return
|
|
|
|
type PluginResult struct {
|
|
|
|
EventID string `json:"event_id"`
|
|
|
|
ShareID string `json:"share_id"`
|
2018-05-29 17:59:59 +08:00
|
|
|
ImageName string `json:"image_name"`
|
2018-05-29 12:51:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//PluginShare PluginShare
|
|
|
|
type PluginShare struct {
|
|
|
|
// in: path
|
|
|
|
// required: true
|
|
|
|
TenantName string `json:"tenant_name"`
|
|
|
|
TenantID string
|
|
|
|
// in: path
|
|
|
|
// required: true
|
|
|
|
PluginID string `json:"plugin_id"`
|
|
|
|
//in: body
|
|
|
|
Body struct {
|
|
|
|
//in: body
|
|
|
|
//应用分享Key
|
|
|
|
PluginKey string `json:"plugin_key" validate:"plugin_key|required"`
|
|
|
|
PluginVersion string `json:"plugin_version" validate:"plugin_version|required"`
|
|
|
|
EventID string `json:"event_id"`
|
|
|
|
ShareUser string `json:"share_user"`
|
|
|
|
ShareScope string `json:"share_scope"`
|
|
|
|
ImageInfo struct {
|
2020-04-30 17:27:17 +08:00
|
|
|
HubURL string `json:"hub_url"`
|
2018-05-29 12:51:10 +08:00
|
|
|
HubUser string `json:"hub_user"`
|
|
|
|
HubPassword string `json:"hub_password"`
|
2020-04-30 17:27:17 +08:00
|
|
|
Namespace string `json:"namespace"`
|
2018-06-08 10:17:38 +08:00
|
|
|
IsTrust bool `json:"is_trust,omitempty" validate:"is_trust"`
|
2018-05-29 12:51:10 +08:00
|
|
|
} `json:"image_info,omitempty"`
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-15 17:20:08 +08:00
|
|
|
//Share share app
|
2018-05-29 12:51:10 +08:00
|
|
|
func (s *PluginShareHandle) Share(ss PluginShare) (*PluginResult, *util.APIHandleError) {
|
|
|
|
_, err := db.GetManager().TenantPluginDao().GetPluginByID(ss.PluginID, ss.TenantID)
|
|
|
|
if err != nil {
|
|
|
|
return nil, util.CreateAPIHandleErrorFromDBError("query plugin error", err)
|
|
|
|
}
|
|
|
|
//query new build version
|
|
|
|
version, err := db.GetManager().TenantPluginBuildVersionDao().GetLastBuildVersionByVersionID(ss.PluginID, ss.Body.PluginVersion)
|
|
|
|
if err != nil {
|
|
|
|
logrus.Error("query service deploy version error", err.Error())
|
|
|
|
return nil, util.CreateAPIHandleErrorFromDBError("query plugin version error", err)
|
|
|
|
}
|
|
|
|
shareID := uuid.NewV4().String()
|
|
|
|
shareImageName, err := version.CreateShareImage(ss.Body.ImageInfo.HubURL, ss.Body.ImageInfo.Namespace)
|
|
|
|
if err != nil {
|
2019-02-15 17:20:08 +08:00
|
|
|
return nil, util.CreateAPIHandleErrorf(500, "create share image name error:%s", err.Error())
|
2018-05-29 12:51:10 +08:00
|
|
|
}
|
|
|
|
info := map[string]interface{}{
|
|
|
|
"image_info": ss.Body.ImageInfo,
|
|
|
|
"event_id": ss.Body.EventID,
|
|
|
|
"tenant_name": ss.TenantName,
|
|
|
|
"image_name": shareImageName,
|
|
|
|
"share_id": shareID,
|
|
|
|
"local_image_name": version.BuildLocalImage,
|
|
|
|
}
|
2018-12-04 18:08:51 +08:00
|
|
|
err = s.MQClient.SendBuilderTopic(client.TaskStruct{
|
|
|
|
TaskType: "share-plugin",
|
|
|
|
TaskBody: info,
|
|
|
|
Topic: client.BuilderTopic,
|
|
|
|
})
|
2018-05-29 12:51:10 +08:00
|
|
|
if err != nil {
|
|
|
|
logrus.Errorf("equque mq error, %v", err)
|
|
|
|
return nil, util.CreateAPIHandleError(502, err)
|
|
|
|
}
|
|
|
|
return &PluginResult{EventID: ss.Body.EventID, ShareID: shareID, ImageName: shareImageName}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
//ShareResult 分享应用结果查询
|
|
|
|
func (s *PluginShareHandle) ShareResult(shareID string) (i exector.ShareStatus, e *util.APIHandleError) {
|
|
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
|
|
defer cancel()
|
|
|
|
res, err := s.EtcdCli.Get(ctx, fmt.Sprintf("/rainbond/shareresult/%s", shareID))
|
|
|
|
if err != nil {
|
|
|
|
e = util.CreateAPIHandleError(500, err)
|
|
|
|
} else {
|
|
|
|
if res.Count == 0 {
|
2018-06-01 10:51:05 +08:00
|
|
|
i.ShareID = shareID
|
2018-05-29 12:51:10 +08:00
|
|
|
} else {
|
|
|
|
if err := ffjson.Unmarshal(res.Kvs[0].Value, &i); err != nil {
|
|
|
|
return i, util.CreateAPIHandleError(500, err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|