Mailspring/internal_packages/worker-sync/lib/delta-streaming-connection.es6

76 lines
2.1 KiB
Plaintext
Raw Normal View History

import _ from 'underscore'
import {NylasAPIRequest, NylasLongConnection, DatabaseStore} from 'nylas-exports'
class DeltaStreamingConnection extends NylasLongConnection {
constructor(api, accountId, opts = {}) {
opts.throttleResultsInterval = 1000
opts.closeIfDataStopsInterval = 15 * 1000
super(api, accountId, opts)
2016-12-01 06:55:09 +08:00
const {getCursor, setCursor} = opts
this._getCursor = getCursor
this._setCursor = setCursor
// Update cursor when deltas received
this.onDeltas((deltas) => {
2016-12-01 06:55:09 +08:00
if (opts.onDeltas) opts.onDeltas(deltas);
const last = _.last(deltas)
this._setCursor(last.cursor)
})
}
deltaStreamingPath(cursor = 0) {
return `/delta/streaming?cursor=${cursor}&exclude_folders=false&exclude_metadata=false&exclude_account=false`
}
hasCursor() {
return !!this._getCursor()
}
onError(err) {
if (err.message.indexOf('Invalid cursor') > 0) {
const error = new Error('Delta Connection: Cursor is invalid. Need to blow away local cache.')
NylasEnv.config.unset(`nylas.${this._accountId}.cursor`)
DatabaseStore._handleSetupError(error)
}
}
latestCursor() {
const cursor = this._getCursor()
if (cursor) { return Promise.resolve(cursor) }
const request = new NylasAPIRequest({
api: this._api,
options: {
path: "/delta/latest_cursor",
accountId: this._accountId,
method: 'POST',
},
})
return request.run().then((result) => {
2016-12-01 06:55:09 +08:00
if (!result) throw new Error(`No cursor returned from ${this._api.APIRoot}/delta/latest_cursor`);
this._setCursor(result.cursor)
return Promise.resolve(result.cursor)
})
}
onDeltas(callback) {
return this.onResults(callback)
}
start() {
if (!this.canStart()) { return }
if (this._req != null) { return }
this.latestCursor().then((cursor) => {
this._path = this.deltaStreamingPath(cursor)
super.start()
})
.catch((error) => {
console.error(`Can't establish DeltaStreamingConnection: Error fetching latest cursor`, error)
})
}
}
export default DeltaStreamingConnection