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

message.rb « downtime_check « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4446e921e0df989d2cd0b7a54dafd84388becfe9 (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
module Gitlab
  class DowntimeCheck
    class Message
      attr_reader :path, :offline, :reason

      OFFLINE = "\e[32moffline\e[0m"
      ONLINE = "\e[31monline\e[0m"

      # path - The file path of the migration.
      # offline - When set to `true` the migration will require downtime.
      # reason - The reason as to why the migration requires downtime.
      def initialize(path, offline = false, reason = nil)
        @path = path
        @offline = offline
        @reason = reason
      end

      def to_s
        label = offline ? OFFLINE : ONLINE

        message = "[#{label}]: #{path}"
        message += ": #{reason}" if reason

        message
      end
    end
  end
end