Welcome to mirror list, hosted at ThFree Co, Russian Federation.

pages_worker.rb « workers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8c99e8dbe763c31f951e757d7db2b78e67bb40c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
class PagesWorker
  include Sidekiq::Worker

  sidekiq_options queue: :pages, retry: false

  def perform(action, *arg)
    send(action, *arg)
  end

  def deploy(build_id)
    build = Ci::Build.find_by(id: build_id)
    Projects::UpdatePagesService.new(build.project, build).execute
  end

  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
end