ConfigManager

ConfigManager: Manage(Get, set and update) your config with config path simply with a ruleset!

此脚本不应直接安装,它是一个供其他脚本使用的外部库。如果您需要使用该库,请在脚本元属性加入:// @require https://update.gf.qytechs.cn/scripts/449583/1334125/ConfigManager.js

  1. /* eslint-disable no-multi-spaces */
  2.  
  3. // ==UserScript==
  4. // @name ConfigManager
  5. // @namespace ConfigManager
  6. // @version 0.8.2
  7. // @description ConfigManager: Manage(Get, set and update) your config with config path simply with a ruleset!
  8. // @author PY-DNG
  9. // @license GPL-v3
  10. // @grant GM_setValue
  11. // @grant GM_getValue
  12. // @grant GM_listValues
  13. // @grant GM_deleteValue
  14. // ==/UserScript==
  15.  
  16. function ConfigManager(Ruleset, storage={}) {
  17. const CM = this;
  18. const _GM_setValue = storage?.GM_setValue || GM_setValue || Err('ConfigManager: could not find GM_setValue');
  19. const _GM_getValue = storage?.GM_getValue || GM_getValue || Err('ConfigManager: could not find GM_getValue');
  20. const _GM_listValues = storage?.GM_listValues || GM_listValues || Err('ConfigManager: could not find GM_listValues');
  21. const _GM_deleteValue = storage?.GM_deleteValue || GM_deleteValue || Err('ConfigManager: could not find GM_deleteValue');
  22. const ConfigBase = new Proxy({}, {
  23. get: function(target, property, reciever) {
  24. return _GM_getValue(property);
  25. },
  26. set: function(target, property, value, reciever) {
  27. return (_GM_setValue(property, value), true);
  28. },
  29. has: function(target, property) {
  30. return _GM_listValues().includes(property);
  31. }
  32. });
  33.  
  34. CM.getConfig = getConfig;
  35. CM.setConfig = setConfig;
  36. CM.updateConfig = updateConfig;
  37. CM.updateAllConfigs = updateAllConfigs;
  38. CM.updateGlobal = updateGlobal;
  39. CM.getConfigVersion = getConfigVersion;
  40. CM.setDefaults = setDefaults;
  41. CM.readPath = readPath;
  42. CM.pathExists = pathExists;
  43. CM.mergePath = mergePath;
  44. CM.getBaseName = getBaseName;
  45. CM.makeSubStorage = makeSubStorage;
  46. CM.Config = new Proxy({}, {
  47. get: function(target, property, reciever) {
  48. return makeProxy(getConfig(property), [property]);
  49.  
  50. function makeProxy(config, path, base) {
  51. return isObject(config) ? new Proxy(config, {
  52. get: function(target, property, reciever) {
  53. const newPath = [...path, property];
  54. return makeProxy(inProto(target, property) ? target[property] : getConfig(newPath), [...path, property]);
  55. },
  56. set: function(target, property, value, reciever) {
  57. return (setConfig([...path, property], value), true);
  58. },
  59. deleteProperty: function(target, property) {
  60. const parent = getConfig(path);
  61. delete parent[property];
  62. setConfig(path, parent);
  63. return true;
  64. }
  65. }) : config;
  66.  
  67. function inProto(obj, prop) {
  68. return prop in obj && !obj.hasOwnProperty(prop);
  69. }
  70. }
  71. },
  72. set: function(target, property, value, reciever) {
  73. return (_GM_setValue(property, value), true);
  74. },
  75. has: function(target, property) {
  76. return _GM_listValues().includes(property);
  77. },
  78. deleteProperty: function(target, property) {
  79. return (_GM_deleteValue(property), true);
  80. }
  81. });
  82. Object.freeze(CM);
  83.  
  84. // Get config value from path (e.g. 'Users/username/' or ['Users', 12345])
  85. function getConfig(path) {
  86. // Split path
  87. path = arrPath(path);
  88.  
  89. // Init config if need
  90. if (!(path[0] in ConfigBase)) {
  91. ConfigBase[path[0]] = Ruleset.defaultValues[path[0]];
  92. }
  93.  
  94. // Get config by path
  95. const target = path.pop();
  96. const config = readPath(ConfigBase, path);
  97. return config[target];
  98. }
  99.  
  100. // Set config value to path
  101. function setConfig(path, value) {
  102. path = arrPath(path);
  103. const target = path.pop();
  104.  
  105. // Init config if need
  106. if (path.length && !(path[0] in ConfigBase)) {
  107. ConfigBase[path[0]] = Ruleset.defaultValues[path[0]];
  108. }
  109.  
  110. if (path.length > 0) {
  111. const basekey = path.shift();
  112. const baseobj = ConfigBase[basekey];
  113. let config = readPath(baseobj, path);
  114. if (isObject(config)) {
  115. config[target] = value;
  116. ConfigBase[basekey] = baseobj;
  117. } else {
  118. Err('Attempt to set a property to a non-object value');
  119. }
  120. } else {
  121. const verKey = Ruleset['version-key'];
  122. const oldConfig = ConfigBase[target];
  123. if (isObject(value)) {
  124. hasProp(value, verKey) && (hasProp(oldConfig, verKey) ? value[verKey] !== oldConfig[verKey] : true) &&
  125. Err('Shouldn\'t manually set config version to a version number differs from current version number');
  126. value[verKey] = ConfigBase[target][verKey];
  127. }
  128. ConfigBase[target] = value;
  129. }
  130. }
  131.  
  132. function updateConfig(basename) {
  133. let updated = false;
  134.  
  135. // Get updaters and config
  136. const updaters = Ruleset.updaters.hasOwnProperty(basename) ? Ruleset.updaters[basename] : [];
  137. const verKey = Ruleset['version-key'];
  138. let config = getConfig(basename);
  139.  
  140. // Valid check
  141. if ([verKey, ...(Ruleset.ignores || [])].includes(basename)) {
  142. return false;
  143. }
  144. if (!updaters.length) {
  145. return save();
  146. }
  147.  
  148. // Update
  149. for (let i = (config[verKey] || 0); i < updaters.length; i++) {
  150. const updater = updaters[i];
  151. config = updater.call(CM, config);
  152. updated = true;
  153. }
  154.  
  155. // Set version and save
  156. return save();
  157.  
  158. function save() {
  159. isObject(config) && (config[verKey] = updaters.length);
  160. ConfigBase[basename] = config;
  161. return updated;
  162. }
  163. }
  164.  
  165. function updateAllConfigs() {
  166. const keys = _GM_listValues();
  167. keys.forEach((key) => (updateConfig(key)));
  168. }
  169.  
  170. function updateGlobal() {
  171. let updated = false;
  172.  
  173. const updaters = Ruleset.globalUpdaters || [];
  174. const verKey = Ruleset['version-key'];
  175. if (!updaters.length) {
  176. return save();
  177. }
  178. const config = _GM_listValues().reduce((obj, key) => Object.assign(obj, { [key]: _GM_getValue(key) }), {});
  179.  
  180. // Update
  181. for (let i = (config[verKey] || 0); i < updaters.length; i++) {
  182. const updater = updaters[i];
  183. config = updater.call(CM, config);
  184. updated = true;
  185. }
  186.  
  187. // Set version and save
  188. return save();
  189.  
  190. function save() {
  191. config[verKey] = updaters.length;
  192. Object.keys(config).forEach(key => _GM_setValue(key, config[key]));
  193. return updated;
  194. }
  195. }
  196.  
  197. function getConfigVersion(basename=null) {
  198. const verKey = Ruleset['version-key'];
  199. return (basename ? ConfigBase[basename] : ConfigBase)[verKey] || 0;
  200. }
  201.  
  202. function setDefaults() {
  203. for (const [key, val] of Object.entries(Ruleset.defaultValues)) {
  204. !(key in ConfigBase) && (ConfigBase[key] = val);
  205. }
  206. }
  207.  
  208. function makeSubStorage(path) {
  209. path = arrPath(path);
  210. return {
  211. GM_setValue: function(key, value) {
  212. setConfig([...path, key], value);
  213. },
  214. GM_getValue: function(key, defaultValue) {
  215. const val = getConfig([...path, key]);
  216. return typeof val === 'undefined' ? defaultValue : val;
  217. },
  218. GM_listValues: function() {
  219. return Object.keys(getConfig(path));
  220. },
  221. GM_deleteValue: function(key) {
  222. const parent = getConfig(path);
  223. delete parent[key];
  224. setConfig(path, parent);
  225. }
  226. }
  227. }
  228.  
  229. function readPath(obj, path) {
  230. path = arrPath(path);
  231. while (path.length > 0) {
  232. const key = path.shift();
  233. if (isObject(obj) && hasProp(obj, key)) {
  234. obj = obj[key];
  235. } else {
  236. Err('Attempt to read a property that is not exist (reading "' + key + '" in path "' + path + '")');
  237. }
  238. }
  239. return obj;
  240. }
  241.  
  242. function pathExists(obj, path) {
  243. path = arrPath(path);
  244. while (path.length > 0) {
  245. const key = path.shift();
  246. if (isObject(obj) && hasProp(obj, key)) {
  247. obj = obj[key];
  248. } else {
  249. return false;
  250. }
  251. }
  252. return true;
  253. }
  254.  
  255. function mergePath() {
  256. return Array.from(arguments).join('/');
  257. }
  258.  
  259. function getBaseName(path) {
  260. return arrPath(path)[0];
  261. }
  262.  
  263. function getPathWithoutBase(path) {
  264. const p = arrPath(path);
  265. p.shift();
  266. return p;
  267. }
  268.  
  269. function arrPath(strpath) {
  270. return Array.isArray(strpath) ? [...strpath] : strpath.replace(/^\//, '').replace(/\/$/, '').split('/');
  271. }
  272.  
  273. function isObject(obj) {
  274. return typeof obj === 'object' && obj !== null;
  275. }
  276.  
  277. function hasProp(obj, prop) {
  278. return obj === ConfigBase ? prop in obj : obj.hasOwnProperty(prop);
  279. }
  280.  
  281. // type: [Error, TypeError]
  282. function Err(msg, type=0) {
  283. throw new [Error, TypeError][type](msg);
  284. }
  285. }

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址