pinafore/routes/_database/databaseCore.js

260 lines
8.1 KiB
JavaScript
Raw Normal View History

2018-01-23 18:03:31 +01:00
import {
toReversePaddedBigInt
} from './utils'
import {
getDatabase,
dbPromise,
deleteDatabase,
} from './databaseLifecycle'
import {
META_STORE,
STATUS_TIMELINES_STORE,
2018-01-28 21:51:48 +01:00
STATUSES_STORE,
ACCOUNTS_STORE,
RELATIONSHIPS_STORE,
2018-02-04 03:06:57 +01:00
NOTIFICATIONS_STORE,
NOTIFICATION_TIMELINES_STORE
2018-01-23 18:03:31 +01:00
} from './constants'
2018-01-22 03:36:40 +01:00
2018-01-28 21:51:48 +01:00
import {
statusesCache,
relationshipsCache,
accountsCache,
metaCache,
notificationsCache,
2018-01-28 21:51:48 +01:00
clearCache,
getInCache,
hasInCache,
setInCache
} from './cache'
2018-01-28 21:51:48 +01:00
//
// helpers
//
2018-01-27 23:55:46 +01:00
2018-01-28 21:51:48 +01:00
async function getGenericEntityWithId(store, cache, instanceName, id) {
if (hasInCache(cache, instanceName, id)) {
return getInCache(cache, instanceName, id)
2018-01-27 23:55:46 +01:00
}
2018-01-28 21:51:48 +01:00
const db = await getDatabase(instanceName)
let result = await dbPromise(db, store, 'readonly', (store, callback) => {
store.get(id).onsuccess = (e) => callback(e.target.result)
})
setInCache(cache, instanceName, id, result)
return result
2018-01-27 23:45:51 +01:00
}
2018-01-28 21:51:48 +01:00
async function setGenericEntityWithId(store, cache, instanceName, entity) {
setInCache(cache, instanceName, entity.id, entity)
const db = await getDatabase(instanceName)
return await dbPromise(db, store, 'readwrite', (store) => {
store.put(entity)
})
2018-01-27 23:45:51 +01:00
}
//
// timelines/statuses/notifications
//
2018-02-09 06:49:52 +01:00
function createKeyRange(timeline, maxId) {
let negBigInt = maxId && toReversePaddedBigInt(maxId)
let start = negBigInt ? (timeline + '\u0000' + negBigInt) : (timeline + '\u0000')
let end = timeline + '\u0000\uffff'
return IDBKeyRange.bound(start, end, false, false)
}
2018-02-09 06:49:52 +01:00
async function getNotificationTimeline(instanceName, timeline, maxId, limit) {
let storeNames = [NOTIFICATION_TIMELINES_STORE, NOTIFICATIONS_STORE]
const db = await getDatabase(instanceName)
2018-02-09 06:49:52 +01:00
return await dbPromise(db, storeNames, 'readonly', (stores, callback) => {
let [ timelineStore, notificationsStore ] = stores
let keyRange = createKeyRange(timeline, maxId)
2018-01-23 18:03:31 +01:00
2018-02-09 06:49:52 +01:00
timelineStore.getAll(keyRange, limit).onsuccess = e => {
let timelineResults = e.target.result
let res = new Array(timelineResults.length)
timelineResults.forEach((timelineResult, i) => {
notificationsStore.get(timelineResult.notificationId).onsuccess = e => {
res[i] = e.target.result
}
})
callback(res)
}
})
}
async function getStatusTimeline(instanceName, timeline, maxId, limit) {
let storeNames = [STATUS_TIMELINES_STORE, STATUSES_STORE]
const db = await getDatabase(instanceName)
return await dbPromise(db, storeNames, 'readonly', (stores, callback) => {
let [ timelineStore, statusesStore ] = stores
let keyRange = createKeyRange(timeline, maxId)
2018-01-23 18:03:31 +01:00
2018-02-09 06:49:52 +01:00
timelineStore.getAll(keyRange, limit).onsuccess = e => {
2018-01-23 18:03:31 +01:00
let timelineResults = e.target.result
let res = new Array(timelineResults.length)
timelineResults.forEach((timelineResult, i) => {
2018-02-09 06:49:52 +01:00
statusesStore.get(timelineResult.statusId).onsuccess = e => {
2018-01-23 18:03:31 +01:00
res[i] = e.target.result
}
})
callback(res)
2018-01-22 03:36:40 +01:00
}
})
}
2018-02-09 06:49:52 +01:00
export async function getTimeline(instanceName, timeline, maxId = null, limit = 20) {
return timeline === 'notifications' ?
await getNotificationTimeline(instanceName, timeline, maxId, limit) :
await getStatusTimeline(instanceName, timeline, maxId, limit)
}
function createTimelineId(timeline, id) {
// reverse chronological order, prefixed by timeline
return timeline + '\u0000' + toReversePaddedBigInt(id)
}
async function insertTimelineNotifications(instanceName, timeline, notifications) {
let storeNames = [NOTIFICATION_TIMELINES_STORE, NOTIFICATIONS_STORE, ACCOUNTS_STORE]
for (let notification of notifications) {
setInCache(notificationsCache, instanceName, notification.id, notification)
setInCache(accountsCache, instanceName, notification.account.id, notification.account)
}
const db = await getDatabase(instanceName)
await dbPromise(db, storeNames, 'readwrite', (stores) => {
let [ timelineStore, notificationsStore, accountsStore ] = stores
for (let notification of notifications) {
notificationsStore.put(notification)
timelineStore.put({
id: createTimelineId(timeline, notification.id),
notificationId: notification.id
})
accountsStore.put(notification.account)
}
})
}
async function insertTimelineStatuses(instanceName, timeline, statuses) {
let storeNames = [STATUS_TIMELINES_STORE, STATUSES_STORE, ACCOUNTS_STORE]
for (let status of statuses) {
setInCache(statusesCache, instanceName, status.id, status)
setInCache(accountsCache, instanceName, status.account.id, status.account)
if (status.reblog) {
setInCache(accountsCache, instanceName, status.reblog.account.id, status.reblog.account)
2018-01-25 09:01:56 +01:00
}
}
const db = await getDatabase(instanceName)
2018-02-09 06:49:52 +01:00
await dbPromise(db, storeNames, 'readwrite', (stores) => {
let [ timelineStore, statusesStore, accountsStore ] = stores
for (let status of statuses) {
statusesStore.put(status)
2018-01-23 18:03:31 +01:00
timelineStore.put({
2018-02-09 06:49:52 +01:00
id: createTimelineId(timeline, status.id),
statusId: status.id
2018-01-23 18:03:31 +01:00
})
2018-02-09 06:49:52 +01:00
accountsStore.put(status.account)
if (status.reblog) {
accountsStore.put(status.reblog.account)
2018-01-23 18:21:21 +01:00
}
2018-01-22 03:36:40 +01:00
}
})
}
2018-02-09 06:49:52 +01:00
export async function insertTimelineItems(instanceName, timeline, timelineItems) {
return timeline === 'notifications' ?
await insertTimelineNotifications(instanceName, timeline, timelineItems) :
await insertTimelineStatuses(instanceName, timeline, timelineItems)
}
export async function getStatus(instanceName, statusId) {
2018-01-28 21:51:48 +01:00
return await getGenericEntityWithId(STATUSES_STORE, statusesCache, instanceName, statusId)
}
export async function getNotification(instanceName, notificationId) {
return await getGenericEntityWithId(NOTIFICATIONS_STORE, notificationsCache, instanceName, notificationId)
}
//
// meta
//
async function getMetaProperty(instanceName, key) {
2018-01-27 23:45:51 +01:00
if (hasInCache(metaCache, instanceName, key)) {
return getInCache(metaCache, instanceName, key)
}
2018-01-23 18:03:31 +01:00
const db = await getDatabase(instanceName)
let result = await dbPromise(db, META_STORE, 'readonly', (store, callback) => {
store.get(key).onsuccess = (e) => {
2018-01-22 03:36:40 +01:00
callback(e.target.result && e.target.result.value)
}
})
2018-01-27 23:45:51 +01:00
setInCache(metaCache, instanceName, key, result)
return result
2018-01-22 03:36:40 +01:00
}
async function setMetaProperty(instanceName, key, value) {
2018-01-27 23:45:51 +01:00
setInCache(metaCache, instanceName, key, value)
2018-01-23 18:03:31 +01:00
const db = await getDatabase(instanceName)
2018-01-22 03:36:40 +01:00
return await dbPromise(db, META_STORE, 'readwrite', (store) => {
store.put({
key: key,
value: value
2018-01-22 03:36:40 +01:00
})
})
}
export async function getInstanceVerifyCredentials(instanceName) {
return await getMetaProperty(instanceName, 'verifyCredentials')
}
export async function setInstanceVerifyCredentials(instanceName, value) {
return await setMetaProperty(instanceName, 'verifyCredentials', value)
}
export async function getInstanceInfo(instanceName) {
return await getMetaProperty(instanceName, 'instance')
}
export async function setInstanceInfo(instanceName, value) {
return await setMetaProperty(instanceName, 'instance', value)
}
2018-02-08 18:15:25 +01:00
export async function getLists(instanceName) {
return await getMetaProperty(instanceName, 'lists')
}
export async function setLists(instanceName, value) {
return await setMetaProperty(instanceName, 'lists', value)
}
//
2018-01-28 21:51:48 +01:00
// accounts/relationships
//
2018-01-23 18:21:21 +01:00
export async function getAccount(instanceName, accountId) {
2018-01-28 21:51:48 +01:00
return await getGenericEntityWithId(ACCOUNTS_STORE, accountsCache, instanceName, accountId)
2018-01-23 18:21:21 +01:00
}
2018-01-28 05:23:52 +01:00
export async function setAccount(instanceName, account) {
2018-01-28 21:51:48 +01:00
return await setGenericEntityWithId(ACCOUNTS_STORE, accountsCache, instanceName, account)
}
export async function getRelationship(instanceName, accountId) {
return await getGenericEntityWithId(RELATIONSHIPS_STORE, relationshipsCache, instanceName, accountId)
}
export async function setRelationship(instanceName, relationship) {
return await setGenericEntityWithId(RELATIONSHIPS_STORE, relationshipsCache, instanceName, relationship)
2018-01-28 05:23:52 +01:00
}
//
// lifecycle
//
2018-01-23 18:03:31 +01:00
export async function clearDatabaseForInstance(instanceName) {
2018-01-27 23:55:46 +01:00
clearCache(statusesCache, instanceName)
clearCache(accountsCache, instanceName)
clearCache(metaCache, instanceName)
2018-01-23 18:03:31 +01:00
await deleteDatabase(instanceName)
2018-01-22 03:36:40 +01:00
}