2016-12-28 23:49:51 +01:00
|
|
|
import * as uuid from 'uuid';
|
2017-03-08 19:50:09 +01:00
|
|
|
import $ from 'cafy';
|
2018-03-29 13:32:18 +02:00
|
|
|
import App from '../../../../../models/app';
|
|
|
|
import AuthSess from '../../../../../models/auth-session';
|
2018-04-02 06:15:53 +02:00
|
|
|
import config from '../../../../../config';
|
2018-11-02 04:49:08 +01:00
|
|
|
import getParams from '../../../get-params';
|
|
|
|
|
|
|
|
export const meta = {
|
|
|
|
requireCredential: false,
|
|
|
|
|
|
|
|
params: {
|
|
|
|
appSecret: {
|
|
|
|
validator: $.str
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2018-07-05 19:58:29 +02:00
|
|
|
export default (params: any) => new Promise(async (res, rej) => {
|
2018-11-02 04:49:08 +01:00
|
|
|
const [ps, psErr] = getParams(meta, params);
|
|
|
|
if (psErr) return rej(psErr);
|
2016-12-28 23:49:51 +01:00
|
|
|
|
|
|
|
// Lookup app
|
|
|
|
const app = await App.findOne({
|
2018-11-02 04:49:08 +01:00
|
|
|
secret: ps.appSecret
|
2016-12-28 23:49:51 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
if (app == null) {
|
|
|
|
return rej('app not found');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Generate token
|
|
|
|
const token = uuid.v4();
|
|
|
|
|
|
|
|
// Create session token document
|
2017-01-20 09:38:05 +01:00
|
|
|
const doc = await AuthSess.insert({
|
2018-03-29 07:48:47 +02:00
|
|
|
createdAt: new Date(),
|
|
|
|
appId: app._id,
|
2016-12-28 23:49:51 +01:00
|
|
|
token: token
|
|
|
|
});
|
|
|
|
|
|
|
|
// Response
|
|
|
|
res({
|
|
|
|
token: doc.token,
|
|
|
|
url: `${config.auth_url}/${doc.token}`
|
|
|
|
});
|
|
|
|
});
|