2014-02-03 19:23:00 +00:00
|
|
|
# Copyright (C) 2012-2014 Zammad Foundation, http://zammad-foundation.org/
|
2015-04-27 23:19:26 +00:00
|
|
|
module Ticket::Assets
|
2013-08-19 06:29:49 +00:00
|
|
|
|
|
|
|
=begin
|
|
|
|
|
|
|
|
get all assets / related models for this ticket
|
|
|
|
|
|
|
|
ticket = Ticket.find(123)
|
2016-06-07 19:22:08 +00:00
|
|
|
result = ticket.assets(assets_if_exists)
|
2013-08-19 06:29:49 +00:00
|
|
|
|
|
|
|
returns
|
|
|
|
|
|
|
|
result = {
|
2016-06-07 19:22:08 +00:00
|
|
|
users: {
|
|
|
|
123: user_model_123,
|
|
|
|
1234: user_model_1234,
|
|
|
|
},
|
|
|
|
tickets: [ ticket_model1 ]
|
2013-08-19 06:29:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
=end
|
|
|
|
|
2015-04-27 23:19:26 +00:00
|
|
|
def assets (data)
|
2013-08-19 06:29:49 +00:00
|
|
|
|
2015-04-27 23:19:26 +00:00
|
|
|
if !data[ Ticket.to_app_model ]
|
|
|
|
data[ Ticket.to_app_model ] = {}
|
2015-04-27 21:27:51 +00:00
|
|
|
end
|
2015-05-07 12:10:38 +00:00
|
|
|
if !data[ Ticket.to_app_model ][ id ]
|
|
|
|
data[ Ticket.to_app_model ][ id ] = attributes_with_associations
|
2015-04-27 23:19:26 +00:00
|
|
|
end
|
2016-06-30 20:04:48 +00:00
|
|
|
%w(created_by_id updated_by_id owner_id customer_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 ] && 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 23:19:26 +00:00
|
|
|
}
|
|
|
|
data
|
2013-08-19 06:29:49 +00:00
|
|
|
end
|
2014-02-03 19:23:00 +00:00
|
|
|
end
|