2022-01-01 13:38:12 +00:00
|
|
|
# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
|
2015-08-30 11:58:05 +00:00
|
|
|
|
|
|
|
class Channel
|
|
|
|
module Assets
|
2018-04-26 08:55:53 +00:00
|
|
|
extend ActiveSupport::Concern
|
2015-08-30 11:58:05 +00:00
|
|
|
|
|
|
|
=begin
|
|
|
|
|
|
|
|
get all assets / related models for this channel
|
|
|
|
|
|
|
|
channel = Channel.find(123)
|
2016-08-18 21:34:13 +00:00
|
|
|
result = channel.assets(assets_if_exists)
|
2015-08-30 11:58:05 +00:00
|
|
|
|
|
|
|
returns
|
|
|
|
|
|
|
|
result = {
|
|
|
|
:channels => {
|
|
|
|
123 => channel_model_123,
|
|
|
|
1234 => channel_model_1234,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
=end
|
|
|
|
|
2016-08-18 21:34:13 +00:00
|
|
|
def assets(data = {})
|
2015-08-30 11:58:05 +00:00
|
|
|
|
2016-08-18 21:34:13 +00:00
|
|
|
app_model = self.class.to_app_model
|
|
|
|
|
|
|
|
if !data[ app_model ]
|
|
|
|
data[ app_model ] = {}
|
2015-08-30 11:58:05 +00:00
|
|
|
end
|
2019-11-18 19:19:35 +00:00
|
|
|
return data if data[ app_model ][ id ]
|
|
|
|
|
|
|
|
attributes = attributes_with_association_ids
|
|
|
|
|
|
|
|
# remove passwords if use is no admin
|
|
|
|
access = false
|
|
|
|
if UserInfo.current_user_id
|
|
|
|
user = User.lookup(id: UserInfo.current_user_id)
|
|
|
|
if user.permissions?('admin.channel')
|
|
|
|
access = true
|
2015-09-06 07:50:51 +00:00
|
|
|
end
|
2019-11-18 19:19:35 +00:00
|
|
|
end
|
|
|
|
if !access
|
|
|
|
%w[inbound outbound].each do |key|
|
|
|
|
if attributes['options'] && attributes['options'][key] && attributes['options'][key]['options']
|
|
|
|
attributes['options'][key]['options'].delete('password')
|
2017-10-01 12:25:52 +00:00
|
|
|
end
|
2015-09-06 07:50:51 +00:00
|
|
|
end
|
2015-08-30 11:58:05 +00:00
|
|
|
end
|
|
|
|
|
2019-11-18 19:19:35 +00:00
|
|
|
data[ self.class.to_app_model ][ id ] = attributes
|
|
|
|
|
2015-08-30 11:58:05 +00:00
|
|
|
return data if !self['created_by_id'] && !self['updated_by_id']
|
2018-10-09 06:17:41 +00:00
|
|
|
|
2017-11-23 08:09:44 +00:00
|
|
|
%w[created_by_id updated_by_id].each do |local_user_id|
|
2015-08-30 11:58:05 +00:00
|
|
|
next if !self[ local_user_id ]
|
|
|
|
next if data[ User.to_app_model ] && data[ User.to_app_model ][ 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-08-30 11:58:05 +00:00
|
|
|
data
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|