next-runtime-sitemap
Version:
Generates a sitemap for nextjs apps at runtime, using a crawl of the local filesystem
51 lines (50 loc) • 2.17 kB
JavaScript
;
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.introspectFile = introspectFile;
const node_path_1 = __importDefault(require("node:path"));
const promises_1 = require("fs/promises");
function getPageStatus(path) {
return __awaiter(this, void 0, void 0, function* () {
const result = yield fetch(`http://${process.env.HOSTNAME || "localhost"}:${process.env.PORT || 3000}/${path}`, {
method: "HEAD",
});
return result.status;
});
}
function introspectFile(dir, page, fileSuffixRE) {
return __awaiter(this, void 0, void 0, function* () {
const fullPath = node_path_1.default.join(dir, page);
try {
const [pageContent, stats] = yield Promise.all([
(0, promises_1.readFile)(fullPath, "utf8"),
(0, promises_1.stat)(fullPath),
]);
const pageParsed = JSON.parse(pageContent);
const pathname = page.replace(fileSuffixRE, "");
const status = pageParsed.status || (yield getPageStatus(pathname));
return {
path: pathname,
status,
stats,
};
}
catch (err) {
return {
path: err.message,
status: 500,
};
}
});
}