2021-06-01 12:20:20 +00:00
|
|
|
# Copyright (C) 2012-2021 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
|
2018-04-26 08:55:53 +00:00
|
|
|
extend ActiveSupport::Concern
|
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
|
|
|
|
|
2016-08-18 21:34:13 +00:00
|
|
|
def assets(data)
|
2013-08-19 06:29:49 +00:00
|
|
|
|
2016-08-18 21:34:13 +00:00
|
|
|
app_model_organization = Organization.to_app_model
|
|
|
|
|
|
|
|
if !data[ app_model_organization ]
|
|
|
|
data[ app_model_organization ] = {}
|
2014-08-02 22:06:51 +00:00
|
|
|
end
|
2019-11-18 19:19:35 +00:00
|
|
|
return data if data[ app_model_organization ][ id ]
|
|
|
|
|
|
|
|
local_attributes = attributes_with_association_ids
|
2015-06-18 22:39:34 +00:00
|
|
|
|
2019-11-18 19:19:35 +00:00
|
|
|
# set temp. current attributes to assets pool to prevent
|
|
|
|
# loops, will be updated with lookup attributes later
|
|
|
|
data[ app_model_organization ][ id ] = local_attributes
|
2015-07-05 08:08:03 +00:00
|
|
|
|
2019-11-18 19:19:35 +00:00
|
|
|
app_model_user = User.to_app_model
|
|
|
|
if local_attributes['member_ids'].present?
|
2017-06-12 13:24:10 +00:00
|
|
|
|
2021-08-10 08:14:30 +00:00
|
|
|
# only provide assets for the first 10 organization users
|
|
|
|
# rest will be loaded optionally by the frontend
|
|
|
|
local_attributes['member_ids'] = local_attributes['member_ids'].sort
|
|
|
|
local_attributes['member_ids'][0, 10].each do |local_user_id|
|
2019-11-18 19:19:35 +00:00
|
|
|
next if data[ app_model_user ] && data[ app_model_user ][ local_user_id ]
|
2018-10-09 06:17:41 +00:00
|
|
|
|
2019-11-18 19:19:35 +00:00
|
|
|
user = User.lookup(id: local_user_id)
|
|
|
|
next if !user
|
2018-10-09 06:17:41 +00:00
|
|
|
|
2019-11-18 19:19:35 +00:00
|
|
|
data = user.assets(data)
|
2015-04-27 21:44:41 +00:00
|
|
|
end
|
2019-11-18 19:19:35 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
data[ app_model_organization ][ id ] = local_attributes
|
2015-06-18 22:39:34 +00:00
|
|
|
|
2019-11-18 19:19:35 +00:00
|
|
|
if !data[ app_model_user ]
|
|
|
|
data[ app_model_user ] = {}
|
2015-04-27 21:44:41 +00:00
|
|
|
end
|
2019-11-18 19:19:35 +00:00
|
|
|
|
2017-11-23 08:09:44 +00:00
|
|
|
%w[created_by_id updated_by_id].each do |local_user_id|
|
2015-05-22 18:52:34 +00:00
|
|
|
next if !self[ local_user_id ]
|
2016-08-18 21:34:13 +00:00
|
|
|
next if data[ app_model_user ][ self[ local_user_id ] ]
|
2018-10-09 06:17:41 +00:00
|
|
|
|
2016-02-08 22:05:59 +00:00
|
|
|
user = User.lookup(id: self[ local_user_id ])
|
|
|
|
next if !user
|
2018-10-09 06:17:41 +00:00
|
|
|
|
2016-02-08 22:05:59 +00:00
|
|
|
data = user.assets(data)
|
2017-10-01 12:25:52 +00:00
|
|
|
end
|
2015-04-27 21:44:41 +00:00
|
|
|
data
|
|
|
|
end
|
2021-09-22 14:57:27 +00:00
|
|
|
|
|
|
|
def filter_unauthorized_attributes(attributes)
|
|
|
|
return super if UserInfo.assets.blank? || UserInfo.assets.agent?
|
|
|
|
|
|
|
|
attributes = super
|
|
|
|
attributes.slice('id', 'name', 'active')
|
|
|
|
end
|
2013-08-19 06:29:49 +00:00
|
|
|
end
|
2015-04-27 14:15:29 +00:00
|
|
|
end
|