2018-06-27 03:23:28 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-11-03 15:28:07 -05:00
|
|
|
class PagesWorker
|
2017-11-28 11:08:30 -05:00
|
|
|
include ApplicationWorker
|
2015-11-03 15:28:07 -05:00
|
|
|
|
2018-03-05 07:57:48 -05:00
|
|
|
sidekiq_options retry: 3
|
2015-11-03 15:28:07 -05:00
|
|
|
|
2015-12-18 07:07:53 -05:00
|
|
|
def perform(action, *arg)
|
2017-08-03 22:20:34 -04:00
|
|
|
send(action, *arg) # rubocop:disable GitlabSecurity/PublicSend
|
2015-12-18 07:07:53 -05:00
|
|
|
end
|
|
|
|
|
2018-08-27 11:31:01 -04:00
|
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
2015-12-18 07:07:53 -05:00
|
|
|
def deploy(build_id)
|
2016-01-15 06:21:52 -05:00
|
|
|
build = Ci::Build.find_by(id: build_id)
|
2016-02-09 12:06:55 -05:00
|
|
|
result = Projects::UpdatePagesService.new(build.project, build).execute
|
|
|
|
if result[:status] == :success
|
|
|
|
result = Projects::UpdatePagesConfigurationService.new(build.project).execute
|
|
|
|
end
|
2018-01-11 11:34:01 -05:00
|
|
|
|
2016-02-09 12:06:55 -05:00
|
|
|
result
|
2015-12-16 10:29:53 -05:00
|
|
|
end
|
2018-08-27 11:31:01 -04:00
|
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
2015-11-03 15:28:07 -05:00
|
|
|
|
2015-12-18 07:07:53 -05:00
|
|
|
def remove(namespace_path, project_path)
|
|
|
|
full_path = File.join(Settings.pages.path, namespace_path, project_path)
|
|
|
|
FileUtils.rm_r(full_path, force: true)
|
|
|
|
end
|
2015-11-03 15:28:07 -05:00
|
|
|
end
|