2017-12-26 20:39:52 +00:00
|
|
|
/* global parserlib */
|
2017-08-05 16:49:25 +00:00
|
|
|
'use strict';
|
|
|
|
|
2018-01-06 06:48:56 +00:00
|
|
|
/**
|
|
|
|
* Extracts @-moz-document blocks into sections and the code between them into global sections.
|
|
|
|
* Puts the global comments into the following section to minimize the amount of global sections.
|
|
|
|
* Doesn't move the comment with ==UserStyle== inside.
|
|
|
|
* @param {string} code
|
|
|
|
* @param {number} styleId - used to preserve parserCache on subsequent runs over the same style
|
|
|
|
* @returns {{sections: Array, errors: Array}}
|
|
|
|
*/
|
|
|
|
function parseMozFormat({code, styleId}) {
|
2017-12-26 20:39:52 +00:00
|
|
|
const CssToProperty = {
|
|
|
|
'url': 'urls',
|
|
|
|
'url-prefix': 'urlPrefixes',
|
|
|
|
'domain': 'domains',
|
|
|
|
'regexp': 'regexps',
|
|
|
|
};
|
|
|
|
const parser = new parserlib.css.Parser();
|
|
|
|
const sectionStack = [{code: '', start: 0}];
|
|
|
|
const errors = [];
|
|
|
|
const sections = [];
|
2018-01-06 06:48:56 +00:00
|
|
|
const mozStyle = code;
|
2017-08-05 16:49:25 +00:00
|
|
|
|
2017-12-26 20:39:52 +00:00
|
|
|
parser.addListener('startdocument', e => {
|
|
|
|
const lastSection = sectionStack[sectionStack.length - 1];
|
|
|
|
let outerText = mozStyle.slice(lastSection.start, e.offset);
|
|
|
|
const lastCmt = getLastComment(outerText);
|
|
|
|
const section = {
|
|
|
|
code: '',
|
|
|
|
start: parser._tokenStream._token.offset + 1,
|
|
|
|
};
|
|
|
|
// move last comment before @-moz-document inside the section
|
|
|
|
if (!lastCmt.includes('AGENT_SHEET') &&
|
|
|
|
!lastCmt.includes('==') &&
|
|
|
|
!/==userstyle==/iu.test(lastCmt)) {
|
|
|
|
if (lastCmt) {
|
|
|
|
section.code = lastCmt + '\n';
|
|
|
|
outerText = outerText.slice(0, -lastCmt.length);
|
|
|
|
}
|
|
|
|
outerText = outerText.match(/^\s*/)[0] + outerText.trim();
|
|
|
|
}
|
|
|
|
if (outerText.trim()) {
|
|
|
|
lastSection.code = outerText;
|
|
|
|
doAddSection(lastSection);
|
|
|
|
lastSection.code = '';
|
|
|
|
}
|
|
|
|
for (const {name, expr, uri} of e.functions) {
|
|
|
|
const aType = CssToProperty[name.toLowerCase()];
|
|
|
|
(section[aType] = section[aType] || []).push(uri || expr && expr.parts[0].value || '');
|
|
|
|
}
|
|
|
|
sectionStack.push(section);
|
|
|
|
});
|
2017-08-05 16:49:25 +00:00
|
|
|
|
2017-12-26 20:39:52 +00:00
|
|
|
parser.addListener('enddocument', e => {
|
|
|
|
const section = sectionStack.pop();
|
|
|
|
const lastSection = sectionStack[sectionStack.length - 1];
|
|
|
|
section.code += mozStyle.slice(section.start, e.offset);
|
|
|
|
lastSection.start = e.offset + 1;
|
|
|
|
doAddSection(section);
|
|
|
|
});
|
2017-08-05 16:49:25 +00:00
|
|
|
|
2017-12-26 20:39:52 +00:00
|
|
|
parser.addListener('endstylesheet', () => {
|
|
|
|
// add nonclosed outer sections (either broken or the last global one)
|
|
|
|
const lastSection = sectionStack[sectionStack.length - 1];
|
|
|
|
lastSection.code += mozStyle.slice(lastSection.start);
|
|
|
|
sectionStack.forEach(doAddSection);
|
|
|
|
});
|
2017-08-05 16:49:25 +00:00
|
|
|
|
2017-12-26 20:39:52 +00:00
|
|
|
parser.addListener('error', e => {
|
|
|
|
errors.push(`${e.line}:${e.col} ${e.message.replace(/ at line \d.+$/, '')}`);
|
|
|
|
});
|
2017-08-05 16:49:25 +00:00
|
|
|
|
2018-01-06 06:48:56 +00:00
|
|
|
parser.parse(mozStyle, {
|
|
|
|
reuseCache: !parseMozFormat.styleId || styleId === parseMozFormat.styleId,
|
|
|
|
});
|
|
|
|
parseMozFormat.styleId = styleId;
|
2017-12-26 20:39:52 +00:00
|
|
|
return {sections, errors};
|
2017-08-05 16:49:25 +00:00
|
|
|
|
2017-12-26 20:39:52 +00:00
|
|
|
function doAddSection(section) {
|
|
|
|
section.code = section.code.trim();
|
|
|
|
// don't add empty sections
|
|
|
|
if (
|
|
|
|
!section.code &&
|
|
|
|
!section.urls &&
|
|
|
|
!section.urlPrefixes &&
|
|
|
|
!section.domains &&
|
|
|
|
!section.regexps
|
|
|
|
) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
/* ignore boilerplate NS */
|
|
|
|
if (section.code === '@namespace url(http://www.w3.org/1999/xhtml);') {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
sections.push(Object.assign({}, section));
|
|
|
|
}
|
2017-11-14 05:55:01 +00:00
|
|
|
|
2017-12-26 20:39:52 +00:00
|
|
|
function getLastComment(text) {
|
|
|
|
let open = text.length;
|
|
|
|
let close;
|
|
|
|
while (open) {
|
|
|
|
// at this point we're guaranteed to be outside of a comment
|
|
|
|
close = text.lastIndexOf('*/', open - 2);
|
|
|
|
if (close < 0) {
|
|
|
|
break;
|
2017-11-14 05:55:01 +00:00
|
|
|
}
|
2017-12-26 20:39:52 +00:00
|
|
|
// stop if a non-whitespace precedes and return what we currently have
|
|
|
|
const tailEmpty = !text.substring(close + 2, open).trim();
|
|
|
|
if (!tailEmpty) {
|
|
|
|
break;
|
2017-11-23 09:01:42 +00:00
|
|
|
}
|
2017-12-26 20:39:52 +00:00
|
|
|
// find a closed preceding comment
|
|
|
|
const prevClose = text.lastIndexOf('*/', close - 2);
|
|
|
|
// then find the real start of current comment
|
|
|
|
// e.g. /* preceding */ /* current /* current /* current */
|
|
|
|
open = text.indexOf('/*', prevClose < 0 ? 0 : prevClose + 2);
|
2017-08-05 16:49:25 +00:00
|
|
|
}
|
2017-12-26 20:39:52 +00:00
|
|
|
return open ? text.slice(open) : text;
|
|
|
|
}
|
|
|
|
}
|