# frozen_string_literal: true class LogWorker include Sidekiq::Worker sidekiq_options unique: :until_executed def perform(log_text) logger_id = ENV['LOG_USER'].to_i return true if logger_id == 0 logger = Account.find_by(id: logger_id) return true if logger.nil? PostStatusService.new.call( logger, created_at: Time.now.utc, text: log_text.strip, tags: ['monsterpit.admin.log'], visibility: :unlisted, local_only: true, content_type: 'text/plain', language: 'en', ) rescue ActiveRecord::RecordNotFound, ActiveRecord::RecordInvalid true end end