summaryrefslogtreecommitdiff
path: root/app/models/integrations/shimo.rb
blob: dd25a0bc558ac5ce83f17a678c679ab06104c9f3 (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 Integrations
  class Shimo < BaseThirdPartyWiki
    prop_accessor :external_wiki_url
    validates :external_wiki_url, presence: true, public_url: true, if: :activated?

    def render?
      return false unless Feature.enabled?(:shimo_integration, project)

      valid? && activated?
    end

    def title
      s_('Shimo|Shimo')
    end

    def description
      s_('Shimo|Link to a Shimo Workspace from the sidebar.')
    end

    def self.to_param
      'shimo'
    end

    # support for `test` method
    def execute(_data)
      response = Gitlab::HTTP.get(properties['external_wiki_url'], verify: true, use_read_total_timeout: true)
      response.body if response.code == 200
    rescue StandardError
      nil
    end

    def fields
      [
        {
          type: 'text',
          name: 'external_wiki_url',
          title: s_('Shimo|Shimo Workspace URL'),
          required: true
        }
      ]
    end
  end
end