jormungandr-bite/src/server/api/endpoints/auth/accept.ts

70 lines
1.4 KiB
TypeScript
Raw Normal View History

2016-12-28 15:49:51 -07:00
import rndstr from 'rndstr';
2017-01-05 19:50:46 -07:00
const crypto = require('crypto');
2017-03-08 11:50:09 -07:00
import $ from 'cafy';
2018-03-29 05:32:18 -06:00
import App from '../../../../models/app';
import AuthSess from '../../../../models/auth-session';
import AccessToken from '../../../../models/access-token';
2018-06-17 18:54:53 -06:00
import { ILocalUser } from '../../../../models/user';
2016-12-28 15:49:51 -07:00
2018-07-16 13:36:44 -06:00
export const meta = {
requireCredential: true,
secure: true
};
2016-12-28 15:49:51 -07:00
/**
* Accept
*/
2018-07-05 11:58:29 -06:00
export default (params: any, user: ILocalUser) => new Promise(async (res, rej) => {
2016-12-28 15:49:51 -07:00
// Get 'token' parameter
2018-05-02 03:06:16 -06:00
const [token, tokenErr] = $.str.get(params.token);
2017-03-03 03:39:41 -07:00
if (tokenErr) return rej('invalid token param');
2016-12-28 15:49:51 -07:00
// Fetch token
const session = await AuthSess
2018-03-27 01:04:22 -06:00
.findOne({ token: token });
2016-12-28 15:49:51 -07:00
if (session === null) {
return rej('session not found');
}
// Generate access token
2017-03-03 03:39:41 -07:00
const accessToken = rndstr('a-zA-Z0-9', 32);
2016-12-28 15:49:51 -07:00
// Fetch exist access token
const exist = await AccessToken.findOne({
2018-03-28 23:48:47 -06:00
appId: session.appId,
userId: user._id,
2016-12-28 15:49:51 -07:00
});
if (exist === null) {
2017-01-05 19:50:46 -07:00
// Lookup app
const app = await App.findOne({
2018-03-28 23:48:47 -06:00
_id: session.appId
2017-01-05 19:50:46 -07:00
});
// Generate Hash
2017-02-08 06:43:46 -07:00
const sha256 = crypto.createHash('sha256');
2017-03-03 03:39:41 -07:00
sha256.update(accessToken + app.secret);
2017-02-08 06:43:46 -07:00
const hash = sha256.digest('hex');
2017-01-05 19:50:46 -07:00
// Insert access token doc
await AccessToken.insert({
2018-03-28 23:48:47 -06:00
createdAt: new Date(),
appId: session.appId,
userId: user._id,
2017-03-03 03:39:41 -07:00
token: accessToken,
2017-01-05 19:50:46 -07:00
hash: hash
2016-12-28 15:49:51 -07:00
});
}
// Update session
2017-01-16 19:11:22 -07:00
await AuthSess.update(session._id, {
2017-02-08 09:34:22 -07:00
$set: {
2018-03-28 23:48:47 -06:00
userId: user._id
2017-02-08 09:34:22 -07:00
}
2016-12-28 15:49:51 -07:00
});
// Response
res();
});