123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- # Copyright (C) 2012-2023 Zammad Foundation, https://zammad-foundation.org/
- class User
- module Assets
- extend ActiveSupport::Concern
- =begin
- get all assets / related models for this user
- user = User.find(123)
- result = user.assets(assets_if_exists)
- returns
- result = {
- :User => {
- 123 => user_model_123,
- 1234 => user_model_1234,
- }
- }
- =end
- def assets(data)
- return data if assets_added_to?(data)
- app_model = User.to_app_model
- if !data[ app_model ]
- data[ app_model ] = {}
- end
- return data if data[ app_model ][ id ]
- local_attributes = attributes_with_association_ids
- # do not transfer crypted pw
- local_attributes.delete('password')
- # set temp. current attributes to assets pool to prevent
- # loops, will be updated with lookup attributes later
- data[ app_model ][ id ] = local_attributes
- # get linked accounts
- accounts = assets_accounts
- if accounts.present?
- local_attributes['accounts'] = accounts
- end
- # get roles
- local_attributes['role_ids']&.each do |role_id|
- next if data[:Role] && data[:Role][role_id]
- role = Role.lookup(id: role_id)
- next if !role
- data = role.assets(data)
- end
- # get groups
- local_attributes['group_ids']&.each do |group_id, _access|
- next if data[:Group] && data[:Group][group_id]
- group = Group.lookup(id: group_id)
- next if !group
- data = group.assets(data)
- end
- # get organizations
- Array(local_attributes['organization_ids'])[0, 3].each do |organization_id|
- next if data[:Organization] && data[:Organization][organization_id]
- organization = Organization.lookup(id: organization_id)
- next if !organization
- data = organization.assets(data)
- end
- data[ app_model ][ id ] = local_attributes
- # add organization
- if self.organization_id
- if !data[:Organization] || !data[:Organization][self.organization_id] # rubocop:disable Style/SoleNestedConditional
- organization = Organization.lookup(id: self.organization_id)
- if organization
- data = organization.assets(data)
- end
- end
- end
- data
- end
- def filter_unauthorized_attributes(attributes)
- return super if UserInfo.assets.blank? || UserInfo.assets.agent?
- # customer assets for the user session
- if UserInfo.current_user_id == id
- attributes = super
- attributes.except!('web', 'phone', 'mobile', 'fax', 'department', 'street', 'zip', 'city', 'country', 'address', 'note')
- return attributes
- end
- # customer assets for other user
- attributes = super
- attributes.slice('id', 'firstname', 'lastname', 'image', 'image_source', 'active')
- end
- def assets_accounts
- return nil if UserInfo.assets.present? && !UserInfo.assets.agent? && UserInfo.current_user_id != id
- Rails.cache.fetch("User/authorizations/#{cache_key_with_version}") do
- local_accounts = {}
- authorizations = self.authorizations
- authorizations.each do |authorization|
- local_accounts[authorization.provider] = {
- uid: authorization[:uid],
- username: authorization[:username]
- }
- end
- local_accounts
- end
- end
- end
- end
|