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

88 lines
2.1 KiB
Ruby
Raw Normal View History

2014-02-03 19:23:00 +00:00
# Copyright (C) 2012-2014 Zammad Foundation, http://zammad-foundation.org/
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 => {
123 => user_model_123,
1234 => user_model_1234,
}
}
=end
def assets (data)
if !data[ User.to_app_model ]
data[ User.to_app_model ] = {}
end
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-08-02 22:06:51 +00:00
}
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.lookup( id: role_id )
2014-08-02 22:06:51 +00:00
data = role.assets( data )
}
end
# get groups
if attributes['group_ids']
attributes['group_ids'].each {|group_id|
group = Group.lookup( id: group_id )
2014-08-02 22:06:51 +00:00
data = group.assets( data )
}
end
# get groups
if attributes['organization_ids']
attributes['organization_ids'].each {|organization_id|
organization = Organization.lookup( id: organization_id )
2014-08-02 22:06:51 +00:00
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.lookup( id: self.organization_id )
2014-08-02 22:06:51 +00:00
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.lookup( id: self[ item ] )
2014-08-02 22:06:51 +00:00
data = user.assets( data )
end
end
}
data
end
2014-02-03 19:23:00 +00:00
end