summaryrefslogtreecommitdiff
path: root/lib/api/helpers/related_resources_helpers.rb
blob: 9cdde25fe4e1d1c3967f5d1dcf9a56e907de9b7f (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
# frozen_string_literal: true

module API
  module Helpers
    module RelatedResourcesHelpers
      include GrapePathHelpers::NamedRouteMatcher

      def issues_available?(project, options)
        available?(:issues, project, options[:current_user])
      end

      def mrs_available?(project, options)
        available?(:merge_requests, project, options[:current_user])
      end

      def expose_path(path)
        Gitlab::Utils.append_path(Gitlab.config.gitlab.relative_url_root, path)
      end

      def expose_url(path)
        url_options = Gitlab::Application.routes.default_url_options
        protocol, host, port, script_name = url_options.values_at(:protocol, :host, :port, :script_name)

        # Using a blank component at the beginning of the join we ensure
        # that the resulted path will start with '/'. If the resulted path
        # does not start with '/', URI::Generic#build will fail
        path_with_script_name = File.join('', [script_name, path].select(&:present?))

        URI::Generic.build(scheme: protocol, host: host, port: port, path: path_with_script_name).to_s
      end

      private

      def available?(feature, project, current_user)
        project.feature_available?(feature, current_user)
      end
    end
  end
end