dawarich/app/models/export.rb
2025-04-04 20:14:44 +02:00

25 lines
513 B
Ruby

# frozen_string_literal: true
class Export < ApplicationRecord
belongs_to :user
enum :status, { created: 0, processing: 1, completed: 2, failed: 3 }
enum :file_format, { json: 0, gpx: 1 }
validates :name, presence: true
has_one_attached :file
after_commit -> { ExportJob.perform_later(id) }, on: :create
after_commit -> { remove_attached_file }, on: :destroy
def process!
Exports::Create.new(export: self).call
end
private
def remove_attached_file
file.purge_later
end
end