fastlane-plugin-transifex_tool 0.1.0

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 6dfbf27d82ce861e2a4c85db1650ee71eb13d50f
4
+ data.tar.gz: 4fcdba9c9b407937c1e52b9bdec0823f153cbcd7
5
+ SHA512:
6
+ metadata.gz: 42a503399a14081e4303143b464b9760c1a3e024c77851d7ac3d982f17610187886a25aec5f1f89594bf2155c59fcfb8e577b84b3884ff5f75667b9a9f644914
7
+ data.tar.gz: bc22f5afe1e0abf43ba1ad82e5a4954b2f6c9518277bd903e465750d6eed0758f5427ea7c66c55cf140d2289cba53af99bb6e168e33d859feb1fb3e3b0ce9b93
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2019 maydin <maydin@gmail.com>
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,63 @@
1
+ # transifex_tool plugin
2
+
3
+ [![fastlane Plugin Badge](https://rawcdn.githack.com/fastlane/fastlane/master/fastlane/assets/plugin-badge.svg)](https://rubygems.org/gems/fastlane-plugin-transifex_tool)
4
+
5
+ ## Getting Started
6
+
7
+ This project is a [_fastlane_](https://github.com/fastlane/fastlane) plugin. To get started with `fastlane-plugin-transifex_tool`, add it to your project by running:
8
+
9
+ ```bash
10
+ fastlane add_plugin transifex_tool
11
+ ```
12
+
13
+ ## About transifex_tool
14
+
15
+ Transifex tool that pulls translations using transifex rest api. It is also a wrapper for cli client tool for pull and push commands.
16
+
17
+ ## Actions
18
+
19
+ ### cli_pull
20
+ This action is running `tx pull -a -f --mode=reviewed` command.
21
+
22
+ ### cli_push
23
+ This action is running `tx push -s -f` command.
24
+
25
+ ### rest_pull
26
+ This action is for downloading translations using transifex rest api. Path for the saving the translations could be an absolute path or a relative path. In case of a relative path, note that every action and every plugin's code runs in the root of the project, while all user code from the Fastfile runs inside the ./fastlane directory.
27
+
28
+ Transifex user_name and password could be used and also a token could be used for rest api calls. If you want to use token, user_name should be `api` and password should be the token.
29
+
30
+ `rest_pull(user_name:"api", password:"token", project:"project", resource:"resource", lang_code:"lang_code", path:"path")`
31
+
32
+ ## Example
33
+
34
+ Check out the [example `Fastfile`](fastlane/Fastfile) to see how to use this plugin. Try it by cloning the repo, running `fastlane install_plugins` and `bundle exec fastlane test`.
35
+
36
+ ## Run tests for this plugin
37
+
38
+ To run both the tests, and code style validation, run
39
+
40
+ ```
41
+ rake
42
+ ```
43
+
44
+ To automatically fix many of the styling issues, use
45
+ ```
46
+ rubocop -a
47
+ ```
48
+
49
+ ## Issues and Feedback
50
+
51
+ For any other issues and feedback about this plugin, please submit it to this repository.
52
+
53
+ ## Troubleshooting
54
+
55
+ If you have trouble using plugins, check out the [Plugins Troubleshooting](https://docs.fastlane.tools/plugins/plugins-troubleshooting/) guide.
56
+
57
+ ## Using _fastlane_ Plugins
58
+
59
+ For more information about how the `fastlane` plugin system works, check out the [Plugins documentation](https://docs.fastlane.tools/plugins/create-plugin/).
60
+
61
+ ## About _fastlane_
62
+
63
+ _fastlane_ is the easiest way to automate beta deployments and releases for your iOS and Android apps. To learn more, check out [fastlane.tools](https://fastlane.tools).
@@ -0,0 +1,16 @@
1
+ require 'fastlane/plugin/transifex_tool/version'
2
+
3
+ module Fastlane
4
+ module TransifexTool
5
+ # Return all .rb files inside the "actions" and "helper" directory
6
+ def self.all_classes
7
+ Dir[File.expand_path('**/{actions,helper}/*.rb', File.dirname(__FILE__))]
8
+ end
9
+ end
10
+ end
11
+
12
+ # By default we want to import all available actions and helpers
13
+ # A plugin can contain any number of actions and plugins
14
+ Fastlane::TransifexTool.all_classes.each do |current|
15
+ require current
16
+ end
@@ -0,0 +1,63 @@
1
+ require 'fastlane/action'
2
+ require_relative '../helper/transifex_tool_helper'
3
+
4
+ module Fastlane
5
+ module Actions
6
+ class CliPullAction < Action
7
+ def self.run(params)
8
+ begin
9
+ sh "tx", "--version"
10
+ rescue => ex
11
+ UI.user_error!("Please install transifex cli client https://docs.transifex.com/client/introduction.")
12
+ end
13
+
14
+ unless File.exist?(".tx/config")
15
+ UI.user_error!("Make sure you initialized transifex.")
16
+ end
17
+
18
+ sh "tx","pull", "-a", "-f", "--mode=reviewed" do |status, result, command|
19
+ unless status.success?
20
+ UI.error "Command #{command} (pid #{status.pid}) failed with status #{status.exitstatus}"
21
+ end
22
+ UI.message "Output is #{result.inspect}"
23
+ end
24
+ end
25
+
26
+ def self.description
27
+ "Transifex tool that pulls translations using transifex cli client"
28
+ end
29
+
30
+ def self.authors
31
+ ["maydin"]
32
+ end
33
+
34
+ def self.return_value
35
+ # If your method provides a return value, you can describe here what it does
36
+ end
37
+
38
+ def self.details
39
+ # Optional:
40
+ "Transifex tool that pulls translations using transifex rest api. It also wraps transifex cli client for pull and push.
41
+ Make sure transifex cli is installed and ~/.transifexrc file has correct permissions."
42
+ end
43
+
44
+ def self.available_options
45
+ [
46
+ # FastlaneCore::ConfigItem.new(key: :your_option,
47
+ # env_name: "TRANSIFEX_TOOL_YOUR_OPTION",
48
+ # description: "A description of your option",
49
+ # optional: false,
50
+ # type: String)
51
+ ]
52
+ end
53
+
54
+ def self.is_supported?(platform)
55
+ # Adjust this if your plugin only works for a particular platform (iOS vs. Android, for example)
56
+ # See: https://docs.fastlane.tools/advanced/#control-configuration-by-lane-and-by-platform
57
+ #
58
+ # [:ios, :mac, :android].include?(platform)
59
+ true
60
+ end
61
+ end
62
+ end
63
+ end
@@ -0,0 +1,64 @@
1
+ require 'fastlane/action'
2
+ require_relative '../helper/transifex_tool_helper'
3
+
4
+ module Fastlane
5
+ module Actions
6
+ class CliPushAction < Action
7
+ def self.run(params)
8
+
9
+ begin
10
+ sh "tx", "--version"
11
+ rescue => ex
12
+ UI.user_error!("Please install transifex cli client https://docs.transifex.com/client/introduction.")
13
+ end
14
+
15
+ unless File.exist?(".tx/config")
16
+ UI.user_error!("Make sure you initialized transifex.")
17
+ end
18
+
19
+ sh "tx","push", "-s", "-f" do |status, result, command|
20
+ unless status.success?
21
+ UI.error "Command #{command} (pid #{status.pid}) failed with status #{status.exitstatus}"
22
+ end
23
+ UI.message "Output is #{result.inspect}"
24
+ end
25
+ end
26
+
27
+ def self.description
28
+ "Transifex tool that push translations using transifex cli client"
29
+ end
30
+
31
+ def self.authors
32
+ ["maydin"]
33
+ end
34
+
35
+ def self.return_value
36
+ # If your method provides a return value, you can describe here what it does
37
+ end
38
+
39
+ def self.details
40
+ # Optional:
41
+ "Transifex tool that pulls translations using transifex rest api. It also wraps transifex cli client for pull and push.
42
+ Make sure transifex cli is installed and ~/.transifexrc file has correct permissions."
43
+ end
44
+
45
+ def self.available_options
46
+ [
47
+ # FastlaneCore::ConfigItem.new(key: :your_option,
48
+ # env_name: "TRANSIFEX_TOOL_YOUR_OPTION",
49
+ # description: "A description of your option",
50
+ # optional: false,
51
+ # type: String)
52
+ ]
53
+ end
54
+
55
+ def self.is_supported?(platform)
56
+ # Adjust this if your plugin only works for a particular platform (iOS vs. Android, for example)
57
+ # See: https://docs.fastlane.tools/advanced/#control-configuration-by-lane-and-by-platform
58
+ #
59
+ # [:ios, :mac, :android].include?(platform)
60
+ true
61
+ end
62
+ end
63
+ end
64
+ end
@@ -0,0 +1,94 @@
1
+ require 'fastlane/action'
2
+ require_relative '../helper/transifex_tool_helper'
3
+
4
+ module Fastlane
5
+ module Actions
6
+ class RestPullAction < Action
7
+ def self.run(params)
8
+ require 'net/http'
9
+
10
+ user_name = params[:user_name].shellescape
11
+ password = params[:password].shellescape
12
+ project = params[:project].shellescape
13
+ resource = params[:resource].shellescape
14
+ lang_code = params[:lang_code].shellescape
15
+ path = params[:path].shellescape
16
+
17
+ url = "https://www.transifex.com/api/2/project/#{project}/resource/#{resource}/translation/#{lang_code}?file=1"
18
+
19
+ uri = URI.parse(url)
20
+ request = Net::HTTP::Get.new(uri)
21
+ request.basic_auth(user_name, password)
22
+
23
+ req_options = {
24
+ use_ssl: uri.scheme == "https",
25
+ }
26
+
27
+ response = Net::HTTP.start(uri.hostname, uri.port, req_options) do |http|
28
+ http.request(request)
29
+ end
30
+
31
+ open(path, "wb") do |file|
32
+ file.write(response.body)
33
+ end
34
+ end
35
+
36
+ def self.description
37
+ "Transifex plugin for pull and push translations"
38
+ end
39
+
40
+ def self.authors
41
+ ["Murat AYDIN"]
42
+ end
43
+
44
+ def self.return_value
45
+ # If your method provides a return value, you can describe here what it does
46
+ end
47
+
48
+ def self.details
49
+ # Optional:
50
+ "This plugin is used for pulling and pushing translations using the transifex api."
51
+ end
52
+
53
+ def self.available_options
54
+ [
55
+ FastlaneCore::ConfigItem.new(key: :user_name,
56
+ env_name: "TRANSIFEX_API_USER_NAME",
57
+ description: "Transifex API Token",
58
+ optional: false,
59
+ type: String),
60
+ FastlaneCore::ConfigItem.new(key: :password,
61
+ env_name: "TRANSIFEX_API_PASSWORD",
62
+ description: "A description of your option",
63
+ optional: false,
64
+ type: String),
65
+ FastlaneCore::ConfigItem.new(key: :project,
66
+ env_name: "TRANSIFEX_API_PROJECT",
67
+ description: "Transifex Project Name",
68
+ optional: false,
69
+ type: String),
70
+ FastlaneCore::ConfigItem.new(key: :resource,
71
+ env_name: "TRANSIFEX_API_PROJECT",
72
+ description: "Transifex resource name",
73
+ optional: false,
74
+ type: String),
75
+ FastlaneCore::ConfigItem.new(key: :lang_code,
76
+ env_name: "TRANSIFEX_API_LANGUAGE_CODE",
77
+ description: "Transifex Language Code",
78
+ optional: false,
79
+ type: String),
80
+ FastlaneCore::ConfigItem.new(key: :path,
81
+ env_name: "TRANSIFEX_API_PATH",
82
+ description: "Path where to save translations",
83
+ optional: false,
84
+ type: String)
85
+ ]
86
+ end
87
+
88
+ def self.is_supported?(platform)
89
+ [:ios, :android].include?(platform)
90
+ true
91
+ end
92
+ end
93
+ end
94
+ end
@@ -0,0 +1,16 @@
1
+ require 'fastlane_core/ui/ui'
2
+
3
+ module Fastlane
4
+ UI = FastlaneCore::UI unless Fastlane.const_defined?("UI")
5
+
6
+ module Helper
7
+ class TransifexToolHelper
8
+ # class methods that you define here become available in your action
9
+ # as `Helper::TransifexToolHelper.your_method`
10
+ #
11
+ def self.show_message
12
+ UI.message("Hello from the transifex_tool plugin helper!")
13
+ end
14
+ end
15
+ end
16
+ end
@@ -0,0 +1,5 @@
1
+ module Fastlane
2
+ module TransifexTool
3
+ VERSION = "0.1.0"
4
+ end
5
+ end
metadata ADDED
@@ -0,0 +1,177 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: fastlane-plugin-transifex_tool
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - maydin
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2019-01-25 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: pry
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rspec_junit_formatter
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: rake
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: rubocop
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - '='
88
+ - !ruby/object:Gem::Version
89
+ version: 0.49.1
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - '='
95
+ - !ruby/object:Gem::Version
96
+ version: 0.49.1
97
+ - !ruby/object:Gem::Dependency
98
+ name: rubocop-require_tools
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ - !ruby/object:Gem::Dependency
112
+ name: simplecov
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - ">="
116
+ - !ruby/object:Gem::Version
117
+ version: '0'
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - ">="
123
+ - !ruby/object:Gem::Version
124
+ version: '0'
125
+ - !ruby/object:Gem::Dependency
126
+ name: fastlane
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - ">="
130
+ - !ruby/object:Gem::Version
131
+ version: 2.113.0
132
+ type: :development
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - ">="
137
+ - !ruby/object:Gem::Version
138
+ version: 2.113.0
139
+ description:
140
+ email: maydin@gmail.com
141
+ executables: []
142
+ extensions: []
143
+ extra_rdoc_files: []
144
+ files:
145
+ - LICENSE
146
+ - README.md
147
+ - lib/fastlane/plugin/transifex_tool.rb
148
+ - lib/fastlane/plugin/transifex_tool/actions/cli_pull.rb
149
+ - lib/fastlane/plugin/transifex_tool/actions/cli_push.rb
150
+ - lib/fastlane/plugin/transifex_tool/actions/rest_pull.rb
151
+ - lib/fastlane/plugin/transifex_tool/helper/transifex_tool_helper.rb
152
+ - lib/fastlane/plugin/transifex_tool/version.rb
153
+ homepage: https://github.com/maydin/fastlane-plugin-transifex_tool
154
+ licenses:
155
+ - MIT
156
+ metadata: {}
157
+ post_install_message:
158
+ rdoc_options: []
159
+ require_paths:
160
+ - lib
161
+ required_ruby_version: !ruby/object:Gem::Requirement
162
+ requirements:
163
+ - - ">="
164
+ - !ruby/object:Gem::Version
165
+ version: '0'
166
+ required_rubygems_version: !ruby/object:Gem::Requirement
167
+ requirements:
168
+ - - ">="
169
+ - !ruby/object:Gem::Version
170
+ version: '0'
171
+ requirements: []
172
+ rubyforge_project:
173
+ rubygems_version: 2.5.2
174
+ signing_key:
175
+ specification_version: 4
176
+ summary: Transifex tool that pulls translations using transifex rest api
177
+ test_files: []