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 ]
|
|
|
|
attributes = attributes_with_associations
|
2015-04-27 20:55:17 +00:00
|
|
|
|
|
|
|
# do not transfer crypted pw
|
|
|
|
attributes['password'] = ''
|
|
|
|
|
|
|
|
# get linked accounts
|
|
|
|
attributes['accounts'] = {}
|
|
|
|
authorizations = self.authorizations()
|
2015-04-30 18:13:25 +00:00
|
|
|
authorizations.each do |authorization|
|
2015-04-27 20:55:17 +00:00
|
|
|
attributes['accounts'][authorization.provider] = {
|
|
|
|
uid: authorization[:uid],
|
|
|
|
username: authorization[:username]
|
|
|
|
}
|
|
|
|
end
|
2014-08-02 22:06:51 +00:00
|
|
|
|
2015-05-07 12:10:38 +00:00
|
|
|
data[ User.to_app_model ][ id ] = attributes
|
2014-08-02 22:06:51 +00:00
|
|
|
|
2015-04-27 20:55:17 +00:00
|
|
|
# get roles
|
|
|
|
if attributes['role_ids']
|
|
|
|
attributes['role_ids'].each {|role_id|
|
|
|
|
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
|
|
|
|
if attributes['group_ids']
|
|
|
|
attributes['group_ids'].each {|group_id|
|
|
|
|
group = Group.lookup( id: group_id )
|
|
|
|
data = group.assets( data )
|
|
|
|
}
|
|
|
|
end
|
2014-08-02 22:06:51 +00:00
|
|
|
|
2015-04-27 20:55:17 +00:00
|
|
|
# get groups
|
|
|
|
if attributes['organization_ids']
|
|
|
|
attributes['organization_ids'].each {|organization_id|
|
|
|
|
organization = Organization.lookup( id: organization_id )
|
|
|
|
data = organization.assets( data )
|
|
|
|
}
|
|
|
|
end
|
2014-08-02 22:06:51 +00:00
|
|
|
end
|
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-07 07:23:16 +00:00
|
|
|
%w(created_by_id updated_by_id).each {|item|
|
2015-04-27 21:27:51 +00:00
|
|
|
next if !self[ item ]
|
|
|
|
if !data[ User.to_app_model ][ self[ item ] ]
|
|
|
|
user = User.lookup( id: self[ item ] )
|
|
|
|
data = user.assets( data )
|
2015-04-27 20:55:17 +00:00
|
|
|
end
|
|
|
|
}
|
|
|
|
data
|
|
|
|
end
|
2013-08-19 06:29:49 +00:00
|
|
|
end
|
2014-02-03 19:23:00 +00:00
|
|
|
end
|