2023-03-18 18:50:05 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class DeployFullRsync < DeployRsync
|
|
|
|
DEPENDENCIES = %i[
|
|
|
|
deploy_alternative_domain
|
|
|
|
deploy_hidden_service
|
|
|
|
deploy_local
|
|
|
|
deploy_www
|
2023-03-18 22:33:25 +00:00
|
|
|
deploy_zip
|
2023-03-18 18:50:05 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
# Sincroniza las ubicaciones alternativas también
|
|
|
|
#
|
|
|
|
# @param :output [Boolean]
|
|
|
|
# @return [Boolean]
|
|
|
|
def rsync(output: false)
|
|
|
|
DEPENDENCIES.map(&:to_s).map(&:classify).map do |dependency|
|
|
|
|
site.deploys.where(type: dependency).find_each.map do |deploy|
|
|
|
|
run %(rsync -aviH --delete-after --timeout=5 #{Shellwords.escape deploy.destination} #{Shellwords.escape destination}), output: output
|
|
|
|
end
|
|
|
|
end.flatten.all?
|
|
|
|
end
|
2023-03-18 19:52:36 +00:00
|
|
|
|
|
|
|
def url
|
|
|
|
"https://#{user_host.last}/"
|
|
|
|
end
|
2023-03-18 18:50:05 +00:00
|
|
|
end
|