2019-01-30 02:51:29 +00:00
|
|
|
import * as crypto from 'crypto';
|
2017-03-08 18:50:09 +00:00
|
|
|
import $ from 'cafy';
|
2021-08-19 12:55:45 +00:00
|
|
|
import define from '../../define';
|
|
|
|
import { ApiError } from '../../error';
|
|
|
|
import { AuthSessions, AccessTokens, Apps } from '@/models/index';
|
|
|
|
import { genId } from '@/misc/gen-id';
|
|
|
|
import { secureRndstr } from '@/misc/secure-rndstr';
|
2016-12-28 22:49:51 +00:00
|
|
|
|
2018-07-16 19:36:44 +00:00
|
|
|
export const meta = {
|
2019-02-23 02:20:58 +00:00
|
|
|
tags: ['auth'],
|
|
|
|
|
2020-02-15 12:33:32 +00:00
|
|
|
requireCredential: true as const,
|
2018-11-02 03:49:08 +00:00
|
|
|
|
|
|
|
secure: true,
|
|
|
|
|
|
|
|
params: {
|
|
|
|
token: {
|
|
|
|
validator: $.str
|
|
|
|
}
|
2019-02-22 02:46:58 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
errors: {
|
|
|
|
noSuchSession: {
|
|
|
|
message: 'No such session.',
|
|
|
|
code: 'NO_SUCH_SESSION',
|
|
|
|
id: '9c72d8de-391a-43c1-9d06-08d29efde8df'
|
|
|
|
},
|
2018-11-02 03:49:08 +00:00
|
|
|
}
|
2018-07-16 19:36:44 +00:00
|
|
|
};
|
|
|
|
|
2019-02-22 02:46:58 +00:00
|
|
|
export default define(meta, async (ps, user) => {
|
2016-12-28 22:49:51 +00:00
|
|
|
// Fetch token
|
2019-04-07 12:50:36 +00:00
|
|
|
const session = await AuthSessions
|
2018-11-02 03:49:08 +00:00
|
|
|
.findOne({ token: ps.token });
|
2016-12-28 22:49:51 +00:00
|
|
|
|
2019-04-07 12:50:36 +00:00
|
|
|
if (session == null) {
|
2019-02-22 02:46:58 +00:00
|
|
|
throw new ApiError(meta.errors.noSuchSession);
|
2016-12-28 22:49:51 +00:00
|
|
|
}
|
|
|
|
|
2017-01-06 03:09:57 +00:00
|
|
|
// Generate access token
|
2020-03-29 14:16:36 +00:00
|
|
|
const accessToken = secureRndstr(32, true);
|
2016-12-28 22:49:51 +00:00
|
|
|
|
2017-01-06 03:09:57 +00:00
|
|
|
// Fetch exist access token
|
2019-04-07 12:50:36 +00:00
|
|
|
const exist = await AccessTokens.findOne({
|
2018-03-29 05:48:47 +00:00
|
|
|
appId: session.appId,
|
2019-04-07 12:50:36 +00:00
|
|
|
userId: user.id,
|
2016-12-28 22:49:51 +00:00
|
|
|
});
|
|
|
|
|
2019-04-07 12:50:36 +00:00
|
|
|
if (exist == null) {
|
2017-01-06 02:50:46 +00:00
|
|
|
// Lookup app
|
2021-02-13 06:33:38 +00:00
|
|
|
const app = await Apps.findOneOrFail(session.appId);
|
2017-01-06 02:50:46 +00:00
|
|
|
|
|
|
|
// Generate Hash
|
2017-02-08 13:43:46 +00:00
|
|
|
const sha256 = crypto.createHash('sha256');
|
2017-03-03 10:39:41 +00:00
|
|
|
sha256.update(accessToken + app.secret);
|
2017-02-08 13:43:46 +00:00
|
|
|
const hash = sha256.digest('hex');
|
2017-01-06 02:50:46 +00:00
|
|
|
|
2020-08-04 14:09:48 +00:00
|
|
|
const now = new Date();
|
|
|
|
|
2017-01-06 03:09:57 +00:00
|
|
|
// Insert access token doc
|
2021-03-21 12:27:09 +00:00
|
|
|
await AccessTokens.insert({
|
2019-04-07 12:50:36 +00:00
|
|
|
id: genId(),
|
2020-08-04 14:09:48 +00:00
|
|
|
createdAt: now,
|
|
|
|
lastUsedAt: now,
|
2018-03-29 05:48:47 +00:00
|
|
|
appId: session.appId,
|
2019-04-07 12:50:36 +00:00
|
|
|
userId: user.id,
|
2017-03-03 10:39:41 +00:00
|
|
|
token: accessToken,
|
2017-01-06 02:50:46 +00:00
|
|
|
hash: hash
|
2016-12-28 22:49:51 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update session
|
2019-04-07 12:50:36 +00:00
|
|
|
await AuthSessions.update(session.id, {
|
|
|
|
userId: user.id
|
2016-12-28 22:49:51 +00:00
|
|
|
});
|
2019-02-22 02:46:58 +00:00
|
|
|
});
|