builds.rb 874 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
module Ci
  module Migrate
    class Builds
      attr_reader :app_builds_dir, :backup_builds_tarball, :backup_dir

      def initialize
        @app_builds_dir = Settings.gitlab_ci.builds_path
        @backup_dir = Gitlab.config.backup.path
        @backup_builds_tarball = File.join(backup_dir, 'builds/builds.tar.gz')
      end

      def restore
        backup_existing_builds_dir

        FileUtils.mkdir_p(app_builds_dir, mode: 0700)
16
        unless system('tar', '-C', app_builds_dir, '-zxf', backup_builds_tarball)
17 18 19 20 21 22 23 24 25 26 27 28 29
          abort 'Restore failed'.red
        end
      end

      def backup_existing_builds_dir
        timestamped_builds_path = File.join(app_builds_dir, '..', "builds.#{Time.now.to_i}")
        if File.exists?(app_builds_dir)
          FileUtils.mv(app_builds_dir, File.expand_path(timestamped_builds_path))
        end
      end
    end
  end
end