Sha256: 48f9e08cdc3d2e993e6954d7d630eaf839d19ed53ec91be1e7da69f78bbc1836

Contents?: true

Size: 1.95 KB

Versions: 7

Compression:

Stored size: 1.95 KB

Contents

# frozen_string_literal: true

module Decidim
  # A module with all the attachment common methods
  module AttachmentMethods
    private

    def build_attachment(attached_to = nil)
      attached_to = @attached_to if attached_to.blank?
      attached_to = form.current_organization if attached_to.blank? && form.respond_to?(:current_organization)

      @attachment = Attachment.new(
        title: { I18n.locale => @form.attachment.title },
        attached_to: attached_to,
        file: signed_id_for(@form.attachment.file),
        content_type: content_type_for(@form.attachment.file)
      )
    end

    def delete_attachment(attachment)
      Attachment.find(attachment.id).delete if attachment.id.to_i == proposal.documents.first.id
    end

    def attachment_invalid?
      if attachment.invalid? && attachment.errors.has_key?(:file)
        @form.attachment.errors.add :file, attachment.errors[:file]
        true
      end
    end

    def attachment_present?
      @form.attachment.file.present?
    end

    def attachment_file_uploaded?
      !@form.attachment.file.is_a?(Decidim::ApplicationUploader)
    end

    def create_attachment(weight: 0)
      attachment.weight = weight
      attachment.attached_to = @attached_to
      attachment.save!
    end

    def attachments_allowed?
      @form.current_component.settings.attachments_allowed?
    end

    def process_attachments?
      attachments_allowed? && attachment_present? && attachment_file_uploaded?
    end

    def delete_attachment?
      @form.attachment&.delete_file.present?
    end

    protected

    def signed_id_for(attachment)
      return attachment[:file] if attachment.is_a?(Hash)

      attachment
    end

    def content_type_for(attachment)
      return attachment.content_type if attachment.instance_of?(ActionDispatch::Http::UploadedFile)

      blob(signed_id_for(attachment)).content_type
    end

    def blob(signed_id)
      ActiveStorage::Blob.find_signed(signed_id)
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
decidim-core-0.27.9 app/commands/decidim/attachment_methods.rb
decidim-core-0.27.8 app/commands/decidim/attachment_methods.rb
decidim-core-0.27.7 app/commands/decidim/attachment_methods.rb
decidim-core-0.27.6 app/commands/decidim/attachment_methods.rb
decidim-core-0.27.5 app/commands/decidim/attachment_methods.rb
decidim-core-0.27.4 app/commands/decidim/attachment_methods.rb
decidim-core-0.27.3 app/commands/decidim/attachment_methods.rb