iceshrimp-legacy/src/server/api/endpoints/auth/session/generate.ts

77 lines
1.6 KiB
TypeScript
Raw Normal View History

2016-12-28 23:49:51 +01:00
/**
* Module dependencies
*/
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-03-28 18:20:40 +02:00
import config from '../../../../../conf';
2016-12-28 23:49:51 +01:00
2017-01-04 04:59:20 +01:00
/**
* @swagger
* /auth/session/generate:
* post:
* summary: Generate a session
* parameters:
* -
2018-03-29 07:48:47 +02:00
* name: appSecret
* description: App Secret
2017-01-04 04:59:20 +01:00
* in: formData
* required: true
* type: string
2017-03-01 09:37:01 +01:00
*
2017-01-04 04:59:20 +01:00
* responses:
* 200:
* description: OK
* schema:
* type: object
* properties:
* token:
* type: string
2017-01-05 15:42:27 +01:00
* description: Session Token
2017-01-04 04:59:20 +01:00
* url:
* type: string
2017-01-05 15:42:27 +01:00
* description: Authentication form's URL
2017-01-05 16:39:56 +01:00
* default:
2017-01-04 04:59:20 +01:00
* description: Failed
* schema:
* $ref: "#/definitions/Error"
*/
2016-12-28 23:49:51 +01:00
/**
* Generate a session
*
2017-03-01 09:37:01 +01:00
* @param {any} params
* @return {Promise<any>}
2016-12-28 23:49:51 +01:00
*/
2017-03-03 20:28:38 +01:00
module.exports = (params) => new Promise(async (res, rej) => {
2018-03-29 07:48:47 +02:00
// Get 'appSecret' parameter
const [appSecret, appSecretErr] = $(params.appSecret).string().$;
if (appSecretErr) return rej('invalid appSecret param');
2016-12-28 23:49:51 +01:00
// Lookup app
const app = await App.findOne({
secret: appSecret
});
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}`
});
});