2018-09-15 07:01:19 +00:00
|
|
|
'use strict';
|
|
|
|
const express = require('express'),
|
|
|
|
router = express.Router(),
|
2019-02-06 11:08:59 +00:00
|
|
|
crypto = require('crypto');
|
2018-09-15 07:01:19 +00:00
|
|
|
|
|
|
|
function createActor(name, domain, pubkey) {
|
|
|
|
return {
|
|
|
|
'@context': [
|
|
|
|
'https://www.w3.org/ns/activitystreams',
|
|
|
|
'https://w3id.org/security/v1'
|
|
|
|
],
|
|
|
|
|
|
|
|
'id': `https://${domain}/u/${name}`,
|
|
|
|
'type': 'Person',
|
|
|
|
'preferredUsername': `${name}`,
|
|
|
|
'inbox': `https://${domain}/api/inbox`,
|
2019-03-26 04:26:17 +00:00
|
|
|
'followers': `https://${domain}/u/${name}/followers`,
|
2018-09-15 07:01:19 +00:00
|
|
|
|
|
|
|
'publicKey': {
|
|
|
|
'id': `https://${domain}/u/${name}#main-key`,
|
|
|
|
'owner': `https://${domain}/u/${name}`,
|
|
|
|
'publicKeyPem': pubkey
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
function createWebfinger(name, domain) {
|
|
|
|
return {
|
|
|
|
'subject': `acct:${name}@${domain}`,
|
|
|
|
|
|
|
|
'links': [
|
|
|
|
{
|
|
|
|
'rel': 'self',
|
|
|
|
'type': 'application/activity+json',
|
|
|
|
'href': `https://${domain}/u/${name}`
|
|
|
|
}
|
|
|
|
]
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
router.post('/create', function (req, res) {
|
|
|
|
// pass in a name for an account, if the account doesn't exist, create it!
|
|
|
|
const account = req.body.account;
|
|
|
|
if (account === undefined) {
|
|
|
|
return res.status(400).json({msg: 'Bad request. Please make sure "account" is a property in the POST body.'});
|
|
|
|
}
|
|
|
|
let db = req.app.get('db');
|
|
|
|
let domain = req.app.get('domain');
|
|
|
|
// create keypair
|
2019-02-06 11:08:59 +00:00
|
|
|
crypto.generateKeyPair('rsa', {
|
|
|
|
modulusLength: 4096,
|
|
|
|
publicKeyEncoding: {
|
|
|
|
type: 'spki',
|
|
|
|
format: 'pem'
|
|
|
|
},
|
|
|
|
privateKeyEncoding: {
|
|
|
|
type: 'pkcs8',
|
|
|
|
format: 'pem'
|
|
|
|
}
|
|
|
|
}, (err, publicKey, privateKey) => {
|
|
|
|
let actorRecord = createActor(account, domain, publicKey);
|
|
|
|
let webfingerRecord = createWebfinger(account, domain);
|
|
|
|
const apikey = crypto.randomBytes(16).toString('hex');
|
|
|
|
try {
|
|
|
|
db.prepare('insert or replace into accounts(name, actor, apikey, pubkey, privkey, webfinger) values(?, ?, ?, ?, ?, ?)').run(`${account}@${domain}`, JSON.stringify(actorRecord), apikey, publicKey, privateKey, JSON.stringify(webfingerRecord));
|
|
|
|
res.status(200).json({msg: 'ok', apikey});
|
|
|
|
}
|
|
|
|
catch(e) {
|
|
|
|
res.status(200).json({error: e});
|
|
|
|
}
|
2020-10-03 09:47:55 +00:00
|
|
|
});
|
2018-09-15 07:01:19 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
module.exports = router;
|