2016-10-19 03:11:36 +00:00
|
|
|
# Copyright (C) 2012-2016 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
|
|
|
|
|
2015-04-27 20:55:17 +00:00
|
|
|
def assets (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
|
2016-08-18 21:34:13 +00:00
|
|
|
if !data[ app_model ][ id ]
|
2017-01-31 17:13:45 +00:00
|
|
|
local_attributes = attributes_with_association_ids
|
2015-04-27 20:55:17 +00:00
|
|
|
|
|
|
|
# do not transfer crypted pw
|
2017-06-16 20:43:09 +00:00
|
|
|
local_attributes.delete('password')
|
2015-04-27 20:55:17 +00:00
|
|
|
|
2015-07-05 08:08:03 +00:00
|
|
|
# set temp. current attributes to assets pool to prevent
|
|
|
|
# loops, will be updated with lookup attributes later
|
2016-08-18 21:34:13 +00:00
|
|
|
data[ app_model ][ id ] = local_attributes
|
2015-07-05 08:08:03 +00:00
|
|
|
|
2015-04-27 20:55:17 +00:00
|
|
|
# get linked accounts
|
2015-06-18 22:39:34 +00:00
|
|
|
local_attributes['accounts'] = {}
|
|
|
|
key = "User::authorizations::#{id}"
|
|
|
|
local_accounts = Cache.get(key)
|
|
|
|
if !local_accounts
|
|
|
|
local_accounts = {}
|
|
|
|
authorizations = self.authorizations()
|
|
|
|
authorizations.each do |authorization|
|
|
|
|
local_accounts[authorization.provider] = {
|
2018-12-19 17:31:51 +00:00
|
|
|
uid: authorization[:uid],
|
2015-06-18 22:39:34 +00:00
|
|
|
username: authorization[:username]
|
|
|
|
}
|
|
|
|
end
|
|
|
|
Cache.write(key, local_accounts)
|
2015-04-27 20:55:17 +00:00
|
|
|
end
|
2015-06-18 22:39:34 +00:00
|
|
|
local_attributes['accounts'] = local_accounts
|
2014-08-02 22:06:51 +00:00
|
|
|
|
2015-04-27 20:55:17 +00:00
|
|
|
# get roles
|
2017-11-23 08:09:44 +00:00
|
|
|
local_attributes['role_ids']&.each do |role_id|
|
|
|
|
next if data[:Role] && data[:Role][role_id]
|
2018-10-09 06:17:41 +00:00
|
|
|
|
2017-11-23 08:09:44 +00:00
|
|
|
role = Role.lookup(id: role_id)
|
2019-02-12 07:27:04 +00:00
|
|
|
next if !role
|
|
|
|
|
2017-11-23 08:09:44 +00:00
|
|
|
data = role.assets(data)
|
2015-04-27 20:55:17 +00:00
|
|
|
end
|
2014-08-02 22:06:51 +00:00
|
|
|
|
2015-04-27 20:55:17 +00:00
|
|
|
# get groups
|
2017-11-23 08:09:44 +00:00
|
|
|
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
|
|
|
|
2017-11-23 08:09:44 +00:00
|
|
|
group = Group.lookup(id: group_id)
|
|
|
|
next if !group
|
2018-10-09 06:17:41 +00:00
|
|
|
|
2017-11-23 08:09:44 +00:00
|
|
|
data = group.assets(data)
|
2015-04-27 20:55:17 +00:00
|
|
|
end
|
2014-08-02 22:06:51 +00:00
|
|
|
|
2015-06-18 22:39:34 +00:00
|
|
|
# get organizations
|
2017-11-23 08:09:44 +00:00
|
|
|
local_attributes['organization_ids']&.each do |organization_id|
|
|
|
|
next if data[:Organization] && data[:Organization][organization_id]
|
2018-10-09 06:17:41 +00:00
|
|
|
|
2017-11-23 08:09:44 +00:00
|
|
|
organization = Organization.lookup(id: organization_id)
|
|
|
|
next if !organization
|
2018-10-09 06:17:41 +00:00
|
|
|
|
2017-11-23 08:09:44 +00:00
|
|
|
data = organization.assets(data)
|
2015-04-27 20:55:17 +00:00
|
|
|
end
|
2015-06-18 22:39:34 +00:00
|
|
|
|
2016-08-18 21:34:13 +00:00
|
|
|
data[ app_model ][ id ] = local_attributes
|
2014-08-02 22:06:51 +00:00
|
|
|
end
|
2015-06-18 22:39:34 +00:00
|
|
|
|
|
|
|
# add organization
|
2015-04-27 20:55:17 +00:00
|
|
|
if self.organization_id
|
2017-10-16 13:45:04 +00:00
|
|
|
if !data[:Organization] || !data[:Organization][self.organization_id]
|
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
|
2013-08-19 06:29:49 +00:00
|
|
|
end
|
2014-02-03 19:23:00 +00:00
|
|
|
end
|