debian-mirror-gitlab/app/models/ci/build_runner_session.rb

53 lines
1.6 KiB
Ruby
Raw Normal View History

2018-11-18 11:00:15 +05:30
# frozen_string_literal: true
2018-11-08 19:23:39 +05:30
module Ci
# The purpose of this class is to store Build related runner session.
# Data will be removed after transitioning from running to any state.
2019-07-07 11:18:12 +05:30
class BuildRunnerSession < ApplicationRecord
2018-11-08 19:23:39 +05:30
extend Gitlab::Ci::Model
2019-12-04 20:38:33 +05:30
TERMINAL_SUBPROTOCOL = 'terminal.gitlab.com'
2020-06-23 00:09:42 +05:30
DEFAULT_SERVICE_NAME = 'build'.freeze
DEFAULT_PORT_NAME = 'default_port'.freeze
2019-07-07 11:18:12 +05:30
2018-11-08 19:23:39 +05:30
self.table_name = 'ci_builds_runner_session'
belongs_to :build, class_name: 'Ci::Build', inverse_of: :runner_session
validates :build, presence: true
2019-07-31 22:56:46 +05:30
validates :url, addressable_url: { schemes: %w(https) }
2018-11-08 19:23:39 +05:30
def terminal_specification
2019-07-07 11:18:12 +05:30
wss_url = Gitlab::UrlHelpers.as_wss(self.url)
return {} unless wss_url.present?
wss_url = "#{wss_url}/exec"
channel_specification(wss_url, TERMINAL_SUBPROTOCOL)
end
2020-06-23 00:09:42 +05:30
def service_specification(service: nil, path: nil, port: nil, subprotocols: nil)
return {} unless url.present?
port = port.presence || DEFAULT_PORT_NAME
service = service.presence || DEFAULT_SERVICE_NAME
url = "#{self.url}/proxy/#{service}/#{port}/#{path}"
subprotocols = subprotocols.presence || ::Ci::BuildRunnerSession::TERMINAL_SUBPROTOCOL
channel_specification(url, subprotocols)
end
2019-07-07 11:18:12 +05:30
private
def channel_specification(url, subprotocol)
return {} if subprotocol.blank? || url.blank?
2018-11-08 19:23:39 +05:30
{
2019-07-07 11:18:12 +05:30
subprotocols: Array(subprotocol),
url: url,
2018-11-18 11:00:15 +05:30
headers: { Authorization: [authorization.presence] }.compact,
2018-11-08 19:23:39 +05:30
ca_pem: certificate.presence
}
end
end
end