2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-05-30 11:11:17 -04:00
|
|
|
require "openssl"
|
|
|
|
|
|
|
|
class WebhooksController < ActionController::Base
|
|
|
|
|
|
|
|
def mailgun
|
|
|
|
return mailgun_failure if SiteSetting.mailgun_api_key.blank?
|
|
|
|
|
2019-01-31 11:52:33 -05:00
|
|
|
params["event-data"] ? handle_mailgun_new(params) : handle_mailgun_legacy(params)
|
2016-05-30 11:11:17 -04:00
|
|
|
end
|
|
|
|
|
2016-06-01 15:48:06 -04:00
|
|
|
def sendgrid
|
2016-06-06 13:47:45 -04:00
|
|
|
events = params["_json"] || [params]
|
|
|
|
events.each do |event|
|
2016-06-08 16:38:38 -04:00
|
|
|
message_id = (event["smtp-id"] || "").tr("<>", "")
|
2017-02-05 13:06:35 -05:00
|
|
|
to_address = event["email"]
|
2016-06-01 15:48:06 -04:00
|
|
|
if event["event"] == "bounce".freeze
|
|
|
|
if event["status"]["4."]
|
2017-02-05 13:06:35 -05:00
|
|
|
process_bounce(message_id, to_address, SiteSetting.soft_bounce_score)
|
2016-06-01 15:48:06 -04:00
|
|
|
else
|
2017-02-05 13:06:35 -05:00
|
|
|
process_bounce(message_id, to_address, SiteSetting.hard_bounce_score)
|
2016-06-01 15:48:06 -04:00
|
|
|
end
|
|
|
|
elsif event["event"] == "dropped".freeze
|
2017-02-05 13:06:35 -05:00
|
|
|
process_bounce(message_id, to_address, SiteSetting.hard_bounce_score)
|
2016-06-01 15:48:06 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-02-13 15:26:40 -05:00
|
|
|
success
|
2016-06-01 15:48:06 -04:00
|
|
|
end
|
|
|
|
|
2016-06-06 13:47:45 -04:00
|
|
|
def mailjet
|
|
|
|
events = params["_json"] || [params]
|
|
|
|
events.each do |event|
|
2016-06-08 16:38:38 -04:00
|
|
|
message_id = event["CustomID"]
|
2017-02-05 13:06:35 -05:00
|
|
|
to_address = event["email"]
|
2016-06-06 13:47:45 -04:00
|
|
|
if event["event"] == "bounce".freeze
|
|
|
|
if event["hard_bounce"]
|
2017-02-05 13:06:35 -05:00
|
|
|
process_bounce(message_id, to_address, SiteSetting.hard_bounce_score)
|
2016-06-06 13:47:45 -04:00
|
|
|
else
|
2017-02-05 13:06:35 -05:00
|
|
|
process_bounce(message_id, to_address, SiteSetting.soft_bounce_score)
|
2016-06-06 13:47:45 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-02-13 15:26:40 -05:00
|
|
|
success
|
2016-06-06 13:47:45 -04:00
|
|
|
end
|
|
|
|
|
2016-06-13 06:31:01 -04:00
|
|
|
def mandrill
|
|
|
|
events = params["mandrill_events"]
|
|
|
|
events.each do |event|
|
2018-03-28 04:20:08 -04:00
|
|
|
message_id = event.dig("msg", "metadata", "message_id")
|
|
|
|
to_address = event.dig("msg", "email")
|
2016-06-13 06:31:01 -04:00
|
|
|
|
|
|
|
case event["event"]
|
|
|
|
when "hard_bounce"
|
2017-02-05 13:06:35 -05:00
|
|
|
process_bounce(message_id, to_address, SiteSetting.hard_bounce_score)
|
2016-06-13 06:31:01 -04:00
|
|
|
when "soft_bounce"
|
2017-02-05 13:06:35 -05:00
|
|
|
process_bounce(message_id, to_address, SiteSetting.soft_bounce_score)
|
2016-06-13 06:31:01 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-02-13 15:26:40 -05:00
|
|
|
success
|
2016-06-13 06:31:01 -04:00
|
|
|
end
|
|
|
|
|
2020-02-11 10:09:07 -05:00
|
|
|
def postmark
|
|
|
|
# see https://postmarkapp.com/developer/webhooks/bounce-webhook#bounce-webhook-data
|
|
|
|
# and https://postmarkapp.com/developer/api/bounce-api#bounce-types
|
|
|
|
|
|
|
|
message_id = params["MessageID"]
|
|
|
|
to_address = params["Email"]
|
2020-02-11 11:21:03 -05:00
|
|
|
type = params["Type"]
|
2020-02-11 10:09:07 -05:00
|
|
|
case type
|
|
|
|
when "HardBounce", "SpamNotification", "SpamComplaint"
|
|
|
|
process_bounce(message_id, to_address, SiteSetting.hard_bounce_score)
|
|
|
|
when "SoftBounce"
|
|
|
|
process_bounce(message_id, to_address, SiteSetting.soft_bounce_score)
|
|
|
|
end
|
|
|
|
|
|
|
|
success
|
|
|
|
end
|
|
|
|
|
2016-09-27 01:13:34 -04:00
|
|
|
def sparkpost
|
|
|
|
events = params["_json"] || [params]
|
|
|
|
events.each do |event|
|
2018-03-28 04:20:08 -04:00
|
|
|
message_event = event.dig("msys", "message_event")
|
2017-02-05 13:06:35 -05:00
|
|
|
next unless message_event
|
|
|
|
|
2018-03-28 04:20:08 -04:00
|
|
|
message_id = message_event.dig("rcpt_meta", "message_id")
|
|
|
|
to_address = message_event["rcpt_to"]
|
|
|
|
bounce_class = message_event["bounce_class"]
|
2017-02-05 13:06:35 -05:00
|
|
|
next unless bounce_class
|
2016-09-27 01:13:34 -04:00
|
|
|
|
|
|
|
bounce_class = bounce_class.to_i
|
|
|
|
|
|
|
|
# bounce class definitions: https://support.sparkpost.com/customer/portal/articles/1929896
|
|
|
|
if bounce_class < 80
|
|
|
|
if bounce_class == 10 || bounce_class == 25 || bounce_class == 30
|
2017-02-05 13:06:35 -05:00
|
|
|
process_bounce(message_id, to_address, SiteSetting.hard_bounce_score)
|
2016-09-27 01:13:34 -04:00
|
|
|
else
|
2017-02-05 13:06:35 -05:00
|
|
|
process_bounce(message_id, to_address, SiteSetting.soft_bounce_score)
|
2016-09-27 01:13:34 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-02-13 15:26:40 -05:00
|
|
|
success
|
|
|
|
end
|
|
|
|
|
|
|
|
def aws
|
|
|
|
raw = request.raw_post
|
|
|
|
json = JSON.parse(raw)
|
|
|
|
|
|
|
|
case json["Type"]
|
|
|
|
when "SubscriptionConfirmation"
|
|
|
|
Jobs.enqueue(:confirm_sns_subscription, raw: raw, json: json)
|
|
|
|
when "Notification"
|
|
|
|
Jobs.enqueue(:process_sns_notification, raw: raw, json: json)
|
|
|
|
end
|
|
|
|
|
|
|
|
success
|
2016-09-27 01:13:34 -04:00
|
|
|
end
|
|
|
|
|
2016-05-30 11:11:17 -04:00
|
|
|
private
|
|
|
|
|
2018-06-07 01:28:18 -04:00
|
|
|
def mailgun_failure
|
|
|
|
render body: nil, status: 406
|
|
|
|
end
|
2016-05-30 11:11:17 -04:00
|
|
|
|
2019-02-13 15:26:40 -05:00
|
|
|
def success
|
2018-06-07 01:28:18 -04:00
|
|
|
render body: nil, status: 200
|
|
|
|
end
|
2016-05-30 11:11:17 -04:00
|
|
|
|
2019-01-31 11:52:33 -05:00
|
|
|
def valid_mailgun_signature?(token, timestamp, signature)
|
|
|
|
# token is a random 50 characters string
|
|
|
|
return false if token.blank? || token.size != 50
|
|
|
|
|
|
|
|
# prevent replay attacks
|
|
|
|
key = "mailgun_token_#{token}"
|
2019-12-03 04:05:53 -05:00
|
|
|
return false unless Discourse.redis.setnx(key, 1)
|
|
|
|
Discourse.redis.expire(key, 10.minutes)
|
2019-01-31 11:52:33 -05:00
|
|
|
|
|
|
|
# ensure timestamp isn't too far from current time
|
|
|
|
return false if (Time.at(timestamp.to_i) - Time.now).abs > 12.hours.to_i
|
|
|
|
|
|
|
|
# check the signature
|
|
|
|
signature == OpenSSL::HMAC.hexdigest("SHA256", SiteSetting.mailgun_api_key, "#{timestamp}#{token}")
|
|
|
|
end
|
|
|
|
|
|
|
|
def handle_mailgun_legacy(params)
|
|
|
|
return mailgun_failure unless valid_mailgun_signature?(params["token"], params["timestamp"], params["signature"])
|
|
|
|
|
|
|
|
event = params["event"]
|
|
|
|
message_id = params["Message-Id"].tr("<>", "")
|
|
|
|
to_address = params["recipient"]
|
|
|
|
|
|
|
|
# only handle soft bounces, because hard bounces are also handled
|
|
|
|
# by the "dropped" event and we don't want to increase bounce score twice
|
|
|
|
# for the same message
|
|
|
|
if event == "bounced".freeze && params["error"]["4."]
|
|
|
|
process_bounce(message_id, to_address, SiteSetting.soft_bounce_score)
|
|
|
|
elsif event == "dropped".freeze
|
|
|
|
process_bounce(message_id, to_address, SiteSetting.hard_bounce_score)
|
|
|
|
end
|
|
|
|
|
2019-02-13 15:26:40 -05:00
|
|
|
success
|
2019-01-31 11:52:33 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def handle_mailgun_new(params)
|
|
|
|
signature = params["signature"]
|
|
|
|
return mailgun_failure unless valid_mailgun_signature?(signature["token"], signature["timestamp"], signature["signature"])
|
|
|
|
|
|
|
|
data = params["event-data"]
|
|
|
|
message_id = data.dig("message", "headers", "message-id")
|
|
|
|
to_address = data["recipient"]
|
|
|
|
severity = data["severity"]
|
|
|
|
|
|
|
|
if data["event"] == "failed".freeze
|
|
|
|
if severity == "temporary".freeze
|
|
|
|
process_bounce(message_id, to_address, SiteSetting.soft_bounce_score)
|
|
|
|
elsif severity == "permanent".freeze
|
|
|
|
process_bounce(message_id, to_address, SiteSetting.hard_bounce_score)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-02-13 15:26:40 -05:00
|
|
|
success
|
2018-06-07 01:28:18 -04:00
|
|
|
end
|
2016-05-30 11:11:17 -04:00
|
|
|
|
2018-06-07 01:28:18 -04:00
|
|
|
def process_bounce(message_id, to_address, bounce_score)
|
|
|
|
return if message_id.blank? || to_address.blank?
|
2016-06-06 13:47:45 -04:00
|
|
|
|
2018-06-07 01:28:18 -04:00
|
|
|
email_log = EmailLog.find_by(message_id: message_id, to_address: to_address)
|
|
|
|
return if email_log.nil?
|
2016-06-06 13:47:45 -04:00
|
|
|
|
2018-06-07 01:28:18 -04:00
|
|
|
email_log.update_columns(bounced: true)
|
|
|
|
return if email_log.user.nil? || email_log.user.email.blank?
|
2016-10-26 04:13:05 -04:00
|
|
|
|
2018-06-07 01:28:18 -04:00
|
|
|
Email::Receiver.update_bounce_score(email_log.user.email, bounce_score)
|
|
|
|
end
|
2016-06-06 13:47:45 -04:00
|
|
|
|
2016-05-30 11:11:17 -04:00
|
|
|
end
|