2016-12-28 16:49:51 -06:00
|
|
|
import * as express from 'express';
|
2018-03-29 06:32:18 -05:00
|
|
|
import App from '../../models/app';
|
|
|
|
import { default as User, IUser } from '../../models/user';
|
|
|
|
import AccessToken from '../../models/access-token';
|
2017-01-05 20:07:42 -06:00
|
|
|
import isNativeToken from './common/is-native-token';
|
2016-12-28 16:49:51 -06:00
|
|
|
|
|
|
|
export interface IAuthContext {
|
|
|
|
/**
|
|
|
|
* App which requested
|
|
|
|
*/
|
|
|
|
app: any;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Authenticated user
|
|
|
|
*/
|
2017-09-16 00:30:44 -05:00
|
|
|
user: IUser;
|
2016-12-28 16:49:51 -06:00
|
|
|
|
|
|
|
/**
|
2017-09-16 00:38:58 -05:00
|
|
|
* Whether requested with a User-Native Token
|
2016-12-28 16:49:51 -06:00
|
|
|
*/
|
|
|
|
isSecure: boolean;
|
|
|
|
}
|
|
|
|
|
2017-01-05 10:28:16 -06:00
|
|
|
export default (req: express.Request) => new Promise<IAuthContext>(async (resolve, reject) => {
|
2017-02-08 07:49:01 -06:00
|
|
|
const token = req.body['i'] as string;
|
2017-01-05 10:28:16 -06:00
|
|
|
|
|
|
|
if (token == null) {
|
2017-09-16 00:30:44 -05:00
|
|
|
return resolve({
|
|
|
|
app: null,
|
|
|
|
user: null,
|
|
|
|
isSecure: false
|
|
|
|
});
|
2017-01-05 10:28:16 -06:00
|
|
|
}
|
|
|
|
|
2017-01-05 20:07:42 -06:00
|
|
|
if (isNativeToken(token)) {
|
2017-09-16 00:30:44 -05:00
|
|
|
const user: IUser = await User
|
2018-04-07 13:58:11 -05:00
|
|
|
.findOne({ 'token': token });
|
2016-12-28 16:49:51 -06:00
|
|
|
|
|
|
|
if (user === null) {
|
|
|
|
return reject('user not found');
|
|
|
|
}
|
|
|
|
|
|
|
|
return resolve({
|
|
|
|
app: null,
|
|
|
|
user: user,
|
|
|
|
isSecure: true
|
|
|
|
});
|
2017-01-05 10:28:16 -06:00
|
|
|
} else {
|
2017-01-05 21:09:57 -06:00
|
|
|
const accessToken = await AccessToken.findOne({
|
2017-02-08 07:49:01 -06:00
|
|
|
hash: token.toLowerCase()
|
2016-12-28 16:49:51 -06:00
|
|
|
});
|
|
|
|
|
2017-01-05 21:09:57 -06:00
|
|
|
if (accessToken === null) {
|
2017-01-05 21:30:35 -06:00
|
|
|
return reject('invalid signature');
|
2016-12-28 16:49:51 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
const app = await App
|
2018-03-29 00:48:47 -05:00
|
|
|
.findOne({ _id: accessToken.appId });
|
2016-12-28 16:49:51 -06:00
|
|
|
|
|
|
|
const user = await User
|
2018-03-29 00:48:47 -05:00
|
|
|
.findOne({ _id: accessToken.userId });
|
2016-12-28 16:49:51 -06:00
|
|
|
|
2017-09-16 00:30:44 -05:00
|
|
|
return resolve({
|
|
|
|
app: app,
|
|
|
|
user: user,
|
|
|
|
isSecure: false
|
|
|
|
});
|
2016-12-28 16:49:51 -06:00
|
|
|
}
|
|
|
|
});
|