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

87 lines
2.2 KiB
Ruby
Raw Normal View History

2014-02-03 19:23:00 +00:00
# Copyright (C) 2012-2014 Zammad Foundation, http://zammad-foundation.org/
2015-04-27 20:55:17 +00:00
class User
module 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
2015-04-27 20:55:17 +00:00
def assets (data)
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
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()
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
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-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 ] ]
user = User.lookup( id: self[ local_user_id ] )
data = user.assets( data )
2015-04-27 20:55:17 +00:00
}
data
end
end
2014-02-03 19:23:00 +00:00
end