2022-09-22 16:16:04 +08:00
|
|
|
package service
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/base64"
|
|
|
|
"encoding/json"
|
2022-09-26 18:20:21 +08:00
|
|
|
"errors"
|
2022-09-22 16:16:04 +08:00
|
|
|
"github.com/1Panel-dev/1Panel/app/dto"
|
|
|
|
"github.com/1Panel-dev/1Panel/app/model"
|
|
|
|
"github.com/1Panel-dev/1Panel/app/repo"
|
2022-09-26 16:32:40 +08:00
|
|
|
"github.com/1Panel-dev/1Panel/constant"
|
2022-09-22 16:16:04 +08:00
|
|
|
"github.com/1Panel-dev/1Panel/global"
|
2022-09-23 16:33:55 +08:00
|
|
|
"github.com/1Panel-dev/1Panel/utils/common"
|
2022-09-26 16:32:40 +08:00
|
|
|
"github.com/1Panel-dev/1Panel/utils/compose"
|
2022-09-29 18:16:56 +08:00
|
|
|
"github.com/1Panel-dev/1Panel/utils/docker"
|
2022-09-26 16:32:40 +08:00
|
|
|
"github.com/1Panel-dev/1Panel/utils/files"
|
|
|
|
"github.com/joho/godotenv"
|
2022-09-22 16:16:04 +08:00
|
|
|
"golang.org/x/net/context"
|
2022-09-29 18:16:56 +08:00
|
|
|
"gopkg.in/yaml.v3"
|
2022-09-22 16:16:04 +08:00
|
|
|
"os"
|
|
|
|
"path"
|
|
|
|
"reflect"
|
2022-09-23 16:33:55 +08:00
|
|
|
"sort"
|
2022-09-26 16:32:40 +08:00
|
|
|
"strconv"
|
2022-09-29 18:16:56 +08:00
|
|
|
"strings"
|
2022-09-22 16:16:04 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
type AppService struct {
|
|
|
|
}
|
|
|
|
|
|
|
|
func (a AppService) Page(req dto.AppRequest) (interface{}, error) {
|
|
|
|
|
|
|
|
var opts []repo.DBOption
|
|
|
|
opts = append(opts, commonRepo.WithOrderBy("name"))
|
|
|
|
if req.Name != "" {
|
|
|
|
opts = append(opts, commonRepo.WithLikeName(req.Name))
|
|
|
|
}
|
2022-09-23 16:33:55 +08:00
|
|
|
if len(req.Tags) != 0 {
|
|
|
|
tags, err := tagRepo.GetByKeys(req.Tags)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
var tagIds []uint
|
|
|
|
for _, t := range tags {
|
|
|
|
tagIds = append(tagIds, t.ID)
|
|
|
|
}
|
|
|
|
appTags, err := appTagRepo.GetByTagIds(tagIds)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
var appIds []uint
|
|
|
|
for _, t := range appTags {
|
|
|
|
appIds = append(appIds, t.AppId)
|
|
|
|
}
|
|
|
|
|
|
|
|
opts = append(opts, commonRepo.WithIdsIn(appIds))
|
2022-09-22 16:16:04 +08:00
|
|
|
}
|
|
|
|
var res dto.AppRes
|
|
|
|
total, apps, err := appRepo.Page(req.Page, req.PageSize, opts...)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
var appDTOs []*dto.AppDTO
|
|
|
|
for _, a := range apps {
|
|
|
|
appDTO := &dto.AppDTO{
|
|
|
|
App: a,
|
|
|
|
}
|
|
|
|
appDTOs = append(appDTOs, appDTO)
|
|
|
|
appTags, err := appTagRepo.GetByAppId(a.ID)
|
|
|
|
if err != nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
var tagIds []uint
|
|
|
|
for _, at := range appTags {
|
|
|
|
tagIds = append(tagIds, at.TagId)
|
|
|
|
}
|
|
|
|
tags, err := tagRepo.GetByIds(tagIds)
|
|
|
|
if err != nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
appDTO.Tags = tags
|
|
|
|
}
|
|
|
|
res.Items = appDTOs
|
|
|
|
res.Total = total
|
|
|
|
tags, err := tagRepo.All()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
res.Tags = tags
|
|
|
|
|
|
|
|
return res, nil
|
|
|
|
}
|
|
|
|
|
2022-09-23 16:33:55 +08:00
|
|
|
func (a AppService) GetApp(id uint) (dto.AppDTO, error) {
|
|
|
|
var appDTO dto.AppDTO
|
|
|
|
app, err := appRepo.GetFirst(commonRepo.WithByID(id))
|
|
|
|
if err != nil {
|
|
|
|
return appDTO, err
|
|
|
|
}
|
|
|
|
appDTO.App = app
|
|
|
|
details, err := appDetailRepo.GetByAppId(context.WithValue(context.Background(), "db", global.DB), id)
|
|
|
|
if err != nil {
|
|
|
|
return appDTO, err
|
|
|
|
}
|
|
|
|
var versionsRaw []string
|
|
|
|
for _, detail := range details {
|
|
|
|
versionsRaw = append(versionsRaw, detail.Version)
|
|
|
|
}
|
|
|
|
|
|
|
|
sort.Slice(versionsRaw, func(i, j int) bool {
|
|
|
|
return common.CompareVersion(versionsRaw[i], versionsRaw[j])
|
|
|
|
})
|
|
|
|
appDTO.Versions = versionsRaw
|
|
|
|
|
|
|
|
return appDTO, nil
|
|
|
|
}
|
|
|
|
|
2022-09-26 16:32:40 +08:00
|
|
|
func (a AppService) PageInstalled(req dto.AppInstalledRequest) (int64, []dto.AppInstalled, error) {
|
|
|
|
total, installed, err := appInstallRepo.Page(req.Page, req.PageSize)
|
|
|
|
if err != nil {
|
|
|
|
return 0, nil, err
|
|
|
|
}
|
|
|
|
installDTOs := []dto.AppInstalled{}
|
|
|
|
for _, in := range installed {
|
|
|
|
installDto := dto.AppInstalled{
|
|
|
|
AppInstall: in,
|
|
|
|
AppName: in.App.Name,
|
|
|
|
Icon: in.App.Icon,
|
|
|
|
}
|
|
|
|
installDTOs = append(installDTOs, installDto)
|
|
|
|
}
|
|
|
|
|
|
|
|
return total, installDTOs, nil
|
|
|
|
}
|
|
|
|
|
2022-09-23 16:33:55 +08:00
|
|
|
func (a AppService) GetAppDetail(appId uint, version string) (dto.AppDetailDTO, error) {
|
|
|
|
|
|
|
|
var (
|
|
|
|
appDetailDTO dto.AppDetailDTO
|
|
|
|
)
|
|
|
|
|
|
|
|
var opts []repo.DBOption
|
|
|
|
opts = append(opts, appDetailRepo.WithAppId(appId), appDetailRepo.WithVersion(version))
|
|
|
|
detail, err := appDetailRepo.GetAppDetail(opts...)
|
|
|
|
if err != nil {
|
|
|
|
return appDetailDTO, err
|
|
|
|
}
|
2022-09-26 16:32:40 +08:00
|
|
|
paramMap := make(map[string]interface{})
|
|
|
|
json.Unmarshal([]byte(detail.Params), ¶mMap)
|
2022-09-23 16:33:55 +08:00
|
|
|
appDetailDTO.AppDetail = detail
|
2022-09-26 16:32:40 +08:00
|
|
|
appDetailDTO.Params = paramMap
|
2022-09-23 16:33:55 +08:00
|
|
|
return appDetailDTO, nil
|
|
|
|
}
|
|
|
|
|
2022-09-26 18:20:21 +08:00
|
|
|
func (a AppService) Operate(req dto.AppInstallOperate) error {
|
|
|
|
appInstall, err := appInstallRepo.GetBy(commonRepo.WithByID(req.InstallId))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if len(appInstall) == 0 {
|
2022-09-26 22:54:38 +08:00
|
|
|
return errors.New("req not found")
|
2022-09-26 18:20:21 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
install := appInstall[0]
|
2022-09-29 18:16:56 +08:00
|
|
|
dockerComposePath := install.GetComposePath()
|
|
|
|
|
2022-09-26 18:20:21 +08:00
|
|
|
switch req.Operate {
|
|
|
|
case dto.Up:
|
|
|
|
out, err := compose.Up(dockerComposePath)
|
|
|
|
if err != nil {
|
|
|
|
return handleErr(install, err, out)
|
|
|
|
}
|
2022-09-27 16:57:23 +08:00
|
|
|
install.Status = constant.Running
|
2022-09-26 18:20:21 +08:00
|
|
|
case dto.Down:
|
|
|
|
out, err := compose.Down(dockerComposePath)
|
|
|
|
if err != nil {
|
|
|
|
return handleErr(install, err, out)
|
|
|
|
}
|
2022-09-27 16:57:23 +08:00
|
|
|
install.Status = constant.Stopped
|
2022-09-26 18:20:21 +08:00
|
|
|
case dto.Restart:
|
|
|
|
out, err := compose.Restart(dockerComposePath)
|
|
|
|
if err != nil {
|
|
|
|
return handleErr(install, err, out)
|
|
|
|
}
|
2022-09-27 16:57:23 +08:00
|
|
|
install.Status = constant.Running
|
2022-09-26 22:54:38 +08:00
|
|
|
case dto.Delete:
|
|
|
|
op := files.NewFileOp()
|
2022-09-29 18:16:56 +08:00
|
|
|
appDir := install.GetPath()
|
2022-09-26 22:54:38 +08:00
|
|
|
dir, _ := os.Stat(appDir)
|
|
|
|
if dir == nil {
|
2022-09-27 16:57:23 +08:00
|
|
|
return appInstallRepo.Delete(commonRepo.WithByID(install.ID))
|
2022-09-26 22:54:38 +08:00
|
|
|
}
|
2022-09-27 16:57:23 +08:00
|
|
|
out, err := compose.Down(dockerComposePath)
|
|
|
|
if err != nil {
|
|
|
|
return handleErr(install, err, out)
|
|
|
|
}
|
|
|
|
out, err = compose.Rmf(dockerComposePath)
|
2022-09-26 22:54:38 +08:00
|
|
|
if err != nil {
|
|
|
|
return handleErr(install, err, out)
|
|
|
|
}
|
2022-09-27 16:57:23 +08:00
|
|
|
_ = op.DeleteDir(appDir)
|
2022-09-26 22:54:38 +08:00
|
|
|
_ = appInstallRepo.Delete(commonRepo.WithByID(install.ID))
|
2022-09-27 16:57:23 +08:00
|
|
|
return nil
|
2022-09-29 18:16:56 +08:00
|
|
|
case dto.Sync:
|
|
|
|
if err := a.SyncInstalled(install.ID); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
2022-09-26 18:20:21 +08:00
|
|
|
default:
|
|
|
|
return errors.New("operate not support")
|
|
|
|
}
|
2022-09-27 16:57:23 +08:00
|
|
|
|
|
|
|
return appInstallRepo.Save(install)
|
2022-09-26 18:20:21 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func handleErr(install model.AppInstall, err error, out string) error {
|
|
|
|
reErr := err
|
|
|
|
install.Message = err.Error()
|
|
|
|
if out != "" {
|
|
|
|
install.Message = out
|
|
|
|
reErr = errors.New(out)
|
|
|
|
}
|
|
|
|
_ = appInstallRepo.Save(install)
|
|
|
|
return reErr
|
|
|
|
}
|
|
|
|
|
|
|
|
func (a AppService) Install(name string, appDetailId uint, params map[string]interface{}) error {
|
2022-09-27 16:57:23 +08:00
|
|
|
|
|
|
|
port, ok := params["PORT"]
|
|
|
|
if ok {
|
2022-09-27 22:53:24 +08:00
|
|
|
portStr := strconv.FormatFloat(port.(float64), 'f', -1, 32)
|
|
|
|
if common.ScanPort(portStr) {
|
2022-09-27 16:57:23 +08:00
|
|
|
return errors.New("port is in used")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-26 16:32:40 +08:00
|
|
|
appDetail, err := appDetailRepo.GetAppDetail(commonRepo.WithByID(appDetailId))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
app, err := appRepo.GetFirst(commonRepo.WithByID(appDetail.AppId))
|
|
|
|
paramByte, err := json.Marshal(params)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
appInstall := model.AppInstall{
|
2022-09-29 18:16:56 +08:00
|
|
|
Name: name,
|
|
|
|
AppId: appDetail.AppId,
|
|
|
|
AppDetailId: appDetail.ID,
|
|
|
|
Version: appDetail.Version,
|
|
|
|
Status: constant.Installing,
|
|
|
|
Params: string(paramByte),
|
2022-09-26 16:32:40 +08:00
|
|
|
}
|
2022-09-29 18:16:56 +08:00
|
|
|
|
2022-09-26 16:32:40 +08:00
|
|
|
resourceDir := path.Join(global.CONF.System.ResourceDir, "apps", app.Key, appDetail.Version)
|
|
|
|
installDir := path.Join(global.CONF.System.AppDir, app.Key)
|
2022-09-29 18:16:56 +08:00
|
|
|
installVersionDir := path.Join(installDir, appDetail.Version)
|
|
|
|
fileOp := files.NewFileOp()
|
|
|
|
if err := fileOp.Copy(resourceDir, installVersionDir); err != nil {
|
2022-09-26 16:32:40 +08:00
|
|
|
return err
|
|
|
|
}
|
2022-09-29 18:16:56 +08:00
|
|
|
appDir := path.Join(installDir, name)
|
|
|
|
if err := fileOp.Rename(installVersionDir, appDir); err != nil {
|
2022-09-26 16:32:40 +08:00
|
|
|
return err
|
|
|
|
}
|
2022-09-29 18:16:56 +08:00
|
|
|
composeFilePath := path.Join(appDir, "docker-compose.yml")
|
|
|
|
envPath := path.Join(appDir, ".env")
|
2022-09-26 16:32:40 +08:00
|
|
|
|
|
|
|
envParams := make(map[string]string, len(params))
|
|
|
|
for k, v := range params {
|
|
|
|
switch t := v.(type) {
|
|
|
|
case string:
|
|
|
|
envParams[k] = t
|
|
|
|
case float64:
|
|
|
|
envParams[k] = strconv.FormatFloat(t, 'f', -1, 32)
|
|
|
|
default:
|
|
|
|
envParams[k] = t.(string)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if err := godotenv.Write(envParams, envPath); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2022-09-29 18:16:56 +08:00
|
|
|
|
|
|
|
fileContent, err := os.ReadFile(composeFilePath)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
composeMap := make(map[string]interface{})
|
|
|
|
if err := yaml.Unmarshal(fileContent, &composeMap); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
servicesMap := composeMap["services"].(map[string]interface{})
|
|
|
|
changeKeys := make(map[string]string, len(servicesMap))
|
|
|
|
var appContainers []*model.AppContainer
|
|
|
|
for k, v := range servicesMap {
|
|
|
|
serviceName := k + "-" + common.RandStr(4)
|
|
|
|
changeKeys[k] = serviceName
|
|
|
|
value := v.(map[string]interface{})
|
|
|
|
containerName := constant.ContainerPrefix + k + "-" + common.RandStr(4)
|
|
|
|
value["container_name"] = containerName
|
|
|
|
var image string
|
|
|
|
if i, ok := value["image"]; ok {
|
|
|
|
image = i.(string)
|
|
|
|
}
|
|
|
|
appContainers = append(appContainers, &model.AppContainer{
|
|
|
|
ServiceName: serviceName,
|
|
|
|
ContainerName: containerName,
|
|
|
|
Image: image,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
for k, v := range changeKeys {
|
|
|
|
servicesMap[v] = servicesMap[k]
|
|
|
|
delete(servicesMap, k)
|
|
|
|
}
|
|
|
|
serviceByte, err := yaml.Marshal(servicesMap)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if err := fileOp.WriteFile(composeFilePath, strings.NewReader(string(serviceByte)), 0775); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2022-09-26 19:08:12 +08:00
|
|
|
if err := appInstallRepo.Create(&appInstall); err != nil {
|
2022-09-26 16:32:40 +08:00
|
|
|
return err
|
|
|
|
}
|
2022-09-29 18:16:56 +08:00
|
|
|
for _, c := range appContainers {
|
|
|
|
c.AppInstallId = appInstall.ID
|
|
|
|
}
|
|
|
|
if err := appContainerRepo.BatchCreate(context.WithValue(context.Background(), "db", global.DB), appContainers); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2022-09-26 16:32:40 +08:00
|
|
|
go upApp(composeFilePath, appInstall)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func upApp(composeFilePath string, appInstall model.AppInstall) {
|
|
|
|
out, err := compose.Up(composeFilePath)
|
|
|
|
if err != nil {
|
|
|
|
if out != "" {
|
|
|
|
appInstall.Message = out
|
|
|
|
} else {
|
|
|
|
appInstall.Message = err.Error()
|
|
|
|
}
|
|
|
|
appInstall.Status = constant.Error
|
|
|
|
_ = appInstallRepo.Save(appInstall)
|
|
|
|
} else {
|
|
|
|
appInstall.Status = constant.Running
|
|
|
|
_ = appInstallRepo.Save(appInstall)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-29 18:16:56 +08:00
|
|
|
func (a AppService) SyncAllInstalled() error {
|
|
|
|
allList, err := appInstallRepo.GetBy()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
go func() {
|
|
|
|
for _, i := range allList {
|
|
|
|
if err := a.SyncInstalled(i.ID); err != nil {
|
|
|
|
global.LOG.Errorf("sync install app[%s] error,mgs: %s", i.Name, err.Error())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}()
|
2022-09-27 16:57:23 +08:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-09-29 18:16:56 +08:00
|
|
|
func (a AppService) SyncInstalled(installId uint) error {
|
|
|
|
appInstall, err := appInstallRepo.GetFirst(commonRepo.WithByID(installId))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
var containerNames []string
|
|
|
|
for _, a := range appInstall.Containers {
|
|
|
|
containerNames = append(containerNames, a.ContainerName)
|
|
|
|
}
|
|
|
|
cli, err := docker.NewClient()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
containers, err := cli.ListContainersByName(containerNames)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
var errorContainers []string
|
|
|
|
var notFoundContainers []string
|
|
|
|
|
|
|
|
for _, n := range containers {
|
|
|
|
if n.State != "running" {
|
|
|
|
errorContainers = append(errorContainers, n.Names...)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for _, old := range containerNames {
|
|
|
|
exist := false
|
|
|
|
for _, new := range containers {
|
|
|
|
if common.ExistWithStrArray(old, new.Names) {
|
|
|
|
exist = true
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if !exist {
|
|
|
|
notFoundContainers = append(notFoundContainers, old)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(containers) == 0 {
|
|
|
|
appInstall.Status = constant.Error
|
|
|
|
appInstall.Message = "container is not found"
|
|
|
|
return appInstallRepo.Save(appInstall)
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(errorContainers) == 0 && len(notFoundContainers) == 0 {
|
|
|
|
appInstall.Status = constant.Running
|
|
|
|
return appInstallRepo.Save(appInstall)
|
|
|
|
}
|
|
|
|
if len(errorContainers) == len(containerNames) {
|
|
|
|
appInstall.Status = constant.Error
|
|
|
|
}
|
|
|
|
if len(notFoundContainers) == len(containerNames) {
|
|
|
|
appInstall.Status = constant.Stopped
|
|
|
|
}
|
|
|
|
|
|
|
|
var errMsg strings.Builder
|
|
|
|
if len(errorContainers) > 0 {
|
|
|
|
errMsg.Write([]byte(string(rune(len(errorContainers))) + " error containers:"))
|
|
|
|
for _, e := range errorContainers {
|
|
|
|
errMsg.Write([]byte(e))
|
|
|
|
}
|
|
|
|
errMsg.Write([]byte("\n"))
|
|
|
|
}
|
|
|
|
if len(notFoundContainers) > 0 {
|
|
|
|
errMsg.Write([]byte(string(rune(len(notFoundContainers))) + " not found containers:"))
|
|
|
|
for _, e := range notFoundContainers {
|
|
|
|
errMsg.Write([]byte(e))
|
|
|
|
}
|
|
|
|
errMsg.Write([]byte("\n"))
|
|
|
|
}
|
|
|
|
appInstall.Message = errMsg.String()
|
|
|
|
return appInstallRepo.Save(appInstall)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (a AppService) SyncAppList() error {
|
2022-09-22 16:16:04 +08:00
|
|
|
//TODO 从 oss 拉取最新列表
|
|
|
|
var appConfig model.AppConfig
|
|
|
|
appConfig.OssPath = global.CONF.System.AppOss
|
|
|
|
|
|
|
|
appDir := path.Join(global.CONF.System.ResourceDir, "apps")
|
|
|
|
iconDir := path.Join(appDir, "icons")
|
|
|
|
listFile := path.Join(appDir, "list.json")
|
|
|
|
|
|
|
|
content, err := os.ReadFile(listFile)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
list := &dto.AppList{}
|
|
|
|
if err := json.Unmarshal(content, list); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
appConfig.Version = list.Version
|
|
|
|
appConfig.CanUpdate = false
|
|
|
|
|
|
|
|
var (
|
|
|
|
tags []*model.Tag
|
|
|
|
addApps []*model.App
|
|
|
|
updateApps []*model.App
|
|
|
|
appTags []*model.AppTag
|
|
|
|
)
|
|
|
|
|
|
|
|
for _, t := range list.Tags {
|
|
|
|
tags = append(tags, &model.Tag{
|
|
|
|
Key: t.Key,
|
|
|
|
Name: t.Name,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
db := global.DB
|
|
|
|
dbCtx := context.WithValue(context.Background(), "db", db)
|
|
|
|
for _, l := range list.Items {
|
|
|
|
icon, err := os.ReadFile(path.Join(iconDir, l.Icon))
|
|
|
|
if err != nil {
|
|
|
|
global.LOG.Errorf("get [%s] icon error: %s", l.Name, err.Error())
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
iconStr := base64.StdEncoding.EncodeToString(icon)
|
|
|
|
app := &model.App{
|
|
|
|
Name: l.Name,
|
|
|
|
Key: l.Key,
|
|
|
|
ShortDesc: l.ShortDesc,
|
|
|
|
Author: l.Author,
|
|
|
|
Source: l.Source,
|
|
|
|
Icon: iconStr,
|
|
|
|
Type: l.Type,
|
|
|
|
}
|
|
|
|
app.TagsKey = l.Tags
|
|
|
|
old, _ := appRepo.GetByKey(dbCtx, l.Key)
|
|
|
|
if reflect.DeepEqual(old, &model.App{}) {
|
|
|
|
addApps = append(addApps, app)
|
|
|
|
} else {
|
|
|
|
app.ID = old.ID
|
|
|
|
updateApps = append(updateApps, app)
|
|
|
|
}
|
|
|
|
|
|
|
|
versions := l.Versions
|
|
|
|
for _, v := range versions {
|
|
|
|
detail := &model.AppDetail{
|
|
|
|
Version: v,
|
|
|
|
}
|
|
|
|
detailPath := path.Join(appDir, l.Key, v)
|
|
|
|
if _, err := os.Stat(detailPath); err != nil {
|
|
|
|
global.LOG.Errorf("get [%s] folder error: %s", detailPath, err.Error())
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
readmeStr, err := os.ReadFile(path.Join(detailPath, "README.md"))
|
|
|
|
if err != nil {
|
|
|
|
global.LOG.Errorf("get [%s] README error: %s", detailPath, err.Error())
|
|
|
|
}
|
|
|
|
detail.Readme = string(readmeStr)
|
|
|
|
dockerComposeStr, err := os.ReadFile(path.Join(detailPath, "docker-compose.yml"))
|
|
|
|
if err != nil {
|
|
|
|
global.LOG.Errorf("get [%s] docker-compose.yml error: %s", detailPath, err.Error())
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
detail.DockerCompose = string(dockerComposeStr)
|
2022-09-26 16:32:40 +08:00
|
|
|
paramStr, err := os.ReadFile(path.Join(detailPath, "params.json"))
|
2022-09-22 16:16:04 +08:00
|
|
|
if err != nil {
|
|
|
|
global.LOG.Errorf("get [%s] form.json error: %s", detailPath, err.Error())
|
|
|
|
}
|
2022-09-26 16:32:40 +08:00
|
|
|
detail.Params = string(paramStr)
|
2022-09-22 16:16:04 +08:00
|
|
|
app.Details = append(app.Details, detail)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
tx := global.DB.Begin()
|
|
|
|
ctx := context.WithValue(context.Background(), "db", tx)
|
|
|
|
if len(addApps) > 0 {
|
|
|
|
if err := appRepo.BatchCreate(ctx, addApps); err != nil {
|
|
|
|
tx.Rollback()
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if err := tagRepo.DeleteAll(ctx); err != nil {
|
|
|
|
tx.Rollback()
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(tags) > 0 {
|
|
|
|
if err := tagRepo.BatchCreate(ctx, tags); err != nil {
|
|
|
|
tx.Rollback()
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
tagMap := make(map[string]uint, len(tags))
|
|
|
|
|
|
|
|
for _, t := range tags {
|
|
|
|
tagMap[t.Key] = t.ID
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, a := range updateApps {
|
|
|
|
if err := appRepo.Save(ctx, a); err != nil {
|
|
|
|
tx.Rollback()
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
apps := append(addApps, updateApps...)
|
|
|
|
|
|
|
|
var (
|
|
|
|
appDetails []*model.AppDetail
|
|
|
|
appIds []uint
|
|
|
|
)
|
|
|
|
for _, a := range apps {
|
|
|
|
|
|
|
|
for _, t := range a.TagsKey {
|
|
|
|
tagId, ok := tagMap[t]
|
|
|
|
if ok {
|
|
|
|
appTags = append(appTags, &model.AppTag{
|
|
|
|
AppId: a.ID,
|
|
|
|
TagId: tagId,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, d := range a.Details {
|
|
|
|
d.AppId = a.ID
|
|
|
|
appDetails = append(appDetails, d)
|
|
|
|
}
|
|
|
|
appIds = append(appIds, a.ID)
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := appDetailRepo.DeleteByAppIds(ctx, appIds); err != nil {
|
|
|
|
tx.Rollback()
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(appDetails) > 0 {
|
|
|
|
if err := appDetailRepo.BatchCreate(ctx, appDetails); err != nil {
|
|
|
|
tx.Rollback()
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := appTagRepo.DeleteByAppIds(ctx, appIds); err != nil {
|
|
|
|
tx.Rollback()
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(appTags) > 0 {
|
|
|
|
if err := appTagRepo.BatchCreate(ctx, appTags); err != nil {
|
|
|
|
tx.Rollback()
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
tx.Commit()
|
|
|
|
return nil
|
|
|
|
}
|