BigW Consortium Gitlab

key_deleter.rb 504 Bytes
Newer Older
1 2
module Gitlab
  module BitbucketImport
3 4 5 6 7 8 9 10
    class KeyDeleter
      attr_reader :project, :current_user, :client

      def initialize(project)
        @project = project
        @current_user = project.creator
        @client = Client.from_project(@project)
      end
11 12 13

      def execute
        return false unless BitbucketImport.public_key.present?
14

15 16 17 18 19 20 21 22 23
        client.delete_deploy_key(project.import_source, BitbucketImport.public_key)

        true
      rescue
        false
      end
    end
  end
end