1 # Copyright (C) The Arvados Authors. All rights reserved.
3 # SPDX-License-Identifier: AGPL-3.0
5 class ApiClient < ArvadosModel
8 include CommonApiTemplate
9 has_many :api_client_authorizations
11 api_accessible :user, extend: :common do |t|
18 (from_trusted_url && Rails.configuration.Login.IssueTrustedTokens) || super
24 norm_url_prefix = norm(self.url_prefix)
26 [Rails.configuration.Services.Workbench1.ExternalURL,
27 Rails.configuration.Services.Workbench2.ExternalURL,
28 "https://controller.api.client.invalid"].each do |url|
29 if norm_url_prefix == norm(url)
34 Rails.configuration.Login.TrustedClients.keys.each do |url|
35 if norm_url_prefix == norm(url)
44 # normalize URL for comparison
46 if url.scheme == "https" && url.port == ""
48 elsif url.scheme == "http" && url.port == ""