2017-11-26 01:52:14 +00:00
|
|
|
/* global loadScript mozParser semverCompare colorParser styleCodeEmpty */
|
2017-08-05 16:49:25 +00:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
// eslint-disable-next-line no-var
|
2017-10-29 17:22:10 +00:00
|
|
|
var usercss = (() => {
|
2017-09-16 01:24:50 +00:00
|
|
|
// true for global, false for private
|
|
|
|
const METAS = {
|
|
|
|
__proto__: null,
|
|
|
|
author: true,
|
|
|
|
advanced: false,
|
|
|
|
description: true,
|
|
|
|
homepageURL: false,
|
|
|
|
// icon: false,
|
|
|
|
license: false,
|
|
|
|
name: true,
|
|
|
|
namespace: false,
|
|
|
|
// noframes: false,
|
|
|
|
preprocessor: false,
|
|
|
|
supportURL: false,
|
|
|
|
'var': false,
|
|
|
|
version: false
|
|
|
|
};
|
2017-09-05 00:16:08 +00:00
|
|
|
|
2017-09-15 05:40:04 +00:00
|
|
|
const META_VARS = ['text', 'color', 'checkbox', 'select', 'dropdown', 'image'];
|
|
|
|
|
2017-08-05 16:49:25 +00:00
|
|
|
const BUILDER = {
|
|
|
|
default: {
|
|
|
|
postprocess(sections, vars) {
|
2017-09-12 15:19:16 +00:00
|
|
|
const varDef =
|
2017-09-12 12:24:25 +00:00
|
|
|
':root {\n' +
|
|
|
|
Object.keys(vars).map(k => ` --${k}: ${vars[k].value};\n`).join('') +
|
|
|
|
'}\n';
|
2017-08-05 16:49:25 +00:00
|
|
|
for (const section of sections) {
|
2017-11-26 01:52:14 +00:00
|
|
|
if (!styleCodeEmpty(section.code)) {
|
|
|
|
section.code = varDef + section.code;
|
|
|
|
}
|
2017-08-05 16:49:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
stylus: {
|
|
|
|
preprocess(source, vars) {
|
2017-09-12 15:19:16 +00:00
|
|
|
return loadScript('/vendor/stylus-lang/stylus.min.js').then(() => (
|
2017-08-05 16:49:25 +00:00
|
|
|
new Promise((resolve, reject) => {
|
2017-11-09 00:24:37 +00:00
|
|
|
const varDef = Object.keys(vars).map(key => `${key} = ${vars[key].value};\n`).join('');
|
2017-08-05 16:49:25 +00:00
|
|
|
|
|
|
|
// eslint-disable-next-line no-undef
|
|
|
|
stylus(varDef + source).render((err, output) => {
|
|
|
|
if (err) {
|
|
|
|
reject(err);
|
|
|
|
} else {
|
|
|
|
resolve(output);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
})
|
|
|
|
));
|
|
|
|
}
|
2017-09-15 05:40:04 +00:00
|
|
|
},
|
|
|
|
uso: {
|
|
|
|
preprocess(source, vars) {
|
|
|
|
const pool = new Map();
|
|
|
|
return Promise.resolve(doReplace(source));
|
|
|
|
|
|
|
|
function getValue(name, rgb) {
|
|
|
|
if (!vars.hasOwnProperty(name)) {
|
|
|
|
if (name.endsWith('-rgb')) {
|
|
|
|
return getValue(name.slice(0, -4), true);
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
if (rgb) {
|
|
|
|
if (vars[name].type === 'color') {
|
|
|
|
// eslint-disable-next-line no-use-before-define
|
|
|
|
const color = colorParser.parse(vars[name].value);
|
|
|
|
return `${color.r}, ${color.g}, ${color.b}`;
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
2017-10-08 18:45:11 +00:00
|
|
|
if (vars[name].type === 'dropdown' || vars[name].type === 'select') {
|
2017-09-15 05:40:04 +00:00
|
|
|
// prevent infinite recursion
|
2017-10-08 18:44:17 +00:00
|
|
|
pool.set(name, '');
|
2017-09-15 05:40:04 +00:00
|
|
|
return doReplace(vars[name].value);
|
|
|
|
}
|
|
|
|
return vars[name].value;
|
|
|
|
}
|
|
|
|
|
|
|
|
function doReplace(text) {
|
|
|
|
return text.replace(/\/\*\[\[([\w-]+)\]\]\*\//g, (match, name) => {
|
|
|
|
if (!pool.has(name)) {
|
|
|
|
const value = getValue(name);
|
|
|
|
pool.set(name, value === null ? match : value);
|
|
|
|
}
|
|
|
|
return pool.get(name);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
2017-08-05 16:49:25 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-11-27 09:44:16 +00:00
|
|
|
const RX_NUMBER = /-?\d+(\.\d+)?\s*/y;
|
2017-11-26 13:04:03 +00:00
|
|
|
const RX_WHITESPACE = /\s*/y;
|
2017-11-27 09:44:16 +00:00
|
|
|
const RX_WORD = /([\w-]+)\s*/y;
|
|
|
|
const RX_STRING_BACKTICK = /(`(?:\\`|[\s\S])*?`)\s*/y;
|
|
|
|
const RX_STRING_QUOTED = /((['"])(?:\\\2|[^\n])*?\2|\w+)\s*/y;
|
2017-11-26 13:04:03 +00:00
|
|
|
|
2017-11-30 23:35:56 +00:00
|
|
|
const worker = {};
|
|
|
|
|
2017-08-05 16:49:25 +00:00
|
|
|
function getMetaSource(source) {
|
|
|
|
const commentRe = /\/\*[\s\S]*?\*\//g;
|
|
|
|
const metaRe = /==userstyle==[\s\S]*?==\/userstyle==/i;
|
|
|
|
|
|
|
|
let m;
|
|
|
|
// iterate through each comment
|
|
|
|
while ((m = commentRe.exec(source))) {
|
|
|
|
const commentSource = source.slice(m.index, m.index + m[0].length);
|
|
|
|
const n = commentSource.match(metaRe);
|
|
|
|
if (n) {
|
2017-11-09 07:53:09 +00:00
|
|
|
return {
|
|
|
|
index: m.index + n.index,
|
|
|
|
text: n[0]
|
|
|
|
};
|
2017-08-05 16:49:25 +00:00
|
|
|
}
|
|
|
|
}
|
2017-11-26 18:13:54 +00:00
|
|
|
return {text: '', index: 0};
|
2017-08-05 16:49:25 +00:00
|
|
|
}
|
|
|
|
|
2017-09-16 02:11:08 +00:00
|
|
|
function parseWord(state, error = 'invalid word') {
|
2017-11-27 09:44:16 +00:00
|
|
|
RX_WORD.lastIndex = state.re.lastIndex;
|
|
|
|
const match = RX_WORD.exec(state.text);
|
2017-09-15 05:40:04 +00:00
|
|
|
if (!match) {
|
2017-11-27 09:44:16 +00:00
|
|
|
throw new Error((state.errorPrefix || '') + error);
|
2017-09-05 00:16:08 +00:00
|
|
|
}
|
2017-09-15 05:40:04 +00:00
|
|
|
state.value = match[1];
|
|
|
|
state.re.lastIndex += match[0].length;
|
2017-09-05 00:16:08 +00:00
|
|
|
}
|
|
|
|
|
2017-09-15 05:40:04 +00:00
|
|
|
function parseVar(state) {
|
2017-09-05 00:16:08 +00:00
|
|
|
const result = {
|
2017-09-15 05:40:04 +00:00
|
|
|
type: null,
|
2017-09-05 00:16:08 +00:00
|
|
|
label: null,
|
|
|
|
name: null,
|
|
|
|
value: null,
|
|
|
|
default: null,
|
2017-09-15 05:40:04 +00:00
|
|
|
options: null
|
2017-09-05 00:16:08 +00:00
|
|
|
};
|
|
|
|
|
2017-09-15 05:40:04 +00:00
|
|
|
parseWord(state, 'missing type');
|
|
|
|
result.type = state.type = state.value;
|
2017-11-27 09:44:16 +00:00
|
|
|
|
2017-09-15 05:40:04 +00:00
|
|
|
if (!META_VARS.includes(state.type)) {
|
|
|
|
throw new Error(`unknown type: ${state.type}`);
|
2017-09-05 00:16:08 +00:00
|
|
|
}
|
|
|
|
|
2017-09-15 05:40:04 +00:00
|
|
|
parseWord(state, 'missing name');
|
|
|
|
result.name = state.value;
|
|
|
|
|
|
|
|
parseString(state);
|
|
|
|
result.label = state.value;
|
|
|
|
|
2017-11-27 09:44:16 +00:00
|
|
|
const {re, type, text} = state;
|
|
|
|
|
|
|
|
switch (type === 'image' && state.key === 'var' ? '@image@var' : type) {
|
|
|
|
case 'checkbox': {
|
|
|
|
const match = text.slice(re.lastIndex).match(/([01])\s+/);
|
|
|
|
if (!match) {
|
|
|
|
throw new Error('value must be 0 or 1');
|
|
|
|
}
|
|
|
|
re.lastIndex += match[0].length;
|
|
|
|
result.default = match[1];
|
|
|
|
break;
|
2017-10-08 16:59:10 +00:00
|
|
|
}
|
2017-11-27 09:44:16 +00:00
|
|
|
|
|
|
|
case 'select':
|
|
|
|
case '@image@var': {
|
|
|
|
state.errorPrefix = 'Invalid JSON: ';
|
|
|
|
parseJSONValue(state);
|
|
|
|
state.errorPrefix = '';
|
|
|
|
if (Array.isArray(state.value)) {
|
|
|
|
result.options = state.value.map(text => createOption(text));
|
|
|
|
} else {
|
|
|
|
result.options = Object.keys(state.value).map(k => createOption(k, state.value[k]));
|
|
|
|
}
|
|
|
|
result.default = (result.options[0] || {}).name || '';
|
|
|
|
break;
|
2017-09-15 05:40:04 +00:00
|
|
|
}
|
|
|
|
|
2017-11-27 09:44:16 +00:00
|
|
|
case 'dropdown':
|
|
|
|
case 'image': {
|
|
|
|
if (text[re.lastIndex] !== '{') {
|
|
|
|
throw new Error('no open {');
|
|
|
|
}
|
|
|
|
result.options = [];
|
|
|
|
re.lastIndex++;
|
|
|
|
while (text[re.lastIndex] !== '}') {
|
|
|
|
const option = {};
|
2017-09-15 05:40:04 +00:00
|
|
|
|
2017-11-27 09:44:16 +00:00
|
|
|
parseStringUnquoted(state);
|
|
|
|
option.name = state.value;
|
2017-09-15 05:40:04 +00:00
|
|
|
|
|
|
|
parseString(state);
|
2017-11-27 09:44:16 +00:00
|
|
|
option.label = state.value;
|
|
|
|
|
|
|
|
if (type === 'dropdown') {
|
|
|
|
parseEOT(state);
|
|
|
|
} else {
|
|
|
|
parseString(state);
|
|
|
|
}
|
|
|
|
option.value = state.value;
|
|
|
|
|
|
|
|
result.options.push(option);
|
2017-09-15 05:40:04 +00:00
|
|
|
}
|
2017-11-27 09:44:16 +00:00
|
|
|
re.lastIndex++;
|
|
|
|
eatWhitespace(state);
|
|
|
|
result.default = result.options[0].name;
|
|
|
|
break;
|
|
|
|
}
|
2017-09-15 05:40:04 +00:00
|
|
|
|
2017-11-27 09:44:16 +00:00
|
|
|
default: {
|
|
|
|
// text, color
|
|
|
|
parseStringToEnd(state);
|
|
|
|
result.default = state.value;
|
2017-09-15 05:40:04 +00:00
|
|
|
}
|
2017-09-05 00:16:08 +00:00
|
|
|
}
|
2017-09-16 01:24:50 +00:00
|
|
|
state.usercssData.vars[result.name] = result;
|
2017-11-09 07:53:09 +00:00
|
|
|
validVar(result);
|
2017-09-15 05:40:04 +00:00
|
|
|
}
|
2017-09-05 00:16:08 +00:00
|
|
|
|
2017-11-04 00:38:17 +00:00
|
|
|
function createOption(label, value) {
|
|
|
|
let name;
|
|
|
|
const match = label.match(/^(\w+):(.*)/);
|
|
|
|
if (match) {
|
|
|
|
([, name, label] = match);
|
|
|
|
}
|
|
|
|
if (!name) {
|
|
|
|
name = label;
|
|
|
|
}
|
|
|
|
if (!value) {
|
|
|
|
value = name;
|
|
|
|
}
|
|
|
|
return {name, label, value};
|
|
|
|
}
|
|
|
|
|
2017-09-15 05:40:04 +00:00
|
|
|
function parseEOT(state) {
|
2017-11-09 00:30:12 +00:00
|
|
|
const re = /<<<EOT([\s\S]+?)EOT;/y;
|
|
|
|
re.lastIndex = state.re.lastIndex;
|
|
|
|
const match = state.text.match(re);
|
2017-09-15 05:40:04 +00:00
|
|
|
if (!match) {
|
|
|
|
throw new Error('missing EOT');
|
|
|
|
}
|
|
|
|
state.re.lastIndex += match[0].length;
|
|
|
|
state.value = match[1].trim().replace(/\*\\\//g, '*/');
|
|
|
|
eatWhitespace(state);
|
|
|
|
}
|
|
|
|
|
|
|
|
function parseStringUnquoted(state) {
|
2017-11-27 09:44:16 +00:00
|
|
|
const pos = state.re.lastIndex;
|
|
|
|
const nextQuoteOrEOL = posOrEnd(state.text, '"', pos);
|
2017-11-30 21:23:06 +00:00
|
|
|
state.re.lastIndex = nextQuoteOrEOL;
|
2017-11-27 09:44:16 +00:00
|
|
|
state.value = state.text.slice(pos, nextQuoteOrEOL).trim().replace(/\s+/g, '-');
|
2017-09-15 05:40:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function parseString(state) {
|
2017-11-27 09:44:16 +00:00
|
|
|
const pos = state.re.lastIndex;
|
|
|
|
const rx = state.text[pos] === '`' ? RX_STRING_BACKTICK : RX_STRING_QUOTED;
|
|
|
|
rx.lastIndex = pos;
|
|
|
|
const match = rx.exec(state.text);
|
|
|
|
if (!match) {
|
|
|
|
throw new Error((state.errorPrefix || '') + 'Quoted string expected');
|
|
|
|
}
|
2017-09-15 05:40:04 +00:00
|
|
|
state.re.lastIndex += match[0].length;
|
|
|
|
state.value = unquote(match[1]);
|
|
|
|
}
|
|
|
|
|
2017-09-16 02:11:08 +00:00
|
|
|
function parseJSONValue(state) {
|
|
|
|
const JSON_PRIME = {
|
|
|
|
__proto__: null,
|
|
|
|
'null': null,
|
|
|
|
'true': true,
|
|
|
|
'false': false
|
|
|
|
};
|
2017-11-27 09:44:16 +00:00
|
|
|
const {text, re, errorPrefix} = state;
|
|
|
|
if (text[re.lastIndex] === '{') {
|
2017-09-16 02:11:08 +00:00
|
|
|
// object
|
|
|
|
const obj = {};
|
2017-11-27 09:44:16 +00:00
|
|
|
re.lastIndex++;
|
2017-09-16 02:11:08 +00:00
|
|
|
eatWhitespace(state);
|
2017-11-27 09:44:16 +00:00
|
|
|
while (text[re.lastIndex] !== '}') {
|
2017-09-16 02:11:08 +00:00
|
|
|
parseString(state);
|
|
|
|
const key = state.value;
|
2017-11-27 09:44:16 +00:00
|
|
|
if (text[re.lastIndex] !== ':') {
|
|
|
|
throw new Error(`${errorPrefix}missing ':'`);
|
2017-09-16 02:11:08 +00:00
|
|
|
}
|
2017-11-27 09:44:16 +00:00
|
|
|
re.lastIndex++;
|
2017-09-16 02:11:08 +00:00
|
|
|
eatWhitespace(state);
|
|
|
|
parseJSONValue(state);
|
|
|
|
obj[key] = state.value;
|
2017-11-27 09:44:16 +00:00
|
|
|
if (text[re.lastIndex] === ',') {
|
|
|
|
re.lastIndex++;
|
2017-09-16 02:11:08 +00:00
|
|
|
eatWhitespace(state);
|
2017-11-27 09:44:16 +00:00
|
|
|
} else if (text[re.lastIndex] !== '}') {
|
|
|
|
throw new Error(`${errorPrefix}missing ',' or '}'`);
|
2017-09-16 02:11:08 +00:00
|
|
|
}
|
|
|
|
}
|
2017-11-27 09:44:16 +00:00
|
|
|
re.lastIndex++;
|
2017-09-16 02:11:08 +00:00
|
|
|
eatWhitespace(state);
|
|
|
|
state.value = obj;
|
2017-11-27 09:44:16 +00:00
|
|
|
} else if (text[re.lastIndex] === '[') {
|
2017-09-16 02:11:08 +00:00
|
|
|
// array
|
|
|
|
const arr = [];
|
2017-11-27 09:44:16 +00:00
|
|
|
re.lastIndex++;
|
2017-09-16 02:11:08 +00:00
|
|
|
eatWhitespace(state);
|
2017-11-27 09:44:16 +00:00
|
|
|
while (text[re.lastIndex] !== ']') {
|
2017-09-16 02:11:08 +00:00
|
|
|
parseJSONValue(state);
|
|
|
|
arr.push(state.value);
|
2017-11-27 09:44:16 +00:00
|
|
|
if (text[re.lastIndex] === ',') {
|
|
|
|
re.lastIndex++;
|
2017-09-16 02:11:08 +00:00
|
|
|
eatWhitespace(state);
|
2017-11-27 09:44:16 +00:00
|
|
|
} else if (text[re.lastIndex] !== ']') {
|
|
|
|
throw new Error(`${errorPrefix}missing ',' or ']'`);
|
2017-09-16 02:11:08 +00:00
|
|
|
}
|
|
|
|
}
|
2017-11-27 09:44:16 +00:00
|
|
|
re.lastIndex++;
|
2017-09-16 02:11:08 +00:00
|
|
|
eatWhitespace(state);
|
|
|
|
state.value = arr;
|
2017-11-27 09:44:16 +00:00
|
|
|
} else if (text[re.lastIndex] === '"' || text[re.lastIndex] === '`') {
|
2017-09-16 02:11:08 +00:00
|
|
|
// string
|
|
|
|
parseString(state);
|
2017-11-27 09:44:16 +00:00
|
|
|
} else if (/\d/.test(text[re.lastIndex])) {
|
2017-09-16 02:11:08 +00:00
|
|
|
// number
|
|
|
|
parseNumber(state);
|
|
|
|
} else {
|
|
|
|
parseWord(state);
|
|
|
|
if (!(state.value in JSON_PRIME)) {
|
2017-11-27 09:44:16 +00:00
|
|
|
throw new Error(`${errorPrefix}unknown literal '${state.value}'`);
|
2017-09-16 02:11:08 +00:00
|
|
|
}
|
|
|
|
state.value = JSON_PRIME[state.value];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function parseNumber(state) {
|
2017-11-26 13:04:03 +00:00
|
|
|
RX_NUMBER.lastIndex = state.re.lastIndex;
|
|
|
|
const match = RX_NUMBER.exec(state.text);
|
2017-09-16 02:11:08 +00:00
|
|
|
if (!match) {
|
2017-11-27 09:44:16 +00:00
|
|
|
throw new Error((state.errorPrefix || '') + 'invalid number');
|
2017-09-16 02:11:08 +00:00
|
|
|
}
|
|
|
|
state.value = Number(match[0].trim());
|
|
|
|
state.re.lastIndex += match[0].length;
|
2017-09-15 05:40:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function eatWhitespace(state) {
|
2017-11-26 13:04:03 +00:00
|
|
|
RX_WHITESPACE.lastIndex = state.re.lastIndex;
|
|
|
|
state.re.lastIndex += RX_WHITESPACE.exec(state.text)[0].length;
|
2017-09-15 05:40:04 +00:00
|
|
|
}
|
2017-09-05 00:16:08 +00:00
|
|
|
|
2017-09-15 05:40:04 +00:00
|
|
|
function parseStringToEnd(state) {
|
2017-11-27 09:44:16 +00:00
|
|
|
rewindToEOL(state);
|
|
|
|
const EOL = posOrEnd(state.text, '\n', state.re.lastIndex);
|
|
|
|
const match = state.text.slice(state.re.lastIndex, EOL);
|
2017-11-26 13:04:03 +00:00
|
|
|
state.value = unquote(match.trim());
|
|
|
|
state.re.lastIndex += match.length;
|
2017-09-15 05:40:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function unquote(s) {
|
2017-10-08 18:45:26 +00:00
|
|
|
const q = s[0];
|
2017-11-27 00:19:31 +00:00
|
|
|
if (q === s[s.length - 1] && (q === '"' || q === "'" || q === '`')) {
|
2017-10-08 18:45:26 +00:00
|
|
|
// http://www.json.org/
|
|
|
|
return s.slice(1, -1).replace(
|
|
|
|
new RegExp(`\\\\([${q}\\\\/bfnrt]|u[0-9a-fA-F]{4})`, 'g'),
|
|
|
|
s => {
|
|
|
|
if (s[1] === q) {
|
|
|
|
return q;
|
|
|
|
}
|
|
|
|
return JSON.parse(`"${s}"`);
|
|
|
|
}
|
|
|
|
);
|
2017-09-15 05:40:04 +00:00
|
|
|
}
|
|
|
|
return s;
|
2017-09-05 00:16:08 +00:00
|
|
|
}
|
|
|
|
|
2017-11-27 09:44:16 +00:00
|
|
|
function posOrEnd(haystack, needle, start) {
|
|
|
|
const pos = haystack.indexOf(needle, start);
|
|
|
|
return pos < 0 ? haystack.length : pos;
|
|
|
|
}
|
|
|
|
|
|
|
|
function rewindToEOL({re, text}) {
|
|
|
|
re.lastIndex -= text[re.lastIndex - 1] === '\n' ? 1 : 0;
|
|
|
|
}
|
|
|
|
|
2017-11-09 00:49:10 +00:00
|
|
|
function buildMeta(sourceCode) {
|
2017-09-18 00:16:11 +00:00
|
|
|
sourceCode = sourceCode.replace(/\r\n?/g, '\n');
|
|
|
|
|
2017-09-16 01:24:50 +00:00
|
|
|
const usercssData = {
|
|
|
|
vars: {}
|
|
|
|
};
|
|
|
|
|
2017-08-05 16:49:25 +00:00
|
|
|
const style = {
|
2017-12-06 08:03:43 +00:00
|
|
|
reason: 'install',
|
2017-08-05 16:49:25 +00:00
|
|
|
enabled: true,
|
2017-09-16 01:24:50 +00:00
|
|
|
sourceCode,
|
2017-08-05 16:49:25 +00:00
|
|
|
sections: [],
|
2017-09-16 01:24:50 +00:00
|
|
|
usercssData
|
2017-08-05 16:49:25 +00:00
|
|
|
};
|
|
|
|
|
2017-11-09 07:53:09 +00:00
|
|
|
const {text, index: metaIndex} = getMetaSource(sourceCode);
|
2017-09-15 05:40:04 +00:00
|
|
|
const re = /@(\w+)\s+/mg;
|
2017-09-16 01:24:50 +00:00
|
|
|
const state = {style, re, text, usercssData};
|
2017-08-05 16:49:25 +00:00
|
|
|
|
2017-11-09 07:53:09 +00:00
|
|
|
function doParse() {
|
|
|
|
let match;
|
|
|
|
while ((match = re.exec(text))) {
|
|
|
|
state.key = match[1];
|
|
|
|
if (!(state.key in METAS)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (state.key === 'var' || state.key === 'advanced') {
|
|
|
|
if (state.key === 'advanced') {
|
|
|
|
state.maybeUSO = true;
|
|
|
|
}
|
|
|
|
parseVar(state);
|
|
|
|
} else {
|
|
|
|
parseStringToEnd(state);
|
|
|
|
usercssData[state.key] = state.value;
|
|
|
|
}
|
|
|
|
if (state.key === 'version') {
|
|
|
|
usercssData[state.key] = normalizeVersion(usercssData[state.key]);
|
|
|
|
validVersion(usercssData[state.key]);
|
|
|
|
}
|
|
|
|
if (METAS[state.key]) {
|
|
|
|
style[state.key] = usercssData[state.key];
|
|
|
|
}
|
|
|
|
if (state.key === 'homepageURL' || state.key === 'supportURL') {
|
|
|
|
validUrl(usercssData[state.key]);
|
2017-09-15 05:40:04 +00:00
|
|
|
}
|
2017-09-16 01:24:50 +00:00
|
|
|
}
|
|
|
|
}
|
2017-11-09 07:53:09 +00:00
|
|
|
|
|
|
|
try {
|
|
|
|
doParse();
|
|
|
|
} catch (e) {
|
|
|
|
// grab additional info
|
2017-11-27 09:44:16 +00:00
|
|
|
let pos = state.re.lastIndex;
|
|
|
|
while (pos && /[\s\n]/.test(state.text[--pos])) { /**/ }
|
|
|
|
e.index = metaIndex + pos;
|
2017-11-09 07:53:09 +00:00
|
|
|
throw e;
|
|
|
|
}
|
|
|
|
|
2017-09-16 01:24:50 +00:00
|
|
|
if (state.maybeUSO && !usercssData.preprocessor) {
|
|
|
|
usercssData.preprocessor = 'uso';
|
2017-09-05 00:16:08 +00:00
|
|
|
}
|
2017-09-16 01:24:50 +00:00
|
|
|
if (usercssData.homepageURL) {
|
|
|
|
style.url = usercssData.homepageURL;
|
2017-09-15 05:40:04 +00:00
|
|
|
}
|
2017-08-05 16:49:25 +00:00
|
|
|
|
2017-11-09 00:49:10 +00:00
|
|
|
validate(style);
|
|
|
|
|
2017-08-05 16:49:25 +00:00
|
|
|
return style;
|
|
|
|
}
|
|
|
|
|
2017-10-06 09:09:28 +00:00
|
|
|
function normalizeVersion(version) {
|
|
|
|
// https://docs.npmjs.com/misc/semver#versions
|
|
|
|
if (version[0] === 'v' || version[0] === '=') {
|
|
|
|
return version.slice(1);
|
|
|
|
}
|
|
|
|
return version;
|
|
|
|
}
|
|
|
|
|
2017-08-05 16:49:25 +00:00
|
|
|
function buildCode(style) {
|
2017-09-16 01:24:50 +00:00
|
|
|
const {usercssData: {preprocessor, vars}, sourceCode} = style;
|
2017-08-05 16:49:25 +00:00
|
|
|
let builder;
|
2017-09-16 01:24:50 +00:00
|
|
|
if (preprocessor) {
|
|
|
|
if (!BUILDER[preprocessor]) {
|
2017-11-09 00:56:25 +00:00
|
|
|
return Promise.reject(chrome.i18n.getMessage('styleMetaErrorPreprocessor', preprocessor));
|
2017-09-11 16:08:54 +00:00
|
|
|
}
|
2017-09-16 01:24:50 +00:00
|
|
|
builder = BUILDER[preprocessor];
|
2017-08-05 16:49:25 +00:00
|
|
|
} else {
|
|
|
|
builder = BUILDER.default;
|
|
|
|
}
|
|
|
|
|
2017-09-16 01:24:50 +00:00
|
|
|
const sVars = simpleVars(vars);
|
2017-09-01 06:38:46 +00:00
|
|
|
|
2017-11-30 23:35:56 +00:00
|
|
|
return Promise.resolve(builder.preprocess && builder.preprocess(sourceCode, sVars) || sourceCode)
|
|
|
|
.then(mozStyle => invokeWorker({action: 'parse', code: mozStyle}))
|
|
|
|
.then(sections => (style.sections = sections))
|
|
|
|
.then(() => builder.postprocess && builder.postprocess(style.sections, sVars))
|
|
|
|
.then(() => style);
|
2017-08-05 16:49:25 +00:00
|
|
|
}
|
|
|
|
|
2017-09-01 06:38:46 +00:00
|
|
|
function simpleVars(vars) {
|
|
|
|
// simplify vars by merging `va.default` to `va.value`, so BUILDER don't
|
|
|
|
// need to test each va's default value.
|
|
|
|
return Object.keys(vars).reduce((output, key) => {
|
|
|
|
const va = vars[key];
|
2017-09-15 05:40:04 +00:00
|
|
|
output[key] = Object.assign({}, va, {
|
2017-09-01 06:38:46 +00:00
|
|
|
value: va.value === null || va.value === undefined ?
|
2017-11-04 00:38:17 +00:00
|
|
|
getVarValue(va, 'default') : getVarValue(va, 'value')
|
2017-09-15 05:40:04 +00:00
|
|
|
});
|
2017-09-01 06:38:46 +00:00
|
|
|
return output;
|
|
|
|
}, {});
|
|
|
|
}
|
|
|
|
|
2017-11-04 00:38:17 +00:00
|
|
|
function getVarValue(va, prop) {
|
|
|
|
if (va.type === 'select' || va.type === 'dropdown' || va.type === 'image') {
|
|
|
|
// TODO: handle customized image
|
|
|
|
return va.options.find(o => o.name === va[prop]).value;
|
|
|
|
}
|
|
|
|
return va[prop];
|
|
|
|
}
|
|
|
|
|
2017-08-05 16:49:25 +00:00
|
|
|
function validate(style) {
|
2017-09-16 01:24:50 +00:00
|
|
|
const {usercssData: data} = style;
|
2017-08-05 16:49:25 +00:00
|
|
|
// mandatory fields
|
|
|
|
for (const prop of ['name', 'namespace', 'version']) {
|
2017-09-16 01:24:50 +00:00
|
|
|
if (!data[prop]) {
|
2017-08-05 16:49:25 +00:00
|
|
|
throw new Error(chrome.i18n.getMessage('styleMissingMeta', prop));
|
|
|
|
}
|
|
|
|
}
|
2017-09-09 11:29:35 +00:00
|
|
|
// validate version
|
2017-11-09 07:53:09 +00:00
|
|
|
validVersion(data.version);
|
2017-09-09 11:29:35 +00:00
|
|
|
|
2017-09-11 18:46:37 +00:00
|
|
|
// validate URLs
|
2017-09-16 01:24:50 +00:00
|
|
|
validUrl(data.homepageURL);
|
|
|
|
validUrl(data.supportURL);
|
2017-09-11 18:46:37 +00:00
|
|
|
|
2017-09-09 11:29:35 +00:00
|
|
|
// validate vars
|
2017-09-16 01:24:50 +00:00
|
|
|
for (const key of Object.keys(data.vars)) {
|
|
|
|
validVar(data.vars[key]);
|
2017-09-09 11:29:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-09 07:53:09 +00:00
|
|
|
function validVersion(version) {
|
|
|
|
semverCompare(version, '0.0.0');
|
|
|
|
}
|
|
|
|
|
2017-09-11 18:46:37 +00:00
|
|
|
function validUrl(url) {
|
|
|
|
if (!url) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
url = new URL(url);
|
|
|
|
if (url.protocol !== 'http:' && url.protocol !== 'https:') {
|
|
|
|
throw new Error(`${url.protocol} is not a valid protocol`);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-09 11:29:35 +00:00
|
|
|
function validVar(va, value = 'default') {
|
2017-09-15 05:40:04 +00:00
|
|
|
if (va.type === 'select' || va.type === 'dropdown') {
|
2017-11-04 00:38:17 +00:00
|
|
|
if (va.options.every(o => o.name !== va[value])) {
|
2017-11-01 01:46:03 +00:00
|
|
|
throw new Error(chrome.i18n.getMessage('styleMetaErrorSelectValueMismatch'));
|
2017-09-15 05:40:04 +00:00
|
|
|
}
|
2017-09-09 11:29:35 +00:00
|
|
|
} else if (va.type === 'checkbox' && !/^[01]$/.test(va[value])) {
|
2017-09-11 17:48:10 +00:00
|
|
|
throw new Error(chrome.i18n.getMessage('styleMetaErrorCheckbox'));
|
2017-09-09 11:29:35 +00:00
|
|
|
} else if (va.type === 'color') {
|
|
|
|
va[value] = colorParser.format(colorParser.parse(va[value]));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-01 02:47:15 +00:00
|
|
|
function assignVars(style, oldStyle) {
|
2017-09-16 01:24:50 +00:00
|
|
|
const {usercssData: {vars}} = style;
|
2017-11-01 02:47:15 +00:00
|
|
|
const {usercssData: {vars: oldVars}} = oldStyle;
|
2017-09-09 11:29:35 +00:00
|
|
|
// The type of var might be changed during the update. Set value to null if the value is invalid.
|
2017-09-16 01:24:50 +00:00
|
|
|
for (const key of Object.keys(vars)) {
|
|
|
|
if (oldVars[key] && oldVars[key].value) {
|
|
|
|
vars[key].value = oldVars[key].value;
|
2017-09-09 11:29:35 +00:00
|
|
|
try {
|
2017-09-16 01:24:50 +00:00
|
|
|
validVar(vars[key], 'value');
|
2017-09-12 12:48:03 +00:00
|
|
|
} catch (e) {
|
2017-09-16 01:24:50 +00:00
|
|
|
vars[key].value = null;
|
2017-09-09 11:29:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-08-05 16:49:25 +00:00
|
|
|
}
|
|
|
|
|
2017-11-30 23:35:56 +00:00
|
|
|
function invokeWorker(message) {
|
|
|
|
if (!worker.queue) {
|
|
|
|
worker.instance = new Worker('/vendor-overwrites/csslint/csslint-worker.js');
|
|
|
|
worker.queue = [];
|
|
|
|
worker.instance.onmessage = ({data}) => {
|
|
|
|
worker.queue.shift().resolve(data);
|
|
|
|
if (worker.queue.length) {
|
|
|
|
worker.instance.postMessage(worker.queue[0].message);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
return new Promise(resolve => {
|
|
|
|
worker.queue.push({message, resolve});
|
|
|
|
if (worker.queue.length === 1) {
|
|
|
|
worker.instance.postMessage(message);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-11-01 02:54:14 +00:00
|
|
|
return {buildMeta, buildCode, assignVars};
|
2017-08-05 16:49:25 +00:00
|
|
|
})();
|