2017-07-31 08:14:19 +00:00
|
|
|
|
/**
|
|
|
|
|
* Copyright 2017 Google Inc. 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.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
const Message = require('../Message');
|
|
|
|
|
|
2018-08-09 01:20:20 +00:00
|
|
|
|
module.exports.ensureReleasedAPILinks = function(sources, version) {
|
|
|
|
|
// Release version is everything that doesn't include "-".
|
2018-09-05 19:33:04 +00:00
|
|
|
|
const apiLinkRegex = /https:\/\/github.com\/GoogleChrome\/puppeteer\/blob\/v[^/]*\/docs\/api.md/ig;
|
2018-08-09 01:20:20 +00:00
|
|
|
|
const lastReleasedAPI = `https://github.com/GoogleChrome/puppeteer/blob/v${version.split('-')[0]}/docs/api.md`;
|
|
|
|
|
|
|
|
|
|
const messages = [];
|
|
|
|
|
for (const source of sources) {
|
|
|
|
|
const text = source.text();
|
|
|
|
|
const newText = text.replace(apiLinkRegex, lastReleasedAPI);
|
|
|
|
|
if (source.setText(newText))
|
|
|
|
|
messages.push(Message.warning(`GEN: updated ${source.projectPath()}`));
|
|
|
|
|
}
|
|
|
|
|
return messages;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
module.exports.runCommands = function(sources, version) {
|
2018-04-26 00:11:45 +00:00
|
|
|
|
// Release version is everything that doesn't include "-".
|
|
|
|
|
const isReleaseVersion = !version.includes('-');
|
2018-04-26 01:18:08 +00:00
|
|
|
|
|
2017-08-21 23:39:04 +00:00
|
|
|
|
const messages = [];
|
2018-04-26 00:11:45 +00:00
|
|
|
|
const commands = [];
|
2017-08-21 23:39:04 +00:00
|
|
|
|
for (const source of sources) {
|
2017-07-31 08:14:19 +00:00
|
|
|
|
const text = source.text();
|
2018-04-26 00:11:45 +00:00
|
|
|
|
const commandStartRegex = /<!--\s*gen:([a-z-]+)\s*-->/ig;
|
2017-07-31 08:14:19 +00:00
|
|
|
|
const commandEndRegex = /<!--\s*gen:stop\s*-->/ig;
|
|
|
|
|
let start;
|
|
|
|
|
|
|
|
|
|
while (start = commandStartRegex.exec(text)) { // eslint-disable-line no-cond-assign
|
|
|
|
|
commandEndRegex.lastIndex = commandStartRegex.lastIndex;
|
|
|
|
|
const end = commandEndRegex.exec(text);
|
|
|
|
|
if (!end) {
|
2018-02-09 03:59:46 +00:00
|
|
|
|
messages.push(Message.error(`Failed to find 'gen:stop' for command ${start[0]}`));
|
2018-04-26 00:11:45 +00:00
|
|
|
|
return messages;
|
2017-07-31 08:14:19 +00:00
|
|
|
|
}
|
2017-07-31 10:23:29 +00:00
|
|
|
|
const name = start[1];
|
|
|
|
|
const from = commandStartRegex.lastIndex;
|
|
|
|
|
const to = end.index;
|
2018-04-26 00:11:45 +00:00
|
|
|
|
const originalText = text.substring(from, to);
|
|
|
|
|
commands.push({name, from, to, originalText, source});
|
2017-07-31 08:14:19 +00:00
|
|
|
|
commandStartRegex.lastIndex = commandEndRegex.lastIndex;
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-07-31 10:23:29 +00:00
|
|
|
|
|
2017-08-21 23:39:04 +00:00
|
|
|
|
const changedSources = new Set();
|
2017-07-31 10:23:29 +00:00
|
|
|
|
// Iterate commands in reverse order so that edits don't conflict.
|
|
|
|
|
commands.sort((a, b) => b.from - a.from);
|
2017-08-21 23:39:04 +00:00
|
|
|
|
for (const command of commands) {
|
2018-04-26 00:11:45 +00:00
|
|
|
|
let newText = null;
|
2017-08-01 04:14:50 +00:00
|
|
|
|
if (command.name === 'version')
|
2018-04-26 00:11:45 +00:00
|
|
|
|
newText = isReleaseVersion ? 'v' + version : 'Tip-Of-Tree';
|
|
|
|
|
else if (command.name === 'empty-if-release')
|
|
|
|
|
newText = isReleaseVersion ? '' : command.originalText;
|
2018-05-31 21:21:43 +00:00
|
|
|
|
else if (command.name === 'toc')
|
|
|
|
|
newText = generateTableOfContents(command.source.text().substring(command.to));
|
2018-04-26 00:11:45 +00:00
|
|
|
|
if (newText === null)
|
|
|
|
|
messages.push(Message.error(`Unknown command 'gen:${command.name}'`));
|
|
|
|
|
else if (applyCommand(command, newText))
|
2017-07-31 08:14:19 +00:00
|
|
|
|
changedSources.add(command.source);
|
|
|
|
|
}
|
2017-08-22 21:18:07 +00:00
|
|
|
|
for (const source of changedSources)
|
2017-07-31 08:14:19 +00:00
|
|
|
|
messages.push(Message.warning(`GEN: updated ${source.projectPath()}`));
|
|
|
|
|
return messages;
|
|
|
|
|
};
|
|
|
|
|
|
2017-07-31 10:23:29 +00:00
|
|
|
|
/**
|
2018-04-26 00:11:45 +00:00
|
|
|
|
* @param {{name: string, from: number, to: number, source: !Source}} command
|
|
|
|
|
* @param {string} editText
|
|
|
|
|
* @return {boolean}
|
2017-07-31 10:23:29 +00:00
|
|
|
|
*/
|
2018-04-26 00:11:45 +00:00
|
|
|
|
function applyCommand(command, editText) {
|
|
|
|
|
const text = command.source.text();
|
|
|
|
|
const newText = text.substring(0, command.from) + editText + text.substring(command.to);
|
|
|
|
|
return command.source.setText(newText);
|
2017-07-31 10:23:29 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-05-31 21:21:43 +00:00
|
|
|
|
function generateTableOfContents(mdText) {
|
|
|
|
|
const ids = new Set();
|
|
|
|
|
const titles = mdText.split('\n').map(line => line.trim()).filter(line => line.startsWith('#'));
|
|
|
|
|
const tocEntries = [];
|
|
|
|
|
for (const title of titles) {
|
|
|
|
|
const [, nesting, name] = title.match(/^(#+)\s+(.*)$/);
|
|
|
|
|
const id = name.trim().toLowerCase().replace(/\s/g, '-').replace(/[^-0-9a-zа-яё]/ig, '');
|
|
|
|
|
let dedupId = id;
|
|
|
|
|
let counter = 0;
|
|
|
|
|
while (ids.has(dedupId))
|
|
|
|
|
dedupId = id + '-' + (++counter);
|
|
|
|
|
ids.add(dedupId);
|
|
|
|
|
tocEntries.push({
|
|
|
|
|
level: nesting.length,
|
|
|
|
|
name,
|
|
|
|
|
id: dedupId
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const minLevel = Math.min(...tocEntries.map(entry => entry.level));
|
|
|
|
|
tocEntries.forEach(entry => entry.level -= minLevel);
|
|
|
|
|
return '\n' + tocEntries.map(entry => {
|
|
|
|
|
const prefix = entry.level % 2 === 0 ? '-' : '*';
|
|
|
|
|
const padding = ' '.repeat(entry.level);
|
|
|
|
|
return `${padding}${prefix} [${entry.name}](#${entry.id})`;
|
|
|
|
|
}).join('\n') + '\n';
|
|
|
|
|
}
|