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 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173
|
// This is a wrapper class for completion engines. It handles the case where a custom search engine
// includes a prefix query term (or terms). For example:
//
// https://www.google.com/search?q=javascript+%s
//
// In this case, we get better suggestions if we include the term "javascript" in queries sent to
// the completion engine. This wrapper handles adding such prefixes to completion-engine queries and
// removing them from the resulting suggestions.
class EnginePrefixWrapper {
constructor(searchUrl, engine) {
this.searchUrl = searchUrl;
this.engine = engine;
}
getUrl(queryTerms) {
// This tests whether @searchUrl contains something of the form "...=abc+def+%s...", from which
// we extract a prefix of the form "abc def ".
if (/\=.+\+%s/.test(this.searchUrl)) {
let terms = this.searchUrl.replace(/\+%s.*/, "");
terms = terms.replace(/.*=/, "");
terms = terms.replace(/\+/g, " ");
queryTerms = [...terms.split(" "), ...queryTerms];
const prefix = `${terms} `;
this.transformSuggestionsFn = (suggestions) => {
return suggestions
.filter((s) => s.startsWith(prefix))
.map((s) => s.slice(prefix.length));
};
}
return this.engine.getUrl(queryTerms);
}
parse(responseText) {
const suggestions = this.engine.parse(responseText);
return this.transformSuggestionsFn ? this.transformSuggestionsFn(suggestions) : suggestions;
}
}
const CompletionSearch = {
debug: false,
inTransit: {},
completionCache: new SimpleCache(2 * 60 * 60 * 1000, 5000), // Two hours, 5000 entries.
engineCache: new SimpleCache(1000 * 60 * 60 * 1000), // 1000 hours.
// The amount of time to wait for new requests before launching the current request (for example,
// if the user is still typing).
delay: 100,
// This gets incremented each time we make a request to the completion engine. This allows us to
// dedupe requets which overlap, which is the case when the user is typing fast.
requestId: 0,
async get(url) {
const timeoutDuration = 2500;
const controller = new AbortController();
let isError = false;
let responseText;
const timer = Utils.setTimeout(timeoutDuration, () => controller.abort());
try {
const response = await fetch(url, { signal: controller.signal });
responseText = await response.text();
} catch {
// Fetch throws an error if the network is unreachable, etc.
isError = true;
}
clearTimeout(timer);
return isError ? null : responseText;
},
// Look up the completion engine for this searchUrl.
lookupEngine(searchUrl) {
if (this.engineCache.has(searchUrl)) {
return this.engineCache.get(searchUrl);
} else {
for (let engine of Array.from(CompletionEngines)) {
engine = new engine();
if (engine.match(searchUrl)) {
return this.engineCache.set(searchUrl, engine);
}
}
}
},
// This is the main entry point.
// - searchUrl is the search engine's URL, e.g. Settings.get("searchUrl"), or a custom search
// engine's URL. This is only used as a key for determining the relevant completion engine.
// - queryTerms are the query terms.
async complete(searchUrl, queryTerms) {
const query = queryTerms.join(" ").toLowerCase();
// We don't complete queries which are too short: the results are usually useless.
if (query.length < 4) return [];
// We don't complete regular URLs or Javascript URLs.
if (queryTerms.length == 1 && await UrlUtils.isUrl(query)) return [];
if (UrlUtils.hasJavascriptPrefix(query)) return [];
const engine = this.lookupEngine(searchUrl);
if (!engine) return [];
const completionCacheKey = JSON.stringify([searchUrl, queryTerms]);
if (this.completionCache.has(completionCacheKey)) {
if (this.debug) console.log("hit", completionCacheKey);
return this.completionCache.get(completionCacheKey);
}
const createTimeoutPromise = (ms) => {
return new Promise((resolve) => {
setTimeout(() => {
resolve();
}, ms);
});
};
this.requestId++;
const lastRequestId = this.requestId;
// We delay sending a completion request in case the user is still typing.
await createTimeoutPromise(this.delay);
// If the user has issued a new query while we were waiting, then this query is old; abort it.
if (lastRequestId != this.requestId) return [];
const engineWrapper = new EnginePrefixWrapper(searchUrl, engine);
const url = engineWrapper.getUrl(queryTerms);
if (this.debug) console.log("GET", url);
const responseText = await this.get(url);
// Parsing the response may fail if we receive an unexpectedly-formatted response. In all cases,
// we fall back to the catch clause, below. Therefore, we "fail safe" in the case of incorrect
// or out-of-date completion engine implementations.
let suggestions = [];
let isError = responseText == null;
if (!isError) {
try {
suggestions = engineWrapper.parse(responseText)
// Make all suggestions lower case. It looks odd when suggestions from one
// completion engine are upper case, and those from another are lower case.
.map((s) => s.toLowerCase())
// Filter out the query itself. It's not adding anything.
.filter((s) => s !== query);
} catch (error) {
if (this.debug) console.log("error:", error);
isError = true;
}
}
if (isError) {
// We allow failures to be cached too, but remove them after just thirty seconds.
Utils.setTimeout(
30 * 1000,
() => this.completionCache.set(completionCacheKey, null),
);
}
this.completionCache.set(completionCacheKey, suggestions);
return suggestions;
},
// Cancel any pending (ie. blocked on @delay) queries. Does not cancel in-flight queries. This is
// called whenever the user is typing.
cancel() {
this.requestId++;
},
};
globalThis.CompletionSearch = CompletionSearch;
|