Class: Wordmove::Deployer::Base

Inherits:
Object
  • Object
show all
Defined in:
lib/wordmove/deployer/base.rb

Direct Known Subclasses

FTP, SSH

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(environment, options = {}) ⇒ Base

Returns a new instance of Base.



36
37
38
39
40
# File 'lib/wordmove/deployer/base.rb', line 36

def initialize(environment, options = {})
  @environment = environment.to_sym
  @options = options
  @logger = self.class.logger
end

Instance Attribute Details

#environmentObject (readonly)

Returns the value of attribute environment.



6
7
8
# File 'lib/wordmove/deployer/base.rb', line 6

def environment
  @environment
end

#loggerObject (readonly)

Returns the value of attribute logger.



5
6
7
# File 'lib/wordmove/deployer/base.rb', line 5

def logger
  @logger
end

#optionsObject (readonly)

Returns the value of attribute options.



4
5
6
# File 'lib/wordmove/deployer/base.rb', line 4

def options
  @options
end

Class Method Details

.current_dirObject



27
28
29
# File 'lib/wordmove/deployer/base.rb', line 27

def current_dir
  '.'
end

.deployer_for(cli_options) ⇒ Object

Raises:



9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# File 'lib/wordmove/deployer/base.rb', line 9

def deployer_for(cli_options)
  movefile = Wordmove::Movefile.new(cli_options[:config])
  options = movefile.fetch.merge! cli_options
  environment = movefile.environment(cli_options)

  return FTP.new(environment, options) if options[environment][:ftp]

  if options[environment][:ssh] && options[:global][:sql_adapter] == 'wpcli'
    return Ssh::WpcliSqlAdapter.new(environment, options)
  end

  if options[environment][:ssh] && options[:global][:sql_adapter] == 'default'
    return Ssh::DefaultSqlAdapter.new(environment, options)
  end

  raise NoAdapterFound, "No valid adapter found."
end

.loggerObject



31
32
33
# File 'lib/wordmove/deployer/base.rb', line 31

def logger
  Logger.new(STDOUT).tap { |l| l.level = Logger::DEBUG }
end

Instance Method Details

#exclude_dir_contents(path) ⇒ Object



70
71
72
# File 'lib/wordmove/deployer/base.rb', line 70

def exclude_dir_contents(path)
  "#{path}/*"
end

#pull_dbObject



46
47
48
# File 'lib/wordmove/deployer/base.rb', line 46

def pull_db
  logger.task "Pulling Database"
end

#pull_wordpressObject



85
86
87
88
89
90
91
92
93
94
# File 'lib/wordmove/deployer/base.rb', line 85

def pull_wordpress
  logger.task "Pulling wordpress core"

  local_path = local_options[:wordpress_path]
  remote_path = remote_options[:wordpress_path]
  exclude_wp_content = exclude_dir_contents(remote_wp_content_dir.relative_path)
  exclude_paths = paths_to_exclude.push(exclude_wp_content)

  remote_get_directory(remote_path, local_path, exclude_paths)
end

#push_dbObject



42
43
44
# File 'lib/wordmove/deployer/base.rb', line 42

def push_db
  logger.task "Pushing Database"
end

#push_wordpressObject



74
75
76
77
78
79
80
81
82
83
# File 'lib/wordmove/deployer/base.rb', line 74

def push_wordpress
  logger.task "Pushing wordpress core"

  local_path = local_options[:wordpress_path]
  remote_path = remote_options[:wordpress_path]
  exclude_wp_content = exclude_dir_contents(local_wp_content_dir.relative_path)
  exclude_paths = paths_to_exclude.push(exclude_wp_content)

  remote_put_directory(local_path, remote_path, exclude_paths)
end

#remote_get_directory(directory) ⇒ Object



50
# File 'lib/wordmove/deployer/base.rb', line 50

def remote_get_directory(directory); end

#remote_put_directory(directory) ⇒ Object



52
# File 'lib/wordmove/deployer/base.rb', line 52

def remote_put_directory(directory); end