Finished setting up the mailchimp webhook.

This commit is contained in:
Scott Erickson 2014-01-24 12:53:41 -08:00
parent a71b688a15
commit 4450747671
2 changed files with 7 additions and 25 deletions

View file

@ -3,40 +3,21 @@ map = _.invert mail.MAILCHIMP_GROUP_MAP
User = require '../users/User.coffee'
errors = require '../commons/errors'
request = require 'request'
config = require '../../server_config'
badLog = (text) ->
console.log text
request.post 'http://requestb.in/1brdpaz1', { form: {log: text} }
module.exports.setupRoutes = (app) ->
app.all '/mail/webhook', (req, res) ->
app.all config.mail.mailchimpWebhook, (req, res) ->
post = req.body
unless post.type in ['unsubscribe', 'profile']
badLog("Bad post type: #{post.type}")
return res.end()
unless post.data.email
badLog("Ignoring because no email: #{JSON.stringify(req.body, null, '\t')}")
return res.end()
unless post.data.email is 'sderickson@gmail.com'
badLog("Ignoring because this is a test: #{JSON.stringify(req.body, null, '\t')}")
return res.end()
return res.end() unless post.type in ['unsubscribe', 'profile']
return res.end() unless post.data.email
User.findOne {'mailChimp.euid':post.data.id}, (err, user) ->
return errors.serverError(res) if err
if not user
badLog("could not find user for...: #{{'mailChimp.euid':post.data.id}}")
return res.end()
return errors.notFound(res) if not user
handleProfileUpdate(user, post) if post.type is 'profile'
handleUnsubscribe(user) if post.type is 'unsubscribe'
res.end()
user.updatedMailChimp = true # so as not to echo back to mailchimp
user.save (err) ->
badLog("Error updating profile: #{error.message or error}") if err
return errors.serverError(res) if err
res.end()

View file

@ -27,6 +27,7 @@ config.mail.service = process.env.COCO_MAIL_SERVICE_NAME || "Zoho";
config.mail.username = process.env.COCO_MAIL_SERVICE_USERNAME || "";
config.mail.password = process.env.COCO_MAIL_SERVICE_PASSWORD || "";
config.mail.mailchimpAPIKey = process.env.COCO_MAILCHIMP_API_KEY || '';
config.mail.mailchimpWebhook = process.env.COCO_MAILCHIMP_WEBHOOK || '/mail/webhook';
config.mail.sendwithusAPIKey = process.env.COCO_SENDWITHUS_API_KEY || '';
config.salt = process.env.COCO_SALT || 'pepper';