mirror of
https://gitdab.com/cadence/breezewiki.git
synced 2026-03-05 13:40:27 -05:00
JSONP mode is on by default. It will fetch main wiki pages in the browser, without the server needing to make any requests. To turn it off, add [feature_json] enabled = false to config.ini. Captcha is off by default. It is a custom solution and is still experimental at this stage. If you turn it on, please monitor the logs to see how it goes! config.ini options are as follows: [captcha] enabled = true|false log = true|false ip_header = <header name set by your reverse proxy, like x-forwarded-for>
58 lines
1.2 KiB
JavaScript
58 lines
1.2 KiB
JavaScript
const loading = document.getElementById("loading")
|
|
loading.textContent = "Loading, please wait..."
|
|
const progress = document.getElementById("progress")
|
|
|
|
let wikiPage = null
|
|
function wikiPageCallback(data) {
|
|
wikiPage = data
|
|
cont()
|
|
}
|
|
|
|
let siteinfo = null
|
|
function siteinfoCallback(data) {
|
|
siteinfo = data
|
|
cont()
|
|
}
|
|
|
|
async function cont() {
|
|
if (!(wikiPage && siteinfo)) return
|
|
|
|
const xhr = new XMLHttpRequest();
|
|
|
|
const uploadFraction = 0.7
|
|
|
|
// Upload progress
|
|
xhr.upload.addEventListener("progress", event => {
|
|
if (event.lengthComputable) {
|
|
progress.value = (event.loaded / event.total) * uploadFraction
|
|
console.log(
|
|
`Uploaded ${((event.loaded / event.total) * 100).toFixed(2)}%`,
|
|
)
|
|
}
|
|
})
|
|
|
|
// Download progress
|
|
xhr.addEventListener("progress", event => {
|
|
if (event.lengthComputable) {
|
|
progress.value = (event.loaded / event.total) * (1 - uploadFraction) + uploadFraction
|
|
console.log(
|
|
`Downloaded ${((event.loaded / event.total) * 100).toFixed(2)}%`,
|
|
)
|
|
}
|
|
})
|
|
|
|
xhr.addEventListener("load", () => {
|
|
console.log(xhr)
|
|
document.body = xhr.responseXML.body
|
|
})
|
|
|
|
xhr.open("POST", "/api/render/wiki")
|
|
xhr.responseType = "document"
|
|
xhr.send(JSON.stringify({
|
|
data: wikiPage,
|
|
siteinfo,
|
|
wikiname,
|
|
path
|
|
}));
|
|
}
|