-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathget-pages.js
87 lines (77 loc) · 3.04 KB
/
get-pages.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
import update from 'lodash/fp/update'
import db, { normaliseFindResult, keyRangeForPrefix } from 'src/pouchdb'
import { revisePageFields } from 'src/page-capture'
import { pageKeyPrefix, convertPageDocId } from '.'
// Post-process result list after any retrieval of pages from the database.
async function postprocessPagesResult({ pagesResult }) {
await Promise.all(pagesResult.rows.map(async row => {
row.doc = await postProcessPage(row.doc)
}))
return pagesResult
}
export async function postProcessPage(page) {
const finalPage = {
// Let the page-capture module augment or revise the document's attributes.
...revisePageFields(page),
// The creation time is encoded in the doc._id; expose it for convenience.
timestamp: Number.parseInt(convertPageDocId(page._id).timestamp),
}
if (page.download) {
const [downloadItem] = await browser.downloads.search({ id: page.download.id, exists: true })
finalPage.download.exists = !!downloadItem
}
return finalPage
}
export async function getPage({ pageId }) {
const page = await db.get(pageId)
return postProcessPage(page)
}
export async function getAllPages() {
let pagesResult = await db.allDocs({
...keyRangeForPrefix(pageKeyPrefix),
include_docs: true,
})
pagesResult = await postprocessPagesResult({ pagesResult })
return pagesResult
}
export async function getPagesByUrl({ url }) {
const findResult = await db.find({
selector: {
_id: { $gte: pageKeyPrefix, $lte: `${pageKeyPrefix}\x79` },
url,
},
})
let pagesResult = normaliseFindResult(findResult)
pagesResult = await postprocessPagesResult({ pagesResult })
return pagesResult
}
// Find pages in the given date range (and/or up to the given limit), sorted by time (descending).
export async function getPagesByDate({ startDate, endDate, limit, skipUntil }) {
const selector = {
// Constrain by id (like with startkey/endkey), both to get only the
// page docs, and (if needed) to filter the pages after/before a
// given timestamp (this compares timestamps lexically, which only
// works while they are of the same length, so we should fix this by
// 2286).
_id: {
$gte: startDate !== undefined
? convertPageDocId({ timestamp: startDate })
: pageKeyPrefix,
$lte: endDate !== undefined
? convertPageDocId({ timestamp: endDate })
: `${pageKeyPrefix}\x79`,
$lt: skipUntil,
},
}
let findResult = await db.find({
selector,
// Sort them by time, newest first
sort: [{ _id: 'desc' }],
// limit, // XXX pouchdb-find seems to mess up when passing a limit...
})
// ...so we apply the limit ourselves.
findResult = update('docs', docs => docs.slice(0, limit))(findResult)
let pagesResult = normaliseFindResult(findResult)
pagesResult = await postprocessPagesResult({ pagesResult })
return pagesResult
}