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 Organization::Assets
|
|
|
|
|
|
|
|
=begin
|
|
|
|
|
|
|
|
get all assets / related models for this organization
|
|
|
|
|
|
|
|
organization = Organization.find(123)
|
|
|
|
result = organization.assets( assets_if_exists )
|
|
|
|
|
|
|
|
returns
|
|
|
|
|
|
|
|
result = {
|
|
|
|
:organizations => {
|
|
|
|
123 => organization_model_123,
|
|
|
|
1234 => organization_model_1234,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
=end
|
|
|
|
|
|
|
|
def assets (data)
|
|
|
|
|
2013-09-21 22:50:23 +00:00
|
|
|
if !data[ Organization.to_app_model ]
|
|
|
|
data[ Organization.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 ]
|
|
|
|
data[ User.to_app_model ] = {}
|
2013-08-19 06:29:49 +00:00
|
|
|
end
|
2013-09-21 22:50:23 +00:00
|
|
|
if !data[ Organization.to_app_model ][ self.id ]
|
2014-08-02 22:06:51 +00:00
|
|
|
data[ Organization.to_app_model ][ self.id ] = self.attributes_with_associations
|
|
|
|
if data[ Organization.to_app_model ][ self.id ]['member_ids']
|
|
|
|
data[ Organization.to_app_model ][ self.id ]['member_ids'].each {|user_id|
|
|
|
|
if !data[ User.to_app_model ][ user_id ]
|
2015-04-27 13:42:53 +00:00
|
|
|
user = User.lookup( id: user_id )
|
2014-08-02 22:06:51 +00:00
|
|
|
data = user.assets( data )
|
|
|
|
end
|
|
|
|
}
|
|
|
|
end
|
2013-08-19 06:29:49 +00:00
|
|
|
end
|
2014-08-02 22:06:51 +00:00
|
|
|
['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 )
|
2014-08-02 22:06:51 +00:00
|
|
|
end
|
|
|
|
}
|
2013-08-19 06:29:49 +00:00
|
|
|
data
|
|
|
|
end
|
|
|
|
|
2015-04-27 14:15:29 +00:00
|
|
|
end
|