mirror of
https://github.com/casdoor/casdoor.git
synced 2025-05-23 10:45:47 +08:00
Remove generate_backend.go
This commit is contained in:
parent
fb2b03f00f
commit
8b6bde6d82
@ -26,16 +26,22 @@ import (
|
|||||||
|
|
||||||
type I18nData map[string]map[string]string
|
type I18nData map[string]map[string]string
|
||||||
|
|
||||||
var reI18n *regexp.Regexp
|
var (
|
||||||
|
reI18nFrontend *regexp.Regexp
|
||||||
|
reI18nBackendObject *regexp.Regexp
|
||||||
|
reI18nBackendController *regexp.Regexp
|
||||||
|
)
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
reI18n, _ = regexp.Compile("i18next.t\\(\"(.*?)\"\\)")
|
reI18nFrontend, _ = regexp.Compile("i18next.t\\(\"(.*?)\"\\)")
|
||||||
|
reI18nBackendObject, _ = regexp.Compile("i18n.Translate\\((.*?)\"\\)")
|
||||||
|
reI18nBackendController, _ = regexp.Compile("c.T\\((.*?)\"\\)")
|
||||||
}
|
}
|
||||||
|
|
||||||
func getAllI18nStrings(fileContent string) []string {
|
func getAllI18nStringsFrontend(fileContent string) []string {
|
||||||
res := []string{}
|
res := []string{}
|
||||||
|
|
||||||
matches := reI18n.FindAllStringSubmatch(fileContent, -1)
|
matches := reI18nFrontend.FindAllStringSubmatch(fileContent, -1)
|
||||||
if matches == nil {
|
if matches == nil {
|
||||||
return res
|
return res
|
||||||
}
|
}
|
||||||
@ -46,6 +52,30 @@ func getAllI18nStrings(fileContent string) []string {
|
|||||||
return res
|
return res
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func getAllI18nStringsBackend(fileContent string, isObjectPackage bool) []string {
|
||||||
|
res := []string{}
|
||||||
|
if isObjectPackage {
|
||||||
|
matches := reI18nBackendObject.FindAllStringSubmatch(fileContent, -1)
|
||||||
|
if matches == nil {
|
||||||
|
return res
|
||||||
|
}
|
||||||
|
for _, match := range matches {
|
||||||
|
match := strings.SplitN(match[1], ",", 2)
|
||||||
|
res = append(res, match[1][2:])
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
matches := reI18nBackendController.FindAllStringSubmatch(fileContent, -1)
|
||||||
|
if matches == nil {
|
||||||
|
return res
|
||||||
|
}
|
||||||
|
for _, match := range matches {
|
||||||
|
res = append(res, match[1][1:])
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return res
|
||||||
|
}
|
||||||
|
|
||||||
func getAllFilePathsInFolder(folder string, fileSuffix string) []string {
|
func getAllFilePathsInFolder(folder string, fileSuffix string) []string {
|
||||||
res := []string{}
|
res := []string{}
|
||||||
err := filepath.Walk(folder,
|
err := filepath.Walk(folder,
|
||||||
@ -69,12 +99,25 @@ func getAllFilePathsInFolder(folder string, fileSuffix string) []string {
|
|||||||
return res
|
return res
|
||||||
}
|
}
|
||||||
|
|
||||||
func parseToData() *I18nData {
|
func parseEnData(category string) *I18nData {
|
||||||
|
var paths []string
|
||||||
|
if category == "backend" {
|
||||||
|
paths = getAllFilePathsInFolder("../", ".go")
|
||||||
|
} else {
|
||||||
|
paths = getAllFilePathsInFolder("../web/src", ".js")
|
||||||
|
}
|
||||||
|
|
||||||
allWords := []string{}
|
allWords := []string{}
|
||||||
paths := getAllFilePathsInFolder("../web/src", ".js")
|
|
||||||
for _, path := range paths {
|
for _, path := range paths {
|
||||||
fileContent := util.ReadStringFromPath(path)
|
fileContent := util.ReadStringFromPath(path)
|
||||||
words := getAllI18nStrings(fileContent)
|
|
||||||
|
var words []string
|
||||||
|
if category == "backend" {
|
||||||
|
isObjectPackage := strings.Contains(path, "object")
|
||||||
|
words = getAllI18nStringsBackend(fileContent, isObjectPackage)
|
||||||
|
} else {
|
||||||
|
words = getAllI18nStringsFrontend(fileContent)
|
||||||
|
}
|
||||||
allWords = append(allWords, words...)
|
allWords = append(allWords, words...)
|
||||||
}
|
}
|
||||||
fmt.Printf("%v\n", allWords)
|
fmt.Printf("%v\n", allWords)
|
||||||
|
@ -1,88 +0,0 @@
|
|||||||
// Copyright 2022 The Casdoor Authors. All Rights Reserved.
|
|
||||||
//
|
|
||||||
// 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 i18n
|
|
||||||
|
|
||||||
import (
|
|
||||||
"regexp"
|
|
||||||
"strings"
|
|
||||||
|
|
||||||
"github.com/casdoor/casdoor/util"
|
|
||||||
)
|
|
||||||
|
|
||||||
var (
|
|
||||||
reI18nBackendObject *regexp.Regexp
|
|
||||||
re18nBackendController *regexp.Regexp
|
|
||||||
)
|
|
||||||
|
|
||||||
func init() {
|
|
||||||
reI18nBackendObject, _ = regexp.Compile("i18n.Translate\\((.*?)\"\\)")
|
|
||||||
re18nBackendController, _ = regexp.Compile("c.T\\((.*?)\"\\)")
|
|
||||||
}
|
|
||||||
|
|
||||||
func GetAllI18nStrings(fileContent string, path string) []string {
|
|
||||||
res := []string{}
|
|
||||||
if strings.Contains(path, "object") {
|
|
||||||
matches := reI18nBackendObject.FindAllStringSubmatch(fileContent, -1)
|
|
||||||
if matches == nil {
|
|
||||||
return res
|
|
||||||
}
|
|
||||||
for _, match := range matches {
|
|
||||||
match := strings.SplitN(match[1], ",", 2)
|
|
||||||
res = append(res, match[1][2:])
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
matches := re18nBackendController.FindAllStringSubmatch(fileContent, -1)
|
|
||||||
if matches == nil {
|
|
||||||
return res
|
|
||||||
}
|
|
||||||
for _, match := range matches {
|
|
||||||
res = append(res, match[1][1:])
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return res
|
|
||||||
}
|
|
||||||
|
|
||||||
func getErrName(paths []string) map[string]string {
|
|
||||||
ErrName := make(map[string]string)
|
|
||||||
for i := 0; i < len(paths); i++ {
|
|
||||||
content := util.ReadStringFromPath(paths[i])
|
|
||||||
words := GetAllI18nStrings(content, paths[i])
|
|
||||||
for j := 0; j < len(words); j++ {
|
|
||||||
ErrName[words[j]] = paths[i]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return ErrName
|
|
||||||
}
|
|
||||||
|
|
||||||
func getI18nJSONData(errName map[string]string) *I18nData {
|
|
||||||
data := I18nData{}
|
|
||||||
for k, v := range errName {
|
|
||||||
var index int
|
|
||||||
if strings.Contains(v, "/") {
|
|
||||||
index = strings.LastIndex(v, "/")
|
|
||||||
} else {
|
|
||||||
index = strings.LastIndex(v, "\\")
|
|
||||||
}
|
|
||||||
namespace := v[index+1 : len(v)-3]
|
|
||||||
key := k[len(namespace)+1:]
|
|
||||||
// fmt.Printf("k=%s,v=%s,namespace=%s,key=%s\n", k, v, namespace, key)
|
|
||||||
if _, ok := data[namespace]; !ok {
|
|
||||||
data[namespace] = map[string]string{}
|
|
||||||
}
|
|
||||||
data[namespace][key] = key
|
|
||||||
}
|
|
||||||
return &data
|
|
||||||
}
|
|
@ -26,8 +26,8 @@ func applyToOtherLanguage(category string, language string, i18nData *I18nData)
|
|||||||
writeI18nFile(category, language, i18nData)
|
writeI18nFile(category, language, i18nData)
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestGenerateI18nStringsForFrontend(t *testing.T) {
|
func TestGenerateI18nFrontend(t *testing.T) {
|
||||||
enData := parseToData()
|
enData := parseEnData("frontend")
|
||||||
writeI18nFile("frontend", "en", enData)
|
writeI18nFile("frontend", "en", enData)
|
||||||
|
|
||||||
applyToOtherLanguage("frontend", "de", enData)
|
applyToOtherLanguage("frontend", "de", enData)
|
||||||
@ -39,13 +39,8 @@ func TestGenerateI18nStringsForFrontend(t *testing.T) {
|
|||||||
applyToOtherLanguage("frontend", "zh", enData)
|
applyToOtherLanguage("frontend", "zh", enData)
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestGenerateI18nStringsForBackend(t *testing.T) {
|
func TestGenerateI18nBackend(t *testing.T) {
|
||||||
paths := getAllFilePathsInFolder("../", ".go")
|
enData := parseEnData("backend")
|
||||||
|
|
||||||
errName := getErrName(paths)
|
|
||||||
|
|
||||||
enData := getI18nJSONData(errName)
|
|
||||||
|
|
||||||
writeI18nFile("backend", "en", enData)
|
writeI18nFile("backend", "en", enData)
|
||||||
|
|
||||||
applyToOtherLanguage("backend", "de", enData)
|
applyToOtherLanguage("backend", "de", enData)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user