2021-09-04 01:27:46 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Integrations
|
|
|
|
class ExternalWiki < Integration
|
|
|
|
validates :external_wiki_url, presence: true, public_url: true, if: :activated?
|
|
|
|
|
2022-08-13 15:12:31 +05:30
|
|
|
field :external_wiki_url,
|
2022-08-27 11:52:29 +05:30
|
|
|
section: SECTION_TYPE_CONNECTION,
|
2022-08-13 15:12:31 +05:30
|
|
|
title: -> { s_('ExternalWikiService|External wiki URL') },
|
|
|
|
placeholder: -> { s_('ExternalWikiService|https://example.com/xxx/wiki/...') },
|
|
|
|
help: -> { s_('ExternalWikiService|Enter the URL to the external wiki.') },
|
|
|
|
required: true
|
|
|
|
|
2021-09-04 01:27:46 +05:30
|
|
|
def title
|
|
|
|
s_('ExternalWikiService|External wiki')
|
|
|
|
end
|
|
|
|
|
|
|
|
def description
|
|
|
|
s_('ExternalWikiService|Link to an external wiki from the sidebar.')
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.to_param
|
|
|
|
'external_wiki'
|
|
|
|
end
|
|
|
|
|
|
|
|
def help
|
2022-05-07 20:08:51 +05:30
|
|
|
docs_link = ActionController::Base.helpers.link_to _('Learn more.'), Rails.application.routes.url_helpers.help_page_url('user/project/wiki/index', anchor: 'link-an-external-wiki'), target: '_blank', rel: 'noopener noreferrer'
|
2021-09-04 01:27:46 +05:30
|
|
|
|
|
|
|
s_('Link an external wiki from the project\'s sidebar. %{docs_link}').html_safe % { docs_link: docs_link.html_safe }
|
|
|
|
end
|
|
|
|
|
2022-08-27 11:52:29 +05:30
|
|
|
def sections
|
|
|
|
[
|
|
|
|
{
|
|
|
|
type: SECTION_TYPE_CONNECTION,
|
|
|
|
title: s_('Integrations|Connection details'),
|
|
|
|
description: help
|
|
|
|
}
|
|
|
|
]
|
|
|
|
end
|
|
|
|
|
2021-09-04 01:27:46 +05:30
|
|
|
def execute(_data)
|
2022-08-13 15:12:31 +05:30
|
|
|
response = Gitlab::HTTP.get(properties['external_wiki_url'], verify: true)
|
2021-09-04 01:27:46 +05:30
|
|
|
response.body if response.code == 200
|
|
|
|
rescue StandardError
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.supported_events
|
|
|
|
%w()
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|