Problem: the hexagonal refactor churns the backend tree for nine more phases; the UI delivery stack (web/ SPA, cmd/desktop Wails wrapper, compose/web image) must move to its own repo first so doc/layout rewrites land once on a backend-only tree. Change: - New repo git.hubris.network/dtoro/oikos-web (v0.33.0): web/, desktop/ (updateURL repointed to oikos-web releases), compose/, own CI (web + desktop jobs), own deploy script (CI-green gate, TOCTOU guard, version-tagged images, prune-to-3), own webhook receiver on :9798 + launchd unit, own compose project publishing the same 8091:80. - Cutover executed on mac-mini in order: oikos stack's web service stopped+removed, oikos-web project brought up on 8091; outer Caddy untouched (targets the published port) — serving + Authentik flow + /wails 404 quirk verified post-cutover. - Stripped from oikos: web/, cmd/desktop/, compose/web/, desktop CI workflow, ci.yml web job, Makefile ui/desktop/desktop-package/install targets, the compose web service, oikos-web from deploy.sh's fallback prune list; wails + go-keyring dropped from go.mod, vendor synced. - README / CONTRIBUTING / AGENTS.md / .agents dev+operations docs now point at the new repo; mbse + mascot design docs carry a path note. Risk: production SPA serving depends on the new pipeline now; rollback is versioned-image re-up of the old web service from a pre-split checkout (port 8091). Desktop builds installed before the split still check dtoro/oikos releases — one manual reinstall, noted in the oikos-web release notes. Verification: go vet, make test (race), make generate-check, golangci (no new findings; baseline down 400→365); post-cutover curls — localhost:8091 200, /wails/runtime.js 404, outer Caddy 302 Authentik.
137 lines
3.8 KiB
JavaScript
137 lines
3.8 KiB
JavaScript
(function() {
|
|
'use strict';
|
|
|
|
var collator;
|
|
try {
|
|
collator = (typeof Intl !== "undefined" && typeof Intl.Collator !== "undefined") ? Intl.Collator("generic", { sensitivity: "base" }) : null;
|
|
} catch (err){
|
|
console.log("Collator could not be initialized and wouldn't be used");
|
|
}
|
|
// arrays to re-use
|
|
var prevRow = [],
|
|
str2Char = [];
|
|
|
|
/**
|
|
* Based on the algorithm at http://en.wikipedia.org/wiki/Levenshtein_distance.
|
|
*/
|
|
var Levenshtein = {
|
|
/**
|
|
* Calculate levenshtein distance of the two strings.
|
|
*
|
|
* @param str1 String the first string.
|
|
* @param str2 String the second string.
|
|
* @param [options] Additional options.
|
|
* @param [options.useCollator] Use `Intl.Collator` for locale-sensitive string comparison.
|
|
* @return Integer the levenshtein distance (0 and above).
|
|
*/
|
|
get: function(str1, str2, options) {
|
|
var useCollator = (options && collator && options.useCollator);
|
|
|
|
var str1Len = str1.length,
|
|
str2Len = str2.length;
|
|
|
|
// base cases
|
|
if (str1Len === 0) return str2Len;
|
|
if (str2Len === 0) return str1Len;
|
|
|
|
// two rows
|
|
var curCol, nextCol, i, j, tmp;
|
|
|
|
// initialise previous row
|
|
for (i=0; i<str2Len; ++i) {
|
|
prevRow[i] = i;
|
|
str2Char[i] = str2.charCodeAt(i);
|
|
}
|
|
prevRow[str2Len] = str2Len;
|
|
|
|
var strCmp;
|
|
if (useCollator) {
|
|
// calculate current row distance from previous row using collator
|
|
for (i = 0; i < str1Len; ++i) {
|
|
nextCol = i + 1;
|
|
|
|
for (j = 0; j < str2Len; ++j) {
|
|
curCol = nextCol;
|
|
|
|
// substution
|
|
strCmp = 0 === collator.compare(str1.charAt(i), String.fromCharCode(str2Char[j]));
|
|
|
|
nextCol = prevRow[j] + (strCmp ? 0 : 1);
|
|
|
|
// insertion
|
|
tmp = curCol + 1;
|
|
if (nextCol > tmp) {
|
|
nextCol = tmp;
|
|
}
|
|
// deletion
|
|
tmp = prevRow[j + 1] + 1;
|
|
if (nextCol > tmp) {
|
|
nextCol = tmp;
|
|
}
|
|
|
|
// copy current col value into previous (in preparation for next iteration)
|
|
prevRow[j] = curCol;
|
|
}
|
|
|
|
// copy last col value into previous (in preparation for next iteration)
|
|
prevRow[j] = nextCol;
|
|
}
|
|
}
|
|
else {
|
|
// calculate current row distance from previous row without collator
|
|
for (i = 0; i < str1Len; ++i) {
|
|
nextCol = i + 1;
|
|
|
|
for (j = 0; j < str2Len; ++j) {
|
|
curCol = nextCol;
|
|
|
|
// substution
|
|
strCmp = str1.charCodeAt(i) === str2Char[j];
|
|
|
|
nextCol = prevRow[j] + (strCmp ? 0 : 1);
|
|
|
|
// insertion
|
|
tmp = curCol + 1;
|
|
if (nextCol > tmp) {
|
|
nextCol = tmp;
|
|
}
|
|
// deletion
|
|
tmp = prevRow[j + 1] + 1;
|
|
if (nextCol > tmp) {
|
|
nextCol = tmp;
|
|
}
|
|
|
|
// copy current col value into previous (in preparation for next iteration)
|
|
prevRow[j] = curCol;
|
|
}
|
|
|
|
// copy last col value into previous (in preparation for next iteration)
|
|
prevRow[j] = nextCol;
|
|
}
|
|
}
|
|
return nextCol;
|
|
}
|
|
|
|
};
|
|
|
|
// amd
|
|
if (typeof define !== "undefined" && define !== null && define.amd) {
|
|
define(function() {
|
|
return Levenshtein;
|
|
});
|
|
}
|
|
// commonjs
|
|
else if (typeof module !== "undefined" && module !== null && typeof exports !== "undefined" && module.exports === exports) {
|
|
module.exports = Levenshtein;
|
|
}
|
|
// web worker
|
|
else if (typeof self !== "undefined" && typeof self.postMessage === 'function' && typeof self.importScripts === 'function') {
|
|
self.Levenshtein = Levenshtein;
|
|
}
|
|
// browser main thread
|
|
else if (typeof window !== "undefined" && window !== null) {
|
|
window.Levenshtein = Levenshtein;
|
|
}
|
|
}());
|
|
|