Class: DPL::Provider::Transifex

Inherits:
DPL::Provider show all
Defined in:
lib/dpl/provider/transifex.rb

Constant Summary collapse

DEFAULT_CLIENT_VERSION =
'>=0.11'
DEFAULT_HOSTNAME =
'https://www.transifex.com'

Instance Attribute Summary

Attributes inherited from DPL::Provider

#context, #options

Instance Method Summary collapse

Methods inherited from DPL::Provider

apt_get, #check_app, #cleanup, #commit_msg, context, #create_key, #deploy, #detect_encoding?, #encoding_for, #error, experimental, #initialize, #log, new, npm_g, #option, pip, requires, #run, #setup_git_credentials, #setup_git_ssh, #sha, shell, #uncleanup, #user_agent, #warn

Constructor Details

This class inherits a constructor from DPL::Provider

Instance Method Details

#check_authObject



18
19
20
21
22
# File 'lib/dpl/provider/transifex.rb', line 18

def check_auth
  install_deploy_dependencies
  write_transifexrc
  context.shell 'tx status'
end

#install_deploy_dependenciesObject



9
10
11
12
# File 'lib/dpl/provider/transifex.rb', line 9

def install_deploy_dependencies
  cli_version = options[:cli_version] || DEFAULT_CLIENT_VERSION
  self.class.pip 'transifex', 'transifex', cli_version
end

#needs_key?Boolean

Returns:

  • (Boolean)


14
15
16
# File 'lib/dpl/provider/transifex.rb', line 14

def needs_key?
  false
end

#push_appObject



24
25
26
# File 'lib/dpl/provider/transifex.rb', line 24

def push_app
  source_push
end

#source_pushObject



40
41
42
# File 'lib/dpl/provider/transifex.rb', line 40

def source_push
  context.shell 'tx push --source --no-interactive', retry: true
end

#write_transifexrcObject



28
29
30
31
32
33
34
35
36
37
38
# File 'lib/dpl/provider/transifex.rb', line 28

def write_transifexrc
  File.open(File.expand_path('~/.transifexrc'), 'w') do |f|
    f.puts [
      "[#{options[:hostname] || DEFAULT_HOSTNAME}]",
      "hostname = #{options[:hostname] || DEFAULT_HOSTNAME}",
      "username = #{options[:username]}",
      "password = #{options[:password]}",
      "token = #{options[:token]}",
    ].join("\n")
  end
end