Sha256: 7390144b01c7db8c8fad3aa87e293f386075d182b679ef2d6c0c2e8e675317cf

Contents?: true

Size: 1.71 KB

Versions: 8

Compression:

Stored size: 1.71 KB

Contents

module RocketCMS
  module Controllers
    module Contacts
      extend ActiveSupport::Concern
      def index
        @contact_message = ContactMessage.new
        after_initialize
      end

      def new
        @contact_message = model.new
        after_initialize
      end

      def create
        @contact_message = model.new(message_params)
        after_initialize
        if RocketCMS.config.contacts_captcha
          meth = :save_with_captcha
        else
          meth = :save
        end
        if @contact_message.send(meth)
          after_create
          if request.xhr? && process_ajax
            ajax_success
          else
            redirect_after_done
          end
        else
          render_contacts_error
        end
      end

      def sent
      end

      private
      def render_contacts_error
        if request.xhr? && process_ajax
          render json: {errors: @contact_message.errors}, status: 422
        else
          flash.now[:alert] = @contact_message.errors.full_messages.join("\n")
          render action: RocketCMS.configuration.recreate_contact_message_action, status: 422
        end
      end
      def process_ajax
        true
      end
      def ajax_success
        render json: {ok: true}
      end
      def redirect_after_done
        redirect_to :contacts_sent
      end
      def after_initialize
        # overrideable hook for updating message
      end
      def after_create
        # overrideable hook for updating message
      end
      def model
        ContactMessage
      end
      def message_params
        params.require(:contact_message).permit(RocketCMS.config.contacts_fields.keys + [:name, :email, :phone, :content, :captcha, :captcha_key])
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
ack_rocket_cms-0.9.2 lib/rocket_cms/controllers/contacts.rb
ack_rocket_cms-0.9.1.3 lib/rocket_cms/controllers/contacts.rb
ack_rocket_cms-0.9.1.2 lib/rocket_cms/controllers/contacts.rb
ack_rocket_cms-0.9.1.1 lib/rocket_cms/controllers/contacts.rb
ack_rocket_cms-0.9.1 lib/rocket_cms/controllers/contacts.rb
ack_rocket_cms-0.9 lib/rocket_cms/controllers/contacts.rb
ack_rocket_cms-0.8.2 lib/rocket_cms/controllers/contacts.rb
ack_rocket_cms-0.8.0 lib/rocket_cms/controllers/contacts.rb