2016-11-16 18:12:36 +00:00
|
|
|
import { resolvePathToFile } from '../utils/filePath';
|
|
|
|
|
2016-11-30 16:51:54 +00:00
|
|
|
const MEDIA_FILE_REGEX_NO_QUOTES = /^(?!(http:\/\/|https:\/\/)).*\.(png|jpg|jpeg|gif|bmp|mp3|wav|aiff|ogg|json|txt|csv|svg|obj|mp4|ogg|webm|mov|otf|ttf)$/i;
|
2016-11-16 18:12:36 +00:00
|
|
|
const STRING_REGEX = /(['"])((\\\1|.)*?)\1/gm;
|
|
|
|
const EXTERNAL_LINK_REGEX = /^(http:\/\/|https:\/\/)/;
|
|
|
|
const NOT_EXTERNAL_LINK_REGEX = /^(?!(http:\/\/|https:\/\/))/;
|
|
|
|
|
|
|
|
function resolveLinksInString(content, files, projectId) {
|
|
|
|
let newContent = content;
|
|
|
|
let fileStrings = content.match(STRING_REGEX);
|
|
|
|
const fileStringRegex = /^('|")(?!(http:\/\/|https:\/\/)).*('|")$/i;
|
|
|
|
fileStrings = fileStrings || [];
|
|
|
|
fileStrings.forEach(fileString => {
|
2016-11-17 16:15:35 +00:00
|
|
|
// if string does not begin with http or https
|
2016-11-16 18:12:36 +00:00
|
|
|
if (fileString.match(fileStringRegex)) {
|
|
|
|
const filePath = fileString.substr(1, fileString.length - 2);
|
|
|
|
const resolvedFile = resolvePathToFile(filePath, files);
|
|
|
|
if (resolvedFile) {
|
|
|
|
if (resolvedFile.url) {
|
2016-11-17 16:15:35 +00:00
|
|
|
newContent = newContent.replace(filePath, resolvedFile.url);
|
2016-11-16 18:12:36 +00:00
|
|
|
} else if (resolvedFile.name.match(/(.+\.json$|.+\.txt$|.+\.csv$)/i)) {
|
|
|
|
let resolvedFilePath = filePath;
|
|
|
|
if (resolvedFilePath.startsWith('.')) {
|
|
|
|
resolvedFilePath = resolvedFilePath.substr(1);
|
|
|
|
}
|
|
|
|
while (resolvedFilePath.startsWith('/')) {
|
|
|
|
resolvedFilePath = resolvedFilePath.substr(1);
|
|
|
|
}
|
|
|
|
newContent = newContent.replace(filePath, `/api/projects/${projectId}/${resolvedFilePath}`);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
return newContent;
|
|
|
|
}
|
|
|
|
|
|
|
|
export function injectMediaUrls(filesToInject, allFiles, projectId) {
|
2017-01-11 20:50:36 +00:00
|
|
|
filesToInject.forEach(file => {
|
2016-11-16 18:12:36 +00:00
|
|
|
file.content = resolveLinksInString(file.content, allFiles, projectId);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
export function resolvePathsForElementsWithAttribute(attr, sketchDoc, files) {
|
|
|
|
const elements = sketchDoc.querySelectorAll(`[${attr}]`);
|
|
|
|
const elementsArray = Array.prototype.slice.call(elements);
|
|
|
|
elementsArray.forEach(element => {
|
|
|
|
if (element.getAttribute(attr).match(MEDIA_FILE_REGEX_NO_QUOTES)) {
|
|
|
|
const resolvedFile = resolvePathToFile(element.getAttribute(attr), files);
|
|
|
|
if (resolvedFile) {
|
|
|
|
element.setAttribute(attr, resolvedFile.url);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
export function resolveScripts(sketchDoc, files, projectId) {
|
2016-11-17 16:15:35 +00:00
|
|
|
const scriptsInHTML = sketchDoc.getElementsByTagName('script');
|
|
|
|
const scriptsInHTMLArray = Array.prototype.slice.call(scriptsInHTML);
|
|
|
|
scriptsInHTMLArray.forEach(script => {
|
|
|
|
if (script.getAttribute('src') && script.getAttribute('src').match(NOT_EXTERNAL_LINK_REGEX) !== null) {
|
|
|
|
const resolvedFile = resolvePathToFile(script.getAttribute('src'), files);
|
|
|
|
if (resolvedFile) {
|
|
|
|
if (resolvedFile.url) {
|
|
|
|
script.setAttribute('src', resolvedFile.url);
|
|
|
|
} else {
|
|
|
|
script.removeAttribute('src');
|
|
|
|
script.innerHTML = resolvedFile.content;
|
2016-11-16 18:12:36 +00:00
|
|
|
}
|
|
|
|
}
|
2016-11-17 16:15:35 +00:00
|
|
|
} else if (!(script.getAttribute('src') && script.getAttribute('src').match(EXTERNAL_LINK_REGEX) !== null)) {
|
|
|
|
script.innerHTML = resolveLinksInString(script.innerHTML, files, projectId);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2016-11-16 18:12:36 +00:00
|
|
|
|
|
|
|
export function resolveStyles(sketchDoc, files, projectId) {
|
2016-11-17 16:15:35 +00:00
|
|
|
const inlineCSSInHTML = sketchDoc.getElementsByTagName('style');
|
|
|
|
const inlineCSSInHTMLArray = Array.prototype.slice.call(inlineCSSInHTML);
|
|
|
|
inlineCSSInHTMLArray.forEach(style => {
|
|
|
|
style.innerHTML = resolveLinksInString(style.innerHTML, files, projectId);
|
|
|
|
});
|
2016-11-16 18:12:36 +00:00
|
|
|
|
2016-11-17 16:15:35 +00:00
|
|
|
const cssLinksInHTML = sketchDoc.querySelectorAll('link[rel="stylesheet"]');
|
|
|
|
const cssLinksInHTMLArray = Array.prototype.slice.call(cssLinksInHTML);
|
|
|
|
cssLinksInHTMLArray.forEach(css => {
|
|
|
|
if (css.getAttribute('href') && css.getAttribute('href').match(NOT_EXTERNAL_LINK_REGEX) !== null) {
|
|
|
|
const resolvedFile = resolvePathToFile(css.getAttribute('href'), files);
|
|
|
|
if (resolvedFile) {
|
|
|
|
if (resolvedFile.url) {
|
|
|
|
css.setAttribute('href', resolvedFile.url);
|
|
|
|
} else {
|
|
|
|
const style = sketchDoc.createElement('style');
|
|
|
|
style.innerHTML = `\n${resolvedFile.content}`;
|
|
|
|
sketchDoc.getElementsByTagName('head')[0].appendChild(style);
|
|
|
|
css.parentNode.removeChild(css);
|
2016-11-16 18:12:36 +00:00
|
|
|
}
|
|
|
|
}
|
2016-11-17 16:15:35 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|