From 62844efb63221b4005cd53633304b1dea21ecf2d Mon Sep 17 00:00:00 2001 From: v Date: Mon, 27 Feb 2017 20:45:16 +0300 Subject: [PATCH] better URL conversion --- package.json | 9 +++------ zimmer.js | 47 ++++++++++++++++++++++++++++++++--------------- 2 files changed, 35 insertions(+), 21 deletions(-) mode change 100644 => 100755 zimmer.js diff --git a/package.json b/package.json index 209a317..2d55e5c 100644 --- a/package.json +++ b/package.json @@ -14,19 +14,16 @@ "dependencies": { "async": "*", "expand-home-dir": "*", - "path": "*", - "mime-types": "*", "lzma-native": "*", - "bufferpack": "*", "htmlparser2": "*", "domutils": "*", - "long": "*", "uuid": "*", "csv-parse": "*", "csv-stringify": "*", - "fs-extra": "*", - "mmmagic": "*", "sqlite3": "*", + "mmmagic": "*", + "mime-types": "*", + "mime-db": "*", "yargs": "*" }, "author": "Vadim Shlykahov", diff --git a/zimmer.js b/zimmer.js old mode 100644 new mode 100755 index 1fcd3fd..9f95a40 --- a/zimmer.js +++ b/zimmer.js @@ -673,42 +673,59 @@ FileArticle.prototype.setTitle = function (dom) { }; FileArticle.prototype.alterLinks = function (dom) { - var nameSpaceLink = function (elem, attr) { + var base = '/' + this.url; + var nsBase = '/' + this.nameSpace + base; + var from = nsBase.split('/'); + + function path2relative (path) { + var nameSpace = getNameSpace(getMimeType(path)); + if (!nameSpace) + return null + var absPath = '/' + nameSpace + url.resolve(base, path); + var to = absPath.split('/'); + var i = 0; + var max = from.length-1; + for (; from[i] === to[0] && i < max; i++) { + to.shift(); + } + for (; i < max; i++) { + to.unshift('..'); + } + var relPath = to.join('/'); + //~ log('path2relative', nsBase, path, absPath, relPath); + return relPath + } + function toRelativeLink (elem, attr) { if (! (elem.attribs && elem.attribs[attr])) return 0; - var link; try { - link = url.parse(elem.attribs[attr], true, true); + var link = url.parse(elem.attribs[attr], true, true); } catch (err) { - console.warn('alterLinks', err.message, elem.attribs[attr], 'at', this.url); + console.warn('alterLinks', err.message, elem.attribs[attr], 'at', base); return 0; } - var link = url.parse(elem.attribs[attr], true, true); - if ( (link.protocol && link.protocol != 'http:' && link.protocol != 'https:') - || link.host || ! link.pathname || link.pathname[0] =='/') + if ( link.protocol || link.host || ! link.pathname ) return 0; - //~ log('FileArticle.prototype.alterLinks', this.url, link.pathname); - var nameSpace = getNameSpace(getMimeType(link.pathname)); - - if (nameSpace) { - link.pathname = '../' + nameSpace + '/' + link.pathname; + var relPath = path2relative (link.pathname); + if (relPath) { + link.pathname = relPath; elem.attribs[attr] = url.format(link); //~ log('FileArticle.prototype.alterLinks', decodeURIComponent(elem.attribs[attr])); return 1; } return 0; - } .bind(this); + }; var res = domutils.filter( function (elem) { // calculate both - return !!(nameSpaceLink(elem, 'src') + nameSpaceLink(elem, 'href')); + return !!(toRelativeLink(elem, 'src') + toRelativeLink(elem, 'href')); }, dom, true ); - log('alterLinks', res.length); + //~ log('alterLinks', res.length); return res.length != 0; };