2014-02-03 19:23:00 +00:00
|
|
|
# Copyright (C) 2012-2014 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
|
2013-08-19 06:29:49 +00:00
|
|
|
|
|
|
|
=begin
|
|
|
|
|
|
|
|
get all assets / related models for this user
|
|
|
|
|
|
|
|
user = User.find(123)
|
|
|
|
result = user.assets( assets_if_exists )
|
|
|
|
|
|
|
|
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
|
|
|
|
2015-04-27 20:55:17 +00:00
|
|
|
if !data[ User.to_app_model ]
|
|
|
|
data[ User.to_app_model ] = {}
|
2014-06-17 00:23:42 +00:00
|
|
|
end
|
2015-05-07 12:10:38 +00:00
|
|
|
if !data[ User.to_app_model ][ id ]
|
2015-06-18 22:39:34 +00:00
|
|
|
local_attributes = attributes
|
2015-04-27 20:55:17 +00:00
|
|
|
|
|
|
|
# do not transfer crypted pw
|
2015-06-18 22:39:34 +00:00
|
|
|
local_attributes['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
|
|
|
|
data[ User.to_app_model ][ id ] = local_attributes
|
|
|
|
|
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] = {
|
|
|
|
uid: authorization[:uid],
|
|
|
|
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
|
2015-06-18 22:39:34 +00:00
|
|
|
key = "User::role_ids::#{id}"
|
|
|
|
local_role_ids = Cache.get(key)
|
|
|
|
if !local_role_ids
|
|
|
|
local_role_ids = role_ids
|
|
|
|
Cache.write(key, local_role_ids)
|
|
|
|
end
|
|
|
|
local_attributes['role_ids'] = local_role_ids
|
|
|
|
if local_role_ids
|
|
|
|
local_role_ids.each {|role_id|
|
2015-04-27 20:55:17 +00:00
|
|
|
role = Role.lookup( id: role_id )
|
|
|
|
data = role.assets( data )
|
|
|
|
}
|
|
|
|
end
|
2014-08-02 22:06:51 +00:00
|
|
|
|
2015-04-27 20:55:17 +00:00
|
|
|
# get groups
|
2015-06-18 22:39:34 +00:00
|
|
|
key = "User::group_ids::#{id}"
|
|
|
|
local_group_ids = Cache.get(key)
|
|
|
|
if !local_group_ids
|
|
|
|
local_group_ids = group_ids
|
|
|
|
Cache.write(key, local_group_ids)
|
|
|
|
end
|
|
|
|
local_attributes['group_ids'] = local_group_ids
|
|
|
|
if local_group_ids
|
|
|
|
local_group_ids.each {|group_id|
|
2015-04-27 20:55:17 +00:00
|
|
|
group = Group.lookup( id: group_id )
|
|
|
|
data = group.assets( data )
|
|
|
|
}
|
|
|
|
end
|
2014-08-02 22:06:51 +00:00
|
|
|
|
2015-06-18 22:39:34 +00:00
|
|
|
# get organizations
|
|
|
|
key = "User::organization_ids::#{id}"
|
|
|
|
local_organization_ids = Cache.get(key)
|
|
|
|
if !local_organization_ids
|
|
|
|
local_organization_ids = organization_ids
|
|
|
|
Cache.write(key, local_organization_ids)
|
|
|
|
end
|
|
|
|
local_attributes['organization_ids'] = local_organization_ids
|
|
|
|
if local_organization_ids
|
|
|
|
local_organization_ids.each {|organization_id|
|
2015-04-27 20:55:17 +00:00
|
|
|
organization = Organization.lookup( id: organization_id )
|
|
|
|
data = organization.assets( data )
|
|
|
|
}
|
|
|
|
end
|
2015-06-18 22:39:34 +00:00
|
|
|
|
|
|
|
data[ User.to_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
|
|
|
|
if !data[ Organization.to_app_model ] || !data[ Organization.to_app_model ][ self.organization_id ]
|
|
|
|
organization = Organization.lookup( id: self.organization_id )
|
|
|
|
data = organization.assets( data )
|
2014-08-02 22:06:51 +00:00
|
|
|
end
|
|
|
|
end
|
2015-05-22 18:52:34 +00:00
|
|
|
%w(created_by_id updated_by_id).each {|local_user_id|
|
|
|
|
next if !self[ local_user_id ]
|
|
|
|
next if data[ User.to_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
|
|
|
|
data = user.assets(data)
|
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
|