iceshrimp-legacy/src/server/api/authenticate.ts
syuilo 987168b863
strictNullChecks (#4666)
* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip
2019-04-13 01:43:22 +09:00

39 lines
846 B
TypeScript

import isNativeToken from './common/is-native-token';
import { User } from '../../models/entities/user';
import { App } from '../../models/entities/app';
import { Users, AccessTokens, Apps } from '../../models';
export default async (token: string): Promise<[User | null | undefined, App | null | undefined]> => {
if (token == null) {
return [null, null];
}
if (isNativeToken(token)) {
// Fetch user
const user = await Users
.findOne({ token });
if (user == null) {
throw 'user not found';
}
return [user, null];
} else {
const accessToken = await AccessTokens.findOne({
hash: token.toLowerCase()
});
if (accessToken == null) {
throw 'invalid signature';
}
const app = await Apps
.findOne(accessToken.appId);
const user = await Users
.findOne(accessToken.userId);
return [user, app];
}
};