# Copyright (C) 2012-2025 Zammad Foundation, https://zammad-foundation.org/

class OnlineNotification
  module Assets
    extend ActiveSupport::Concern

=begin

get all assets / related models for this online notification item

  online_notification = OnlineNotification.find(123)
  result = online_notification.assets(assets_if_exists)

returns

  result = {
    :OnlineNotification => {
      123  => online_notification_model_123,
      1234 => online_notification_model_1234,
    }
  }

=end

    def assets(data)

      app_model = self.class.to_app_model

      if !data[ app_model ]
        data[ app_model ] = {}
      end
      return data if data[ app_model ][ id ]

      local_attributes = attributes_with_association_ids

      local_attributes['object'] = ObjectLookup.by_id(local_attributes['object_lookup_id'])
      local_attributes['type'] = TypeLookup.by_id(local_attributes['type_lookup_id'])

      # set temp. current attributes to assets pool to prevent
      # loops, will be updated with lookup attributes later
      data[ app_model ][ id ] = local_attributes

      ApplicationModel.assets_of_object_list([local_attributes], data)

      return data if !self['created_by_id'] && !self['updated_by_id']

      app_model_user = User.to_app_model
      %w[created_by_id updated_by_id].each do |local_user_id|
        next if !self[ local_user_id ]
        next if data[ app_model_user ] && data[ app_model_user ][ self[ local_user_id ] ]

        user = User.lookup(id: self[ local_user_id ])
        next if !user

        data = user.assets(data)
      end
      data
    end
  end
end