Skip to content
This repository was archived by the owner on Feb 17, 2025. It is now read-only.

Commit d074162

Browse files
shahenAntShahen Antonyan
and
Shahen Antonyan
authored
Removed beta.cliqz.com from history database. (#1142)
Co-authored-by: Shahen Antonyan <[email protected]>
1 parent 2809b75 commit d074162

File tree

2 files changed

+19
-7
lines changed

2 files changed

+19
-7
lines changed

Client/Frontend/Browser/SearchEngines.swift

-6
Original file line numberDiff line numberDiff line change
@@ -131,12 +131,6 @@ class SearchEngines {
131131
if url.scheme == SearchURL.scheme {
132132
return true
133133
}
134-
/// This is a special behavior of Cliqz SERP, which is going to be removed in near future. Until then the App should ignore those urls in history search.
135-
if let cliqzMQueriesURL = URL(string: "https://beta.cliqz.com/mqueries"), let host = (cliqzMQueriesURL.host as NSString?)?.deletingPathExtension {
136-
if host + cliqzMQueriesURL.path == urlHost + url.path {
137-
return true
138-
}
139-
}
140134
for engine in self.orderedEngines {
141135
guard let searchEngineURL = engine.searchURLForQuery(query as String) else {
142136
continue

Storage/SQL/BrowserSchema.swift

+19-1
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ private let log = Logger.syncLogger
143143
* We rely on SQLiteHistory having initialized the favicon table first.
144144
*/
145145
open class BrowserSchema: Schema {
146-
static let DefaultVersion = 42
146+
static let DefaultVersion = 43
147147

148148
public var name: String { return "BROWSER" }
149149
public var version: Int { return BrowserSchema.DefaultVersion }
@@ -1435,6 +1435,24 @@ open class BrowserSchema: Schema {
14351435
}
14361436
}
14371437

1438+
if from < 42 && to >= 42 {
1439+
// Create indices on the bookmarks tables for the `keyword` column.
1440+
let deleteBetaURLs = """
1441+
DELETE FROM history
1442+
WHERE domain_id = (SELECT id FROM domains WHERE domain = "beta.cliqz.com")
1443+
"""
1444+
let deleteBetaDomains = """
1445+
DELETE FROM domains
1446+
WHERE domain = "beta.cliqz.com"
1447+
"""
1448+
if !self.run(db, queries: [
1449+
deleteBetaURLs,
1450+
deleteBetaDomains,
1451+
]) {
1452+
return false
1453+
}
1454+
}
1455+
14381456
return true
14391457
}
14401458

0 commit comments

Comments
 (0)