Sha256: c82cfd97bd3ef11abf714426fd36744a3c5f4566d4bc2e834e1c7b97d7e1caec
Contents?: true
Size: 1.45 KB
Versions: 10
Compression:
Stored size: 1.45 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: @form.attachment.file # Define attached_to before this ) end def delete_attachment(attachment) Attachment.find(attachment.id).delete if attachment.id == 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 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 end end
Version data entries
10 entries across 10 versions & 1 rubygems