- Admin dashboard (/admin/consent-logs) with password auth - Consent API (/api/consent) with SQLite + IP hashing - Privacy Policy (Thai) - PDPA Section 36 compliant - Terms & Conditions (Thai) - 9 standard clauses - .env.example template with Umami placeholder All pages preserve current design system.
91 lines
3.3 KiB
JavaScript
91 lines
3.3 KiB
JavaScript
"use strict";
|
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
if (k2 === undefined) k2 = k;
|
|
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
}
|
|
Object.defineProperty(o, k2, desc);
|
|
}) : (function(o, m, k, k2) {
|
|
if (k2 === undefined) k2 = k;
|
|
o[k2] = m[k];
|
|
}));
|
|
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
}) : function(o, v) {
|
|
o["default"] = v;
|
|
});
|
|
var __importStar = (this && this.__importStar) || function (mod) {
|
|
if (mod && mod.__esModule) return mod;
|
|
var result = {};
|
|
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
__setModuleDefault(result, mod);
|
|
return result;
|
|
};
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.CursorRespBody = exports.PipelineRespBody = void 0;
|
|
const errors_js_1 = require("../errors.js");
|
|
const d = __importStar(require("../encoding/json/decode.js"));
|
|
const json_decode_js_1 = require("../shared/json_decode.js");
|
|
function PipelineRespBody(obj) {
|
|
const baton = d.stringOpt(obj["baton"]);
|
|
const baseUrl = d.stringOpt(obj["base_url"]);
|
|
const results = d.arrayObjectsMap(obj["results"], StreamResult);
|
|
return { baton, baseUrl, results };
|
|
}
|
|
exports.PipelineRespBody = PipelineRespBody;
|
|
function StreamResult(obj) {
|
|
const type = d.string(obj["type"]);
|
|
if (type === "ok") {
|
|
const response = StreamResponse(d.object(obj["response"]));
|
|
return { type: "ok", response };
|
|
}
|
|
else if (type === "error") {
|
|
const error = (0, json_decode_js_1.Error)(d.object(obj["error"]));
|
|
return { type: "error", error };
|
|
}
|
|
else {
|
|
throw new errors_js_1.ProtoError("Unexpected type of StreamResult");
|
|
}
|
|
}
|
|
function StreamResponse(obj) {
|
|
const type = d.string(obj["type"]);
|
|
if (type === "close") {
|
|
return { type: "close" };
|
|
}
|
|
else if (type === "execute") {
|
|
const result = (0, json_decode_js_1.StmtResult)(d.object(obj["result"]));
|
|
return { type: "execute", result };
|
|
}
|
|
else if (type === "batch") {
|
|
const result = (0, json_decode_js_1.BatchResult)(d.object(obj["result"]));
|
|
return { type: "batch", result };
|
|
}
|
|
else if (type === "sequence") {
|
|
return { type: "sequence" };
|
|
}
|
|
else if (type === "describe") {
|
|
const result = (0, json_decode_js_1.DescribeResult)(d.object(obj["result"]));
|
|
return { type: "describe", result };
|
|
}
|
|
else if (type === "store_sql") {
|
|
return { type: "store_sql" };
|
|
}
|
|
else if (type === "close_sql") {
|
|
return { type: "close_sql" };
|
|
}
|
|
else if (type === "get_autocommit") {
|
|
const isAutocommit = d.boolean(obj["is_autocommit"]);
|
|
return { type: "get_autocommit", isAutocommit };
|
|
}
|
|
else {
|
|
throw new errors_js_1.ProtoError("Unexpected type of StreamResponse");
|
|
}
|
|
}
|
|
function CursorRespBody(obj) {
|
|
const baton = d.stringOpt(obj["baton"]);
|
|
const baseUrl = d.stringOpt(obj["base_url"]);
|
|
return { baton, baseUrl };
|
|
}
|
|
exports.CursorRespBody = CursorRespBody;
|