2017-01-06 03:07:42 +01:00
|
|
|
import isNativeToken from './common/is-native-token';
|
2019-04-07 14:50:36 +02:00
|
|
|
import { User } from '../../models/entities/user';
|
|
|
|
import { Users, AccessTokens, Apps } from '../../models';
|
2020-03-28 10:07:41 +01:00
|
|
|
import { AccessToken } from '../../models/entities/access-token';
|
2021-03-18 02:19:30 +01:00
|
|
|
|
2021-07-17 17:53:16 +02:00
|
|
|
export class AuthenticationError extends Error {
|
|
|
|
constructor(message: string) {
|
|
|
|
super(message);
|
|
|
|
this.name = 'AuthenticationError';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default async (token: string): Promise<[User | null | undefined, App | null | undefined]> => {
|
2017-01-05 17:28:16 +01:00
|
|
|
if (token == null) {
|
2019-01-23 11:25:36 +01:00
|
|
|
return [null, null];
|
2017-01-05 17:28:16 +01:00
|
|
|
}
|
|
|
|
|
2017-01-06 03:07:42 +01:00
|
|
|
if (isNativeToken(token)) {
|
2018-04-11 10:40:01 +02:00
|
|
|
// Fetch user
|
2019-04-07 14:50:36 +02:00
|
|
|
const user = await Users
|
2018-04-11 10:40:01 +02:00
|
|
|
.findOne({ token });
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
if (user == null) {
|
2021-07-17 17:53:16 +02:00
|
|
|
throw new AuthenticationError('user not found');
|
2016-12-28 23:49:51 +01:00
|
|
|
}
|
|
|
|
|
2019-01-23 11:25:36 +01:00
|
|
|
return [user, null];
|
2017-01-05 17:28:16 +01:00
|
|
|
} else {
|
2019-04-07 14:50:36 +02:00
|
|
|
const accessToken = await AccessTokens.findOne({
|
2020-06-03 06:19:07 +02:00
|
|
|
where: [{
|
|
|
|
hash: token.toLowerCase() // app
|
|
|
|
}, {
|
|
|
|
token: token // miauth
|
|
|
|
}],
|
2016-12-28 23:49:51 +01:00
|
|
|
});
|
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
if (accessToken == null) {
|
2021-07-17 17:53:16 +02:00
|
|
|
throw new AuthenticationError('invalid signature');
|
2016-12-28 23:49:51 +01:00
|
|
|
}
|
|
|
|
|
2020-03-28 03:24:37 +01:00
|
|
|
AccessTokens.update(accessToken.id, {
|
|
|
|
lastUsedAt: new Date(),
|
|
|
|
});
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2019-04-07 14:50:36 +02:00
|
|
|
const user = await Users
|
2019-04-15 18:20:28 +02:00
|
|
|
.findOne({
|
|
|
|
id: accessToken.userId // findOne(accessToken.userId) のように書かないのは後方互換性のため
|
|
|
|
});
|
2016-12-28 23:49:51 +01:00
|
|
|
|
2020-03-28 03:24:37 +01:00
|
|
|
if (accessToken.appId) {
|
|
|
|
const app = await Apps
|
2021-02-13 07:33:38 +01:00
|
|
|
.findOneOrFail(accessToken.appId);
|
2020-03-28 03:24:37 +01:00
|
|
|
|
|
|
|
return [user, {
|
2020-03-28 10:07:41 +01:00
|
|
|
id: accessToken.id,
|
2020-03-28 03:24:37 +01:00
|
|
|
permission: app.permission
|
2020-03-28 10:07:41 +01:00
|
|
|
} as AccessToken];
|
2020-03-28 03:24:37 +01:00
|
|
|
} else {
|
2020-03-28 10:07:41 +01:00
|
|
|
return [user, accessToken];
|
2020-03-28 03:24:37 +01:00
|
|
|
}
|
2016-12-28 23:49:51 +01:00
|
|
|
}
|
2019-01-23 11:25:36 +01:00
|
|
|
};
|