trabajo-afectivo/app/models/user/assets.rb

115 lines
2.9 KiB
Ruby
Raw Normal View History

# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
2015-04-27 20:55:17 +00:00
class User
module Assets
extend ActiveSupport::Concern
=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)
returns
result = {
2014-08-02 22:06:51 +00:00
:User => {
123 => user_model_123,
1234 => user_model_1234,
}
}
=end
2015-04-27 20:55:17 +00:00
def assets (data)
2019-06-04 03:40:48 +00:00
return data if assets_added_to?(data)
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
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}"
local_accounts = Cache.read(key)
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
Cache.write(key, local_accounts)
end
local_attributes['accounts'] = local_accounts
2014-08-02 22:06:51 +00:00
# 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
2014-08-02 22:06:51 +00:00
# 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
local_attributes['organization_ids']&.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)
2014-08-02 22:06:51 +00:00
end
data[ app_model ][ id ] = local_attributes
# add organization
2015-04-27 20:55:17 +00:00
if self.organization_id
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 ] ]
2016-02-08 22:05:59 +00:00
user = User.lookup(id: self[ local_user_id ])
next if !user
2016-02-08 22:05:59 +00:00
data = user.assets(data)
end
2015-04-27 20:55:17 +00:00
data
end
end
2014-02-03 19:23:00 +00:00
end