trabajo-afectivo/app/models/ticket/article/assets.rb

58 lines
1.4 KiB
Ruby
Raw Normal View History

2014-02-03 19:23:00 +00:00
# Copyright (C) 2012-2014 Zammad Foundation, http://zammad-foundation.org/
2015-04-27 21:27:51 +00:00
class Ticket
class Article
module Assets
=begin
get all assets / related models for this article
article = Ticket::Article.find(123)
result = article.assets( assets_if_exists )
returns
result = {
:users => {
123 => user_model_123,
1234 => user_model_1234,
}
:article => [ article_model1 ],
}
=end
2015-04-27 21:27:51 +00:00
def assets (data)
2015-04-27 21:27:51 +00:00
if !data[ Ticket.to_app_model ]
data[ Ticket.to_app_model ] = {}
end
if !data[ Ticket.to_app_model ][ self.ticket_id ]
ticket = Ticket.find( self.ticket_id )
data = ticket.assets(data)
end
2015-04-27 21:27:51 +00:00
if !data[ Ticket::Article.to_app_model ]
data[ Ticket::Article.to_app_model ] = {}
end
if !data[ Ticket::Article.to_app_model ][ self.id ]
data[ Ticket::Article.to_app_model ][ self.id ] = self.attributes
2015-04-27 21:27:51 +00:00
# add attachment list to article
data[ Ticket::Article.to_app_model ][ self.id ]['attachments'] = self.attachments
2014-08-02 22:06:51 +00:00
end
2015-04-27 21:27:51 +00:00
['created_by_id', 'updated_by_id'].each {|item|
next if !self[ item ]
if !data[ User.to_app_model ] || !data[ User.to_app_model ][ self[ item ] ]
user = User.lookup( id: self[ item ] )
data = user.assets( data )
end
}
data
2014-08-02 22:06:51 +00:00
end
2015-04-27 21:27:51 +00:00
end
end
2014-02-03 19:23:00 +00:00
end