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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
|
"use strict";
const settings = require("../models/settings.js");
const api = require("../api.js");
const uri = require("../util/uri.js");
const AbstractList = require("./abstract_list.js");
const Post = require("./post.js");
class PostList extends AbstractList {
static getAround(id, searchQuery, cachenumber) {
return api.get(
uri.formatApiLink("post", id, "around", {
query: PostList.decorateSearchQuery(searchQuery || ""),
fields: "id",
cachenumber: cachenumber,
})
);
}
static search(text, offset, limit, fields, cachenumber) {
return api
.get(
uri.formatApiLink("posts", {
query: PostList.decorateSearchQuery(text || ""),
offset: offset,
limit: limit,
fields: fields.join(","),
cachenumber: cachenumber,
})
)
.then((response) => {
return Promise.resolve(
Object.assign({}, response, {
results: PostList.fromResponse(response.results),
})
);
});
}
static getMedian(text, fields) {
return api
.get(
uri.formatApiLink("posts", "median", {
query: PostList.decorateSearchQuery(text || ""),
fields: fields.join(","),
})
)
.then((response) => {
return Promise.resolve(
Object.assign({}, response, {
results: PostList.fromResponse(response.results)
})
);
});
}
static reverseSearch(id, limit, threshold, fields) {
return api
.get(
uri.formatApiLink("post", id, "reverse-search", {
limit: limit,
threshold: threshold,
fields: fields.join(","),
})
)
.then((response) => {
const results = response.similarPosts.map((sim) => sim.post);
return Promise.resolve(
Object.assign({}, response, {
results: PostList.fromResponse(results)
})
);
});
}
static decorateSearchQuery(text) {
const browsingSettings = settings.get();
const disabledSafety = [];
if (api.safetyEnabled()) {
for (let key of Object.keys(browsingSettings.listPosts)) {
if (browsingSettings.listPosts[key] === false) {
disabledSafety.push(key);
}
}
if (disabledSafety.length) {
text = `-rating:${disabledSafety.join(",")} ${text}`;
}
}
return text.trim();
}
hasPostId(testId) {
for (let post of this._list) {
if (post.id === testId) {
return true;
}
}
return false;
}
addById(id) {
if (this.hasPostId(id)) {
return;
}
let post = Post.fromResponse({ id: id });
this.add(post);
}
removeById(testId) {
for (let post of this._list) {
if (post.id === testId) {
this.remove(post);
}
}
}
}
PostList._itemClass = Post;
PostList._itemName = "post";
module.exports = PostList;
|