summaryrefslogtreecommitdiff
path: root/lib/system_check/incoming_email/mail_room_running_check.rb
blob: 1c97c7ac689554060503095da774d26e105ac5ad (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# frozen_string_literal: true

module SystemCheck
  module IncomingEmail
    class MailRoomRunningCheck < SystemCheck::BaseCheck
      set_name _('MailRoom running?')

      def skip?
        return true if omnibus_gitlab?

        unless mail_room_configured?
          self.skip_reason = "can't check because of previous errors"
          true
        end
      end

      def check?
        mail_room_running?
      end

      def show_error
        try_fixing_it(
          sudo_gitlab('RAILS_ENV=production bin/mail_room start')
        )
        for_more_information(
          see_installation_guide_section('Install Init Script'),
          'see log/mail_room.log for possible errors'
        )
        fix_and_rerun
      end

      private

      def mail_room_configured?
        path = '/etc/default/gitlab'
        File.exist?(path) && File.read(path).include?('mail_room_enabled=true')
      end

      def mail_room_running?
        ps_ux, _ = Gitlab::Popen.popen(%w(ps uxww))
        ps_ux.include?("mail_room")
      end
    end
  end
end