pinafore/routes/_actions/streaming.js

70 lines
2.8 KiB
JavaScript
Raw Normal View History

2018-02-11 22:46:57 +01:00
import { TimelineStream } from '../_api/TimelineStream'
import identity from 'lodash/identity'
import { database } from '../_database/database'
import { store } from '../_store/store'
import { scheduleIdleTask } from '../_utils/scheduleIdleTask'
async function removeDuplicates (instanceName, timelineName, updates) {
// remove duplicates, including duplicates due to reblogs
2018-02-12 01:10:39 +01:00
let timelineItemIds = store.getForTimeline(instanceName, timelineName, 'timelineItemIds') || []
2018-02-11 22:46:57 +01:00
let reblogIds = (await Promise.all(timelineItemIds.map(async timelineItemId => {
let status = await database.getStatus(instanceName, timelineItemId)
return status.reblog && status.reblog.id
}))).filter(identity)
let existingItemIds = new Set([].concat(timelineItemIds).concat(reblogIds))
return updates.filter(update => !existingItemIds.has(update.id))
}
async function handleFreshChanges (instanceName, timelineName) {
let freshChanges = store.getForTimeline(instanceName, timelineName, 'freshChanges')
if (freshChanges.updates && freshChanges.updates.length) {
let updates = freshChanges.updates.slice()
freshChanges.updates = []
store.setForTimeline(instanceName, timelineName, {freshChanges: freshChanges})
updates = await removeDuplicates(instanceName, timelineName, updates)
await database.insertTimelineItems(instanceName, timelineName, updates)
2018-02-12 01:18:53 +01:00
let itemIdsToAdd = store.getForTimeline(instanceName, timelineName, 'itemIdsToAdd') || []
if (updates && updates.length) {
2018-02-12 01:10:39 +01:00
itemIdsToAdd = itemIdsToAdd.concat(updates.map(_ => _.id))
store.setForTimeline(instanceName, timelineName, {itemIdsToAdd: itemIdsToAdd})
}
2018-02-11 22:46:57 +01:00
}
}
function handleStreamMessage (instanceName, timelineName, message) {
let { event, payload } = message
let key = event === 'update' ? 'updates' : 'deletes'
let freshChanges = store.getForTimeline(instanceName, timelineName, 'freshChanges') || {}
freshChanges[key] = freshChanges[key] || []
freshChanges[key].push(JSON.parse(payload))
store.setForTimeline(instanceName, timelineName, {freshChanges: freshChanges})
scheduleIdleTask(() => {
handleFreshChanges(instanceName, timelineName)
})
}
export function createStream (streamingApi, instanceName, accessToken, timelineName) {
2018-02-11 23:11:03 +01:00
return new TimelineStream(streamingApi, accessToken, timelineName, {
onMessage (msg) {
2018-02-11 22:46:57 +01:00
if (msg.event !== 'update' && msg.event !== 'delete') {
console.error("don't know how to handle event", msg)
return
}
scheduleIdleTask(() => {
handleStreamMessage(instanceName, timelineName, msg)
})
},
2018-02-11 23:11:03 +01:00
onOpen () {
2018-02-11 22:46:57 +01:00
console.log('opened stream for timeline', timelineName)
},
2018-02-11 23:11:03 +01:00
onClose () {
2018-02-11 22:46:57 +01:00
console.log('closed stream for timeline', timelineName)
},
2018-02-11 23:11:03 +01:00
onReconnect () {
2018-02-11 22:46:57 +01:00
console.log('reconnected stream for timeline', timelineName)
}
})
2018-02-12 04:15:21 +01:00
}