2019-07-26 00:36:33 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
# Realiza el deploy de un sitio
|
2019-09-16 16:44:29 +00:00
|
|
|
class DeployJob < ApplicationJob
|
2019-09-25 22:34:39 +00:00
|
|
|
class DeployException < StandardError; end
|
|
|
|
|
|
|
|
# rubocop:disable Metrics/MethodLength
|
2019-07-26 00:36:33 +00:00
|
|
|
def perform(site)
|
2019-09-18 19:28:30 +00:00
|
|
|
ActiveRecord::Base.connection_pool.with_connection do
|
2019-09-25 22:34:39 +00:00
|
|
|
@site = Site.find(site)
|
|
|
|
@site.update_attribute :status, 'building'
|
2019-09-18 19:28:30 +00:00
|
|
|
# Asegurarse que DeployLocal sea el primero!
|
2019-09-25 22:34:39 +00:00
|
|
|
@deployed = { deploy_local: deploy_locally }
|
2019-07-26 00:36:33 +00:00
|
|
|
|
2019-09-18 19:28:30 +00:00
|
|
|
# No es opcional
|
2019-09-25 22:34:39 +00:00
|
|
|
unless @deployed[:deploy_local]
|
|
|
|
@site.update_attribute :status, 'waiting'
|
2020-01-24 15:12:49 +00:00
|
|
|
notify_usuaries
|
|
|
|
|
|
|
|
# Hacer fallar la tarea
|
2019-09-25 22:34:39 +00:00
|
|
|
raise DeployException, deploy_local.build_stats.last.log
|
2019-09-18 19:28:30 +00:00
|
|
|
end
|
2019-07-26 00:36:33 +00:00
|
|
|
|
2019-09-25 22:34:39 +00:00
|
|
|
deploy_others
|
|
|
|
notify_usuaries
|
|
|
|
@site.update_attribute :status, 'waiting'
|
2019-09-18 19:28:30 +00:00
|
|
|
end
|
2019-07-26 00:36:33 +00:00
|
|
|
end
|
2019-09-25 22:34:39 +00:00
|
|
|
# rubocop:enable Metrics/MethodLength
|
2019-07-26 00:36:33 +00:00
|
|
|
|
|
|
|
private
|
|
|
|
|
2019-09-25 22:34:39 +00:00
|
|
|
def deploy_local
|
|
|
|
@deploy_local ||= @site.deploys.find_by(type: 'DeployLocal')
|
|
|
|
end
|
|
|
|
|
|
|
|
def deploy_locally
|
|
|
|
deploy_local.deploy
|
2019-07-26 00:36:33 +00:00
|
|
|
end
|
|
|
|
|
2019-09-25 22:34:39 +00:00
|
|
|
def deploy_others
|
|
|
|
@site.deploys.where.not(type: 'DeployLocal').find_each do |d|
|
|
|
|
@deployed[d.type.underscore.to_sym] = d.deploy
|
2019-07-26 00:36:33 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-09-25 22:34:39 +00:00
|
|
|
def notify_usuaries
|
2020-03-24 17:14:55 +00:00
|
|
|
@site.roles.where(rol: 'usuarie', temporal: false).pluck(:usuaries_id).each do |usuarie|
|
|
|
|
DeployMailer.with(usuarie: usuarie, site: @site.id)
|
2019-09-25 22:34:39 +00:00
|
|
|
.deployed(@deployed)
|
2019-07-26 00:36:33 +00:00
|
|
|
.deliver_now
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|