Files
kiss-translator/src/libs/sync.js

79 lines
1.9 KiB
JavaScript
Raw Normal View History

2023-07-31 15:08:51 +08:00
import {
STOKEY_SYNC,
DEFAULT_SYNC,
KV_SETTING_KEY,
KV_RULES_KEY,
STOKEY_SETTING,
STOKEY_RULES,
} from "../config";
import storage from "../libs/storage";
import { getSetting, getRules } from ".";
import { apiSyncData } from "../apis";
const loadOpt = async () => (await storage.getObj(STOKEY_SYNC)) || DEFAULT_SYNC;
export const syncSetting = async () => {
2023-08-17 13:27:22 +08:00
try {
const { syncUrl, syncKey, settingUpdateAt } = await loadOpt();
if (!syncUrl || !syncKey) {
return;
}
2023-07-31 15:08:51 +08:00
2023-08-17 13:27:22 +08:00
const setting = await getSetting();
const res = await apiSyncData(syncUrl, syncKey, {
key: KV_SETTING_KEY,
value: setting,
updateAt: settingUpdateAt,
2023-07-31 15:08:51 +08:00
});
2023-08-17 13:27:22 +08:00
if (res && res.updateAt > settingUpdateAt) {
await storage.putObj(STOKEY_SYNC, {
settingUpdateAt: res.updateAt,
settingSyncAt: res.updateAt,
});
await storage.setObj(STOKEY_SETTING, res.value);
} else {
await storage.putObj(STOKEY_SYNC, {
settingSyncAt: res.updateAt,
});
}
} catch (err) {
console.log("[sync setting]", err);
2023-07-31 15:08:51 +08:00
}
};
export const syncRules = async () => {
2023-08-17 13:27:22 +08:00
try {
const { syncUrl, syncKey, rulesUpdateAt } = await loadOpt();
if (!syncUrl || !syncKey) {
return;
}
2023-07-31 15:08:51 +08:00
2023-08-17 13:27:22 +08:00
const rules = await getRules();
const res = await apiSyncData(syncUrl, syncKey, {
key: KV_RULES_KEY,
value: rules,
updateAt: rulesUpdateAt,
2023-07-31 15:08:51 +08:00
});
2023-08-17 13:27:22 +08:00
if (res && res.updateAt > rulesUpdateAt) {
await storage.putObj(STOKEY_SYNC, {
rulesUpdateAt: res.updateAt,
rulesSyncAt: res.updateAt,
});
await storage.setObj(STOKEY_RULES, res.value);
} else {
await storage.putObj(STOKEY_SYNC, {
rulesSyncAt: res.updateAt,
});
}
} catch (err) {
console.log("[sync rules]", err);
2023-07-31 15:08:51 +08:00
}
};
export const syncAll = async () => {
2023-08-17 13:27:22 +08:00
await syncSetting();
await syncRules();
2023-07-31 15:08:51 +08:00
};