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
|
|
|
|
|
|
|
module User::Assets
|
|
|
|
|
|
|
|
=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
|
|
|
|
|
|
|
|
def assets (data)
|
|
|
|
|
2013-09-21 22:50:23 +00:00
|
|
|
if !data[ User.to_app_model ]
|
|
|
|
data[ User.to_app_model ] = {}
|
2013-08-19 06:29:49 +00:00
|
|
|
end
|
2013-09-21 22:50:23 +00:00
|
|
|
if !data[ User.to_app_model ][ self.id ]
|
2014-08-02 22:06:51 +00:00
|
|
|
attributes = self.attributes_with_associations
|
|
|
|
|
|
|
|
# do not transfer crypted pw
|
|
|
|
attributes['password'] = ''
|
|
|
|
|
|
|
|
# get linked accounts
|
|
|
|
attributes['accounts'] = {}
|
|
|
|
authorizations = self.authorizations()
|
|
|
|
authorizations.each do | authorization |
|
|
|
|
attributes['accounts'][authorization.provider] = {
|
|
|
|
:uid => authorization[:uid],
|
|
|
|
:username => authorization[:username]
|
|
|
|
}
|
2014-06-17 00:23:42 +00:00
|
|
|
end
|
2014-08-02 22:06:51 +00:00
|
|
|
|
|
|
|
data[ User.to_app_model ][ self.id ] = attributes
|
|
|
|
|
|
|
|
# get roles
|
|
|
|
if attributes['role_ids']
|
|
|
|
attributes['role_ids'].each {|role_id|
|
|
|
|
role = Role.find(role_id)
|
|
|
|
data = role.assets( data )
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
# get groups
|
|
|
|
if attributes['group_ids']
|
|
|
|
attributes['group_ids'].each {|group_id|
|
|
|
|
group = Group.find(group_id)
|
|
|
|
data = group.assets( data )
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
# get groups
|
|
|
|
if attributes['organization_ids']
|
|
|
|
attributes['organization_ids'].each {|organization_id|
|
|
|
|
organization = Organization.find(organization_id)
|
|
|
|
data = organization.assets( data )
|
|
|
|
}
|
2014-06-17 05:19:44 +00:00
|
|
|
end
|
2013-09-28 00:07:11 +00:00
|
|
|
end
|
2014-08-02 22:06:51 +00:00
|
|
|
if self.organization_id
|
|
|
|
if !data[ Organization.to_app_model ] || !data[ Organization.to_app_model ][ self.organization_id ]
|
|
|
|
organization = Organization.find( self.organization_id )
|
|
|
|
data = organization.assets( data )
|
|
|
|
end
|
2013-09-28 00:07:11 +00:00
|
|
|
end
|
2014-08-02 22:06:51 +00:00
|
|
|
['created_by_id', 'updated_by_id'].each {|item|
|
|
|
|
if self[ item ]
|
|
|
|
if !data[ User.to_app_model ][ self[ item ] ]
|
|
|
|
user = User.find( self[ item ] )
|
|
|
|
data = user.assets( data )
|
|
|
|
end
|
|
|
|
end
|
|
|
|
}
|
2013-08-19 06:29:49 +00:00
|
|
|
data
|
|
|
|
end
|
|
|
|
|
2014-02-03 19:23:00 +00:00
|
|
|
end
|