pixab 1.1.1 → 1.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/exe/pixab +1 -1
- data/lib/Localization.rb +31 -15
- data/lib/LocalizationPlatform.rb +30 -18
- data/lib/pixab/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ea6c43ec698584f8f91743cae24ae667d94ddc2ccca5d815e1581017971410d8
|
4
|
+
data.tar.gz: 64ccf850cfadb45aef2e666925f1461ea623c3e531b6919e0c8d4638cbc17e8b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f32fcff490af540814963d60e8c996728bcba783dde83355da7e2d1ac2093494dcd9b908d759496c585b65d31c0b0e80471b51e21039ed1fbc382f72233856f2
|
7
|
+
data.tar.gz: c1cb8b128137fb128cceabd0b7deaf04df27ae6cc6fc0aef38f7b3706e1a7881c65e3ae45625862f8edc77c9a9526cbae0eadae2f9c1378478e82eca5a335deb
|
data/exe/pixab
CHANGED
@@ -19,7 +19,7 @@ when 'sync'
|
|
19
19
|
commands = ["-m"]
|
20
20
|
if !synchronizer.updated_repo_names.empty?
|
21
21
|
default_commit_msg = "[Feature]Update"
|
22
|
-
updated_repo_names.each do |repo_name|
|
22
|
+
synchronizer.updated_repo_names.each do |repo_name|
|
23
23
|
default_commit_msg += " #{repo_name}"
|
24
24
|
end
|
25
25
|
commands.push("--commit-m")
|
data/lib/Localization.rb
CHANGED
@@ -27,21 +27,18 @@ module Pixab
|
|
27
27
|
add_project(Project_AirBrush)
|
28
28
|
when '--project-abv'
|
29
29
|
add_project(Project_AirBrush_Video)
|
30
|
-
when '--tags'
|
31
|
-
@tags = commands[index + 1]
|
32
|
-
when '--platform'
|
33
|
-
@platform = commands[index + 1]
|
34
|
-
when '--mode'
|
35
|
-
@mode = commands[index + 1]
|
36
30
|
when '--ab-android'
|
37
31
|
@projects = "#{Project_AirBrush},#{Project_AirBrush_Video}"
|
38
32
|
@platform = 'android'
|
33
|
+
@tags = 'android'
|
39
34
|
when '--ab-iOS'
|
40
35
|
@projects = "#{Project_AirBrush}"
|
41
36
|
@mode = 'add'
|
37
|
+
@tags = 'iOS'
|
42
38
|
when '--abv-iOS'
|
43
39
|
@projects = "#{Project_AirBrush_Video}"
|
44
40
|
@mode = 'add'
|
41
|
+
@tags = 'iOS'
|
45
42
|
end
|
46
43
|
end
|
47
44
|
|
@@ -50,6 +47,12 @@ module Pixab
|
|
50
47
|
case command
|
51
48
|
when '--projects'
|
52
49
|
@projects = commands[index + 1]
|
50
|
+
when '--tags'
|
51
|
+
@tags = commands[index + 1]
|
52
|
+
when '--platform'
|
53
|
+
@platform = commands[index + 1]
|
54
|
+
when '--mode'
|
55
|
+
@mode = commands[index + 1]
|
53
56
|
end
|
54
57
|
end
|
55
58
|
|
@@ -70,14 +73,23 @@ module Pixab
|
|
70
73
|
localized_info_category = {}
|
71
74
|
project_array = projects.split(',')
|
72
75
|
project_array.each do |project|
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
76
|
+
page_number = 1
|
77
|
+
while true
|
78
|
+
link = "\"https://api.phrase.com/v2/projects/#{project}/translations?page=#{page_number}&per_page=100&sort=created_at"
|
79
|
+
if !tags.nil?
|
80
|
+
link += "&q=tags:#{tags}"
|
81
|
+
end
|
82
|
+
link += "\""
|
83
|
+
access_token = "-u #{ACCESS_TOKEN}:"
|
84
|
+
localized_string = `curl #{link} #{access_token}`
|
85
|
+
per_localized_info_category = assemble_data(localized_string)
|
86
|
+
if per_localized_info_category.empty?
|
87
|
+
break
|
88
|
+
end
|
89
|
+
localized_info_category.merge!(per_localized_info_category) do |key, oldval, newval|
|
90
|
+
oldval + newval
|
91
|
+
end
|
92
|
+
page_number += 1
|
81
93
|
end
|
82
94
|
end
|
83
95
|
return localized_info_category
|
@@ -85,8 +97,12 @@ module Pixab
|
|
85
97
|
|
86
98
|
# 重新组装本地化数据
|
87
99
|
def assemble_data(string)
|
88
|
-
|
100
|
+
if string.nil? || string.empty?
|
101
|
+
return {}
|
102
|
+
end
|
103
|
+
|
89
104
|
localized_info_category = {}
|
105
|
+
objects = JSON.parse(string)
|
90
106
|
objects.each do |object|
|
91
107
|
locale_name = object["locale"]["name"]
|
92
108
|
localized_infos = localized_info_category[locale_name]
|
data/lib/LocalizationPlatform.rb
CHANGED
@@ -16,15 +16,16 @@ module Pixab
|
|
16
16
|
end
|
17
17
|
|
18
18
|
def resolve_commands(commands)
|
19
|
-
if
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
19
|
+
if commands.nil?
|
20
|
+
return
|
21
|
+
end
|
22
|
+
commands.each_index do |index|
|
23
|
+
command = commands[index]
|
24
|
+
case command
|
25
|
+
when "--mode"
|
26
|
+
mode = commands[index + 1]
|
27
|
+
if mode == 'add'
|
28
|
+
@file_mode = 'a+'
|
28
29
|
end
|
29
30
|
end
|
30
31
|
end
|
@@ -48,18 +49,29 @@ module Pixab
|
|
48
49
|
def run(localized_info_category, commands)
|
49
50
|
super(localized_info_category, commands)
|
50
51
|
|
52
|
+
begin_prompt = "\n// Created from phrase api <<<<<<<<<< begin\n"
|
53
|
+
end_prompt = "\n// Created from phrase api <<<<<<<<<< end\n"
|
54
|
+
|
51
55
|
localized_info_category.each do |locale, localized_infos|
|
52
56
|
content_dir_path = dir_name(locale)
|
53
57
|
if !Dir.exists?(content_dir_path)
|
54
58
|
FileUtils.mkdir_p content_dir_path
|
55
59
|
end
|
56
60
|
content_file_path = "#{content_dir_path}/#{File_name}"
|
57
|
-
|
58
|
-
|
61
|
+
if @file_mode == 'a+' and File::exists?(content_file_path)
|
62
|
+
# 移除以前脚本添加的本地化文案
|
63
|
+
content = File.read(content_file_path)
|
64
|
+
content = content.sub(/#{begin_prompt}.*#{end_prompt}/m, '')
|
65
|
+
File.open(content_file_path, 'w+') do |file|
|
66
|
+
file.syswrite(content)
|
67
|
+
end
|
68
|
+
end
|
69
|
+
File.open(content_file_path, @file_mode) do |file|
|
70
|
+
file.syswrite(begin_prompt)
|
59
71
|
localized_infos.each do |localized_info|
|
60
|
-
|
72
|
+
file.syswrite("\n\"#{localized_info['key']}\" = \"#{localized_info['value']}\";\n")
|
61
73
|
end
|
62
|
-
|
74
|
+
file.syswrite(end_prompt)
|
63
75
|
end
|
64
76
|
end
|
65
77
|
end
|
@@ -92,13 +104,13 @@ module Pixab
|
|
92
104
|
FileUtils.mkdir_p content_dir_path
|
93
105
|
end
|
94
106
|
content_file_path = "#{content_dir_path}/#{File_name}"
|
95
|
-
File.open(content_file_path, @file_mode) do |
|
96
|
-
|
97
|
-
|
107
|
+
File.open(content_file_path, @file_mode) do |file|
|
108
|
+
file.syswrite("<?xml version=\"1.0\" encoding=\"utf-8\"?>\n")
|
109
|
+
file.syswrite("<resources>\n")
|
98
110
|
localized_infos.each do |localized_info|
|
99
|
-
|
111
|
+
file.syswrite(" <string name=\"#{localized_info['key']}\">#{localized_info['value']}</string>\n")
|
100
112
|
end
|
101
|
-
|
113
|
+
file.syswrite("</resources>\n")
|
102
114
|
end
|
103
115
|
end
|
104
116
|
end
|
data/lib/pixab/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pixab
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- 廖再润
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-01-
|
11
|
+
date: 2023-01-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: colored2
|