Sharkey/src/server/api/service/github.ts

275 lines
5.8 KiB
TypeScript
Raw Normal View History

2018-11-04 15:03:55 +02:00
import * as Koa from 'koa';
2018-04-13 00:06:18 +03:00
import * as Router from 'koa-router';
2018-04-09 11:38:22 +03:00
import * as request from 'request';
2018-11-04 15:03:55 +02:00
import { OAuth2 } from 'oauth';
import User, { pack, ILocalUser } from '../../../models/user';
2018-04-02 07:15:53 +03:00
import config from '../../../config';
2018-11-04 15:03:55 +02:00
import { publishMainStream } from '../../../stream';
import redis from '../../../db/redis';
import uuid = require('uuid');
import signin from '../common/signin';
import fetchMeta from '../../../misc/fetch-meta';
2018-04-13 00:06:18 +03:00
2019-01-22 14:42:05 +02:00
function getUserToken(ctx: Koa.BaseContext) {
2018-11-04 15:03:55 +02:00
return ((ctx.headers['cookie'] || '').match(/i=(!\w+)/) || [null, null])[1];
}
2019-01-22 14:42:05 +02:00
function compareOrigin(ctx: Koa.BaseContext) {
2018-11-04 15:03:55 +02:00
function normalizeUrl(url: string) {
return url ? url.endsWith('/') ? url.substr(0, url.length - 1) : url : '';
}
const referer = ctx.headers['referer'];
return (normalizeUrl(referer) == normalizeUrl(config.url));
}
2018-04-13 00:06:18 +03:00
// Init router
const router = new Router();
2017-01-31 17:43:06 +02:00
2018-11-04 15:03:55 +02:00
router.get('/disconnect/github', async ctx => {
if (!compareOrigin(ctx)) {
ctx.throw(400, 'invalid origin');
return;
}
const userToken = getUserToken(ctx);
if (!userToken) {
ctx.throw(400, 'signin required');
return;
}
const user = await User.findOneAndUpdate({
host: null,
'token': userToken
}, {
$set: {
'github': null
}
});
ctx.body = `GitHubの連携を解除しました :v:`;
// Publish i updated event
publishMainStream(user._id, 'meUpdated', await pack(user, user, {
detail: true,
includeSecrets: true
}));
});
async function getOath2() {
const meta = await fetchMeta();
if (meta.enableGithubIntegration) {
return new OAuth2(
meta.githubClientId,
meta.githubClientSecret,
'https://github.com/',
'login/oauth/authorize',
'login/oauth/access_token');
} else {
return null;
}
}
2018-11-04 15:03:55 +02:00
router.get('/connect/github', async ctx => {
if (!compareOrigin(ctx)) {
ctx.throw(400, 'invalid origin');
return;
}
2018-11-04 15:03:55 +02:00
const userToken = getUserToken(ctx);
if (!userToken) {
ctx.throw(400, 'signin required');
return;
}
2018-11-04 15:03:55 +02:00
const params = {
redirect_uri: `${config.url}/api/gh/cb`,
scope: ['read:user'],
state: uuid()
};
2018-11-04 15:03:55 +02:00
redis.set(userToken, JSON.stringify(params));
2018-11-04 15:03:55 +02:00
const oauth2 = await getOath2();
ctx.redirect(oauth2.getAuthorizeUrl(params));
});
2018-11-04 15:03:55 +02:00
router.get('/signin/github', async ctx => {
const sessid = uuid();
const params = {
redirect_uri: `${config.url}/api/gh/cb`,
scope: ['read:user'],
state: uuid()
};
const expires = 1000 * 60 * 60; // 1h
ctx.cookies.set('signin_with_github_session_id', sessid, {
path: '/',
domain: config.host,
secure: config.url.startsWith('https'),
httpOnly: true,
expires: new Date(Date.now() + expires),
maxAge: expires
2018-11-04 15:03:55 +02:00
});
redis.set(sessid, JSON.stringify(params));
2018-11-04 15:03:55 +02:00
const oauth2 = await getOath2();
ctx.redirect(oauth2.getAuthorizeUrl(params));
});
2018-11-04 15:03:55 +02:00
router.get('/gh/cb', async ctx => {
const userToken = getUserToken(ctx);
2018-11-04 15:03:55 +02:00
const oauth2 = await getOath2();
2018-11-04 15:03:55 +02:00
if (!userToken) {
const sessid = ctx.cookies.get('signin_with_github_session_id');
if (!sessid) {
ctx.throw(400, 'invalid session');
return;
}
const code = ctx.query.code;
2018-11-04 15:03:55 +02:00
if (!code) {
ctx.throw(400, 'invalid session');
return;
}
const { redirect_uri, state } = await new Promise<any>((res, rej) => {
redis.get(sessid, async (_, state) => {
res(JSON.parse(state));
2018-11-04 15:03:55 +02:00
});
});
2018-11-04 15:03:55 +02:00
if (ctx.query.state !== state) {
ctx.throw(400, 'invalid session');
return;
}
2018-11-04 15:03:55 +02:00
const { accessToken } = await new Promise<any>((res, rej) =>
oauth2.getOAuthAccessToken(
code,
{ redirect_uri },
(err, accessToken, refresh, result) => {
2018-11-04 15:03:55 +02:00
if (err)
rej(err);
else if (result.error)
rej(result.error);
2018-11-04 15:03:55 +02:00
else
res({ accessToken });
2018-11-04 15:03:55 +02:00
}));
const { login, id } = await new Promise<any>((res, rej) =>
request({
url: 'https://api.github.com/user',
headers: {
'Accept': 'application/vnd.github.v3+json',
'Authorization': `bearer ${accessToken}`,
'User-Agent': config.user_agent
}
}, (err, response, body) => {
if (err)
rej(err);
else
res(JSON.parse(body));
}));
2018-11-04 15:03:55 +02:00
if (!login || !id) {
ctx.throw(400, 'invalid session');
return;
}
2018-11-04 15:03:55 +02:00
const user = await User.findOne({
host: null,
'github.id': id
}) as ILocalUser;
2018-11-04 15:03:55 +02:00
if (!user) {
ctx.throw(404, `@${login}と連携しているMisskeyアカウントはありませんでした...`);
return;
}
2018-11-04 15:03:55 +02:00
signin(ctx, user, true);
} else {
const code = ctx.query.code;
2018-11-04 15:03:55 +02:00
if (!code) {
ctx.throw(400, 'invalid session');
return;
}
const { redirect_uri, state } = await new Promise<any>((res, rej) => {
redis.get(userToken, async (_, state) => {
res(JSON.parse(state));
2018-11-04 15:03:55 +02:00
});
});
2018-11-04 15:03:55 +02:00
if (ctx.query.state !== state) {
ctx.throw(400, 'invalid session');
return;
}
2018-11-04 15:03:55 +02:00
const { accessToken } = await new Promise<any>((res, rej) =>
oauth2.getOAuthAccessToken(
code,
{ redirect_uri },
(err, accessToken, refresh, result) => {
2018-11-04 15:03:55 +02:00
if (err)
rej(err);
else if (result.error)
rej(result.error);
2018-11-04 15:03:55 +02:00
else
res({ accessToken });
2018-11-04 15:03:55 +02:00
}));
const { login, id } = await new Promise<any>((res, rej) =>
request({
url: 'https://api.github.com/user',
headers: {
'Accept': 'application/vnd.github.v3+json',
'Authorization': `bearer ${accessToken}`,
'User-Agent': config.user_agent
2018-11-04 15:03:55 +02:00
}
}, (err, response, body) => {
if (err)
rej(err);
else
res(JSON.parse(body));
2018-11-04 15:03:55 +02:00
}));
if (!login || !id) {
ctx.throw(400, 'invalid session');
return;
2018-04-09 11:38:22 +03:00
}
2017-01-31 17:43:06 +02:00
const user = await User.findOneAndUpdate({
host: null,
token: userToken
}, {
$set: {
github: {
accessToken,
id,
login
2018-04-13 00:06:18 +03:00
}
}
});
2017-01-31 21:25:02 +02:00
ctx.body = `GitHub: @${login} を、Misskey: @${user.username} に接続しました!`;
2017-02-07 16:52:58 +02:00
// Publish i updated event
publishMainStream(user._id, 'meUpdated', await pack(user, user, {
detail: true,
includeSecrets: true
}));
2018-04-13 00:06:18 +03:00
}
});
module.exports = router;