summaryrefslogtreecommitdiff
path: root/app/helpers/ci/routes_helper.rb
blob: 42cd54b064fa5012baa0d784c07419881eb8a2bc (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
module Ci
  module RoutesHelper
    class Base
      include Gitlab::Application.routes.url_helpers

      def default_url_options
        {
          host: Settings.gitlab['host'],
          protocol: Settings.gitlab['https'] ? "https" : "http",
          port: Settings.gitlab['port']
        }
      end
    end

    def url_helpers
      @url_helpers ||= Base.new
    end

    def self.method_missing(method, *args, &block)
      @url_helpers ||= Base.new

      if @url_helpers.respond_to?(method)
        @url_helpers.send(method, *args, &block)
      else
        super method, *args, &block
      end
    end
  end
end