blob: d7ed13b2111c14cbb9c9a22b2cdcf9d02e980f14 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
/*
* gallery.js -- Simple web-based gallery viewer.
* Copyright © 2022 Jakob L. Kreuze <zerodaysfordays@sdf.org>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see
* <http://www.gnu.org/licenses/>.
*/
// Immediately send off an XHR to load info from the backend.
const urlParams = new URLSearchParams(window.location.search);
if (!urlParams.get("g")) {
document.getElementById("loading").remove();
let elem = document.createElement("p");
elem.innerHTML = "No gallery code provided.";
document.getElementById("gallery-container").appendChild(elem);
} else {
let xhr = new XMLHttpRequest();
xhr.open("GET", `${location.protocol}//${location.host}/api/gallery?g=${urlParams.get("g")}`);
xhr.send();
xhr.onload = function(data) {
document.getElementById("loading").remove();
if (xhr.status != 200) {
let elem = document.createElement("p");
elem.innerHTML = "Invalid gallery code.";
document.getElementById("gallery-container").appendChild(elem);
} else {
let response = JSON.parse(xhr.response);
let elem = document.createElement("h1");
elem.innerHTML = response.info.title;
document.getElementById("gallery-container").appendChild(elem);
elem = document.createElement("h3");
elem.innerHTML = response.info.description;
document.getElementById("gallery-container").appendChild(elem);
let imagesContainer = document.createElement("div");
document.getElementById("gallery-container").appendChild(imagesContainer);
for (let image of response.images) {
elem = document.createElement("a");
elem.href = `${location.protocol}//${location.host}/static-ext/${image.filename}`;
let thumb = document.createElement("img");
thumb.src = `${location.protocol}//${location.host}/static-ext/${image.thumbnail}`;
thumb.alt = `${image.title}`;
thumb.title = `${image.title} - ${image.datetime}`;
elem.appendChild(thumb);
imagesContainer.appendChild(elem);
}
}
}
xhr.onerror = function(error) {
throw new Error(`Request failed: ${error}`);
}
}
|