Newer
Older
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
Lloyd Hilaiel
committed
const
db = require('../db.js'),
httputils = require('../httputils'),
logger = require('../logging.js').logger,
Lloyd Hilaiel
committed
forward = require('../http_forward.js').forward,
config = require('../configuration.js'),
urlparse = require('urlparse'),
wsapi = require('../wsapi.js');
Lloyd Hilaiel
committed
exports.method = 'post';
exports.writes_db = false;
Lloyd Hilaiel
committed
exports.authed = 'password';
Zachary Carter
committed
exports.args = {
'email': 'email',
'pubkey': 'pubkey',
'ephemeral': 'boolean'
};
Austin King
committed
exports.i18n = false;
Lloyd Hilaiel
committed
exports.process = function(req, res) {
Zachary Carter
committed
db.userOwnsEmail(req.session.userid, req.params.email, function(err, owned) {
if (err) return wsapi.databaseDown(res, err);
// not same account? big fat error
if (!owned) return httputils.badRequest(res, "that email does not belong to you");
Lloyd Hilaiel
committed
// secondary addresses in the database may be "unverified". this occurs when
// a user forgets their password. We will not issue certs for unverified email
// addresses
Zachary Carter
committed
db.emailIsVerified(req.params.email, function(err, verified) {
if (!verified) return httputils.forbidden(res, "that email requires (re)verification");
// forward to the keysigner!
var keysigner = urlparse(config.get('keysigner_url'));
keysigner.path = '/wsapi/cert_key';
Lloyd Hilaiel
committed
// parameter validation moves arguments from req.body to req.params,
// and removes them from req.body. This feature makes it impossible
// to use unvalidated params in your wsapi "process" function.
//
// http_forward, however, will only forward params in req.body
// or req.query. so we explicitly copy req.params to req.body
// to cause them to be forwarded.
Zachary Carter
committed
req.body = req.params;
Lloyd Hilaiel
committed
forward(keysigner, req, res, function(err) {
if (err) {
logger.error("error forwarding request to keysigner: " + err);
httputils.serverError(res, "can't contact keysigner");
return;
}
});
Lloyd Hilaiel
committed
});
});
};