Rainbond/builder/exector/export_app.go

736 lines
22 KiB
Go
Raw Normal View History

// 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
import (
"fmt"
"io/ioutil"
"os"
"os/exec"
2019-06-25 16:14:42 +08:00
"path"
"regexp"
"strconv"
"strings"
"time"
2018-09-10 17:33:16 +08:00
"github.com/Sirupsen/logrus"
2018-12-07 14:24:14 +08:00
"github.com/docker/docker/client"
"github.com/goodrain/rainbond/builder"
"github.com/goodrain/rainbond/builder/sources"
"github.com/goodrain/rainbond/db"
"github.com/goodrain/rainbond/event"
"github.com/goodrain/rainbond/util"
"github.com/pkg/errors"
"github.com/tidwall/gjson"
yaml "gopkg.in/yaml.v2"
)
var re = regexp.MustCompile(`\s`)
//ExportApp Export app to specified format(rainbond-app or dockercompose)
type ExportApp struct {
EventID string `json:"event_id"`
Format string `json:"format"`
SourceDir string `json:"source_dir"`
Logger event.Logger
DockerClient *client.Client
}
func init() {
RegisterWorker("export_app", NewExportApp)
}
//NewExportApp create
func NewExportApp(in []byte, m *exectorManager) (TaskWorker, error) {
eventID := gjson.GetBytes(in, "event_id").String()
logger := event.GetManager().GetLogger(eventID)
return &ExportApp{
Format: gjson.GetBytes(in, "format").String(),
SourceDir: gjson.GetBytes(in, "source_dir").String(),
Logger: logger,
EventID: eventID,
DockerClient: m.DockerClient,
}, nil
}
//Run Run
func (i *ExportApp) Run(timeout time.Duration) error {
if i.Format == "rainbond-app" {
err := i.exportRainbondAPP()
if err != nil {
i.updateStatus("failed")
}
return err
} else if i.Format == "docker-compose" {
err := i.exportDockerCompose()
if err != nil {
i.updateStatus("failed")
}
return err
}
return errors.New("Unsupported the format: " + i.Format)
}
// exportRainbondAPP export offline rainbond app
func (i *ExportApp) exportRainbondAPP() error {
if ok := i.isLatest(); ok {
i.updateStatus("success")
return nil
}
// Delete the old application group directory and then regenerate the application package
if err := i.CleanSourceDir(); err != nil {
return err
}
// Save application attachments
if err := i.saveApps(); err != nil {
return err
}
// Save the plugin attachments
if err := i.savePlugins(); err != nil {
return err
}
// zip all file
if err := i.zip(); err != nil {
return err
}
// update export event status
if err := i.updateStatus("success"); err != nil {
return err
}
return nil
}
// exportDockerCompose export app to docker compose app
func (i *ExportApp) exportDockerCompose() error {
if ok := i.isLatest(); ok {
i.updateStatus("success")
return nil
}
// Delete the old application group directory and then regenerate the application package
if err := i.CleanSourceDir(); err != nil {
return err
}
// Save application attachments
if err := i.saveApps(); err != nil {
return err
}
// Save runner image name
if err := i.exportRunnerImage(); err != nil {
return err
}
// 在主目录中生成文件docker-compose.yaml
if err := i.buildDockerComposeYaml(); err != nil {
return err
}
// 生成应用启动脚本
if err := i.buildStartScript(); err != nil {
return err
}
// 打包整个目录为tar包
if err := i.zip(); err != nil {
return err
}
// 更新应用状态
if err := i.updateStatus("success"); err != nil {
return err
}
return nil
}
//Stop stop
func (i *ExportApp) Stop() error {
return nil
}
//Name return worker name
func (i *ExportApp) Name() string {
return "export_app"
}
//GetLogger GetLogger
func (i *ExportApp) GetLogger() event.Logger {
return i.Logger
}
// isLatest Returns true if the application is packaged and up to date
func (i *ExportApp) isLatest() bool {
md5File := fmt.Sprintf("%s/metadata.json.md5", i.SourceDir)
if _, err := os.Stat(md5File); os.IsNotExist(err) {
logrus.Debug("The export app md5 file is not found: ", md5File)
return false
}
err := exec.Command("md5sum", "-c", md5File).Run()
if err != nil {
tarFile := i.SourceDir + ".tar"
if _, err := os.Stat(tarFile); os.IsNotExist(err) {
logrus.Debug("The export app tar file is not found. ")
return false
}
logrus.Debug("The export app tar file is not latest.")
return false
}
logrus.Debug("The export app tar file is latest.")
return true
}
//CleanSourceDir clean export dir
func (i *ExportApp) CleanSourceDir() error {
logrus.Debug("Ready clean the source directory.")
metaFile := fmt.Sprintf("%s/metadata.json", i.SourceDir)
data, err := ioutil.ReadFile(metaFile)
if err != nil {
logrus.Error("Failed to read metadata file: ", err)
return err
}
os.RemoveAll(i.SourceDir)
os.MkdirAll(i.SourceDir, 0755)
if err := ioutil.WriteFile(metaFile, data, 0644); err != nil {
logrus.Error("Failed to write metadata file: ", err)
return err
}
return nil
}
//parseApps get apps array from metadata.json
func (i *ExportApp) 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"})
2018-09-10 17:33:16 +08:00
err := errors.New("Not found app in the metadata")
2018-05-10 20:18:14 +08:00
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
}
2018-09-14 14:01:34 +08:00
//exportImage export image of app
2018-09-10 17:33:16 +08:00
func (i *ExportApp) exportImage(serviceDir string, app gjson.Result) error {
serviceName := app.Get("service_cname").String()
serviceName = unicode2zh(serviceName)
os.MkdirAll(serviceDir, 0755)
image := app.Get("share_image").String()
tarFileName := buildToLinuxFileName(image)
2020-04-16 19:02:47 +08:00
user, pass := builder.GetImageUserInfo(app.Get("service_image.hub_user").String(), app.Get("service_image.hub_password").String())
2018-09-14 14:01:34 +08:00
// ignore runner image
if checkIsRunner(image) {
logrus.Debug("Skip the runner image: ", image)
return nil
}
// docker pull image-name
_, err := sources.ImagePull(i.DockerClient, image, user, pass, i.Logger, 15)
if err != nil {
return err
}
2018-09-10 17:33:16 +08:00
//change save app image name
saveImageName := sources.GenSaveImageName(image)
2018-09-10 17:33:16 +08:00
if err := sources.ImageTag(i.DockerClient, image, saveImageName, i.Logger, 2); err != nil {
return err
}
// save image to tar file
2018-09-10 17:33:16 +08:00
err = sources.ImageSave(i.DockerClient, saveImageName, fmt.Sprintf("%s/%s.image.tar", serviceDir, tarFileName), i.Logger)
if err != nil {
2018-09-10 17:33:16 +08:00
i.Logger.Error(fmt.Sprintf("save image to local error%s", image),
map[string]string{"step": "save-image", "status": "failure"})
2018-05-10 20:18:14 +08:00
logrus.Error("Failed to save image: ", err)
return err
}
logrus.Debug("Successful save image file: ", image)
2018-09-10 17:33:16 +08:00
return nil
}
func (i *ExportApp) exportSlug(serviceDir string, app gjson.Result) error {
shareSlugPath := app.Get("share_slug_path").String()
serviceName := app.Get("service_cname").String()
tarFileName := buildToLinuxFileName(shareSlugPath)
_, err := os.Stat(shareSlugPath)
if shareSlugPath != "" && err == nil {
logrus.Debug("The slug file was exist already, direct copy to service dir: ", shareSlugPath)
2018-09-14 14:01:34 +08:00
err = util.CopyFile(shareSlugPath, fmt.Sprintf("%s/%s", serviceDir, tarFileName))
2018-09-10 17:33:16 +08:00
if err == nil {
return nil
}
2018-09-14 14:01:34 +08:00
// if local copy failure, try download it
2018-09-10 17:33:16 +08:00
logrus.Debugf("Failed to copy the slug file to service dir %s: %v", shareSlugPath, err)
}
2018-09-14 14:01:34 +08:00
// get slug save server (ftp) info
2018-09-10 17:33:16 +08:00
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()
2018-09-10 17:33:16 +08:00
ftpClient, err := sources.NewSFTPClient(ftpUsername, ftpPassword, ftpHost, ftpPort)
if err != nil {
logrus.Error("Failed to create ftp client: ", err)
return err
}
2018-09-14 14:01:34 +08:00
// download slug file
i.Logger.Info(fmt.Sprintf("Download service %s slug file", serviceName), map[string]string{"step": "get-slug", "status": "failure"})
2018-09-10 17:33:16 +08:00
err = ftpClient.DownloadFile(shareSlugPath, fmt.Sprintf("%s/%s", serviceDir, tarFileName), i.Logger)
ftpClient.Close()
if err != nil {
logrus.Errorf("Failed to download slug file for group %s: %v", i.SourceDir, err)
return err
}
logrus.Debug("Successful download slug file: ", shareSlugPath)
return nil
}
2019-06-25 16:14:42 +08:00
func (i *ExportApp) exportConfigFile(serviceDir string, v gjson.Result) error {
if v.Get("volume_type").String() != "config-file" {
return nil
}
serviceDir = strings.TrimRight(serviceDir, "/")
fc := v.Get("file_content").String()
vp := v.Get("volume_path").String()
filename := fmt.Sprintf("%s%s", serviceDir, vp)
dir := path.Dir(filename)
os.MkdirAll(dir, 0755)
return ioutil.WriteFile(filename, []byte(fc), 0644)
}
func (i *ExportApp) savePlugins() error {
i.Logger.Info("Parsing plugin information", map[string]string{"step": "export-plugins", "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 err
}
plugins := gjson.GetBytes(data, "plugins").Array()
for _, plugin := range plugins {
pluginName := plugin.Get("plugin_name").String()
pluginName = unicode2zh(pluginName)
pluginDir := fmt.Sprintf("%s/%s", i.SourceDir, pluginName)
os.MkdirAll(pluginDir, 0755)
image := plugin.Get("share_image").String()
tarFileName := buildToLinuxFileName(image)
2020-04-16 19:02:47 +08:00
user, pass := builder.GetImageUserInfo(plugin.Get("plugin_image.hub_user").String(), plugin.Get("plugin_image.hub_password").String())
// docker pull image-name
_, err := sources.ImagePull(i.DockerClient, image, user, pass, i.Logger, 15)
if err != nil {
return err
}
//change save app image name
2020-06-27 14:06:27 +08:00
saveImageName := sources.GenSaveImageName(image)
if err := sources.ImageTag(i.DockerClient, image, saveImageName, i.Logger, 2); err != nil {
return err
}
// save image to tar file
err = sources.ImageSave(i.DockerClient, saveImageName, fmt.Sprintf("%s/%s.image.tar", pluginDir, tarFileName), i.Logger)
if err != nil {
i.Logger.Error(fmt.Sprintf("save plugin image to local error%s", image),
map[string]string{"step": "save-plugin-image", "status": "failure"})
logrus.Error("Failed to save plugin image: ", err)
return err
}
logrus.Debug("Successful save plugin image file: ", image)
}
return nil
}
// save all app attachment
// dir naming ruleConvert unicode to Chinese in the component name and remove the empty"2048\\u5e94\\u7528" -> "2048应用"
// Image naming rule: goodrain.me/percona-mysql:5.5_latest -> percona-mysqlTAG5.5_latest.image.tar
// slug naming rule: /app_publish/vzrd9po6/9d2635a7c59d4974bb4dc62f04/v1.0_20180207165207.tgz -> v1.0_20180207165207.tgz
func (i *ExportApp) saveApps() error {
apps, err := i.parseApps()
if err != nil {
return err
}
i.Logger.Info("Start export app", map[string]string{"step": "export-app", "status": "success"})
for _, app := range apps {
serviceName := app.Get("service_cname").String()
serviceName = unicode2zh(serviceName)
serviceDir := fmt.Sprintf("%s/%s", i.SourceDir, serviceName)
os.MkdirAll(serviceDir, 0755)
logrus.Debug("Create directory for export app: ", serviceDir)
2018-09-10 17:33:16 +08:00
shareImage := app.Get("share_image").String()
2019-06-25 16:14:42 +08:00
volumes := app.Get("service_volume_map_list").Array()
if volumes != nil && len(volumes) > 0 {
for _, v := range volumes {
err := i.exportConfigFile(serviceDir, v)
if err != nil {
logrus.Errorf("error exporting config file: %v", err)
return err
}
}
}
2018-09-10 17:33:16 +08:00
if shareImage != "" {
logrus.Infof("The service is image model deploy: %s", serviceName)
// app is image type
2018-09-10 17:33:16 +08:00
if err := i.exportImage(serviceDir, app); err != nil {
return err
}
continue
}
}
return nil
}
// unicode2zh 将unicode转为中文并去掉空格
func unicode2zh(uText string) (context string) {
for i, char := range strings.Split(uText, `\\u`) {
if i < 1 {
context = char
continue
}
length := len(char)
if length > 3 {
pre := char[:4]
zh, err := strconv.ParseInt(pre, 16, 32)
if err != nil {
context += char
continue
}
context += fmt.Sprintf("%c", zh)
if length > 4 {
context += char[4:]
}
}
}
context = strings.TrimSpace(context)
return context
}
func checkIsRunner(image string) bool {
return strings.Contains(image, builder.RUNNERIMAGENAME)
}
func (i *ExportApp) exportRunnerImage() error {
isExist := false
var image, tarFileName string
logrus.Debug("Ready export runner image")
apps, err := i.parseApps()
if err != nil {
return err
}
for _, app := range apps {
image = app.Get("image").String()
tarFileName = buildToLinuxFileName(image)
2019-04-17 23:58:22 +08:00
lang := app.Get("language").String()
if lang != "dockerfile" && checkIsRunner(image) {
logrus.Debug("Discovered runner image at service: ", app.Get("service_cname"))
isExist = true
break
}
}
if !isExist {
logrus.Debug("Not discovered runner image in any service.")
return nil
}
_, err = sources.ImagePull(i.DockerClient, image, builder.REGISTRYUSER, builder.REGISTRYPASS, i.Logger, 20)
if err != nil {
i.Logger.Error(fmt.Sprintf("Pull image failure%s", image),
map[string]string{"step": "pull-image", "status": "failure"})
logrus.Error("Failed to pull image: ", err)
}
err = sources.ImageSave(i.DockerClient, image, fmt.Sprintf("%s/%s.image.tar", i.SourceDir, tarFileName), i.Logger)
if err != nil {
i.Logger.Error(fmt.Sprintf("Save image failure%s", image),
map[string]string{"step": "save-image", "status": "failure"})
logrus.Error("Failed to save image: ", err)
return err
}
logrus.Debug("Successful download runner image: ", image)
return nil
}
//DockerComposeYaml docker compose struct
type DockerComposeYaml struct {
Version string `yaml:"version"`
Volumes map[string]string `yaml:"volumes,omitempty"`
Services map[string]*Service `yaml:"services,omitempty"`
}
//Service service
type Service struct {
Image string `yaml:"image"`
ContainerName string `yaml:"container_name,omitempty"`
Restart string `yaml:"restart,omitempty"`
NetworkMode string `yaml:"network_mode,omitempty"`
Volumes []string `yaml:"volumes,omitempty"`
Command string `yaml:"command,omitempty"`
Environment map[string]string `yaml:"environment,omitempty"`
2019-03-26 15:13:05 +08:00
DependsOn []string `yaml:"depends_on,omitempty"`
Loggin struct {
Driver string `yaml:"driver,omitempty"`
Options struct {
MaxSize string `yaml:"max-size,omitempty"`
MaxFile string `yaml:"max-file,omitempty"`
}
} `yaml:"logging,omitempty"`
}
func (i *ExportApp) buildDockerComposeYaml() error {
// 因为在保存apps的步骤中更新了json文件所以要重新加载
apps, err := i.parseApps()
if err != nil {
return err
}
y := &DockerComposeYaml{
Version: "2.1",
Volumes: make(map[string]string, 5),
Services: make(map[string]*Service, 5),
}
i.Logger.Info("开始生成YAML文件", map[string]string{"step": "build-yaml", "status": "failure"})
logrus.Debug("Build docker compose yaml file in directory: ", i.SourceDir)
for _, app := range apps {
image := app.Get("image").String()
shareImage := app.Get("share_image").String()
appName := app.Get("service_cname").String()
appName = unicode2zh(appName)
volumes := make([]string, 0, 3)
envs := make(map[string]string, 10)
// 如果该组件是镜像方式部署,需要做两件事
// 1. 在.volumes中创建一个volume
// 2. 在.services.volumes中做映射
for _, item := range app.Get("service_volume_map_list").Array() {
volumeName := item.Get("volume_name").String()
volumeName = buildToLinuxFileName(volumeName)
volumePath := item.Get("volume_path").String()
2019-06-25 16:14:42 +08:00
if item.Get("volume_type").String() == "config-file" {
volume := fmt.Sprintf("__GROUP_DIR__/%s/%s:%s", appName, volumePath, volumePath)
volumes = append(volumes, volume)
} else {
y.Volumes[volumeName] = ""
volumes = append(volumes, fmt.Sprintf("%s:%s", volumeName, volumePath))
}
}
lang := app.Get("language").String()
// 如果该组件是源码方式部署则挂载slug文件到runner容器内
if lang != "dockerfile" && checkIsRunner(image) {
2019-03-28 14:15:46 +08:00
shareImage = image
shareSlugPath := app.Get("share_slug_path").String()
tarFileName := buildToLinuxFileName(shareSlugPath)
volume := fmt.Sprintf("__GROUP_DIR__/%s/%s:/tmp/slug/slug.tgz", appName, tarFileName)
volumes = append(volumes, volume)
logrus.Debug("Mount the slug file to runner image: ", volume)
}
// 处理环境变量
for _, item := range app.Get("service_env_map_list").Array() {
key := item.Get("attr_name").String()
value := item.Get("attr_value").String()
envs[key] = value
}
for _, item := range app.Get("service_connect_info_map_list").Array() {
key := item.Get("attr_name").String()
value := item.Get("attr_value").String()
envs[key] = value
}
2019-03-26 15:13:05 +08:00
var depServices []string
// 如果该app依赖了另了个app-b则把app-b中所有公开环境变量注入到该app
for _, item := range app.Get("dep_service_map_list").Array() {
serviceKey := item.Get("dep_service_key").String()
depEnvs := i.getPublicEnvByKey(serviceKey, &apps)
for k, v := range depEnvs {
envs[k] = v
}
2019-03-26 15:13:05 +08:00
if svc := i.getDependedService(serviceKey, &apps); svc != "" {
depServices = append(depServices, svc)
}
}
service := &Service{
Image: sources.GenSaveImageName(shareImage),
ContainerName: appName,
Restart: "always",
NetworkMode: "host",
Volumes: volumes,
Command: app.Get("cmd").String(),
Environment: envs,
}
service.Loggin.Driver = "json-file"
service.Loggin.Options.MaxSize = "5m"
service.Loggin.Options.MaxFile = "2"
2019-03-26 15:13:05 +08:00
if depServices != nil && len(depServices) > 0 {
service.DependsOn = depServices
}
y.Services[appName] = service
}
content, err := yaml.Marshal(y)
if err != nil {
i.Logger.Error(fmt.Sprintf("生成YAML文件失败%v", err), map[string]string{"step": "build-yaml", "status": "failure"})
2018-05-10 20:18:14 +08:00
logrus.Error("Failed to build yaml file: ", err)
return err
}
err = ioutil.WriteFile(fmt.Sprintf("%s/docker-compose.yaml", i.SourceDir), content, 0644)
if err != nil {
i.Logger.Error(fmt.Sprintf("创建YAML文件失败%v", err), map[string]string{"step": "create-yaml", "status": "failure"})
2018-05-10 20:18:14 +08:00
logrus.Error("Failed to create yaml file: ", err)
return err
}
return nil
}
func (i *ExportApp) getPublicEnvByKey(serviceKey string, apps *[]gjson.Result) map[string]string {
envs := make(map[string]string, 5)
for _, app := range *apps {
2019-03-26 15:13:05 +08:00
appKey := app.Get("service_share_uuid").String()
if appKey == serviceKey {
for _, item := range app.Get("service_connect_info_map_list").Array() {
key := item.Get("attr_name").String()
value := item.Get("attr_value").String()
envs[key] = value
}
break
}
}
return envs
}
2019-03-26 15:13:05 +08:00
func (i *ExportApp) getDependedService(key string, apps *[]gjson.Result) string {
for _, app := range *apps {
if key == app.Get("service_share_uuid").String() {
return app.Get("service_cname").String()
}
}
return ""
}
func (i *ExportApp) buildStartScript() error {
if err := exec.Command("cp", "/src/export-app/run.sh", i.SourceDir).Run(); err != nil {
err = errors.New("Failed to generate start script to: " + i.SourceDir)
logrus.Error(err)
return err
}
logrus.Debug("Successful generate start script to: ", i.SourceDir)
return nil
}
//ErrorCallBack if run error will callback
func (i *ExportApp) ErrorCallBack(err error) {
i.updateStatus("failed")
}
func (i *ExportApp) zip() error {
err := util.Zip(i.SourceDir, i.SourceDir+".zip")
if err != nil {
i.Logger.Error("Export application failure:Zip failure", map[string]string{"step": "export-app", "status": "failure"})
logrus.Errorf("Failed to create tar file for group %s: %v", i.SourceDir, err)
return err
}
// create md5 file
metadataFile := fmt.Sprintf("%s/metadata.json", i.SourceDir)
if err := exec.Command("sh", "-c", fmt.Sprintf("md5sum %s > %s.md5", metadataFile, metadataFile)).Run(); err != nil {
err = errors.New(fmt.Sprintf("Failed to create md5 file: %v", err))
logrus.Error(err)
return err
}
i.Logger.Info("Export application success", map[string]string{"step": "export-app", "status": "success"})
logrus.Info("Successful export app by event id: ", i.EventID)
return nil
}
func (i *ExportApp) updateStatus(status string) error {
logrus.Debug("Update app status in database to: ", status)
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
}
res.Status = status
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 buildToLinuxFileName(fileName string) string {
if fileName == "" {
return fileName
}
arr := strings.Split(fileName, "/")
if str := arr[len(arr)-1]; str == "" {
fileName = strings.Replace(fileName, "/", "---", -1)
} else {
fileName = str
}
fileName = strings.Replace(fileName, ":", "--", -1)
fileName = re.ReplaceAllString(fileName, "")
return fileName
}