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 21:44:41 +00:00
|
|
|
class Organization
|
|
|
|
module Assets
|
2013-08-19 06:29:49 +00:00
|
|
|
|
|
|
|
=begin
|
|
|
|
|
|
|
|
get all assets / related models for this organization
|
|
|
|
|
|
|
|
organization = Organization.find(123)
|
2016-03-08 06:32:58 +00:00
|
|
|
result = organization.assets(assets_if_exists)
|
2013-08-19 06:29:49 +00:00
|
|
|
|
|
|
|
returns
|
|
|
|
|
|
|
|
result = {
|
|
|
|
:organizations => {
|
|
|
|
123 => organization_model_123,
|
|
|
|
1234 => organization_model_1234,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
=end
|
|
|
|
|
2015-04-27 21:44:41 +00:00
|
|
|
def assets (data)
|
2013-08-19 06:29:49 +00:00
|
|
|
|
2015-04-27 21:44:41 +00:00
|
|
|
if !data[ Organization.to_app_model ]
|
|
|
|
data[ Organization.to_app_model ] = {}
|
2014-08-02 22:06:51 +00:00
|
|
|
end
|
2015-04-27 21:44:41 +00:00
|
|
|
if !data[ User.to_app_model ]
|
|
|
|
data[ User.to_app_model ] = {}
|
2014-08-02 22:06:51 +00:00
|
|
|
end
|
2015-05-07 12:10:38 +00:00
|
|
|
if !data[ Organization.to_app_model ][ id ]
|
2015-06-18 22:39:34 +00:00
|
|
|
local_attributes = attributes
|
|
|
|
|
2015-07-05 08:08:03 +00:00
|
|
|
# set temp. current attributes to assets pool to prevent
|
|
|
|
# loops, will be updated with lookup attributes later
|
|
|
|
data[ Organization.to_app_model ][ id ] = local_attributes
|
|
|
|
|
2015-06-18 22:39:34 +00:00
|
|
|
# get organizations
|
|
|
|
key = "Organization::member_ids::#{id}"
|
|
|
|
local_member_ids = Cache.get(key)
|
|
|
|
if !local_member_ids
|
|
|
|
local_member_ids = member_ids
|
|
|
|
Cache.write(key, local_member_ids)
|
|
|
|
end
|
|
|
|
local_attributes['member_ids'] = local_member_ids
|
|
|
|
if local_member_ids
|
2016-06-30 20:04:48 +00:00
|
|
|
local_member_ids.each { |local_user_id|
|
2016-02-08 22:05:59 +00:00
|
|
|
next if data[ User.to_app_model ][ local_user_id ]
|
|
|
|
user = User.lookup(id: local_user_id)
|
|
|
|
next if !user
|
|
|
|
data = user.assets(data)
|
2015-04-27 21:44:41 +00:00
|
|
|
}
|
|
|
|
end
|
2015-06-18 22:39:34 +00:00
|
|
|
|
|
|
|
data[ Organization.to_app_model ][ id ] = local_attributes
|
2015-04-27 21:44:41 +00:00
|
|
|
end
|
2016-06-30 20:04:48 +00:00
|
|
|
%w(created_by_id updated_by_id).each { |local_user_id|
|
2015-05-22 18:52:34 +00:00
|
|
|
next if !self[ local_user_id ]
|
|
|
|
next if data[ User.to_app_model ][ self[ local_user_id ] ]
|
2016-02-08 22:05:59 +00:00
|
|
|
user = User.lookup(id: self[ local_user_id ])
|
|
|
|
next if !user
|
|
|
|
data = user.assets(data)
|
2015-04-27 21:44:41 +00:00
|
|
|
}
|
|
|
|
data
|
|
|
|
end
|
2013-08-19 06:29:49 +00:00
|
|
|
end
|
2015-04-27 14:15:29 +00:00
|
|
|
end
|