X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/fc100474c5d74b20b2576bd3a8f633746c0c6fb2..729b2762630b343b50aa1cb74733635ebcc52eb4:/services/api/app/models/api_client.rb diff --git a/services/api/app/models/api_client.rb b/services/api/app/models/api_client.rb index 3e1dcd6c4a..015b61dc49 100644 --- a/services/api/app/models/api_client.rb +++ b/services/api/app/models/api_client.rb @@ -1,5 +1,9 @@ -class ApiClient < ActiveRecord::Base - include AssignUuid +# Copyright (C) The Arvados Authors. All rights reserved. +# +# SPDX-License-Identifier: AGPL-3.0 + +class ApiClient < ArvadosModel + include HasUuid include KindAndEtag include CommonApiTemplate has_many :api_client_authorizations @@ -9,4 +13,43 @@ class ApiClient < ActiveRecord::Base t.add :url_prefix t.add :is_trusted end + + def is_trusted + (from_trusted_url && Rails.configuration.Login.TokenLifetime == 0) || super + end + + protected + + def from_trusted_url + norm_url_prefix = norm(self.url_prefix) + + [Rails.configuration.Services.Workbench1.ExternalURL, + Rails.configuration.Services.Workbench2.ExternalURL, + "https://controller.api.client.invalid"].each do |url| + if norm_url_prefix == norm(url) + return true + end + end + + Rails.configuration.Login.TrustedClients.keys.each do |url| + if norm_url_prefix == norm(url) + return true + end + end + + false + end + + def norm url + # normalize URL for comparison + url = URI(url.to_s) + if url.scheme == "https" + url.port == "443" + end + if url.scheme == "http" + url.port == "80" + end + url.path = "/" + url + end end