summaryrefslogtreecommitdiff
path: root/lib/gitlab/checks/project_moved.rb
blob: 3a197078d08df5785cd699298a1bae05f22e2567 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
module Gitlab
  module Checks
    class ProjectMoved < PostPushMessage
      REDIRECT_NAMESPACE = "redirect_namespace".freeze

      def initialize(project, user, protocol, redirected_path)
        @redirected_path = redirected_path

        super(project, user, protocol)
      end

      def message
        <<~MESSAGE
        Project '#{redirected_path}' was moved to '#{project.full_path}'.

        Please update your Git remote:

          git remote set-url origin #{url_to_repo}
        MESSAGE
      end

      private

      attr_reader :redirected_path

      def self.message_key(user_id, project_id)
        "#{REDIRECT_NAMESPACE}:#{user_id}:#{project_id}"
      end
    end
  end
end