2022-02-26 20:07:39 -06:00
|
|
|
import isNativeToken from './common/is-native-token.js';
|
2022-03-25 02:27:41 -05:00
|
|
|
import { CacheableLocalUser, ILocalUser } from '@/models/entities/user.js';
|
2022-02-26 20:07:39 -06:00
|
|
|
import { Users, AccessTokens, Apps } from '@/models/index.js';
|
|
|
|
import { AccessToken } from '@/models/entities/access-token.js';
|
2022-03-25 02:27:41 -05:00
|
|
|
import { Cache } from '@/misc/cache.js';
|
|
|
|
import { App } from '@/models/entities/app.js';
|
|
|
|
import { localUserByIdCache, localUserByNativeTokenCache } from '@/services/user-cache.js';
|
|
|
|
|
|
|
|
const appCache = new Cache<App>(Infinity);
|
2021-03-17 20:19:30 -05:00
|
|
|
|
2021-07-17 10:53:16 -05:00
|
|
|
export class AuthenticationError extends Error {
|
|
|
|
constructor(message: string) {
|
|
|
|
super(message);
|
|
|
|
this.name = 'AuthenticationError';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-25 02:27:41 -05:00
|
|
|
export default async (token: string | null): Promise<[CacheableLocalUser | null | undefined, AccessToken | null | undefined]> => {
|
2017-01-05 10:28:16 -06:00
|
|
|
if (token == null) {
|
2019-01-23 04:25:36 -06:00
|
|
|
return [null, null];
|
2017-01-05 10:28:16 -06:00
|
|
|
}
|
|
|
|
|
2017-01-05 20:07:42 -06:00
|
|
|
if (isNativeToken(token)) {
|
2022-03-25 02:27:41 -05:00
|
|
|
const user = await localUserByNativeTokenCache.fetch(token,
|
2022-03-26 01:34:00 -05:00
|
|
|
() => Users.findOneBy({ token }) as Promise<ILocalUser | null>);
|
2016-12-28 16:49:51 -06:00
|
|
|
|
2019-04-07 07:50:36 -05:00
|
|
|
if (user == null) {
|
2021-07-17 10:53:16 -05:00
|
|
|
throw new AuthenticationError('user not found');
|
2016-12-28 16:49:51 -06:00
|
|
|
}
|
|
|
|
|
2019-01-23 04:25:36 -06:00
|
|
|
return [user, null];
|
2017-01-05 10:28:16 -06:00
|
|
|
} else {
|
2019-04-07 07:50:36 -05:00
|
|
|
const accessToken = await AccessTokens.findOne({
|
2020-06-02 23:19:07 -05:00
|
|
|
where: [{
|
2021-12-09 08:58:30 -06:00
|
|
|
hash: token.toLowerCase(), // app
|
2020-06-02 23:19:07 -05:00
|
|
|
}, {
|
2021-12-09 08:58:30 -06:00
|
|
|
token: token, // miauth
|
2020-06-02 23:19:07 -05:00
|
|
|
}],
|
2016-12-28 16:49:51 -06:00
|
|
|
});
|
|
|
|
|
2019-04-07 07:50:36 -05:00
|
|
|
if (accessToken == null) {
|
2021-07-17 10:53:16 -05:00
|
|
|
throw new AuthenticationError('invalid signature');
|
2016-12-28 16:49:51 -06:00
|
|
|
}
|
|
|
|
|
2020-03-27 21:24:37 -05:00
|
|
|
AccessTokens.update(accessToken.id, {
|
|
|
|
lastUsedAt: new Date(),
|
|
|
|
});
|
2016-12-28 16:49:51 -06:00
|
|
|
|
2022-03-25 02:27:41 -05:00
|
|
|
const user = await localUserByIdCache.fetch(accessToken.userId,
|
2022-03-26 01:34:00 -05:00
|
|
|
() => Users.findOneBy({
|
|
|
|
id: accessToken.userId,
|
2022-03-25 02:27:41 -05:00
|
|
|
}) as Promise<ILocalUser>);
|
2016-12-28 16:49:51 -06:00
|
|
|
|
2020-03-27 21:24:37 -05:00
|
|
|
if (accessToken.appId) {
|
2022-03-25 02:27:41 -05:00
|
|
|
const app = await appCache.fetch(accessToken.appId,
|
2022-03-26 01:34:00 -05:00
|
|
|
() => Apps.findOneByOrFail({ id: accessToken.appId! }));
|
2020-03-27 21:24:37 -05:00
|
|
|
|
|
|
|
return [user, {
|
2020-03-28 04:07:41 -05:00
|
|
|
id: accessToken.id,
|
2021-12-09 08:58:30 -06:00
|
|
|
permission: app.permission,
|
2020-03-28 04:07:41 -05:00
|
|
|
} as AccessToken];
|
2020-03-27 21:24:37 -05:00
|
|
|
} else {
|
2020-03-28 04:07:41 -05:00
|
|
|
return [user, accessToken];
|
2020-03-27 21:24:37 -05:00
|
|
|
}
|
2016-12-28 16:49:51 -06:00
|
|
|
}
|
2019-01-23 04:25:36 -06:00
|
|
|
};
|