Update Emojis immediately (#5106)

This commit is contained in:
Satsuki Yanagi 2019-07-05 07:45:00 +09:00 committed by syuilo
parent a8f945ae8e
commit d5caf22d8c
4 changed files with 10 additions and 1 deletions

View file

@ -3,6 +3,7 @@ import define from '../../../define';
import { detectUrlMine } from '../../../../../misc/detect-url-mine';
import { Emojis } from '../../../../../models';
import { genId } from '../../../../../misc/gen-id';
import { getConnection } from 'typeorm';
export const meta = {
desc: {
@ -43,6 +44,8 @@ export default define(meta, async (ps) => {
type,
});
await getConnection().queryResultCache!.remove(['meta_emojis']);
return {
id: emoji.id
};

View file

@ -2,6 +2,7 @@ import $ from 'cafy';
import define from '../../../define';
import { ID } from '../../../../../misc/cafy-id';
import { Emojis } from '../../../../../models';
import { getConnection } from 'typeorm';
export const meta = {
desc: {
@ -26,4 +27,6 @@ export default define(meta, async (ps) => {
if (emoji == null) throw new Error('emoji not found');
await Emojis.delete(emoji.id);
await getConnection().queryResultCache!.remove(['meta_emojis']);
});

View file

@ -3,6 +3,7 @@ import define from '../../../define';
import { detectUrlMine } from '../../../../../misc/detect-url-mine';
import { ID } from '../../../../../misc/cafy-id';
import { Emojis } from '../../../../../models';
import { getConnection } from 'typeorm';
export const meta = {
desc: {
@ -47,4 +48,6 @@ export default define(meta, async (ps) => {
url: ps.url,
type,
});
await getConnection().queryResultCache!.remove(['meta_emojis']);
});

View file

@ -95,7 +95,7 @@ export const meta = {
export default define(meta, async (ps, me) => {
const instance = await fetchMeta(true);
const emojis = await Emojis.find({ where: { host: null }, cache: 3600000 }); // 1 hour
const emojis = await Emojis.find({ where: { host: null }, cache: { id: 'meta_emojis', milliseconds: 3600000 } }); // 1 hour
const response: any = {
maintainerName: instance.maintainerName,