Changes for page Linkding + SingleFile Archief
Last modified by XWikiGuest on 2026/03/11 21:04
Summary
-
Page properties (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -78,7 +78,6 @@ 78 78 </style> 79 79 80 80 <div id="ldsf-wrapper"> 81 - <button id="ldsf-test-btn" style="background:#df691a;color:#fff;padding:8px 16px;border:none;border-radius:4px;cursor:pointer;margin-bottom:10px;">TEST KLIK</button> 82 82 <div id="ldsf-status">Laden...</div> 83 83 <div id="ldsf-bookmarks"></div> 84 84 <div id="ldsf-viewer-container"> ... ... @@ -91,93 +91,114 @@ 91 91 </div> 92 92 93 93 <script> 94 -var LDSF_LINKDING_URL = 'https://bookmarks.rhebergen.org/api/bookmarks/'; 95 -var LDSF_TOKEN = '3b7443e0f84e2b2b269adebb96d7475e4a5e653e'; 96 -var LDSF_TAG = 'Nuclear-&-Energy'; 97 -var LDSF_COUNT = 20; 98 -var LDSF_SHARE = 'eT2X9ttBHK5GoEY'; 99 -var LDSF_WEBDAV = 'https://cloud.rhebergen.org/public.php/webdav/'; 100 -var LDSF_AUTH = 'Basic ' + btoa(LDSF_SHARE + ':'); 101 -var ldsf_urlToFile = {}; 102 -var ldsf_archiveMap = {}; 93 +(function() { 94 + var LINKDING_URL = 'https://bookmarks.rhebergen.org/api/bookmarks/'; 95 + var LINKDING_TOKEN = '3b7443e0f84e2b2b269adebb96d7475e4a5e653e'; 96 + var LINKDING_TAG = 'Nuclear-&-Energy'; 97 + var LINKDING_COUNT = 20; 103 103 104 -function ldsfFindArchive(url) { 105 - var v = [url, url.replace(/\/$/, ''), url + '/', url.replace(/\?.*$/, '')]; 106 - for (var i = 0; i < v.length; i++) { if (ldsf_urlToFile[v[i]]) return ldsf_urlToFile[v[i]]; } 107 - return null; 108 -} 99 + var WEBDAV_BASE = 'https://cloud.rhebergen.org/remote.php/dav/files/jan_rhebergen/SingleFile-Archives/'; 100 + var INDEX_URL = WEBDAV_BASE + 'index.json'; 101 + var NC_AUTH = 'Basic amFuX3JoZWJlcmdlbjpAWnMzUUwkJmZ4TVE='; 109 109 110 -function ldsfOpen(idx) { 111 - var f = ldsf_archiveMap[idx]; 112 - if (f) ldsfShowArchive(f); 113 -} 103 + var urlToFile = {}; // reverse map: URL -> filename 104 + var archiveMap = {}; // button index -> filename 114 114 115 -function ldsfShowArchive(filename) { 116 - document.getElementById('ldsf-viewer-title').textContent = filename.replace(/\.html?$/i, ''); 117 - document.getElementById('ldsf-viewer-container').style.display = 'block'; 118 - var frame = document.getElementById('ldsf-viewer-frame'); 119 - frame.srcdoc = '<p style="padding:20px;color:#666">Laden...</p>'; 120 - fetch(LDSF_WEBDAV + encodeURIComponent(filename), { headers: { 'Authorization': LDSF_AUTH } }) 121 - .then(function(r) { return r.text(); }) 122 - .then(function(html) { frame.srcdoc = html; }) 123 - .catch(function(err) { frame.srcdoc = '<p style="padding:20px;color:red">Fout: ' + err.message + '</p>'; }); 124 -} 106 + function findArchive(url) { 107 + // Try exact match, with/without trailing slash, and without query string 108 + var variants = [url, url.replace(/\/$/, ''), url + '/', url.replace(/\?.*$/, '')]; 109 + for (var i = 0; i < variants.length; i++) { 110 + if (urlToFile[variants[i]]) return urlToFile[variants[i]]; 111 + } 112 + return null; 113 + } 125 125 126 -function ldsfCloseViewer() { 127 - document.getElementById('ldsf-viewer-container').style.display = 'none'; 128 -} 115 + // Load SingleFile index, then load bookmarks 116 + fetch(INDEX_URL, { headers: { 'Authorization': NC_AUTH } }) 117 + .then(function(r) { return r.ok ? r.json() : {}; }) 118 + .then(function(index) { 119 + // Build reverse map: URL -> filename 120 + Object.keys(index).forEach(function(fname) { 121 + urlToFile[index[fname]] = fname; 122 + }); 123 + loadBookmarks(); 124 + }) 125 + .catch(function() { 126 + loadBookmarks(); // Continue without index 127 + }); 129 129 130 -function l dsfLoadBookmarks() {131 - var apiUrl = L DSF_LINKDING_URL + '?limit=' + LDSF_COUNT + '&q=%23' + encodeURIComponent(LDSF_TAG);132 - fetch(apiUrl, { headers: { 'Authorization': 'Token ' + LD SF_TOKEN } })133 - .then(function(r) { return r.json(); }) 134 - .then(function(data) { 135 - var total = data.count || 0; 136 - var archiveCount = 0; 137 - var container = document.getElementById('ldsf-bookmarks'); 138 - var html = '<ul>'; 129 + function loadBookmarks() { 130 + var apiUrl = LINKDING_URL + '?limit=' + LINKDING_COUNT + '&q=%23' + encodeURIComponent(LINKDING_TAG); 131 + fetch(apiUrl, { headers: { 'Authorization': 'Token ' + LINKDING_TOKEN } }) 132 + .then(function(r) { return r.json(); }) 133 + .then(function(data) { 134 + var total = data.count || 0; 135 + var archiveCount = 0; 136 + var container = document.getElementById('ldsf-bookmarks'); 137 + var html = '<ul>'; 139 139 140 - (data.results || []).forEach(function(bm, idx) { 141 - var title = bm.title || bm.website_title || bm.url; 142 - var fname = ldsfFindArchive(bm.url); 143 - if (idx < 3) console.log('BM[' + idx + ']:', bm.url, '-> match:', fname); 144 - if (fname) { archiveCount++; ldsf_archiveMap[String(idx)] = fname; } 145 - html += '<li>'; 146 - if (fname) html += '<span class="sf-btn" data-sfidx="' + idx + '" title="Archief bekijken">📄</span>'; 147 - html += '<a href="' + bm.url + '" target="_blank">' + title + '</a></li>'; 148 - }); 139 + (data.results || []).forEach(function(bm, idx) { 140 + var title = bm.title || bm.website_title || bm.url; 141 + var fname = findArchive(bm.url); 142 + if (fname) archiveCount++; 149 149 150 - html += '</ul>'; 151 - container.innerHTML = html; 152 - document.getElementById('ldsf-status').textContent = total + ' bookmarks, ' + archiveCount + ' met archief'; 153 - }) 154 - .catch(function(err) { document.getElementById('ldsf-status').textContent = 'Fout: ' + err.message; }); 155 -} 144 + html += '<li>'; 145 + if (fname) { 146 + html += '<button class="sf-btn" data-idx="' + idx + '" title="Archief bekijken">📄</button>'; 147 + archiveMap[idx] = fname; 148 + } 149 + html += '<a href="' + bm.url + '" target="_blank">' + title + '</a>'; 150 + html += '</li>'; 151 + }); 156 156 157 -// Global click handler for archive buttons 158 -document.addEventListener('click', function(e) { 159 - var el = e.target; 160 - if (el && el.getAttribute && el.getAttribute('data-sfidx') !== null) { 161 - var idx = el.getAttribute('data-sfidx'); 162 - console.log('Archive button clicked, idx:', idx, 'file:', ldsf_archiveMap[idx]); 163 - if (ldsf_archiveMap[idx]) ldsfShowArchive(ldsf_archiveMap[idx]); 153 + html += '</ul>'; 154 + container.innerHTML = html; 155 + document.getElementById('ldsf-status').textContent = total + ' bookmarks, ' + archiveCount + ' met archief'; 156 + 157 + // Event delegation for archive buttons 158 + container.addEventListener('click', function(e) { 159 + var btn = e.target.closest('.sf-btn'); 160 + if (!btn) return; 161 + var idx = btn.getAttribute('data-idx'); 162 + if (idx !== null && archiveMap[idx]) { 163 + ldsfShowArchive(archiveMap[idx], btn); 164 + } 165 + }); 166 + }) 167 + .catch(function(err) { 168 + document.getElementById('ldsf-status').textContent = 'Fout: ' + err.message; 169 + }); 164 164 } 165 -}, true); 166 166 167 -// Debug test button 168 -document.getElementById('ldsf-test-btn').addEventListener('click', function() { 169 - alert('archiveMap: ' + JSON.stringify(ldsf_archiveMap) + '\nurlToFile: ' + JSON.stringify(ldsf_urlToFile)); 170 -}); 172 + // Show archive in viewer panel 173 + window.ldsfShowArchive = function(filename, btn) { 174 + var container = document.getElementById('ldsf-viewer-container'); 175 + var frame = document.getElementById('ldsf-viewer-frame'); 176 + var titleEl = document.getElementById('ldsf-viewer-title'); 171 171 172 -// Load index then bookmarks 173 -fetch(LDSF_WEBDAV + 'index.json', { headers: { 'Authorization': LDSF_AUTH } }) 174 -.then(function(r) { return r.ok ? r.json() : {}; }) 175 -.then(function(idx) { 176 - console.log('SingleFile index loaded:', idx); 177 - Object.keys(idx).forEach(function(f) { ldsf_urlToFile[idx[f]] = f; }); 178 - ldsfLoadBookmarks(); 179 -}) 180 -.catch(function(err) { console.log('SingleFile index FAILED:', err); ldsfLoadBookmarks(); }); 178 + // Toggle active button 179 + document.querySelectorAll('#ldsf-bookmarks .sf-btn').forEach(function(b) { b.classList.remove('active'); }); 180 + btn.classList.add('active'); 181 + 182 + titleEl.textContent = filename.replace(/\.html?$/i, ''); 183 + container.style.display = 'block'; 184 + frame.srcdoc = '<p style="padding:20px;color:#666">Laden...</p>'; 185 + 186 + fetch(WEBDAV_BASE + encodeURIComponent(filename), { headers: { 'Authorization': NC_AUTH } }) 187 + .then(function(r) { return r.text(); }) 188 + .then(function(html) { 189 + frame.srcdoc = html; 190 + }) 191 + .catch(function(err) { 192 + frame.srcdoc = '<p style="padding:20px;color:red">Fout: ' + err.message + '</p>'; 193 + }); 194 + }; 195 + 196 + window.ldsfCloseViewer = function() { 197 + document.getElementById('ldsf-viewer-container').style.display = 'none'; 198 + document.querySelectorAll('#ldsf-bookmarks .sf-btn').forEach(function(b) { b.classList.remove('active'); }); 199 + }; 200 +})(); 181 181 </script> 182 182 {{/html}} 183 183