mapcomplete/Logic/Osm/OsmPreferences.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

271 lines
9.2 KiB
TypeScript
Raw Normal View History

import { UIEventSource } from "../UIEventSource"
2021-01-04 04:36:21 +01:00
import UserDetails, { OsmConnection } from "./OsmConnection"
import { Utils } from "../../Utils"
export class OsmPreferences {
public preferences = new UIEventSource<Record<string, string>>({}, "all-osm-preferences")
2022-02-04 14:36:26 +01:00
private readonly preferenceSources = new Map<string, UIEventSource<string>>()
private auth: any
private userDetails: UIEventSource<UserDetails>
private longPreferences = {}
constructor(auth, osmConnection: OsmConnection) {
this.auth = auth
this.userDetails = osmConnection.userDetails
const self = this
osmConnection.OnLoggedIn(() => self.UpdatePreferences())
}
/**
* OSM preferences can be at most 255 chars
* @param key
* @param prefix
* @constructor
*/
public GetLongPreference(key: string, prefix: string = "mapcomplete-"): UIEventSource<string> {
if (this.longPreferences[prefix + key] !== undefined) {
return this.longPreferences[prefix + key]
}
const source = new UIEventSource<string>(undefined, "long-osm-preference:" + prefix + key)
this.longPreferences[prefix + key] = source
2022-02-04 14:36:26 +01:00
const allStartWith = prefix + key + "-combined"
// Gives the number of combined preferences
const length = this.GetPreference(allStartWith + "-length", "", "")
2022-02-04 14:36:26 +01:00
if ((allStartWith + "-length").length > 255) {
throw (
"This preference key is too long, it has " +
key.length +
" characters, but at most " +
(255 - "-length".length - "-combined".length - prefix.length) +
" characters are allowed"
2022-09-08 21:40:48 +02:00
)
2022-02-04 14:36:26 +01:00
}
const self = this
source.addCallback((str) => {
if (str === undefined || str === "") {
return
}
if (str === null) {
console.error("Deleting " + allStartWith)
let count = parseInt(length.data)
for (let i = 0; i < count; i++) {
// Delete all the preferences
self.GetPreference(allStartWith + "-" + i, "", "").setData("")
}
self.GetPreference(allStartWith + "-length", "", "").setData("")
return
}
let i = 0
while (str !== "") {
if (str === undefined || str === "undefined") {
throw "Long pref became undefined?"
}
if (i > 100) {
throw "This long preference is getting very long... "
}
self.GetPreference(allStartWith + "-" + i, "", "").setData(str.substr(0, 255))
str = str.substr(255)
i++
}
length.setData("" + i) // We use I, the number of preference fields used
})
function updateData(l: number) {
2022-04-13 02:42:33 +02:00
if (Object.keys(self.preferences.data).length === 0) {
// The preferences are still empty - they are not yet updated, so we delay updating for now
return
}
2020-09-15 02:29:31 +02:00
const prefsCount = Number(l)
if (prefsCount > 100) {
throw "Length to long"
}
let str = ""
for (let i = 0; i < prefsCount; i++) {
2022-04-13 02:42:33 +02:00
const key = allStartWith + "-" + i
if (self.preferences.data[key] === undefined) {
console.warn(
"Detected a broken combined preference:",
key,
"is undefined",
self.preferences
)
}
str += self.preferences.data[key] ?? ""
}
source.setData(str)
}
length.addCallback((l) => {
updateData(Number(l))
})
2022-04-13 02:42:33 +02:00
this.preferences.addCallbackAndRun((_) => {
updateData(Number(length.data))
})
return source
}
public GetPreference(
key: string,
defaultValue: string = undefined,
prefix: string = "mapcomplete-"
): UIEventSource<string> {
if (key.startsWith(prefix) && prefix !== "") {
console.trace(
"A preference was requested which has a duplicate prefix in its key. This is probably a bug"
)
}
key = prefix + key
key = key.replace(/[:\\\/"' {}.%]/g, "")
if (key.length >= 255) {
throw "Preferences: key length to big"
}
2022-02-04 14:36:26 +01:00
const cached = this.preferenceSources.get(key)
if (cached !== undefined) {
return cached
}
if (this.userDetails.data.loggedIn && this.preferences.data[key] === undefined) {
this.UpdatePreferences()
}
2022-09-08 21:40:48 +02:00
const pref = new UIEventSource<string>(
this.preferences.data[key] ?? defaultValue,
"osm-preference:" + key
2022-09-08 21:40:48 +02:00
)
pref.addCallback((v) => {
2022-02-04 14:36:26 +01:00
this.UploadPreference(key, v)
})
this.preferences.addCallbackD((allPrefs) => {
const v = allPrefs[key]
if (v === undefined) {
return
}
pref.setData(v)
})
2022-02-04 14:36:26 +01:00
this.preferenceSources.set(key, pref)
return pref
}
2022-01-26 21:40:38 +01:00
public ClearPreferences() {
let isRunning = false
const self = this
2022-04-13 02:42:33 +02:00
this.preferences.addCallback((prefs) => {
console.log("Cleaning preferences...")
2022-01-26 21:40:38 +01:00
if (Object.keys(prefs).length == 0) {
return
}
if (isRunning) {
return
}
isRunning = true
2022-04-13 02:42:33 +02:00
const prefixes = ["mapcomplete-"]
2022-01-26 21:40:38 +01:00
for (const key in prefs) {
2022-04-13 02:42:33 +02:00
const matches = prefixes.some((prefix) => key.startsWith(prefix))
if (matches) {
console.log("Clearing ", key)
self.GetPreference(key, "", "").setData("")
2022-01-26 21:40:38 +01:00
}
}
isRunning = false
2022-04-13 02:42:33 +02:00
return
2022-01-26 21:40:38 +01:00
})
}
private UpdatePreferences() {
const self = this
this.auth.xhr(
{
method: "GET",
path: "/api/0.6/user/preferences",
},
2022-02-04 14:36:26 +01:00
function (error, value: XMLDocument) {
if (error) {
console.log("Could not load preferences", error)
return
}
const prefs = value.getElementsByTagName("preference")
for (let i = 0; i < prefs.length; i++) {
const pref = prefs[i]
const k = pref.getAttribute("k")
const v = pref.getAttribute("v")
self.preferences.data[k] = v
2022-09-08 21:40:48 +02:00
}
2022-02-04 14:36:26 +01:00
// We merge all the preferences: new keys are uploaded
// For differing values, the server overrides local changes
self.preferenceSources.forEach((preference, key) => {
const osmValue = self.preferences.data[key]
if (osmValue === undefined && preference.data !== undefined) {
2022-02-04 14:36:26 +01:00
// OSM doesn't know this value yet
self.UploadPreference(key, preference.data)
2022-09-08 21:40:48 +02:00
} else {
2022-02-04 14:36:26 +01:00
// OSM does have a value - set it
preference.setData(osmValue)
2022-09-08 21:40:48 +02:00
}
2022-02-04 14:36:26 +01:00
})
2022-09-08 21:40:48 +02:00
self.preferences.ping()
}
2022-09-08 21:40:48 +02:00
)
}
2022-02-04 14:36:26 +01:00
private UploadPreference(k: string, v: string) {
if (!this.userDetails.data.loggedIn) {
console.debug(`Not saving preference ${k}: user not logged in`)
return
}
if (this.preferences.data[k] === v) {
return
}
const self = this
console.debug("Updating preference", k, " to ", Utils.EllipsesAfter(v, 15))
if (v === undefined || v === "") {
this.auth.xhr(
{
method: "DELETE",
path: "/api/0.6/user/preferences/" + encodeURIComponent(k),
options: { header: { "Content-Type": "text/plain" } },
},
function (error) {
if (error) {
console.warn("Could not remove preference", error)
return
2022-09-08 21:40:48 +02:00
}
delete self.preferences.data[k]
self.preferences.ping()
console.debug("Preference ", k, "removed!")
}
2022-09-08 21:40:48 +02:00
)
return
}
this.auth.xhr(
{
method: "PUT",
path: "/api/0.6/user/preferences/" + encodeURIComponent(k),
options: { header: { "Content-Type": "text/plain" } },
content: v,
},
function (error) {
if (error) {
console.warn(`Could not set preference "${k}"'`, error)
return
2022-09-08 21:40:48 +02:00
}
self.preferences.data[k] = v
self.preferences.ping()
console.debug(`Preference ${k} written!`)
}
2022-09-08 21:40:48 +02:00
)
}
}