Merge branch 'develop' of https://github.com/syuilo/misskey into develop
This commit is contained in:
		
						commit
						b4a3e5aa4f
					
				
					 20 changed files with 116 additions and 32 deletions
				
			
		
							
								
								
									
										3
									
								
								src/@types/const.json.d.ts
									
										
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										3
									
								
								src/@types/const.json.d.ts
									
										
									
									
										vendored
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,3 @@
 | 
			
		|||
declare module '*/const.json' {
 | 
			
		||||
	const copyright: string;
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										2
									
								
								src/@types/deepcopy.d.ts
									
										
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								src/@types/deepcopy.d.ts
									
										
									
									
										vendored
									
									
								
							| 
						 | 
				
			
			@ -8,7 +8,7 @@ declare namespace deepcopy {
 | 
			
		|||
		valueType: DeepcopyCustomizerValueType) => T;
 | 
			
		||||
 | 
			
		||||
	interface DeepcopyOptions<T> {
 | 
			
		||||
		customizer: DeepcopyCustomizer<T>
 | 
			
		||||
		customizer: DeepcopyCustomizer<T>;
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	export function deepcopy<T>(
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
							
								
								
									
										7
									
								
								src/@types/escape-regexp.d.ts
									
										
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										7
									
								
								src/@types/escape-regexp.d.ts
									
										
									
									
										vendored
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,7 @@
 | 
			
		|||
declare module 'escape-regexp' {
 | 
			
		||||
	function escapeRegExp(str: string): string;
 | 
			
		||||
 | 
			
		||||
	namespace escapeRegExp {} // Hack
 | 
			
		||||
 | 
			
		||||
	export = escapeRegExp;
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										14
									
								
								src/@types/koa-slow.d.ts
									
										
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										14
									
								
								src/@types/koa-slow.d.ts
									
										
									
									
										vendored
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,14 @@
 | 
			
		|||
declare module 'koa-slow' {
 | 
			
		||||
	import { Middleware } from 'koa';
 | 
			
		||||
 | 
			
		||||
	interface ISlowOptions {
 | 
			
		||||
		url?: RegExp;
 | 
			
		||||
		delay?: number;
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	function slow(options?: ISlowOptions): Middleware;
 | 
			
		||||
 | 
			
		||||
	namespace slow { } // Hack
 | 
			
		||||
 | 
			
		||||
	export = slow;
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										10
									
								
								src/@types/langmap.d.ts
									
										
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										10
									
								
								src/@types/langmap.d.ts
									
										
									
									
										vendored
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,10 @@
 | 
			
		|||
declare module 'langmap' {
 | 
			
		||||
	type Lang = {
 | 
			
		||||
		nativeName: string;
 | 
			
		||||
		englishName: string;
 | 
			
		||||
	};
 | 
			
		||||
 | 
			
		||||
	const langmap: { [lang: string]: Lang };
 | 
			
		||||
 | 
			
		||||
	export = langmap;
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										30
									
								
								src/@types/os-utils.d.ts
									
										
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										30
									
								
								src/@types/os-utils.d.ts
									
										
									
									
										vendored
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,30 @@
 | 
			
		|||
declare module 'os-utils' {
 | 
			
		||||
	type FreeCommandCallback = (usedmem: number) => void;
 | 
			
		||||
 | 
			
		||||
	type HarddriveCallback = (total: number, free: number, used: number) => void;
 | 
			
		||||
 | 
			
		||||
	type GetProcessesCallback = (result: string) => void;
 | 
			
		||||
 | 
			
		||||
	type CPUCallback = (perc: number) => void;
 | 
			
		||||
 | 
			
		||||
	export function platform(): NodeJS.Platform;
 | 
			
		||||
	export function cpuCount(): number;
 | 
			
		||||
	export function sysUptime(): number;
 | 
			
		||||
	export function processUptime(): number;
 | 
			
		||||
 | 
			
		||||
	export function freemem(): number;
 | 
			
		||||
	export function totalmem(): number;
 | 
			
		||||
	export function freememPercentage(): number;
 | 
			
		||||
	export function freeCommand(callback: FreeCommandCallback): void;
 | 
			
		||||
 | 
			
		||||
	export function harddrive(callback: HarddriveCallback): void;
 | 
			
		||||
 | 
			
		||||
	export function getProcesses(callback: GetProcessesCallback): void;
 | 
			
		||||
	export function getProcesses(nProcess: number, callback: GetProcessesCallback): void;
 | 
			
		||||
 | 
			
		||||
	export function allLoadavg(): string;
 | 
			
		||||
	export function loadavg(_time?: number): number;
 | 
			
		||||
 | 
			
		||||
	export function cpuFree(callback: CPUCallback): void;
 | 
			
		||||
	export function cpuUsage(callback: CPUCallback): void;
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										16
									
								
								src/@types/recaptcha-promise.d.ts
									
										
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										16
									
								
								src/@types/recaptcha-promise.d.ts
									
										
									
									
										vendored
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,16 @@
 | 
			
		|||
declare module 'recaptcha-promise' {
 | 
			
		||||
	interface IVerifyOptions {
 | 
			
		||||
		secret_key?: string;
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	interface IVerify {
 | 
			
		||||
		(response: string, remoteAddress?: string): Promise<boolean>;
 | 
			
		||||
		init(options: IVerifyOptions): IVerify;
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	namespace recaptchaPromise {} // Hack
 | 
			
		||||
 | 
			
		||||
	const verify: IVerify;
 | 
			
		||||
 | 
			
		||||
	export = verify;
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			@ -3,7 +3,7 @@ import * as sysUtils from 'systeminformation';
 | 
			
		|||
import * as diskusage from 'diskusage';
 | 
			
		||||
import * as Deque from 'double-ended-queue';
 | 
			
		||||
import Xev from 'xev';
 | 
			
		||||
const osUtils = require('os-utils');
 | 
			
		||||
import * as osUtils from 'os-utils';
 | 
			
		||||
 | 
			
		||||
const ev = new Xev();
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1,5 +1,4 @@
 | 
			
		|||
const jsdom = require('jsdom');
 | 
			
		||||
const { JSDOM } = jsdom;
 | 
			
		||||
import { JSDOM } from 'jsdom';
 | 
			
		||||
import config from '../config';
 | 
			
		||||
import { INote } from '../models/note';
 | 
			
		||||
import { intersperse } from '../prelude/array';
 | 
			
		||||
| 
						 | 
				
			
			@ -158,9 +157,9 @@ export function toHtml(tokens: MfmForest, mentionedRemoteUsers: INote['mentioned
 | 
			
		|||
 | 
			
		||||
		text(token) {
 | 
			
		||||
			const el = doc.createElement('span');
 | 
			
		||||
			const nodes = (token.node.props.text as string).split(/\r\n|\r|\n/).map(x => doc.createTextNode(x));
 | 
			
		||||
			const nodes = (token.node.props.text as string).split(/\r\n|\r|\n/).map(x => doc.createTextNode(x) as Node);
 | 
			
		||||
 | 
			
		||||
			for (const x of intersperse('br', nodes)) {
 | 
			
		||||
			for (const x of intersperse<Node | 'br'>('br', nodes)) {
 | 
			
		||||
				el.appendChild(x === 'br' ? doc.createElement('br') : x);
 | 
			
		||||
			}
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1,7 +1,7 @@
 | 
			
		|||
import $ from 'cafy';
 | 
			
		||||
import Hashtag from '../../../../models/hashtag';
 | 
			
		||||
import define from '../../define';
 | 
			
		||||
const escapeRegexp = require('escape-regexp');
 | 
			
		||||
import * as escapeRegexp from 'escape-regexp';
 | 
			
		||||
 | 
			
		||||
export const meta = {
 | 
			
		||||
	desc: {
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -9,7 +9,7 @@ import getDriveFileUrl from '../../../../misc/get-drive-file-url';
 | 
			
		|||
import { parse, parsePlain } from '../../../../mfm/parse';
 | 
			
		||||
import extractEmojis from '../../../../misc/extract-emojis';
 | 
			
		||||
import extractHashtags from '../../../../misc/extract-hashtags';
 | 
			
		||||
const langmap = require('langmap');
 | 
			
		||||
import * as langmap from 'langmap';
 | 
			
		||||
 | 
			
		||||
export const meta = {
 | 
			
		||||
	desc: {
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -1,5 +1,5 @@
 | 
			
		|||
import $ from 'cafy';
 | 
			
		||||
const escapeRegexp = require('escape-regexp');
 | 
			
		||||
import * as escapeRegexp from 'escape-regexp';
 | 
			
		||||
import User, { pack, validateUsername, IUser } from '../../../../models/user';
 | 
			
		||||
import define from '../../define';
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -8,14 +8,13 @@ import Meta from '../../../models/meta';
 | 
			
		|||
import RegistrationTicket from '../../../models/registration-tickets';
 | 
			
		||||
import usersChart from '../../../chart/users';
 | 
			
		||||
import fetchMeta from '../../../misc/fetch-meta';
 | 
			
		||||
import * as recaptcha from 'recaptcha-promise';
 | 
			
		||||
 | 
			
		||||
export default async (ctx: Koa.BaseContext) => {
 | 
			
		||||
	const body = ctx.request.body as any;
 | 
			
		||||
 | 
			
		||||
	const instance = await fetchMeta();
 | 
			
		||||
 | 
			
		||||
	const recaptcha = require('recaptcha-promise');
 | 
			
		||||
 | 
			
		||||
	// Verify recaptcha
 | 
			
		||||
	// ただしテスト時はこの機構は障害となるため無効にする
 | 
			
		||||
	if (process.env.NODE_ENV !== 'test' && instance.enableRecaptcha) {
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -13,7 +13,7 @@ import * as mount from 'koa-mount';
 | 
			
		|||
import * as compress from 'koa-compress';
 | 
			
		||||
import * as koaLogger from 'koa-logger';
 | 
			
		||||
import * as requestStats from 'request-stats';
 | 
			
		||||
//const slow = require('koa-slow');
 | 
			
		||||
//import * as slow from 'koa-slow';
 | 
			
		||||
 | 
			
		||||
import activityPub from './activitypub';
 | 
			
		||||
import webFinger from './webfinger';
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -14,9 +14,9 @@ import * as glob from 'glob';
 | 
			
		|||
import * as yaml from 'js-yaml';
 | 
			
		||||
import config from '../../config';
 | 
			
		||||
import { licenseHtml } from '../../misc/license';
 | 
			
		||||
const constants = require('../../const.json');
 | 
			
		||||
import { copyright } from '../../const.json';
 | 
			
		||||
import endpoints from '../api/endpoints';
 | 
			
		||||
const locales = require('../../../locales');
 | 
			
		||||
import locales from '../../../locales';
 | 
			
		||||
import * as nestedProperty from 'nested-property';
 | 
			
		||||
 | 
			
		||||
function getLang(lang: string): string {
 | 
			
		||||
| 
						 | 
				
			
			@ -59,7 +59,7 @@ async function genVars(lang: string): Promise<{ [key: string]: any }> {
 | 
			
		|||
 | 
			
		||||
	vars['config'] = config;
 | 
			
		||||
 | 
			
		||||
	vars['copyright'] = constants.copyright;
 | 
			
		||||
	vars['copyright'] = copyright;
 | 
			
		||||
 | 
			
		||||
	vars['license'] = licenseHtml;
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue