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,6 +78,7 @@ 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> 81 81 <div id="ldsf-status">Laden...</div> 82 82 <div id="ldsf-bookmarks"></div> 83 83 <div id="ldsf-viewer-container"> ... ... @@ -90,95 +90,93 @@ 90 90 </div> 91 91 92 92 <script> 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; 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 = {}; 98 98 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='; 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 +} 102 102 103 - var urlToFile = {}; // reverse map: URL -> filename 110 +function ldsfOpen(idx) { 111 + var f = ldsf_archiveMap[idx]; 112 + if (f) ldsfShowArchive(f); 113 +} 104 104 105 - // Load SingleFile index, then load bookmarks 106 - fetch(INDEX_URL, { headers: { 'Authorization': NC_AUTH } }) 107 - .then(function(r) { return r.ok ? r.json() : {}; }) 108 - .then(function(index) { 109 - // Build reverse map: URL -> filename 110 - Object.keys(index).forEach(function(fname) { 111 - urlToFile[index[fname]] = fname; 112 - }); 113 - loadBookmarks(); 114 - }) 115 - .catch(function() { 116 - loadBookmarks(); // Continue without index 117 - }); 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 +} 118 118 119 - function loadBookmarks() { 120 - var apiUrl = LINKDING_URL + '?limit=' + LINKDING_COUNT + '&q=%23' + encodeURIComponent(LINKDING_TAG); 121 - fetch(apiUrl, { headers: { 'Authorization': 'Token ' + LINKDING_TOKEN } }) 122 - .then(function(r) { return r.json(); }) 123 - .then(function(data) { 124 - var total = data.count || 0; 125 - var archiveCount = 0; 126 - var container = document.getElementById('ldsf-bookmarks'); 127 - var html = '<ul>'; 126 +function ldsfCloseViewer() { 127 + document.getElementById('ldsf-viewer-container').style.display = 'none'; 128 +} 128 128 129 - (data.results || []).forEach(function(bm) { 130 - var title = bm.title || bm.website_title || bm.url; 131 - var hasArchive = urlToFile[bm.url] || urlToFile[bm.url.replace(/\/$/, '')] || urlToFile[bm.url + '/']; 132 - if (hasArchive) archiveCount++; 130 +function ldsfLoadBookmarks() { 131 + var apiUrl = LDSF_LINKDING_URL + '?limit=' + LDSF_COUNT + '&q=%23' + encodeURIComponent(LDSF_TAG); 132 + fetch(apiUrl, { headers: { 'Authorization': 'Token ' + LDSF_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>'; 133 133 134 - html += '<li>'; 135 - if (hasArchive) { 136 - var fname = urlToFile[bm.url] || urlToFile[bm.url.replace(/\/$/, '')] || urlToFile[bm.url + '/']; 137 - html += '<button class="sf-btn" onclick="ldsfShowArchive(\'' + encodeURIComponent(fname).replace(/'/g, "\\'") + '\', this)" title="Archief bekijken">📄</button>'; 138 - } 139 - html += '<a href="' + bm.url + '" target="_blank">' + title + '</a>'; 140 - html += '</li>'; 141 - }); 142 - 143 - html += '</ul>'; 144 - container.innerHTML = html; 145 - document.getElementById('ldsf-status').textContent = total + ' bookmarks, ' + archiveCount + ' met archief'; 146 - }) 147 - .catch(function(err) { 148 - document.getElementById('ldsf-status').textContent = 'Fout: ' + err.message; 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>'; 149 149 }); 150 - } 151 151 152 - //Showarchiveinviewer panel153 - window.ldsfShowArchive=function(encodedFilename,btn){154 - var filename=decodeURIComponent(encodedFilename);155 - var container = document.getElementById('ldsf-viewer-container');156 - varframe=document.getElementById('ldsf-viewer-frame');157 - var titleEl = document.getElementById('ldsf-viewer-title');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 +} 158 158 159 - // Toggle active button 160 - document.querySelectorAll('#ldsf-bookmarks .sf-btn').forEach(function(b) { b.classList.remove('active'); }); 161 - btn.classList.add('active'); 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]); 164 + } 165 +}, true); 162 162 163 - titleEl.textContent = filename.replace(/\.html?$/i, ''); 164 - container.style.display = 'block'; 165 - frame.srcdoc = '<p style="padding:20px;color:#666">Laden...</p>'; 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 +}); 166 166 167 - fetch(WEBDAV_BASE + encodeURIComponent(filename), { headers: { 'Authorization': NC_AUTH } }) 168 - .then(function(r) { return r.text(); }) 169 - .then(function(html) { 170 - frame.srcdoc = html; 171 - }) 172 - .catch(function(err) { 173 - frame.srcdoc = '<p style="padding:20px;color:red">Fout: ' + err.message + '</p>'; 174 - }); 175 - }; 176 - 177 - window.ldsfCloseViewer = function() { 178 - document.getElementById('ldsf-viewer-container').style.display = 'none'; 179 - document.querySelectorAll('#ldsf-bookmarks .sf-btn').forEach(function(b) { b.classList.remove('active'); }); 180 - }; 181 -})(); 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(); }); 182 182 </script> 183 183 {{/html}} 184 184