2021-06-01 12:20:20 +00:00
|
|
|
# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
|
2013-08-19 06:29:49 +00:00
|
|
|
|
2015-04-27 20:55:17 +00:00
|
|
|
class User
|
|
|
|
module Assets
|
2018-04-26 08:55:53 +00:00
|
|
|
extend ActiveSupport::Concern
|
2013-08-19 06:29:49 +00:00
|
|
|
|
|
|
|
=begin
|
|
|
|
|
|
|
|
get all assets / related models for this user
|
|
|
|
|
|
|
|
user = User.find(123)
|
2016-03-08 06:32:58 +00:00
|
|
|
result = user.assets(assets_if_exists)
|
2013-08-19 06:29:49 +00:00
|
|
|
|
|
|
|
returns
|
|
|
|
|
|
|
|
result = {
|
2014-08-02 22:06:51 +00:00
|
|
|
:User => {
|
2013-08-19 06:29:49 +00:00
|
|
|
123 => user_model_123,
|
|
|
|
1234 => user_model_1234,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
=end
|
|
|
|
|
2021-07-16 13:33:48 +00:00
|
|
|
def assets(data)
|
2019-06-04 03:40:48 +00:00
|
|
|
return data if assets_added_to?(data)
|
2013-08-19 06:29:49 +00:00
|
|
|
|
2016-08-18 21:34:13 +00:00
|
|
|
app_model = User.to_app_model
|
|
|
|
|
|
|
|
if !data[ app_model ]
|
|
|
|
data[ app_model ] = {}
|
2014-06-17 00:23:42 +00:00
|
|
|
end
|
2019-11-18 19:19:35 +00:00
|
|
|
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
|
|
|
|
local_attributes['accounts'] = {}
|
|
|
|
key = "User::authorizations::#{id}"
|
2021-05-31 13:05:54 +00:00
|
|
|
local_accounts = Cache.read(key)
|
2019-11-18 19:19:35 +00:00
|
|
|
if !local_accounts
|
|
|
|
local_accounts = {}
|
|
|
|
authorizations = self.authorizations()
|
|
|
|
authorizations.each do |authorization|
|
|
|
|
local_accounts[authorization.provider] = {
|
|
|
|
uid: authorization[:uid],
|
|
|
|
username: authorization[:username]
|
|
|
|
}
|
2015-04-27 20:55:17 +00:00
|
|
|
end
|
2019-11-18 19:19:35 +00:00
|
|
|
Cache.write(key, local_accounts)
|
|
|
|
end
|
|
|
|
local_attributes['accounts'] = local_accounts
|
2014-08-02 22:06:51 +00:00
|
|
|
|
2019-11-18 19:19:35 +00:00
|
|
|
# get roles
|
|
|
|
local_attributes['role_ids']&.each do |role_id|
|
|
|
|
next if data[:Role] && data[:Role][role_id]
|
2018-10-09 06:17:41 +00:00
|
|
|
|
2019-11-18 19:19:35 +00:00
|
|
|
role = Role.lookup(id: role_id)
|
|
|
|
next if !role
|
2019-02-12 07:27:04 +00:00
|
|
|
|
2019-11-18 19:19:35 +00:00
|
|
|
data = role.assets(data)
|
|
|
|
end
|
2014-08-02 22:06:51 +00:00
|
|
|
|
2019-11-18 19:19:35 +00:00
|
|
|
# get groups
|
|
|
|
local_attributes['group_ids']&.each do |group_id, _access|
|
|
|
|
next if data[:Group] && data[:Group][group_id]
|
2018-10-09 06:17:41 +00:00
|
|
|
|
2019-11-18 19:19:35 +00:00
|
|
|
group = Group.lookup(id: group_id)
|
|
|
|
next if !group
|
2018-10-09 06:17:41 +00:00
|
|
|
|
2019-11-18 19:19:35 +00:00
|
|
|
data = group.assets(data)
|
|
|
|
end
|
2018-10-09 06:17:41 +00:00
|
|
|
|
2019-11-18 19:19:35 +00:00
|
|
|
# get organizations
|
|
|
|
local_attributes['organization_ids']&.each do |organization_id|
|
|
|
|
next if data[:Organization] && data[:Organization][organization_id]
|
2018-10-09 06:17:41 +00:00
|
|
|
|
2019-11-18 19:19:35 +00:00
|
|
|
organization = Organization.lookup(id: organization_id)
|
|
|
|
next if !organization
|
2015-06-18 22:39:34 +00:00
|
|
|
|
2019-11-18 19:19:35 +00:00
|
|
|
data = organization.assets(data)
|
2014-08-02 22:06:51 +00:00
|
|
|
end
|
2015-06-18 22:39:34 +00:00
|
|
|
|
2019-11-18 19:19:35 +00:00
|
|
|
data[ app_model ][ id ] = local_attributes
|
|
|
|
|
2015-06-18 22:39:34 +00:00
|
|
|
# add organization
|
2015-04-27 20:55:17 +00:00
|
|
|
if self.organization_id
|
2020-09-30 09:07:01 +00:00
|
|
|
if !data[:Organization] || !data[:Organization][self.organization_id] # rubocop:disable Style/SoleNestedConditional
|
2016-03-08 06:32:58 +00:00
|
|
|
organization = Organization.lookup(id: self.organization_id)
|
|
|
|
if organization
|
|
|
|
data = organization.assets(data)
|
|
|
|
end
|
2014-08-02 22:06:51 +00:00
|
|
|
end
|
|
|
|
end
|
2017-11-23 08:09:44 +00:00
|
|
|
%w[created_by_id updated_by_id].each do |local_user_id|
|
2015-05-22 18:52:34 +00:00
|
|
|
next if !self[ local_user_id ]
|
2016-08-18 21:34:13 +00:00
|
|
|
next if data[ app_model ][ self[ local_user_id ] ]
|
2018-10-09 06:17:41 +00:00
|
|
|
|
2016-02-08 22:05:59 +00:00
|
|
|
user = User.lookup(id: self[ local_user_id ])
|
|
|
|
next if !user
|
2018-10-09 06:17:41 +00:00
|
|
|
|
2016-02-08 22:05:59 +00:00
|
|
|
data = user.assets(data)
|
2017-10-01 12:25:52 +00:00
|
|
|
end
|
2015-04-27 20:55:17 +00:00
|
|
|
data
|
|
|
|
end
|
2021-09-22 14:57:27 +00:00
|
|
|
|
|
|
|
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
|
2013-08-19 06:29:49 +00:00
|
|
|
end
|
2014-02-03 19:23:00 +00:00
|
|
|
end
|