HerrHase 9 months ago
parent 49a21861e8
commit 6dcb72d83a

@ -3,9 +3,11 @@ const slugify = require('slugify')
const merge = require('lodash.merge') const merge = require('lodash.merge')
const nunjucks = require('nunjucks') const nunjucks = require('nunjucks')
const assign = require('assign-deep') const assign = require('assign-deep')
const fs = require('fs')
const Media = require('./../factories/media.js') const Media = require('./../factories/media.js')
const parseMarkdownFile = require('./../parsers/markdown.js') const parseMarkdownFile = require('./../parsers/markdown.js')
const configStore = require('./../config.js')
/** /**
* Page - building from markdown file * Page - building from markdown file
@ -33,19 +35,8 @@ class Page {
// getting dirPath for files for page // getting dirPath for files for page
this._dirPath = this._resolvePath(parent) this._dirPath = this._resolvePath(parent)
// adding filename for html as pathname and relative path in structure
this._filename = this._resolveFilename(file)
this._slug = this._resolveSlug(this._filename)
this._permalink = this._dirPath
if (this._slug) {
this._permalink = this._dirPath + '/' + this._slug
}
// parse file // parse file
const result = parseMarkdownFile(fileString, [ const result = parseMarkdownFile(fileString, this._dirPath)
this._permalink, this._dirPath
])
// fields merge by default values // fields merge by default values
this._fields = merge({ this._fields = merge({
@ -57,17 +48,29 @@ class Page {
hidden: false hidden: false
}, result.fields) }, result.fields)
this._content = result.content // adding filename for html as pathname and relative path in structure
this._blocks = blocks this._filename = this._resolveFilename(file)
this._slug = this._resolveSlug(this._filename)
this._permalink = this._dirPath
if (this._slug) {
this._permalink = this._dirPath + '/' + this._slug
}
// check if page is in subdirectory
if (fs.existsSync(configStore.get('source') + this._permalink) && this._slug) {
this._dirPath += '/' + this._slug
this._filename = 'index'
}
this._filename += '.' + this._fields.extensions this._filename += '.' + this._fields.extensions
this._content = result.content
this._blocks = blocks
// check for fields and resolve media // check for fields and resolve media
if (this._fields) { if (this._fields) {
this._fields = this._resolveMedia(this._fields, [ this._fields = this._resolveMedia(this._fields, this._dirPath)
this._permalink,
this._dirPath
])
} }
// check for fields and resolve media // check for fields and resolve media
@ -75,16 +78,10 @@ class Page {
for (const key of Object.keys(this._blocks)) { for (const key of Object.keys(this._blocks)) {
if (Array.isArray(this._blocks[key])) { if (Array.isArray(this._blocks[key])) {
this._blocks[key].forEach((fields, index) => { this._blocks[key].forEach((fields, index) => {
this._blocks[key][index] = this._resolveMedia(fields, [ this._blocks[key][index] = this._resolveMedia(fields, this._dirPath + '/_blocks')
this._permalink + '/_blocks',
this._dirPath + '/_blocks'
])
}) })
} else { } else {
this._blocks[key] = this._resolveMedia(this._blocks[key], [ this._blocks[key] = this._resolveMedia(this._blocks[key], this._dirPath + '/_blocks')
this._permalink + '/_blocks',
this._dirPath + '/_blocks'
])
} }
} }
} }
@ -126,7 +123,12 @@ class Page {
return fields return fields
} }
/**
*
*
*/
_resolveMediaSrc(field, dirPath) { _resolveMediaSrc(field, dirPath) {
const media = new Media(dirPath) const media = new Media(dirPath)
if (typeof field === 'string' || field instanceof String) { if (typeof field === 'string' || field instanceof String) {

@ -1,5 +1,6 @@
const { XMLParser, XMLBuilder, XMLValidator} = require('fast-xml-parser') const { XMLParser, XMLBuilder, XMLValidator} = require('fast-xml-parser')
const dayjs = require('dayjs') const dayjs = require('dayjs')
const assign = require('assign-deep')
/** /**
* *
@ -19,7 +20,11 @@ class Sitemap {
* *
*/ */
constructor(site) { constructor(site) {
this._site = site this._site = assign({
'sitemap': {
'use_permalinks': true
}
}, site)
this._urls = [] this._urls = []
} }
@ -31,8 +36,17 @@ class Sitemap {
*/ */
addPage(page) { addPage(page) {
if (this._isValid(page)) { if (this._isValid(page)) {
let path = page.permalink
console.log(this._site)
if (this._site.sitemap.use_permalinks === false) {
path = page.path
}
this._urls.push({ this._urls.push({
loc: 'https://' + this._site.domain + page.path, loc: 'https://' + this._site.domain + path,
lastmod: dayjs().format() lastmod: dayjs().format()
}) })
} }

@ -54,7 +54,7 @@ describe('Page /blog/index.md', function () {
}) })
it('path', function() { it('path', function() {
assert.equal(page.path, '/blog.html') assert.equal(page.path, '/blog/index.html')
}) })
it('permalink', function() { it('permalink', function() {

@ -25,10 +25,10 @@ describe('Sitemap', function () {
// check results // check results
it('loc-tag with url', function() { it('loc-tag with url', function() {
assert.match(sitemap.getXmlAsString(), /<loc>https:\/\/test.lan\/blog\/article.html<\/loc>/) assert.match(sitemap.getXmlAsString(), /<loc>https:\/\/test.lan\/blog\/article<\/loc>/)
}) })
it('loc-tag has robotos:noindex and has missing', function() { it('loc-tag has robotos:noindex and has missing', function() {
assert.notMatch(sitemap.getXmlAsString(), /<loc>https:\/\/test.lan\/index.html<\/loc>/) assert.notMatch(sitemap.getXmlAsString(), /<loc>https:\/\/test.lan\/<\/loc>/)
}) })
}) })

Loading…
Cancel
Save