X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/e346e5d3bd09f4b9fe66538a825cf866faeb308b..50b746d9246c19c1ad2cf506bb18a0eb8ddd0755:/services/api/app/models/api_client_authorization.rb diff --git a/services/api/app/models/api_client_authorization.rb b/services/api/app/models/api_client_authorization.rb index e90d7980cd..3b73f408c3 100644 --- a/services/api/app/models/api_client_authorization.rb +++ b/services/api/app/models/api_client_authorization.rb @@ -5,8 +5,9 @@ class ApiClientAuthorization < ArvadosModel belongs_to :api_client belongs_to :user after_initialize :assign_random_api_token + serialize :scopes, Array - api_accessible :superuser, :extend => :common do |t| + api_accessible :user, extend: :common do |t| t.add :owner_uuid t.add :user_id t.add :api_client_id @@ -16,8 +17,11 @@ class ApiClientAuthorization < ArvadosModel t.add :expires_at t.add :last_used_at t.add :last_used_by_ip_address + t.add :scopes end + UNLOGGED_CHANGES = ['last_used_at', 'last_used_by_ip_address', 'updated_at'] + def assign_random_api_token self.api_token ||= rand(2**256).to_s(36) end @@ -58,6 +62,12 @@ class ApiClientAuthorization < ArvadosModel end def modified_at=(x) end + def logged_attributes + attrs = attributes.dup + attrs.delete('api_token') + attrs + end + protected def permission_to_create @@ -69,4 +79,8 @@ class ApiClientAuthorization < ArvadosModel not self.user_id_changed? and not self.owner_uuid_changed?) end + + def log_update + super unless (changed - UNLOGGED_CHANGES).empty? + end end