Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make merge strategy work with tabs #1781

Merged
merged 6 commits into from
Nov 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 6 additions & 8 deletions src/lib/Account.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import AdapterFactory from './AdapterFactory'
import Logger from './Logger'
import { Folder, ItemLocation, TItemLocation } from './Tree'
import { ItemLocation, TItemLocation } from './Tree'
import UnidirectionalSyncProcess from './strategies/Unidirectional'
import MergeSyncProcess from './strategies/Merge'
import DefaultSyncProcess from './strategies/Default'
Expand Down Expand Up @@ -208,7 +208,7 @@ export default class Account {

// main sync steps:
mappings = await this.storage.getMappings()
const cacheTree = localResource.constructor.name !== 'LocalTabs' ? await this.storage.getCache() : new Folder({title: '', id: 'tabs', location: ItemLocation.LOCAL})
const cacheTree = await this.storage.getCache()

let continuation = await this.storage.getCurrentContinuation()

Expand Down Expand Up @@ -280,12 +280,10 @@ export default class Account {
await this.setData({ ...this.getData(), scheduled: false, syncing: 1 })

// update cache
if (localResource.constructor.name !== 'LocalTabs') {
const cache = (await localResource.getBookmarksTree()).clone(false)
this.syncProcess.filterOutUnacceptedBookmarks(cache)
this.syncProcess.filterOutUnmappedItems(cache, await mappings.getSnapshot())
await this.storage.setCache(cache)
}
const cache = (await localResource.getBookmarksTree()).clone(false)
this.syncProcess.filterOutUnacceptedBookmarks(cache)
this.syncProcess.filterOutUnmappedItems(cache, await mappings.getSnapshot())
await this.storage.setCache(cache)

if (this.server.onSyncComplete) {
await this.server.onSyncComplete()
Expand Down
22 changes: 19 additions & 3 deletions src/lib/LocalTabs.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import browser from './browser-api'
import Logger from './Logger'
import { IResource } from './interfaces/Resource'
import { OrderFolderResource } from './interfaces/Resource'
import PQueue from 'p-queue'
import { Bookmark, Folder, ItemLocation } from './Tree'
import Ordering from './interfaces/Ordering'
import uniq from 'lodash/uniq'

export default class LocalTabs implements IResource<typeof ItemLocation.LOCAL> {
export default class LocalTabs implements OrderFolderResource<typeof ItemLocation.LOCAL> {
private queue: PQueue<{ concurrency: 10 }>
private storage: unknown

Expand Down Expand Up @@ -65,6 +65,7 @@ export default class LocalTabs implements IResource<typeof ItemLocation.LOCAL> {
active: false,
})
)
await awaitTabsUpdated()
return node.id
}

Expand All @@ -85,6 +86,7 @@ export default class LocalTabs implements IResource<typeof ItemLocation.LOCAL> {
index: -1 // last
})
)
await awaitTabsUpdated()
}

async removeBookmark(bookmark:Bookmark<typeof ItemLocation.LOCAL>): Promise<void> {
Expand All @@ -95,6 +97,7 @@ export default class LocalTabs implements IResource<typeof ItemLocation.LOCAL> {
return
}
await this.queue.add(() => browser.tabs.remove(bookmarkId))
await awaitTabsUpdated()
}

async createFolder(folder:Folder<typeof ItemLocation.LOCAL>): Promise<number> {
Expand Down Expand Up @@ -131,6 +134,7 @@ export default class LocalTabs implements IResource<typeof ItemLocation.LOCAL> {
throw new Error('Failed to reorder folder ' + id + ': ' + e.message)
}
}
await awaitTabsUpdated()
}

async updateFolder(folder:Folder<typeof ItemLocation.LOCAL>):Promise<void> {
Expand All @@ -140,7 +144,7 @@ export default class LocalTabs implements IResource<typeof ItemLocation.LOCAL> {
async removeFolder(folder:Folder<typeof ItemLocation.LOCAL>):Promise<void> {
const id = folder.id
Logger.log('(tabs)REMOVEFOLDER', id)
await this.queue.add(() => browser.tabs.remove(id))
await this.queue.add(() => browser.window.remove(id))
}

async isAvailable(): Promise<boolean> {
Expand All @@ -150,3 +154,15 @@ export default class LocalTabs implements IResource<typeof ItemLocation.LOCAL> {
return Boolean(tabs.length)
}
}

function awaitTabsUpdated() {
return Promise.race([
new Promise<void>(resolve => {
browser.tabs.onUpdated.addListener(() => {
browser.tabs.onUpdated.removeListener(resolve)
setTimeout(() => resolve(), 1000)
})
}),
new Promise(resolve => setTimeout(resolve, 1100))
])
}
10 changes: 9 additions & 1 deletion src/lib/browser/BrowserController.js
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,9 @@
}
}
})

// Run some things on browser startup
browser.runtime.onStartup.addListener(this.onStartup)
}

async _receiveEvent(data, sendResponse) {
Expand Down Expand Up @@ -223,7 +226,7 @@
return Promise.resolve(this.unlocked)
}

async onchange(localId, details) {

Check warning on line 229 in src/lib/browser/BrowserController.js

View workflow job for this annotation

GitHub Actions / js node20.x

'details' is defined but never used

Check warning on line 229 in src/lib/browser/BrowserController.js

View workflow job for this annotation

GitHub Actions / init (20.x, 10.x)

'details' is defined but never used
if (!this.enabled) {
return
}
Expand Down Expand Up @@ -412,7 +415,7 @@
}
}

async onLoad() {
async onStartup() {
const accounts = await Account.getAllAccounts()
await Promise.all(
accounts.map(async acc => {
Expand All @@ -423,9 +426,14 @@
scheduled: acc.getData().enabled,
})
}
if (acc.getData().localRoot === 'tabs') {
await acc.init()
}
})
)
}

async onLoad() {
browser.storage.local.get('telemetryEnabled').then(async d => {
if (!d.telemetryEnabled) {
return
Expand Down
71 changes: 50 additions & 21 deletions src/lib/strategies/Default.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ import { CancelledSyncError, FailsafeError } from '../../errors/Error'

import NextcloudBookmarksAdapter from '../adapters/NextcloudBookmarks'
import CachingAdapter from '../adapters/Caching'
import LocalTabs from '../LocalTabs'

const ACTION_CONCURRENCY = 12

Expand Down Expand Up @@ -424,27 +425,55 @@ export default class SyncProcess {

const newMappings = []

// if we have the cache available, Diff cache and both trees
const localScanner = new Scanner(
this.cacheTreeRoot,
this.localTreeRoot,
(oldItem, newItem) =>
(oldItem.type === newItem.type && String(oldItem.id) === String(newItem.id)),
this.preserveOrder
)
const serverScanner = new Scanner(
this.cacheTreeRoot,
this.serverTreeRoot,
// We also allow canMergeWith here, because e.g. for NextcloudFolders the id of moved bookmarks changes (because their id is "<bookmarkID>;<folderId>")
(oldItem, newItem) => {
if ((oldItem.type === newItem.type && Mappings.mappable(mappingsSnapshot, oldItem, newItem)) || (oldItem.type === 'bookmark' && oldItem.canMergeWith(newItem))) {
newMappings.push([oldItem, newItem])
return true
}
return false
},
this.preserveOrder
)
let localScanner, serverScanner
if (this.localTree instanceof LocalTabs) {
// if we have the cache available, Diff cache and both trees
localScanner = new Scanner(
this.cacheTreeRoot,
this.localTreeRoot,
// We also allow canMergeWith for folders here, because Window IDs are not stable
(oldItem, newItem) =>
(oldItem.type === newItem.type && String(oldItem.id) === String(newItem.id)) || (oldItem.type === 'folder' && oldItem.canMergeWith(newItem)),
this.preserveOrder,
)
serverScanner = new Scanner(
this.cacheTreeRoot,
this.serverTreeRoot,
// We also allow canMergeWith here
// (for bookmarks, because e.g. for NextcloudFolders the id of moved bookmarks changes (because their id is "<bookmarkID>;<folderId>")
// (for folders because Window IDs are not stable)
(oldItem, newItem) => {
if ((oldItem.type === newItem.type && Mappings.mappable(mappingsSnapshot, oldItem, newItem)) || (oldItem.canMergeWith(newItem))) {
newMappings.push([oldItem, newItem])
return true
}
return false
},
this.preserveOrder,
)
} else {
// if we have the cache available, Diff cache and both trees
localScanner = new Scanner(
this.cacheTreeRoot,
this.localTreeRoot,
(oldItem, newItem) =>
(oldItem.type === newItem.type && String(oldItem.id) === String(newItem.id)),
this.preserveOrder
)
serverScanner = new Scanner(
this.cacheTreeRoot,
this.serverTreeRoot,
// We also allow canMergeWith here, because e.g. for NextcloudFolders the id of moved bookmarks changes (because their id is "<bookmarkID>;<folderId>")
(oldItem, newItem) => {
if ((oldItem.type === newItem.type && Mappings.mappable(mappingsSnapshot, oldItem, newItem)) || (oldItem.type === 'bookmark' && oldItem.canMergeWith(newItem))) {
newMappings.push([oldItem, newItem])
return true
}
return false
},
this.preserveOrder
)
}
Logger.log('Calculating diffs for local and server trees relative to cache tree')
const localScanResult = await localScanner.run()
const serverScanResult = await serverScanner.run()
Expand Down
92 changes: 89 additions & 3 deletions src/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -4904,10 +4904,10 @@ describe('Floccus', function() {
windowType: 'normal' // no devtools or panels or popups
})
await browser.tabs.remove(tabs.filter(tab => tab.url.startsWith('http')).map(tab => tab.id))
await awaitTabsUpdated()
} catch (e) {
console.error(e)
}
await awaitTabsUpdated()
if (ACCOUNT_DATA.type === 'git') {
await account.server.clearServer()
} else if (ACCOUNT_DATA.type !== 'fake') {
Expand Down Expand Up @@ -5115,14 +5115,14 @@ describe('Floccus', function() {
serverMark2 = {
title: 'Example Domain',
url: 'https://example.org/#test3',
parentId: windowFolderId,
parentId: tree.children[0].id,
location: ItemLocation.SERVER
}
await adapter.createBookmark(
new Bookmark(serverMark2)
)

await adapter.updateBookmark({ ...serverMark, id: serverMarkId, url: 'https://example.org/#test2', title: 'Example Domain', parentId: windowFolderId })
await adapter.updateBookmark({ ...serverMark, id: serverMarkId, url: 'https://example.org/#test2', title: 'Example Domain', parentId: tree.children[0].id })
})

await account.setData({...account.getData(), strategy: 'slave'})
Expand All @@ -5148,6 +5148,92 @@ describe('Floccus', function() {
false
)
})
it('should sync tabs correctly when merging server and local changes', async function() {
if (ACCOUNT_DATA.noCache) {
return this.skip()
}
const adapter = account.server
const serverTree = await getAllBookmarks(account)
let windowFolderId, serverMark, serverMarkId
await withSyncConnection(account, async() => {
windowFolderId = await adapter.createFolder(new Folder({
parentId: serverTree.id,
title: 'Window 0',
location: ItemLocation.SERVER
}))
serverMark = {
title: 'Example Domain',
url: 'https://example.org/#test1',
parentId: windowFolderId,
location: ItemLocation.SERVER
}

serverMarkId = await adapter.createBookmark(
new Bookmark(serverMark)
)
})

await account.sync()
expect(account.getData().error).to.not.be.ok

let tree = await getAllBookmarks(account)
expectTreeEqual(
tree,
new Folder({
title: tree.title,
children: [
new Folder({
title: 'Window 0',
children: [
new Bookmark({ title: 'Example Domain', url: 'https://example.org/#test1' }),
]
})
]
}),
false
)

let serverMark2
await withSyncConnection(account, async() => {
serverMark2 = {
title: 'Example Domain',
url: 'https://example.org/#test3',
parentId: tree.children[0].id,
location: ItemLocation.SERVER
}
await adapter.createBookmark(
new Bookmark(serverMark2)
)

await adapter.updateBookmark({ ...serverMark, id: serverMarkId, url: 'https://example.org/#test2', title: 'Example Domain', parentId: tree.children[0].id })
})

await browser.tabs.create({url: 'https://example.org/#test4'})
await awaitTabsUpdated()

await account.sync()
expect(account.getData().error).to.not.be.ok

tree = await getAllBookmarks(account)
expectTreeEqual(
tree,
new Folder({
title: tree.title,
children: [
new Folder({
title: 'Window 0',
children: [
new Bookmark({ title: 'Example Domain', url: 'https://example.org/#test3' }),
new Bookmark({ title: 'Example Domain', url: 'https://example.org/#test2' }),
new Bookmark({ title: 'Example Domain', url: 'https://example.org/#test4' }),
]
})
]
}),
false,
false, // We're merging which doesn't guarantee an order
)
})
})
})
})
Expand Down
Loading