mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
127 lines
3.8 KiB
TypeScript
127 lines
3.8 KiB
TypeScript
/*!
|
|
* @license
|
|
* Copyright © 2005-2025 Hyland Software, Inc. and its affiliates. All rights reserved.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
import * as path from 'path';
|
|
import * as fs from 'fs';
|
|
import { selectAll } from 'unist-util-select';
|
|
import { MDAST } from 'mdast';
|
|
|
|
const suffixesNotToCheck = /\.ts/;
|
|
|
|
export function processDocs(mdCache, aggData) {
|
|
const pathnames = Object.keys(mdCache);
|
|
|
|
const linkSet = new LinkSet(pathnames);
|
|
|
|
const imageFolderPath = path.resolve(aggData['rootFolder'], 'docs', 'docassets', 'images');
|
|
|
|
const imageSet = new LinkSet(getImagePaths(imageFolderPath));
|
|
|
|
pathnames.forEach(pathname => {
|
|
const tree = mdCache[pathname].mdOutTree;
|
|
|
|
fixUrls(tree, pathname, linkSet, 'link');
|
|
fixUrls(tree, pathname, imageSet, 'image');
|
|
});
|
|
}
|
|
|
|
function fixUrls(tree: MDAST.Root, docFilePath: string, linkSet: LinkSet, selector: string) {
|
|
const linksInDoc = selectAll(selector, tree);
|
|
|
|
const errors: string[] = [];
|
|
|
|
linksInDoc.forEach(linkElem => {
|
|
let origFullUrlPath = path.resolve(path.dirname(docFilePath), linkElem.url);
|
|
|
|
const hashPos = origFullUrlPath.indexOf('#');
|
|
let anchor = '';
|
|
|
|
if (hashPos !== -1) {
|
|
anchor = origFullUrlPath.substring(hashPos);
|
|
origFullUrlPath = origFullUrlPath.substring(0, hashPos);
|
|
}
|
|
|
|
if (!linkElem.url.match(/http:|https:|ftp:|mailto:/) &&
|
|
!path.extname(origFullUrlPath).match(suffixesNotToCheck) &&
|
|
(origFullUrlPath !== '') &&
|
|
!fs.existsSync(origFullUrlPath)
|
|
) {
|
|
const newUrl = linkSet.update(origFullUrlPath) || origFullUrlPath;
|
|
linkElem.url = path.relative(path.dirname(docFilePath), newUrl).replace(/\\/g, '/') + anchor;
|
|
errors.push(`Bad link: ${origFullUrlPath}\nReplacing with ${linkElem.url}`);
|
|
} /*else {
|
|
console.log(`Link OK: ${origFullUrlPath}`);
|
|
}
|
|
*/
|
|
});
|
|
|
|
if (errors.length > 0) {
|
|
showMessages(`File: ${docFilePath}:`, errors);
|
|
}
|
|
}
|
|
|
|
function showMessages(groupName: string, messages: string[]) {
|
|
console.group(groupName);
|
|
|
|
messages.forEach(message => {
|
|
console.log(message);
|
|
});
|
|
|
|
console.groupEnd();
|
|
}
|
|
|
|
function getImagePaths(imageFolderPath: string): string[] {
|
|
return fs.readdirSync(imageFolderPath)
|
|
.map(imageFileName => path.resolve(imageFolderPath, imageFileName));
|
|
}
|
|
|
|
class LinkSet {
|
|
links: Map<string, string[]>;
|
|
|
|
constructor(urls: string[]) {
|
|
this.links = new Map();
|
|
|
|
urls.forEach(url => {
|
|
const fileName = path.basename(url);
|
|
|
|
if (this.links.has(fileName)) {
|
|
const item = this.links.get(fileName);
|
|
item.push(url);
|
|
} else {
|
|
this.links.set(fileName, [url]);
|
|
}
|
|
});
|
|
}
|
|
|
|
update(oldUrl: string): string {
|
|
const oldFileName = path.basename(oldUrl);
|
|
|
|
if (!this.links.has(oldFileName)) {
|
|
return '';
|
|
} else {
|
|
const candidates = this.links.get(oldFileName);
|
|
|
|
if (candidates.length === 1) {
|
|
return candidates[0];
|
|
} else {
|
|
console.log(`Multiple candidates for ${oldUrl}`);
|
|
return '';
|
|
}
|
|
}
|
|
}
|
|
}
|