diff options
author | gumi <git@gumi.ca> | 2019-05-25 23:24:51 -0400 |
---|---|---|
committer | gumi <git@gumi.ca> | 2019-05-25 23:24:51 -0400 |
commit | fb046276622309038be3357bc93ed8f1a8568102 (patch) | |
tree | 731b6919476a9ac08f17a4a3fb1ca8d0c7a25ad3 | |
parent | 6731de13eab82469ac0ccd365cf84586b08ee0c5 (diff) | |
download | apiv1-2.1.0.tar.gz apiv1-2.1.0.tar.bz2 apiv1-2.1.0.tar.xz apiv1-2.1.0.zip |
send to webhook on successful account creationv2.1.0
-rw-r--r-- | package.json | 5 | ||||
-rw-r--r-- | src/api.js | 26 | ||||
-rw-r--r-- | src/routers/tmwa/middlewares/account.js | 4 |
3 files changed, 31 insertions, 4 deletions
diff --git a/package.json b/package.json index 5dadaad..c7a56b0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "tmw-api", - "version": "2.0.0", + "version": "2.1.0", "description": "TMW RESTful API", "author": "The Mana World", "license": "CC0-1.0", @@ -18,6 +18,9 @@ }, "mailer": { "from": "The Mana World <noreply@themanaworld.org>" + }, + "logger": { + "webhook": "" } }, "repository": { @@ -7,14 +7,38 @@ if (process.env.npm_package_config_port === undefined) { process.exit(1); } +const send_hook = (msg) => { + const req = new Request(process.env.npm_package_config_logger_webhook, { + method: "POST", + cache: "no-cache", + redirect: "follow", + headers: { + "Accept": "application/json", + "Content-Type": "application/json", + }, + body: JSON.stringify({ + content: msg, + }), + }); + fetch(req); + console.log(msg); +}; + +const logger = { + log: msg => send_hook(`${msg}`), + info: msg => send_hook(`ℹ ${msg}`), + warn: msg => send_hook(`⚠ ${msg}`), + error: msg => send_hook(`❌ ${msg}`), +}; // config common to all routers: api.locals = Object.assign({ rate_limiting: new Set(), // XXX: or do we want routers to each have their own rate limiter? mailer: { from: process.env.npm_package_config_mailer_from, - } + }, + logger: logger, }, api.locals); diff --git a/src/routers/tmwa/middlewares/account.js b/src/routers/tmwa/middlewares/account.js index 3c82dbc..bc96b6c 100644 --- a/src/routers/tmwa/middlewares/account.js +++ b/src/routers/tmwa/middlewares/account.js @@ -142,7 +142,7 @@ const create_account = (req, res, next) => { res.status(201).json({ status: "success" }); - console.info("TMWA.account: an account was created: %s [%s]", req.body.username, req.ip); + req.app.locals.logger.info("TMWA.account: an account was created: %s [%s]", req.body.username, req.ip); req.app.locals.rate_limiting.add(req.ip); setTimeout(() => req.app.locals.rate_limiting.delete(req.ip), 300000); @@ -155,7 +155,7 @@ const create_account = (req, res, next) => { subject: "The Mana World account registration", text: `Your account (\"${req.body.username}\") was created successfully.\nHave fun playing The Mana World!` }, (err, info) => { - console.info("TMWA.account: sent account creation email: %s %s", req.body.username, info.messageId); + req.app.locals.logger.info("TMWA.account: sent account creation email: %s %s", req.body.username, info.messageId); }); }); child.stdin.end(); |