Sha256: a14500f5f7e43fd48a9bbb8e2695e8f71d063340e69ed61cba4567c7338a4d69

Contents?: true

Size: 1.54 KB

Versions: 4

Compression:

Stored size: 1.54 KB

Contents

module S3Relay
  class Upload

    include Mongoid::Document

    field :uuid
    field :user_id, type: Integer
    field :parent_type, type: String
    field :parent_id, type: Integer
    field :upload_type, type: String
    field :filename, type: String
    field :content_type, type: String
    field :state, type: String
    field :data, type: Hash, default: Hash.new
    field :pending_at, type: DateTime
    field :imported_at, type: DateTime

    belongs_to :parent, polymorphic: true, optional: true

    validates :uuid,         presence: true, uniqueness: true
    validates :upload_type,  presence: true
    validates :filename,     presence: true
    validates :content_type, presence: true
    validates :pending_at,   presence: true

    after_initialize :finalize
    after_create :notify_parent

    def self.pending
      where(state: "pending")
    end

    def self.imported
      where(state: "imported")
    end

    def pending?
      state == "pending"
    end

    def imported?
      state == "imported"
    end

    def mark_imported!
      update_attributes(state: "imported", imported_at: Time.now)
    end

    def notify_parent
      return unless parent.present?

      if parent.respond_to?(:import_upload)
        parent.import_upload(id)
      end
    end

    def public_url
      S3Relay::PrivateUrl.new(uuid, filename).public_url
    end

    def private_url
      S3Relay::PrivateUrl.new(uuid, filename).generate
    end

    private

    def finalize
      self.state      ||= "pending"
      self.pending_at ||= Time.now
    end

  end
end

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
mongoid-direct-s3-upload-0.1.2 app/models/s3_relay/upload.rb
mongoid-direct-s3-upload-0.1.1 app/models/s3_relay/upload.rb
mongoid-direct-s3-upload-0.1.0 app/models/s3_relay/upload.rb
mongoid_direct_s3_upload-0.1.0 app/models/s3_relay/upload.rb