86 lines
2.2 KiB
JavaScript
86 lines
2.2 KiB
JavaScript
const fs = require('fs');
|
|
|
|
const filePath = '/srv/www/htdocs/comics/index.html';
|
|
const strips = require("/srv/www/htdocs/comics/strips.js")
|
|
|
|
function escapeQuotes(value) {
|
|
return value.replace(/["'&<>]/g, function (char) {
|
|
switch (char) {
|
|
case '"':
|
|
return """;
|
|
case "'":
|
|
return "'";
|
|
case "&":
|
|
return "&";
|
|
case "<":
|
|
return "<";
|
|
case ">":
|
|
return ">";
|
|
default:
|
|
return char;
|
|
}
|
|
});
|
|
}
|
|
console.log(strips)
|
|
|
|
let linksText = ""
|
|
|
|
let dateObject
|
|
let month
|
|
let year
|
|
|
|
let oldMonth = "blibidy blob"
|
|
let oldYear = "bloopy aw"
|
|
|
|
let counter = 0
|
|
|
|
for (let page = strips.length - 1; page >= 0; page--) {
|
|
dateObject = new Date(strips[page][1])
|
|
month = dateObject.toLocaleString('en-US', {month: 'long'});
|
|
year = dateObject.getFullYear()
|
|
const dayOfWeek = dateObject.toLocaleString('en-US', { weekday: 'long' }); // 'long' returns the full day name
|
|
const dayOfMonth = dateObject.getDate();
|
|
console.log(month, year, dayOfMonth, dayOfWeek)
|
|
|
|
|
|
|
|
if (month != oldMonth) {
|
|
linksText += (`<h4>${month} ${year}</h4>`)
|
|
}
|
|
|
|
linksText += (`<li class="indent">• <a href='comic/${counter}.html'>${escapeQuotes(strips[page][0])}</a> -- ${dayOfWeek} ${dayOfMonth}</li>`)
|
|
|
|
oldYear = year
|
|
oldMonth = month
|
|
counter++
|
|
}
|
|
|
|
|
|
// Step 2: Read the HTML file
|
|
fs.readFile(filePath, 'utf8', (err, data) => {
|
|
if (err) {
|
|
console.error(err);
|
|
return;
|
|
}
|
|
|
|
// Step 3: Identify the target div
|
|
const targetDivId = 'links';
|
|
|
|
// Step 4: Create the new content (e.g., a paragraph element)
|
|
const newContent = linksText
|
|
|
|
// Step 5: Replace the existing content in the target div
|
|
const regex = new RegExp(`<div id="${targetDivId}">([\\s\\S]*?)<\/div>`);
|
|
const updatedData = data.replace(regex, `<div id="${targetDivId}">${newContent}</div>`);
|
|
|
|
// Step 6: Save the updated content back to the file
|
|
fs.writeFile(filePath, updatedData, 'utf8', (err) => {
|
|
if (err) {
|
|
console.error(err);
|
|
return;
|
|
}
|
|
|
|
console.log('Content replaced successfully in ', filePath);
|
|
});
|
|
});
|