2022-09-17 20:27:08 +02:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
2022-09-21 03:12:18 +02:00
|
|
|
import Redis from 'ioredis';
|
2022-09-17 20:27:08 +02:00
|
|
|
import { OAuth2 } from 'oauth';
|
|
|
|
import { v4 as uuid } from 'uuid';
|
|
|
|
import { IsNull } from 'typeorm';
|
2022-09-20 22:33:11 +02:00
|
|
|
import type { Config } from '@/config.js';
|
|
|
|
import type { UserProfilesRepository, UsersRepository } from '@/models/index.js';
|
2022-09-17 20:27:08 +02:00
|
|
|
import { DI } from '@/di-symbols.js';
|
|
|
|
import { HttpRequestService } from '@/core/HttpRequestService.js';
|
|
|
|
import type { ILocalUser } from '@/models/entities/User.js';
|
|
|
|
import { GlobalEventService } from '@/core/GlobalEventService.js';
|
|
|
|
import { MetaService } from '@/core/MetaService.js';
|
|
|
|
import { UserEntityService } from '@/core/entities/UserEntityService.js';
|
2022-12-03 11:42:05 +01:00
|
|
|
import { FastifyReplyError } from '@/misc/fastify-reply-error.js';
|
2022-12-04 07:03:09 +01:00
|
|
|
import { bindThis } from '@/decorators.js';
|
2022-12-06 04:41:11 +01:00
|
|
|
import { SigninService } from '../SigninService.js';
|
2022-12-13 16:01:45 +01:00
|
|
|
import type { FastifyInstance, FastifyRequest, FastifyPluginOptions } from 'fastify';
|
2022-09-17 20:27:08 +02:00
|
|
|
|
|
|
|
@Injectable()
|
|
|
|
export class GithubServerService {
|
|
|
|
constructor(
|
|
|
|
@Inject(DI.config)
|
|
|
|
private config: Config,
|
|
|
|
|
|
|
|
@Inject(DI.redis)
|
2022-09-21 03:12:18 +02:00
|
|
|
private redisClient: Redis.Redis,
|
2022-09-17 20:27:08 +02:00
|
|
|
|
|
|
|
@Inject(DI.usersRepository)
|
|
|
|
private usersRepository: UsersRepository,
|
|
|
|
|
|
|
|
@Inject(DI.userProfilesRepository)
|
|
|
|
private userProfilesRepository: UserProfilesRepository,
|
|
|
|
|
|
|
|
private userEntityService: UserEntityService,
|
|
|
|
private httpRequestService: HttpRequestService,
|
|
|
|
private globalEventService: GlobalEventService,
|
|
|
|
private metaService: MetaService,
|
|
|
|
private signinService: SigninService,
|
|
|
|
) {
|
2022-12-04 07:03:09 +01:00
|
|
|
//this.create = this.create.bind(this);
|
2022-09-17 20:27:08 +02:00
|
|
|
}
|
|
|
|
|
2022-12-04 07:03:09 +01:00
|
|
|
@bindThis
|
2022-12-03 11:42:05 +01:00
|
|
|
public create(fastify: FastifyInstance, options: FastifyPluginOptions, done: (err?: Error) => void) {
|
|
|
|
fastify.get('/disconnect/github', async (request, reply) => {
|
|
|
|
if (!this.compareOrigin(request)) {
|
|
|
|
throw new FastifyReplyError(400, 'invalid origin');
|
2022-09-17 20:27:08 +02:00
|
|
|
}
|
|
|
|
|
2022-12-03 11:42:05 +01:00
|
|
|
const userToken = this.getUserToken(request);
|
2022-09-17 20:27:08 +02:00
|
|
|
if (!userToken) {
|
2022-12-03 11:42:05 +01:00
|
|
|
throw new FastifyReplyError(400, 'signin required');
|
2022-09-17 20:27:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
const user = await this.usersRepository.findOneByOrFail({
|
|
|
|
host: IsNull(),
|
|
|
|
token: userToken,
|
|
|
|
});
|
|
|
|
|
|
|
|
const profile = await this.userProfilesRepository.findOneByOrFail({ userId: user.id });
|
|
|
|
|
|
|
|
delete profile.integrations.github;
|
|
|
|
|
|
|
|
await this.userProfilesRepository.update(user.id, {
|
|
|
|
integrations: profile.integrations,
|
|
|
|
});
|
|
|
|
|
|
|
|
// Publish i updated event
|
|
|
|
this.globalEventService.publishMainStream(user.id, 'meUpdated', await this.userEntityService.pack(user, user, {
|
|
|
|
detail: true,
|
|
|
|
includeSecrets: true,
|
|
|
|
}));
|
2022-12-03 11:42:05 +01:00
|
|
|
|
|
|
|
return 'GitHubの連携を解除しました :v:';
|
2022-09-17 20:27:08 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
const getOath2 = async () => {
|
|
|
|
const meta = await this.metaService.fetch(true);
|
|
|
|
|
|
|
|
if (meta.enableGithubIntegration && meta.githubClientId && meta.githubClientSecret) {
|
|
|
|
return new OAuth2(
|
|
|
|
meta.githubClientId,
|
|
|
|
meta.githubClientSecret,
|
|
|
|
'https://github.com/',
|
|
|
|
'login/oauth/authorize',
|
|
|
|
'login/oauth/access_token');
|
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2022-12-03 11:42:05 +01:00
|
|
|
fastify.get('/connect/github', async (request, reply) => {
|
|
|
|
if (!this.compareOrigin(request)) {
|
|
|
|
throw new FastifyReplyError(400, 'invalid origin');
|
2022-09-17 20:27:08 +02:00
|
|
|
}
|
|
|
|
|
2022-12-03 11:42:05 +01:00
|
|
|
const userToken = this.getUserToken(request);
|
2022-09-17 20:27:08 +02:00
|
|
|
if (!userToken) {
|
2022-12-03 11:42:05 +01:00
|
|
|
throw new FastifyReplyError(400, 'signin required');
|
2022-09-17 20:27:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
const params = {
|
|
|
|
redirect_uri: `${this.config.url}/api/gh/cb`,
|
|
|
|
scope: ['read:user'],
|
|
|
|
state: uuid(),
|
|
|
|
};
|
|
|
|
|
|
|
|
this.redisClient.set(userToken, JSON.stringify(params));
|
|
|
|
|
|
|
|
const oauth2 = await getOath2();
|
2022-12-03 11:42:05 +01:00
|
|
|
reply.redirect(oauth2!.getAuthorizeUrl(params));
|
2022-09-17 20:27:08 +02:00
|
|
|
});
|
|
|
|
|
2022-12-03 11:42:05 +01:00
|
|
|
fastify.get('/signin/github', async (request, reply) => {
|
2022-09-17 20:27:08 +02:00
|
|
|
const sessid = uuid();
|
|
|
|
|
|
|
|
const params = {
|
|
|
|
redirect_uri: `${this.config.url}/api/gh/cb`,
|
|
|
|
scope: ['read:user'],
|
|
|
|
state: uuid(),
|
|
|
|
};
|
|
|
|
|
2022-12-06 06:14:41 +01:00
|
|
|
reply.setCookie('signin_with_github_sid', sessid, {
|
2022-09-17 20:27:08 +02:00
|
|
|
path: '/',
|
|
|
|
secure: this.config.url.startsWith('https'),
|
|
|
|
httpOnly: true,
|
|
|
|
});
|
|
|
|
|
|
|
|
this.redisClient.set(sessid, JSON.stringify(params));
|
|
|
|
|
|
|
|
const oauth2 = await getOath2();
|
2022-12-03 11:42:05 +01:00
|
|
|
reply.redirect(oauth2!.getAuthorizeUrl(params));
|
2022-09-17 20:27:08 +02:00
|
|
|
});
|
|
|
|
|
2022-12-03 11:42:05 +01:00
|
|
|
fastify.get('/gh/cb', async (request, reply) => {
|
|
|
|
const userToken = this.getUserToken(request);
|
2022-09-17 20:27:08 +02:00
|
|
|
|
|
|
|
const oauth2 = await getOath2();
|
|
|
|
|
|
|
|
if (!userToken) {
|
2022-12-06 06:17:53 +01:00
|
|
|
const sessid = request.cookies['signin_with_github_sid'];
|
2022-09-17 20:27:08 +02:00
|
|
|
|
|
|
|
if (!sessid) {
|
2022-12-03 11:42:05 +01:00
|
|
|
throw new FastifyReplyError(400, 'invalid session');
|
2022-09-17 20:27:08 +02:00
|
|
|
}
|
|
|
|
|
2022-12-03 11:42:05 +01:00
|
|
|
const code = request.query.code;
|
2022-09-17 20:27:08 +02:00
|
|
|
|
|
|
|
if (!code || typeof code !== 'string') {
|
2022-12-03 11:42:05 +01:00
|
|
|
throw new FastifyReplyError(400, 'invalid session');
|
2022-09-17 20:27:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
const { redirect_uri, state } = await new Promise<any>((res, rej) => {
|
|
|
|
this.redisClient.get(sessid, async (_, state) => {
|
2022-09-23 23:45:44 +02:00
|
|
|
if (state == null) throw new Error('empty state');
|
2022-09-17 20:27:08 +02:00
|
|
|
res(JSON.parse(state));
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2022-12-03 11:42:05 +01:00
|
|
|
if (request.query.state !== state) {
|
|
|
|
throw new FastifyReplyError(400, 'invalid session');
|
2022-09-17 20:27:08 +02:00
|
|
|
}
|
|
|
|
|
2022-09-24 10:13:09 +02:00
|
|
|
const { accessToken } = await new Promise<{ accessToken: string }>((res, rej) =>
|
2022-09-23 23:45:44 +02:00
|
|
|
oauth2!.getOAuthAccessToken(code, {
|
|
|
|
redirect_uri,
|
|
|
|
}, (err, accessToken, refresh, result) => {
|
|
|
|
if (err) {
|
|
|
|
rej(err);
|
|
|
|
} else if (result.error) {
|
|
|
|
rej(result.error);
|
|
|
|
} else {
|
|
|
|
res({ accessToken });
|
|
|
|
}
|
|
|
|
}));
|
2022-09-17 20:27:08 +02:00
|
|
|
|
|
|
|
const { login, id } = (await this.httpRequestService.getJson('https://api.github.com/user', 'application/vnd.github.v3+json', 10 * 1000, {
|
|
|
|
'Authorization': `bearer ${accessToken}`,
|
|
|
|
})) as Record<string, unknown>;
|
|
|
|
if (typeof login !== 'string' || typeof id !== 'string') {
|
2022-12-03 11:42:05 +01:00
|
|
|
throw new FastifyReplyError(400, 'invalid session');
|
2022-09-17 20:27:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
const link = await this.userProfilesRepository.createQueryBuilder()
|
|
|
|
.where('"integrations"->\'github\'->>\'id\' = :id', { id: id })
|
|
|
|
.andWhere('"userHost" IS NULL')
|
|
|
|
.getOne();
|
|
|
|
|
|
|
|
if (link == null) {
|
2022-12-03 11:42:05 +01:00
|
|
|
throw new FastifyReplyError(404, `@${login}と連携しているMisskeyアカウントはありませんでした...`);
|
2022-09-17 20:27:08 +02:00
|
|
|
}
|
|
|
|
|
2022-12-03 11:42:05 +01:00
|
|
|
return this.signinService.signin(request, reply, await this.usersRepository.findOneBy({ id: link.userId }) as ILocalUser, true);
|
2022-09-17 20:27:08 +02:00
|
|
|
} else {
|
2022-12-03 11:42:05 +01:00
|
|
|
const code = request.query.code;
|
2022-09-17 20:27:08 +02:00
|
|
|
|
|
|
|
if (!code || typeof code !== 'string') {
|
2022-12-03 11:42:05 +01:00
|
|
|
throw new FastifyReplyError(400, 'invalid session');
|
2022-09-17 20:27:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
const { redirect_uri, state } = await new Promise<any>((res, rej) => {
|
|
|
|
this.redisClient.get(userToken, async (_, state) => {
|
2022-09-23 23:45:44 +02:00
|
|
|
if (state == null) throw new Error('empty state');
|
2022-09-17 20:27:08 +02:00
|
|
|
res(JSON.parse(state));
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2022-12-03 11:42:05 +01:00
|
|
|
if (request.query.state !== state) {
|
|
|
|
throw new FastifyReplyError(400, 'invalid session');
|
2022-09-17 20:27:08 +02:00
|
|
|
}
|
|
|
|
|
2022-09-24 10:13:09 +02:00
|
|
|
const { accessToken } = await new Promise<{ accessToken: string }>((res, rej) =>
|
2022-09-23 23:45:44 +02:00
|
|
|
oauth2!.getOAuthAccessToken(
|
|
|
|
code,
|
|
|
|
{ redirect_uri },
|
|
|
|
(err, accessToken, refresh, result) => {
|
|
|
|
if (err) {
|
|
|
|
rej(err);
|
|
|
|
} else if (result.error) {
|
|
|
|
rej(result.error);
|
|
|
|
} else {
|
|
|
|
res({ accessToken });
|
|
|
|
}
|
|
|
|
}));
|
2022-09-17 20:27:08 +02:00
|
|
|
|
|
|
|
const { login, id } = (await this.httpRequestService.getJson('https://api.github.com/user', 'application/vnd.github.v3+json', 10 * 1000, {
|
|
|
|
'Authorization': `bearer ${accessToken}`,
|
|
|
|
})) as Record<string, unknown>;
|
|
|
|
|
2022-12-06 04:41:11 +01:00
|
|
|
if (typeof login !== 'string' || typeof id !== 'number') {
|
2022-12-03 11:42:05 +01:00
|
|
|
throw new FastifyReplyError(400, 'invalid session');
|
2022-09-17 20:27:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
const user = await this.usersRepository.findOneByOrFail({
|
|
|
|
host: IsNull(),
|
|
|
|
token: userToken,
|
|
|
|
});
|
|
|
|
|
|
|
|
const profile = await this.userProfilesRepository.findOneByOrFail({ userId: user.id });
|
|
|
|
|
|
|
|
await this.userProfilesRepository.update(user.id, {
|
|
|
|
integrations: {
|
|
|
|
...profile.integrations,
|
|
|
|
github: {
|
|
|
|
accessToken: accessToken,
|
|
|
|
id: id,
|
|
|
|
login: login,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
// Publish i updated event
|
|
|
|
this.globalEventService.publishMainStream(user.id, 'meUpdated', await this.userEntityService.pack(user, user, {
|
|
|
|
detail: true,
|
|
|
|
includeSecrets: true,
|
|
|
|
}));
|
2022-12-03 11:42:05 +01:00
|
|
|
|
|
|
|
return `GitHub: @${login} を、Misskey: @${user.username} に接続しました!`;
|
2022-09-17 20:27:08 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2022-12-03 11:42:05 +01:00
|
|
|
done();
|
2022-09-17 20:27:08 +02:00
|
|
|
}
|
|
|
|
|
2022-12-04 07:03:09 +01:00
|
|
|
@bindThis
|
2022-12-03 11:42:05 +01:00
|
|
|
private getUserToken(request: FastifyRequest): string | null {
|
|
|
|
return ((request.headers['cookie'] ?? '').match(/igi=(\w+)/) ?? [null, null])[1];
|
2022-09-17 20:27:08 +02:00
|
|
|
}
|
|
|
|
|
2022-12-04 07:03:09 +01:00
|
|
|
@bindThis
|
2022-12-03 11:42:05 +01:00
|
|
|
private compareOrigin(request: FastifyRequest): boolean {
|
2022-09-17 20:27:08 +02:00
|
|
|
function normalizeUrl(url?: string): string {
|
|
|
|
return url ? url.endsWith('/') ? url.substr(0, url.length - 1) : url : '';
|
|
|
|
}
|
|
|
|
|
2022-12-03 11:42:05 +01:00
|
|
|
const referer = request.headers['referer'];
|
2022-09-17 20:27:08 +02:00
|
|
|
|
|
|
|
return (normalizeUrl(referer) === normalizeUrl(this.config.url));
|
|
|
|
}
|
|
|
|
}
|