Sha256: 704067650cfcc9b7f598c86a465737d49a92a5b34ced2633d2f5f83f27b31734
Contents?: true
Size: 1.97 KB
Versions: 8
Compression:
Stored size: 1.97 KB
Contents
# frozen_string_literal: true module Decidim module Conferences module Admin # A form object used to create conference members from the admin dashboard. class PartnerForm < Form include Decidim::HasUploadValidations mimic :conference_partner attribute :name, String attribute :link, String attribute :partner_type, String attribute :weight, Integer, default: 0 attribute :logo attribute :remove_logo validates :name, :partner_type, presence: true, if: ->(form) { form.logo.present? } validates :logo, passthru: { to: Decidim::Conferences::Partner, with: { # The partner gets its organization context through the conference # object which is why we need to create a dummy conference in order # to pass the correct organization context to the file upload # validators. conference: lambda do |form| Decidim::Conference.new(organization: form.current_organization) end } } validate :link_format validates :weight, numericality: { greater_than_or_equal_to: 0 } validates :partner_type, inclusion: { in: Decidim::Conferences::Partner::TYPES } alias organization current_organization def link return if super.blank? return "http://" + super unless super.match?(%r{\A(http|https)://}i) super end def types Decidim::Conferences::Partner::TYPES.map do |type| [ I18n.t(type, scope: "decidim.admin.models.partner.types"), type ] end end private def link_format return if link.blank? uri = URI.parse(link) errors.add :link, :invalid if !uri.is_a?(URI::HTTP) || uri.host.nil? rescue URI::InvalidURIError errors.add :link, :invalid end end end end end
Version data entries
8 entries across 8 versions & 1 rubygems