mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-08 19:50:05 +01:00
87 lines
2.0 KiB
Go
87 lines
2.0 KiB
Go
// Copyright 2013-2014 beego 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.
|
|
|
|
package main
|
|
|
|
import (
|
|
"log"
|
|
"os"
|
|
|
|
"github.com/Unknwon/goconfig"
|
|
)
|
|
|
|
var cmdSync = &Command{
|
|
UsageLine: "sync [source file] [target files]",
|
|
Short: "sync keys for locale files",
|
|
Long: `to quickly sync keys for one or more locale files
|
|
based on the one you already have
|
|
`,
|
|
}
|
|
|
|
func init() {
|
|
cmdSync.Run = syncLocales
|
|
}
|
|
|
|
func syncLocales(cmd *Command, args []string) {
|
|
switch len(args) {
|
|
case 0:
|
|
log.Fatalln("No source locale file is specified")
|
|
case 1:
|
|
log.Fatalln("No target locale file is specified")
|
|
}
|
|
|
|
srcLocale, err := goconfig.LoadConfigFile(args[0])
|
|
if err != nil {
|
|
log.Fatalln(err)
|
|
}
|
|
|
|
// Load or create target locales.
|
|
targets := args[1:]
|
|
targetLocales := make([]*goconfig.ConfigFile, len(targets))
|
|
for i, target := range targets {
|
|
if !isExist(target) {
|
|
os.Create(target)
|
|
}
|
|
|
|
targetLocales[i], err = goconfig.LoadConfigFile(target)
|
|
if err != nil {
|
|
log.Fatalln(err)
|
|
}
|
|
}
|
|
|
|
for _, secName := range srcLocale.GetSectionList() {
|
|
keyList := srcLocale.GetKeyList(secName)
|
|
for _, target := range targetLocales {
|
|
for _, k := range keyList {
|
|
if _, err = target.GetValue(secName, k); err != nil {
|
|
target.SetValue(secName, k, "")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
for i, target := range targetLocales {
|
|
err = goconfig.SaveConfigFile(target, targets[i])
|
|
if err != nil {
|
|
log.Fatalln(err)
|
|
}
|
|
}
|
|
}
|
|
|
|
// IsExist returns whether a file or directory exists.
|
|
func isExist(path string) bool {
|
|
_, err := os.Stat(path)
|
|
return err == nil || os.IsExist(err)
|
|
}
|