@@ -33,6 +45,7 @@ export default Vue.extend({
return {
stats: null,
disableRegistration: false,
+ disableLocalTimeline: false,
inviteCode: null,
connection: null,
connectionId: null
@@ -44,6 +57,7 @@ export default Vue.extend({
(this as any).os.getMeta().then(meta => {
this.disableRegistration = meta.disableRegistration;
+ this.disableLocalTimeline = meta.disableLocalTimeline;
});
(this as any).api('stats').then(stats => {
@@ -61,7 +75,8 @@ export default Vue.extend({
},
updateMeta() {
(this as any).api('admin/update-meta', {
- disableRegistration: this.disableRegistration
+ disableRegistration: this.disableRegistration,
+ disableLocalTimeline: this.disableLocalTimeline
});
}
}
@@ -97,4 +112,8 @@ export default Vue.extend({
border solid 1px #eee
border-radius: 8px
+ > .form
+ > div
+ border-bottom solid 1px #eee
+
diff --git a/src/client/app/mobile/views/pages/home.vue b/src/client/app/mobile/views/pages/home.vue
index 706c9cd28..333ca1a7a 100644
--- a/src/client/app/mobile/views/pages/home.vue
+++ b/src/client/app/mobile/views/pages/home.vue
@@ -24,8 +24,8 @@
%fa:home% %i18n:@home%
- %fa:R comments% %i18n:@local%
- %fa:share-alt% %i18n:@hybrid%
+ %fa:R comments% %i18n:@local%
+ %fa:share-alt% %i18n:@hybrid%
%fa:globe% %i18n:@global%
%fa:list% {{ l.title }}
@@ -60,7 +60,8 @@ export default Vue.extend({
src: 'home',
list: null,
lists: null,
- showNav: false
+ showNav: false,
+ enableLocalTimeline: false
};
},
@@ -85,6 +86,10 @@ export default Vue.extend({
},
created() {
+ (this as any).os.getMeta().then(meta => {
+ this.enableLocalTimeline = !meta.disableLocalTimeline;
+ });
+
if (this.$store.state.device.tl) {
this.src = this.$store.state.device.tl.src;
if (this.src == 'list') {
diff --git a/src/models/meta.ts b/src/models/meta.ts
index 4f1977f3b..8ca68416f 100644
--- a/src/models/meta.ts
+++ b/src/models/meta.ts
@@ -12,5 +12,6 @@ export type IMeta = {
originalUsersCount: number;
};
disableRegistration?: boolean;
+ disableLocalTimeline?: boolean;
hidedTags?: string[];
};
diff --git a/src/server/api/endpoints/admin/update-meta.ts b/src/server/api/endpoints/admin/update-meta.ts
index f90362877..3f5cd56b2 100644
--- a/src/server/api/endpoints/admin/update-meta.ts
+++ b/src/server/api/endpoints/admin/update-meta.ts
@@ -23,6 +23,12 @@ export const meta = {
}
}),
+ disableLocalTimeline: $.bool.optional.nullable.note({
+ desc: {
+ 'ja-JP': 'ローカルタイムライン(とソーシャルタイムライン)を無効にするか否か'
+ }
+ }),
+
hidedTags: $.arr($.str).optional.nullable.note({
desc: {
'ja-JP': '統計などで無視するハッシュタグ'
@@ -45,6 +51,10 @@ export default (params: any) => new Promise(async (res, rej) => {
set.disableRegistration = ps.disableRegistration;
}
+ if (typeof ps.disableLocalTimeline === 'boolean') {
+ set.disableLocalTimeline = ps.disableLocalTimeline;
+ }
+
if (Array.isArray(ps.hidedTags)) {
set.hidedTags = ps.hidedTags;
}
diff --git a/src/server/api/endpoints/meta.ts b/src/server/api/endpoints/meta.ts
index 4472d8d77..18b0882f7 100644
--- a/src/server/api/endpoints/meta.ts
+++ b/src/server/api/endpoints/meta.ts
@@ -34,6 +34,7 @@ export default (params: any, me: ILocalUser) => new Promise(async (res, rej) =>
},
broadcasts: meta.broadcasts,
disableRegistration: meta.disableRegistration,
+ disableLocalTimeline: meta.disableLocalTimeline,
driveCapacityPerLocalUserMb: config.localDriveCapacityMb,
recaptchaSitekey: config.recaptcha ? config.recaptcha.site_key : null,
swPublickey: config.sw ? config.sw.public_key : null,
diff --git a/src/stream.ts b/src/stream.ts
index 38a640c5d..ebc75c875 100644
--- a/src/stream.ts
+++ b/src/stream.ts
@@ -1,58 +1,97 @@
import * as mongo from 'mongodb';
import Xev from 'xev';
-
-const ev = new Xev();
+import Meta, { IMeta } from './models/meta';
type ID = string | mongo.ObjectID;
-function publish(channel: string, type: string, value?: any): void {
- const message = type == null ? value : value == null ?
- { type: type } :
- { type: type, body: value };
+class Publisher {
+ private ev: Xev;
+ private meta: IMeta;
- ev.emit(channel, message);
+ constructor() {
+ this.ev = new Xev();
+
+ setInterval(async () => {
+ this.meta = await Meta.findOne({});
+ }, 5000);
+ }
+
+ public getMeta = async () => {
+ if (this.meta != null) return this.meta;
+
+ this.meta = await Meta.findOne({});
+ return this.meta;
+ }
+
+ private publish = (channel: string, type: string, value?: any): void => {
+ const message = type == null ? value : value == null ?
+ { type: type } :
+ { type: type, body: value };
+
+ this.ev.emit(channel, message);
+ }
+
+ public publishUserStream = (userId: ID, type: string, value?: any): void => {
+ this.publish(`user-stream:${userId}`, type, typeof value === 'undefined' ? null : value);
+ }
+
+ public publishDriveStream = (userId: ID, type: string, value?: any): void => {
+ this.publish(`drive-stream:${userId}`, type, typeof value === 'undefined' ? null : value);
+ }
+
+ public publishNoteStream = (noteId: ID, type: string): void => {
+ this.publish(`note-stream:${noteId}`, null, noteId);
+ }
+
+ public publishUserListStream = (listId: ID, type: string, value?: any): void => {
+ this.publish(`user-list-stream:${listId}`, type, typeof value === 'undefined' ? null : value);
+ }
+
+ public publishMessagingStream = (userId: ID, otherpartyId: ID, type: string, value?: any): void => {
+ this.publish(`messaging-stream:${userId}-${otherpartyId}`, type, typeof value === 'undefined' ? null : value);
+ }
+
+ public publishMessagingIndexStream = (userId: ID, type: string, value?: any): void => {
+ this.publish(`messaging-index-stream:${userId}`, type, typeof value === 'undefined' ? null : value);
+ }
+
+ public publishReversiStream = (userId: ID, type: string, value?: any): void => {
+ this.publish(`reversi-stream:${userId}`, type, typeof value === 'undefined' ? null : value);
+ }
+
+ public publishReversiGameStream = (gameId: ID, type: string, value?: any): void => {
+ this.publish(`reversi-game-stream:${gameId}`, type, typeof value === 'undefined' ? null : value);
+ }
+
+ public publishLocalTimelineStream = async (note: any): Promise => {
+ const meta = await this.getMeta();
+ if (meta.disableLocalTimeline) return;
+ this.publish('local-timeline', null, note);
+ }
+
+ public publishHybridTimelineStream = async (userId: ID, note: any): Promise => {
+ const meta = await this.getMeta();
+ if (meta.disableLocalTimeline) return;
+ this.publish(userId ? `hybrid-timeline:${userId}` : 'hybrid-timeline', null, note);
+ }
+
+ public publishGlobalTimelineStream = (note: any): void => {
+ this.publish('global-timeline', null, note);
+ }
}
-export function publishUserStream(userId: ID, type: string, value?: any): void {
- publish(`user-stream:${userId}`, type, typeof value === 'undefined' ? null : value);
-}
+const publisher = new Publisher();
-export function publishDriveStream(userId: ID, type: string, value?: any): void {
- publish(`drive-stream:${userId}`, type, typeof value === 'undefined' ? null : value);
-}
+export default publisher;
-export function publishNoteStream(noteId: ID, type: string): void {
- publish(`note-stream:${noteId}`, null, noteId);
-}
-
-export function publishUserListStream(listId: ID, type: string, value?: any): void {
- publish(`user-list-stream:${listId}`, type, typeof value === 'undefined' ? null : value);
-}
-
-export function publishMessagingStream(userId: ID, otherpartyId: ID, type: string, value?: any): void {
- publish(`messaging-stream:${userId}-${otherpartyId}`, type, typeof value === 'undefined' ? null : value);
-}
-
-export function publishMessagingIndexStream(userId: ID, type: string, value?: any): void {
- publish(`messaging-index-stream:${userId}`, type, typeof value === 'undefined' ? null : value);
-}
-
-export function publishReversiStream(userId: ID, type: string, value?: any): void {
- publish(`reversi-stream:${userId}`, type, typeof value === 'undefined' ? null : value);
-}
-
-export function publishReversiGameStream(gameId: ID, type: string, value?: any): void {
- publish(`reversi-game-stream:${gameId}`, type, typeof value === 'undefined' ? null : value);
-}
-
-export function publishLocalTimelineStream(note: any): void {
- publish('local-timeline', null, note);
-}
-
-export function publishHybridTimelineStream(userId: ID, note: any): void {
- publish(userId ? `hybrid-timeline:${userId}` : 'hybrid-timeline', null, note);
-}
-
-export function publishGlobalTimelineStream(note: any): void {
- publish('global-timeline', null, note);
-}
+export const publishUserStream = publisher.publishUserStream;
+export const publishDriveStream = publisher.publishDriveStream;
+export const publishNoteStream = publisher.publishNoteStream;
+export const publishUserListStream = publisher.publishUserListStream;
+export const publishMessagingStream = publisher.publishMessagingStream;
+export const publishMessagingIndexStream = publisher.publishMessagingIndexStream;
+export const publishReversiStream = publisher.publishReversiStream;
+export const publishReversiGameStream = publisher.publishReversiGameStream;
+export const publishLocalTimelineStream = publisher.publishLocalTimelineStream;
+export const publishHybridTimelineStream = publisher.publishHybridTimelineStream;
+export const publishGlobalTimelineStream = publisher.publishGlobalTimelineStream;