aboutsummaryrefslogtreecommitdiffstats
path: root/app/controllers
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2018-09-27 16:45:59 -0700
committerDavid Heinemeier Hansson <david@loudthinking.com>2018-09-27 16:45:59 -0700
commitb1e08b468b7041ef5df179213f686722b0ead358 (patch)
treefee5085088a1b24f323f5e67f6dd2534dbb49d5e /app/controllers
parent4f0d6c87b15d96a4dba252be833b367bcd675e2b (diff)
downloadrails-b1e08b468b7041ef5df179213f686722b0ead358.tar.gz
rails-b1e08b468b7041ef5df179213f686722b0ead358.tar.bz2
rails-b1e08b468b7041ef5df179213f686722b0ead358.zip
Provide a basic admin interface
BEHOLD THE CONDUCTOR!
Diffstat (limited to 'app/controllers')
-rw-r--r--app/controllers/action_mailroom/inbound_emails_controller.rb27
1 files changed, 25 insertions, 2 deletions
diff --git a/app/controllers/action_mailroom/inbound_emails_controller.rb b/app/controllers/action_mailroom/inbound_emails_controller.rb
index cf44367b7b..b8fa6cde49 100644
--- a/app/controllers/action_mailroom/inbound_emails_controller.rb
+++ b/app/controllers/action_mailroom/inbound_emails_controller.rb
@@ -2,15 +2,38 @@
# TODO: Spam/malware catching?
# TODO: Specific bounces for SMTP good citizenship: 200/404/400
class ActionMailroom::InboundEmailsController < ActionController::Base
+ layout "action_mailroom"
+
skip_forgery_protection
- before_action :require_rfc822_message
+ before_action :ensure_development_env, except: :create
+ before_action :require_rfc822_message, only: :create
+
+ def index
+ @inbound_emails = ActionMailroom::InboundEmail.order(created_at: :desc)
+ end
+
+ def new
+ end
+
+ def show
+ @inbound_email = ActionMailroom::InboundEmail.find(params[:id])
+ end
def create
ActionMailroom::InboundEmail.create_from_raw_email!(params[:message])
- head :created
+
+ respond_to do |format|
+ format.html { redirect_to main_app.rails_new_inbound_email_url }
+ format.any { head :created }
+ end
end
private
+ # TODO: Should probably separate the admin interface and do more to ensure that it isn't exposed to the web
+ def ensure_development_env
+ head :forbidden unless Rails.env.development?
+ end
+
def require_rfc822_message
head :unsupported_media_type unless params.require(:message).content_type == 'message/rfc822'
end