1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366 |
- import { execSync, spawn } from 'child_process';
- import fs, { existsSync } from 'fs';
- import open from 'open';
- import inquirer from 'inquirer';
- import { RewritingStream } from 'parse5-html-rewriting-stream';
- import { table } from 'table';
- import progressbar from 'string-progressbar';
- import semver from 'semver';
- const remoteSSH = 'wpcom-sandbox';
- const sandboxPublicThemesFolder = '/home/wpcom/public_html/wp-content/themes/pub';
- const sandboxRootFolder = '/home/wpcom/public_html/';
- const glotPressScript = '~/public_html/bin/i18n/create-glotpress-project-for-theme.php';
- const isWin = process.platform === 'win32';
- const coreThemes = ['twentyten', 'twentyeleven', 'twentytwelve', 'twentythirteen', 'twentyfourteen', 'twentyfifteen', 'twentysixteen', 'twentyseventeen', 'twentynineteen', 'twentytwenty', 'twentytwentyone', 'twentytwentytwo', 'twentytwentythree', 'twentytwentyfour'];
- const commands = {
- "push-button-deploy": {
- helpText: `
- * Gets the last deployed hash from the sandbox
- * Version bump all themes that have changes since the last deployment
- * Commit the version bump change to github
- * Clean the sandbox and ensure it is up - to - date
- * Push all changed files(including removal of deleted files) since the last deployment
- * Update the 'last deployed' hash on the sandbox
- * Create a GitHub pull request based on the changes since the last deployment. The description including the commit messages since the last deployment.
- * Open the GitHub pull request in your browser
- * Create a tag in the github repository at this point of change which includes the GitHub pull request link in the description
- * After pausing to allow testing, merge and deploy the changes
- `,
- run: pushButtonDeploy
- },
- "clean-sandbox": {
- helpText: 'Perform a hard reset, checkout trunk, and pull on the public themes working copy on your sandbox.',
- run: cleanSandbox
- },
- "push-to-sandbox": {
- helpText: 'Uses rsync to copy all modified files for all themes from the local machine to your sandbox.',
- run: pushToSandbox
- },
- "push-changes-to-sandbox": {
- helpText: 'Uses rsync to copy all modified files for any modified themes from the local machine to your sandbox.',
- run: pushChangesToSandbox
- },
- "push-theme-to-sandbox": {
- helpText: 'Uses rsync to copy all modified files for the specified theme from the local machine to your sandbox.',
- additionalArgs: '<theme-slug>',
- run: (args) => pushThemeToSandbox(args?.[1])
- },
- "version-bump-themes": {
- helpText: 'Bump the version of any theme that has had changes since the last deployment. This includes bumping the version of any parent themes and updating the changelog for the theme.',
- run: versionBumpThemes
- },
- "land-diff": {
- helpText: 'Run gh pr merge to merge in the specified pull request id.',
- additionalArgs: '<gh pr id>',
- run: (args) => landChanges(args?.[1])
- },
- "deploy-preview": {
- helpText: 'Display a list of the changes to be deployed.',
- run: deployPreview
- },
- "deploy-theme": {
- helpText: 'This runs "deploy pub <theme>" on the provided list of themes.',
- additionalArgs: '<array of theme slugs>',
- run: (args) => deployThemes(args?.[1].split(/[ ,]+/))
- },
- "add-strict-typing": {
- helpText: 'Adds strict typing to any changed themes.',
- run: () => addStrictTypesToChangedThemes()
- },
- "build-com-zip": {
- helpText: 'Build the production zip file for the specified theme.',
- additionalArgs: '<theme-slug>',
- run: (args) => buildComZips(args?.[1].split(/[ ,]+/))
- },
- "checkout-core-theme": {
- helpText: 'Use SVN to checkout the given core themes from the wpcom SVN repository.',
- additionalArgs: '<theme-slug>',
- run: (args) => checkoutCoreTheme(args?.[1])
- },
- "pull-all-themes": {
- helpText: 'Use rsync to copy all public theme files from your sandbox to your local machine.',
- run: pullAllThemes
- },
- "pull-core-themes": {
- helpText: 'Use rsync to copy all public CORE theme files from your sandbox to your local machine. CORE themes are any of the Twenty<whatever> themes.',
- run: pullCoreThemes
- },
- "push-core-themes": {
- helpText: 'Use rsync to copy all public CORE theme files from your local machine to your sandbox. CORE themes are any of the Twenty<whatever> themes.',
- run: pushCoreThemes
- },
- "sync-core-theme": {
- helpText: 'Given a theme slug and SVN revision, sync the theme from the specified revision to the latest. This requires the core theme to be currently checked out from the wpcom svn repository.',
- additionalArgs: '<theme-slug> <since-revision>',
- run: (args) => syncCoreTheme(args?.[1], args?.[2])
- },
- "deploy-sync-core-theme": {
- helpText: 'Given a theme slug and SVN revision, sync the theme from the specified revision to the latest. This command contains additional prompts and error checking not provided by sync-core-theme.',
- additionalArgs: '<theme-slug> <since-revision>',
- run: (args) => deploySyncCoreTheme(args?.[1], args?.[2])
- },
- "create-core-github-pr": {
- helpText: 'Given a theme slug and specific revision create a GitHub pull request from the resources currently on the sandbox.',
- additionalArgs: '<theme-slug> <since-revision>',
- run: (args) => createCoreGithubPR(args?.[1], args?.[2])
- },
- "update-theme-changelog": {
- helpText: 'Use the commit log to build a list of recent changes and add them as a new changelog entry. If add-changes is true, the updated readme.txt will be staged.',
- additionalArgs: '<theme-slug> <add-changes, true/false>',
- run: (args) => updateThemeChangelog(args?.[1], false, args?.[2])
- },
- "rebuild-theme-changelog": {
- helpText: 'Rebuild the entire change long from the given starting hash.',
- additionalArgs: '<theme-slug> <since>',
- run: (args) => rebuildThemeChangelog(args?.[1], args?.[2])
- },
- "escape-patterns": {
- helpText: 'Escapes block patterns for pattern files that have changes (staged or unstaged).',
- run: () => escapePatterns()
- },
- "help": {
- helpText: 'Displays the main help message.',
- run: (args) => showHelp(args?.[1])
- },
- };
- (async function start() {
- let args = process.argv.slice(2);
- let command = args?.[0];
- if (!commands[command]) {
- return showHelp();
- }
- commands[command].run(args);
- })();
- function showHelp(command = '') {
- if (!command || !commands.hasOwnProperty(command)) {
- console.log(`
- node theme-utils.mjs [command]
- Available commands:
- _(theme-utils.mjs help [command] for more details)_
- \t${Object.keys(commands).join('\n\t')}
- `);
- return;
- }
- const { helpText, additionalArgs } = commands[command];
- console.log(`
- ${command} ${additionalArgs ?? ''}
- ${helpText}
- `);
- }
- /*
- Create list of changes from git logs
- Optionally pass in a deployed hash or default to calling getLastDeployedHash()
- Optionally pass in boolean bulletPoints to add bullet points to each commit log
- */
- async function getCommitLogs(hash, bulletPoints, theme) {
- if (!hash) {
- hash = await getLastDeployedHash();
- }
- let format = 'format:%s';
- let themeDir = '';
- if (bulletPoints) {
- format = 'format:"* %s"';
- }
- if (theme) {
- themeDir = `-- ./${theme}`;
- }
- let logs = await executeCommand(`git log --reverse --pretty=${format} ${hash}..HEAD ${themeDir}`);
- // Remove any double quotes from commit messages
- logs = logs.replace(/"/g, '');
- return logs;
- }
- /*
- Determine what changes would be deployed
- */
- async function deployPreview() {
- console.clear();
- console.log('To ensure accuracy clean your sandbox before previewing. (It is not automatically done).');
- let message = await checkForDeployability();
- if (message) {
- console.log(`\n${message}\n\n`);
- }
- let hash = await getLastDeployedHash();
- console.log(`Last deployed hash: ${hash}`);
- let changedThemes = await getChangedThemes(hash);
- console.log(`The following themes have changes:\n${changedThemes}`);
- let logs = await getCommitLogs(hash);
- console.log(`\n\nCommit log of changes to be deployed:\n\n${logs}\n\n`);
- }
- async function addStrictTypesToChangedThemes() {
- let hash = await getLastDeployedHash();
- const changedThemes = await getChangedThemes(hash);
- for (let theme of changedThemes) {
- await executeCommand(`
- bash -c "./add-strict-types.sh ${theme}"
- `, true)
- .catch((err) => {
- console.log(`Error adding strict types to ${theme}: ${err}`);
- });
- }
- }
- /*
- Execute the first phase of a deployment.
- * Gets the last deployed hash from the sandbox
- * Version bump all themes that have changes since the last deployment
- * Commit the version bump change to github
- * Clean the sandbox and ensure it is up-to-date
- * Push all changed files (including removal of deleted files) since the last deployment
- * Update the 'last deployed' hash on the sandbox
- * Create a GitHub pull request based on the changes since the last deployment. The description including the commit messages since the last deployment.
- * Open the GitHub pull request in your browser
- * Create a tag in the github repository at this point of change which includes the GitHub pull request link in the description
- */
- async function pushButtonDeploy() {
- console.clear();
- let prompt = await inquirer.prompt([{
- type: 'confirm',
- message: 'You are about to deploy /trunk. Are you ready to continue?',
- name: "continue",
- default: false
- }]);
- if (!prompt.continue) {
- return;
- }
- let message = await checkForDeployability();
- if (message) {
- return console.log(`\n\n${message}\n\n`);
- }
- try {
- await cleanSandbox();
- const hash = await getLastDeployedHash();
- await addStrictTypesToChangedThemes();
- const thingsWentBump = await versionBumpThemes();
- if (thingsWentBump) {
- prompt = await inquirer.prompt([{
- type: 'confirm',
- message: 'Are you good with the version bump and changelog updates? Make any manual adjustments now if necessary.',
- name: "continue",
- default: false
- }]);
- if (!prompt.continue) {
- console.log(`Aborted Automated Deploy Process at version bump changes.`);
- return;
- }
- }
- const changedThemes = await getChangedThemes(hash);
- if (!changedThemes.length) {
- console.log(`\n\nEverything is upto date. Nothing new to deploy.\n\n`);
- return;
- }
- await pushChangesToSandbox();
- await createGlotPressProject(changedThemes);
- //push changes (from version bump)
- if (thingsWentBump) {
- prompt = await inquirer.prompt([{
- type: 'confirm',
- message: 'Are you ready to push this version bump change to the source repository (GitHub.com)?',
- name: "continue",
- default: false
- }]);
- if (!prompt.continue) {
- console.log(`Aborted Automated Deploy Process at version bump push change.`);
- return;
- }
- await executeCommand(`
- git commit -m "Version Bump";
- git push --set-upstream origin trunk
- `, true);
- }
- await updateLastDeployedHash();
- let commitMessage = await buildGithubCommitMessageSince(hash);
- // Make sure the themes/pub repo in sandbox is ready to create a PR to the A8C GitHub Host
- prompt = await inquirer.prompt([{
- type: 'confirm',
- message: 'Before you can create the GitHub PR, login in A8C GitHub Enterprise Server from the themes/pub repo in your sandbox with the command "gh auth login" and using your SSH key.\nAre you logged in?',
- name: "continue",
- default: false
- }]);
- if (!prompt.continue) {
- console.log(`Aborted Automated Deploy Process at require to login in into A8C GitHub Enterprise Server in sandbox.`);
- return;
- }
- let prUrl = await createGithubPR(commitMessage);
- let prId = prUrl.split('pull/')[1];
- await tagDeployment({
- hash: hash,
- prId: prId
- });
- console.log(`\n\nPhase One Complete\n\nYour sandbox has been updated and the PR is available for review.\nPlease give your sandbox a smoke test to determine that the changes work as expected.\nThe following themes have had changes: \n\n${changedThemes.join(' ')}\n\n\n`);
- prompt = await inquirer.prompt([{
- type: 'confirm',
- message: 'Are you ready to land these changes?',
- name: "continue",
- default: false
- }]);
- if (!prompt.continue) {
- console.log(`Aborted Automated Deploy Process Landing Phase\n\nYou will have to land these changes manually. The ID of the PR to land: ${prId}`);
- return;
- }
- await landChanges(prId);
- try {
- await deployThemes(changedThemes);
- }
- catch (err) {
- prompt = await inquirer.prompt([{
- type: 'confirm',
- message: `There was an error deploying themes. ${err} Do you wish to continue to the next step?`,
- name: "continue",
- default: false
- }]);
- if (!prompt.continue) {
- console.log(`Aborted Automated Deploy during deploy phase.`);
- return;
- }
- }
- await buildComZips(changedThemes);
- console.log(`The following themes have changed:\n${changedThemes.join('\n')}`)
- console.log('\n\nAll Done!!\n\n');
- }
- catch (err) {
- console.log("ERROR with deploy script: ", err);
- }
- }
- async function deploySyncCoreTheme(theme, sinceRevision) {
- if (!theme) {
- console.log('Must supply theme to sync and revision to start from');
- return;
- }
- await cleanSandbox();
- await checkoutCoreTheme(theme);
- await syncCoreTheme(theme, sinceRevision);
- let prompt = await inquirer.prompt([{
- type: 'confirm',
- message: `Changes have been synced locally. Please resolve any conflicts now. Are you ready to continue?`,
- name: "continue",
- default: false
- }]);
- if (!prompt.continue) {
- console.log(`Aborted Core Sync Deploy.`);
- return;
- }
- await pushThemeToSandbox(theme);
- let prId = await createCoreGithubPR(theme, sinceRevision);
- prompt = await inquirer.prompt([{
- type: 'confirm',
- message: 'Are you ready to land these changes?',
- name: "continue",
- default: false
- }]);
- if (!prompt.continue) {
- console.log(`Aborted Automated Deploy Sync Process Landing Phase\n\nYou will have to land these changes manually. The ID of the PR to land: ${prId}`);
- return;
- }
- await landChanges(prId);
- await deployThemes([theme]);
- await buildComZips([theme]);
- return;
- }
- async function buildCoreGithubCommitMessageSince(theme, sinceRevision){
- let latestRevision = await executeCommand(`svn info -r HEAD https://develop.svn.wordpress.org/trunk | grep Revision | egrep -o "[0-9]+"`);
- let logs = await executeCommand(`svn log https://core.svn.wordpress.org/trunk/wp-content/themes/${theme} -r${sinceRevision}:HEAD`)
- // Remove any double or back quotes from commit messages
- logs = logs.replace(/"/g, '');
- logs = logs.replace(/`/g, "'");
- logs = logs.replace(/\$/g, "%24");
- return `${theme}: Merge latest core changes up to [wp${latestRevision}]
- Summary:
- ${logs}
- Test Plan: Activate ${theme} and ensure nothing is broken
- Reviewers:
- #themes_team
- Subscribers:
- `;
- }
- /**
- * Deploys the localy copy of a core theme to wpcom.
- */
- async function createCoreGithubPR(theme, sinceRevision) {
- let commitMessage = await buildCoreGithubCommitMessageSince(theme, sinceRevision);
- let prUrl = await createGithubPR(commitMessage);
- let prId = prUrl.split('pull/')[1];
- return prId;
- }
- /*
- Build .zip file for .com
- */
- async function buildComZip(themeSlug) {
- console.log(`Building ${themeSlug} .zip`);
- let styleCss = fs.readFileSync(`${themeSlug}/style.css`, 'utf8');
- // Gets the theme version (Version:) and minimum WP version (Tested up to:) from the theme's style.css
- let themeVersion = getThemeMetadata(styleCss, 'Version');
- let wpVersionCompat = getThemeMetadata(styleCss, 'Requires at least');
- if (themeVersion && wpVersionCompat) {
- await executeOnSandbox(`php ${sandboxRootFolder}bin/themes/theme-downloads/build-theme-zip.php --stylesheet=pub/${themeSlug} --themeversion=${themeVersion} --wpversioncompat=${wpVersionCompat};`, true);
- }
- else {
- console.log('Unable to build theme .zip.');
- if (!themeVersion) {
- console.log('Could not find theme version (Version:) in the theme style.css.');
- }
- if (!wpVersionCompat) {
- console.log('Could not find WP compat version (Tested up to:) in the theme style.css.');
- }
- console.log('Please build the .zip file for the theme manually.', themeSlug);
- open('https://mc.a8c.com/themes/downloads/');
- }
- }
- async function buildComZips(themes) {
- console.log(`Building dotcom .zip files`);
- const progress = startProgress(themes.length);
- const failedThemes = []
- for (let theme of themes) {
- try {
- await buildComZip(theme);
- } catch (err) {
- console.log(`There was an error building dotcom zip for ${theme}. ${err}`);
- failedThemes.push(theme);
- }
- progress.increment();
- }
- if (failedThemes.length) {
- const tableConfig = {
- columnDefault: {
- width: 40,
- },
- header: {
- alignment: 'center',
- content: `There was an error building dotcom zip for following themes.`,
- }
- };
- console.log(table(failedThemes.map(t => [t]), tableConfig));
- }
- }
- /*
- Check to ensure that:
- * The current branch is /trunk
- * That trunk is up-to-date with origin/trunk
- */
- async function checkForDeployability() {
- let branchName = await executeCommand('git symbolic-ref --short HEAD');
- if (branchName !== 'trunk') {
- return 'Only the /trunk branch can be deployed.';
- }
- await executeCommand('git remote update', true);
- let localMasterHash = await executeCommand('git rev-parse trunk')
- let remoteMasterHash = await executeCommand('git rev-parse origin/trunk')
- if (localMasterHash !== remoteMasterHash) {
- return 'Local /trunk is out-of-date. Pull changes to continue.'
- }
- return null;
- }
- /*
- Land the changes from the given PR ID. This is the "production merge".
- */
- async function landChanges(prId) {
- return executeCommand(`ssh -tt -A ${remoteSSH} "cd ${sandboxPublicThemesFolder} && gh pr merge ${prId} --squash; exit;"`, true);
- }
- async function getChangedThemes(hash) {
- console.log('Determining all changed themes');
- let themes = await getActionableThemes();
- let changedThemes = [];
- for (let theme of themes) {
- let hasChanges = await checkThemeForChanges(theme, hash);
- if (hasChanges) {
- changedThemes.push(theme);
- }
- }
- return changedThemes;
- }
- /*
- Deploy a collection of themes.
- Part of the push-button-deploy process.
- Can also be triggered to deploy a single theme with the command:
- node ./theme-utils.mjs deploy-theme THEMENAME
- */
- async function deployThemes(themes) {
- let response;
- const failedThemes = [];
- const progress = startProgress(themes.length);
- for (let theme of themes) {
- console.log(`Deploying ${theme}`);
- let deploySuccess = false;
- let attempt = 0;
- while (!deploySuccess && attempt <= 2) {
- attempt++;
- console.log(`\nattempt #${attempt}\n\n`);
- try {
- response = await executeOnSandbox(`deploy pub ${theme};exit;`, true, true);
- deploySuccess = response.includes('successfully deployed to');
- } catch (error) {
- deploySuccess = false
- }
- if (!deploySuccess) {
- console.log('Deploy was not successful. Trying again in 10 seconds...');
- await new Promise(resolve => setTimeout(resolve, 10000));
- }
- else {
- console.log("Deploy successful.");
- }
- }
- if (!deploySuccess) {
- console.log(`${theme} was not sucessfully deployed and should be deployed manually.`);
- failedThemes.push(theme);
- }
- progress.increment();
- }
- if (failedThemes.length) {
- const tableConfig = {
- columnDefault: {
- width: 40,
- },
- header: {
- alignment: 'center',
- content: `Following themes are not deployed.`,
- }
- };
- console.log(table(failedThemes.map(t => [t]), tableConfig));
- }
- }
- /*
- Provide the hash of the last managed deployment.
- This hash is used to determine all the changes that have happened between that point and the current point.
- */
- async function getLastDeployedHash() {
- let result = await executeOnSandbox(`
- cat ${sandboxPublicThemesFolder}/.pub-git-hash
- `);
- return result;
- }
- /*
- Update the 'last deployed hash' on the server with the current hash.
- */
- async function updateLastDeployedHash() {
- let hash = await executeCommand(`git rev-parse HEAD`);
- await executeOnSandbox(`
- echo '${hash}' > ${sandboxPublicThemesFolder}/.pub-git-hash
- `);
- }
- /*
- Version bump (increment version patch) any theme project that has had changes since the last deployment.
- If a theme's version has already been changed since that last deployment then do not version bump it.
- If any theme projects have had a version bump also version bump the parent project.
- If a theme has changes also update its changelog.
- Commit the change.
- */
- async function versionBumpThemes() {
- console.log("Version Bumping");
- const themes = await getActionableThemes();
- const latestTag = execSync('git describe --tags --abbrev=0').toString().trim();
- // Get the hash for the latest tag.
- const hash = execSync(`git rev-parse ${latestTag}`).toString().trim();
- let versionBumpCount = 0;
- let changesWereMade = false;
- for (let theme of themes) {
- const hasChanges = await checkThemeForChanges(theme, hash);
- if (!hasChanges) {
- continue;
- }
- versionBumpCount++;
- const hasVersionBump = await checkThemeForVersionBump(theme, hash);
- if (hasVersionBump) {
- continue;
- }
- await versionBumpTheme(theme, true);
- await updateThemeChangelog(theme, true);
- changesWereMade = true;
- }
- //version bump the root project if there were changes to any of the themes
- const rootHasVersionBump = await checkProjectForVersionBump(hash);
- if (versionBumpCount === 0) {
- console.log('No changes detected; Root package version bump not required');
- } else if (!rootHasVersionBump) {
- await executeCommand(`npm version patch --no-git-tag-version && git add package.json package-lock.json`);
- changesWereMade = true;
- }
- return changesWereMade;
- }
- export function getThemeMetadata(styleCss, attribute, trimWPCom = true) {
- if (!styleCss || !attribute) {
- return null;
- }
- switch (attribute) {
- case 'Version':
- const version = styleCss
- .match(/(?<=Version:\s*).*?(?=\s*\r?\n|\rg)/gs)[0]
- .trim();
- return trimWPCom ? version.replace('-wpcom', '') : version;
- case 'Requires at least':
- return styleCss
- .match(/(?<=Requires at least:\s*).*?(?=\s*\r?\n|\rg)/gs);
- }
- }
- /* Rebuild theme changelog from a given starting hash */
- async function rebuildThemeChangelog(theme, since) {
- console.log(`Rebuilding ${theme} changelog since ${since || 'forever'}`);
- if (since) {
- since = `${since}..HEAD`;
- } else {
- since = 'HEAD';
- }
- let hashes = await executeCommand(`git rev-list ${since} -- ./${theme}`);
- hashes = hashes.split('\n');
- let logs = '== Changelog ==\n';
- for (let hash of hashes) {
- let log = await executeCommand(`git log -n 1 --pretty=format:"* %s" ${hash}`);
- if (log.includes('Version Bump')) {
- let previousStyleString = await executeCommand(`git show ${hash}:${theme}/style.css 2>/dev/null`);
- let version = getThemeMetadata(previousStyleString, 'Version');
- logs += `\n= ${version} =\n`;
- } else {
- // Remove any double quotes from commit messages
- log = log.replace(/"/g, '');
- logs += log + '\n';
- }
- }
- // Get theme readme.txt
- let readmeFilePath = `${theme}/readme.txt`;
- // Update readme.txt
- fs.readFile(readmeFilePath, 'utf8', function (err, data) {
- let changelogSection = '== Changelog ==';
- let regex = new RegExp('^.*' + changelogSection + '.*$', 'gm');
- let formattedChangelog = data.replace(regex, logs);
- fs.writeFile(readmeFilePath, formattedChangelog, 'utf8', function (err) {
- if (err) return console.log(err);
- });
- });
- }
- /*
- Update theme changelog using current commit logs.
- Used by versionBumpThemes to update each theme changelog.
- */
- async function updateThemeChangelog(theme, addChanges) {
- console.log(`Updating ${theme} changelog`);
- // Get theme version
- let styleCss = fs.readFileSync(`${theme}/style.css`, 'utf8');
- let version = getThemeMetadata(styleCss, 'Version');
- // Get list of updates with bullet points
- const lastestTagHash = execSync('git describe --tags --abbrev=0').toString().trim();
- let logs = await getCommitLogs(lastestTagHash, true, theme);
- // Get theme readme.txt
- let readmeFilePath = `${theme}/readme.txt`;
- if (!existsSync(readmeFilePath)) {
- console.log(`Unable to find a readme.txt for ${theme}.`);
- return;
- }
- // Build changelog entry
- let newChangelogEntry = `== Changelog ==
- = ${version} =
- ${logs}`;
- // Update readme.txt
- fs.readFile(readmeFilePath, 'utf8', function (err, data) {
- let changelogSection = '== Changelog ==';
- let regex = new RegExp('^.*' + changelogSection + '.*$', 'gm');
- let formattedChangelog = data.replace(regex, newChangelogEntry);
- fs.writeFile(readmeFilePath, formattedChangelog, 'utf8', function (err) {
- if (err) return console.log(err);
- });
- });
- // Stage readme.txt
- if (addChanges) {
- await executeCommand(`git add ${readmeFilePath}`);
- }
- }
- /*
- Version Bump a Theme.
- Used by versionBumpThemes to do the work of version bumping.
- First increment the patch version in style.css
- Then update any of these files with the new version: [package.json, style.scss, style-child-theme.scss]
- */
- async function versionBumpTheme(theme, addChanges) {
- console.log(`${theme} needs a version bump`);
- await executeCommand(`perl -pi -e 's/Version: ((\\d+\\.)*)(\\d+)(.*)$/"Version: ".$1.($3+1).$4/ge' ${theme}/style.css`, true);
- await executeCommand(`git add ${theme}/style.css`);
- let styleCss = fs.readFileSync(`${theme}/style.css`, 'utf8');
- let currentVersion = getThemeMetadata(styleCss, 'Version', false);
- let filesToUpdate = await executeCommand(`find ${theme} -not \\( -path "*/node_modules/*" -prune \\) -and \\( -name package.json -or -name style.scss -or -name style-rtl.css -or -name style-child-theme.scss \\) -maxdepth 3`);
- filesToUpdate = filesToUpdate.split('\n').filter(item => item != '');
- for (let file of filesToUpdate) {
- const isPackageJson = file === `${theme}/package.json`;
- if (isPackageJson) {
- // update theme/package.json and package-lock.json
- await executeCommand(`npm version ${currentVersion.replace('-wpcom', '')} --workspace=${theme}`);
- } else {
- await executeCommand(`perl -pi -e 's/Version: (.*)$/"Version: '${currentVersion}'"/ge' ${file}`);
- }
- if (addChanges) {
- await executeCommand(`git add ${file}`);
- }
- }
- }
- /*
- Determine if a theme has had a version bump since a given hash.
- Used by versionBumpThemes
- Compares the value of 'version' in style.css between the hash and current value
- */
- async function checkThemeForVersionBump(theme, hash) {
- return executeCommand(`
- git show ${hash}:${theme}/style.css 2>/dev/null
- `)
- .catch((error) => {
- //This is a new theme, no need to bump versions so we'll just say we've already done it
- return true;
- })
- .then((previousStyleString) => {
- if (previousStyleString === true) {
- return previousStyleString;
- }
- let previousVersion = getThemeMetadata(previousStyleString, 'Version');
- let styleCss = fs.readFileSync(`${theme}/style.css`, 'utf8');
- let currentVersion = getThemeMetadata(styleCss, 'Version');
- return previousVersion != currentVersion;
- });
- }
- /*
- Determine if the project has had a version bump since a given hash.
- Used by versionBumpThemes
- Compares the value of 'version' in package.json between the hash and current value
- */
- async function checkProjectForVersionBump(hash) {
- let previousPackageString = await executeCommand(`
- git show ${hash}:./package.json 2>/dev/null
- `);
- let previousPackage = JSON.parse(previousPackageString);
- let currentPackage = JSON.parse(fs.readFileSync(`./package.json`))
- return previousPackage.version != currentPackage.version;
- }
- /*
- Determine if a theme has had changes since a given hash.
- Used by versionBumpThemes
- */
- async function checkThemeForChanges(theme, hash) {
- let comittedChanges = await executeCommand(`git diff --name-only ${hash} HEAD -- ${theme}`);
- return comittedChanges != '';
- }
- /*
- Provide a list of 'actionable' themes (those themes that have style.css files)
- */
- async function getActionableThemes() {
- let result = await executeCommand(`for d in */; do
- if test -f "./$d/style.css"; then
- echo $d;
- fi
- done`);
- return result
- .split('\n')
- .map(item => item.replace('/', ''));
- }
- /*
- Clean the theme sandbox.
- checkout origin/trunk and ensure it's up-to-date.
- Remove any other changes.
- */
- async function cleanSandbox() {
- console.log('Cleaning the Themes Sandbox');
- await executeOnSandbox(`
- cd ${sandboxPublicThemesFolder};
- git reset --hard HEAD;
- git clean -fd;
- git checkout trunk;
- git pull;
- echo;
- git status
- `, true);
- console.log('All done cleaning.');
- }
- /*
- Push exactly what is here (all files) up to the sandbox (with the exclusion of files noted in .sandbox-ignore)
- */
- async function pushToSandbox() {
- console.log("Pushing All Themes to Sandbox.");
- let allThemes = await getActionableThemes();
- console.log(`Syncing ${allThemes.length} themes`);
- for (let theme of allThemes) {
- await pushThemeToSandbox(theme);
- }
- }
- async function pushThemeToSandbox(theme) {
- console.log(`Syncing ${theme}`);
- return executeCommand(`
- rsync -avR --no-p --no-times --delete -m --exclude-from='.sandbox-ignore' ./${theme}/ wpcom-sandbox:${sandboxPublicThemesFolder}/
- `, true);
- }
- /*
- Push only (and every) change since the point-of-diversion from /trunk
- Remove files from the sandbox that have been removed since the last deployed hash
- */
- async function pushChangesToSandbox() {
- console.log("Pushing Changed Themes to Sandbox.");
- let hash = await getLastDeployedHash();
- let changedThemes = await getChangedThemes(hash);
- console.log(`Syncing ${changedThemes.length} themes`);
- for (let theme of changedThemes) {
- await pushThemeToSandbox(theme);
- }
- }
- async function checkoutCoreTheme(theme) {
- if (!theme) {
- console.log('Must supply theme to sync and revision to start from');
- return;
- }
- return executeCommand(`
- rm -rf ./${theme}
- svn checkout https://wpcom-themes.svn.automattic.com/${theme} ./${theme}
- `);
- }
- async function pullAllThemes() {
- console.log("Pulling ALL themes from sandbox.");
- let allThemes = await getActionableThemes();
- for (let theme of allThemes) {
- try {
- await executeCommand(`
- rsync -avr --no-p --no-times --delete -m --exclude-from='.sandbox-ignore' wpcom-sandbox:${sandboxPublicThemesFolder}/${theme}/ ./${theme}/
- `, true);
- }
- catch (err) {
- console.log('Error pulling:', err);
- }
- }
- }
- async function pullCoreThemes() {
- console.log("Pulling CORE themes from sandbox.");
- for (let theme of coreThemes) {
- await executeCommand(`
- rsync -avr --no-p --no-times --delete -m --exclude-from='.sandbox-ignore' wpcom-sandbox:${sandboxPublicThemesFolder}/${theme}/ ./${theme}/
- `, true);
- }
- }
- async function pushCoreThemes() {
- console.log("Pushing CORE themes to sandbox.");
- for (let theme of coreThemes) {
- await executeCommand(`
- rsync -avr --no-p --no-times --delete -m --exclude-from='.sandbox-ignore' ./${theme}/ wpcom-sandbox:${sandboxPublicThemesFolder}/${theme}/
- `, true);
- }
- }
- async function syncCoreTheme(theme, sinceRevision) {
- if (!theme) {
- console.log('Must supply theme to sync and revision to start from');
- return;
- }
- if (!sinceRevision) {
- sinceRevision = await executeCommand(`cat ./${theme}/.pub-svn-revision`);
- }
- let latestRevision = await executeCommand(`svn info -r HEAD https://develop.svn.wordpress.org/trunk | grep Revision | egrep -o "[0-9]+"`);
- console.log(`syncing core theme ${theme} from ${sinceRevision} to ${latestRevision}`);
- try {
- await executeCommand(`
- svn merge --accept postpone http://develop.svn.wordpress.org/trunk/src/wp-content/themes/${theme} ./${theme} -r${sinceRevision}:HEAD
- echo '${latestRevision}' > ./${theme}/.pub-svn-revision
- `, true);
- }
- catch (err) {
- console.log('Error merging:', err);
- }
- return latestRevision;
- }
- /*
- Build the GitHub commit message.
- This message contains the logs from all of the commits since the given hash.
- Used by create*GithubPR
- */
- async function buildGithubCommitMessageSince(hash) {
- let projectVersion = await executeCommand(`node -p "require('./package.json').version"`);
- let logs = await getCommitLogs(hash);
- return `Deploy Themes ${projectVersion} to wpcom
- Summary:
- ${logs}
- Test Plan: Execute Smoke Test
- `;
- }
- /*
- Create a GitHub pull request with the given message based on the contents currently in the sandbox.
- Open the GitHub pull request in your browser.
- Provide the URL of the GitHub pull request.
- */
- async function createGithubPR(commitMessage) {
- console.log('Creating GitHub Pull Request');
- let result = await executeOnSandbox(`
- cd ${sandboxPublicThemesFolder};
- git branch -D deploy
- git checkout -b deploy
- git add --all
- git commit -m "${commitMessage}"
- git push origin deploy
- gh pr create --fill --head deploy
- `, true);
- let githubUrl = getGithubUrlFromResponse(result);
- console.log('PR Created at: ', githubUrl);
- if (githubUrl) {
- open(githubUrl);
- }
- return githubUrl;
- }
- /*
- Utility to pull the GitHub URL from the PR creation command.
- Used by createGithubPR
- */
- function getGithubUrlFromResponse(response) {
- return response
- ?.split('\n')
- ?.filter(item => item.includes('http')) // filter out lines that include 'http'
- ?.pop(); // get the last URL
- }
- /*
- Create a git tag at the current hash.
- In the description include the commit logs since the given hash.
- Include the (cleansed) GitHub PR link.
- */
- async function tagDeployment(options = {}) {
- console.log('tagging deployment');
- let hash = options.hash || await getLastDeployedHash();
- let workInTheOpenGithubUrl = '';
- if (options.prId) {
- workInTheOpenGithubUrl = `GitHub: ${options.prId}`;
- }
- let projectVersion = await executeCommand(`node -p "require('./package.json').version"`);
- let logs = await getCommitLogs(hash);
- let tag = `v${projectVersion}`;
- let message = `Deploy Themes ${tag} to wpcom. \n\n${logs} \n\n${workInTheOpenGithubUrl}`;
- await executeCommand(`
- git tag -a ${tag} -m "${message}"
- git push origin ${tag}
- `, true);
- }
- async function createGlotPressProject(changedThemes) {
- for (const themeSlug of changedThemes) {
- let styleCss = fs.readFileSync(`${themeSlug}/style.css`, 'utf8');
- let themeVersion = getThemeMetadata(styleCss, 'Version');
-
- // Check if theme version is correctly formatted. Temporarily coerce the value to a parseable semver version if it's not.
- if (!semver.valid(themeVersion)) {
- console.log(`\n[WARN] Invalid version in style.css for ${themeSlug}: ${themeVersion}\n`);
- themeVersion = semver.coerce(themeVersion);
- }
- if (semver.gte(themeVersion, '1.0.0')) {
- console.log(`\nCreating GlotPress project for ${themeSlug}\n`);
- await executeOnSandbox(`
- cd ${sandboxPublicThemesFolder};
- php ${glotPressScript} ${sandboxPublicThemesFolder}/${themeSlug};
- `, true);
- } else {
- console.log(`\nSkipped GlotPress project creation for ${themeSlug}.\nVersion bump to a major release to create GlotPress project.\n`);
- }
- }
- }
- /*
- Execute a command on the sandbox.
- Expects the following to be configured in your ~/.ssh/config file:
- Host wpcom-sandbox
- User wpdev
- HostName SANDBOXURL.wordpress.com
- ForwardAgent yes
- */
- function executeOnSandbox(command, logResponse, enablePsudoterminal) {
- if (enablePsudoterminal) {
- return executeCommand(`ssh -tt -A ${remoteSSH} << EOF
- ${command}
- EOF`, logResponse);
- }
- return executeCommand(`ssh -TA ${remoteSSH} << EOF
- ${command}
- EOF`, logResponse);
- }
- /*
- Execute a command locally.
- */
- export async function executeCommand(command, logResponse) {
- const timeout = 2*60*1000; // 2 min
- return new Promise((resolove, reject) => {
- let child;
- let response = '';
- let errResponse = '';
- if (isWin) {
- child = spawn('cmd.exe', ['/s', '/c', '"' + command + '"'], {
- windowsVerbatimArguments: true,
- stdio: [process.stdin, 'pipe', 'pipe'],
- detached: true,
- })
- } else {
- /*
- * Determines the shell to execute the command.
- * - Prioritizes using the user's default shell unless it's fish, a known problematic shell.
- * - In this case, falls back to `/bin/bash` for better syntax compatibility.
- */
- let shellPath = process.env.SHELL || '/bin/bash';
- if (shellPath.includes('fish') && fs.existsSync('/bin/bash')) {
- shellPath = '/bin/bash';
- }
- child = spawn(shellPath, ['-c', command], {
- stdio: [process.stdin, 'pipe', 'pipe'],
- detached: true,
- });
- }
- var timer = setTimeout(() => {
- try {
- process.kill(-child.pid, 'SIGKILL');
- } catch (e) {
- console.log('Cannot kill process');
- }
- }, timeout);
- child.stdout.on('data', (data) => {
- response += data;
- if (logResponse) {
- console.log(data.toString());
- }
- });
- child.stderr.on('data', (data) => {
- errResponse += data;
- if (logResponse) {
- console.log(data.toString());
- }
- });
- child.on('exit', (code) => {
- clearTimeout(timer)
- if (code !== 0) {
- reject(errResponse.trim());
- }
- resolove(response.trim());
- });
- });
- }
- async function escapePatterns() {
- // get staged files
- const staged = (await executeCommand(`git diff --cached --name-only`)).split('\n');
- // get unstaged, untracked files
- const unstaged = (await executeCommand(`git ls-files -m -o --exclude-standard`)).split('\n');
-
- // avoid duplicates and filter pattern files
- const patterns = [...new Set([...staged, ...unstaged])].filter(file => file.match(/.*\/patterns\/.*.php/g));
- // arrange patterns by theme
- const themePatterns = patterns.reduce((acc, file) => {
- const themeSlug = file.split('/').shift();
- return {
- ...acc,
- [themeSlug]: (acc[themeSlug] || []).concat(file)
- };
- }, {});
- Object.entries(themePatterns).forEach(async ([themeSlug, patterns]) => {
- console.log(getPatternTable(themeSlug, patterns));
-
- const prompt = await inquirer.prompt([{
- type: 'input',
- message: 'Verify the theme slug',
- name: "themeSlug",
- default: themeSlug
- }]);
- if (!prompt.themeSlug) {
- return;
- }
- patterns.forEach(file => {
- const rewriter = getReWriter(prompt.themeSlug);
- const tmpFile = `${file}-tmp`;
- const readStream = fs.createReadStream( file, { encoding: 'UTF-8' } );
- const writeStream = fs.createWriteStream( tmpFile, { encoding: 'UTF-8' } );
- writeStream.on('finish', () => {
- fs.renameSync(tmpFile, file);
- });
- readStream.pipe(rewriter).pipe(writeStream);
- });
- });
- // Helper functions
- function getReWriter(themeSlug) {
- const rewriter = new RewritingStream();
- rewriter.on('text', (_, raw) => {
- rewriter.emitRaw(escapeText(raw, themeSlug));
- });
- rewriter.on('startTag', (startTag, rawHtml) => {
- if (startTag.tagName === 'img') {
- const attrs = startTag.attrs.filter(attr => ['src', 'alt'].includes(attr.name));
- attrs.forEach(attr => {
- if (attr.name === 'src') {
- attr.value = escapeImagePath(attr.value);
- } else if (attr.name === 'alt') {
- attr.value = escapeText(attr.value, themeSlug, true);
- }
- });
- }
- rewriter.emitStartTag(startTag);
- });
- rewriter.on('comment', (comment, rawHtml) => {
- if (comment.text.startsWith('?php')) {
- rewriter.emitRaw(rawHtml);
- return;
- }
- // escape the strings in block config (blocks that are represented as comments)
- // ex: <!-- wp:search {label: "Search"} /-->
- const block = escapeBlockAttrs(comment.text, themeSlug)
- rewriter.emitComment({...comment, text: block})
- });
- return rewriter;
- }
- function escapeBlockAttrs(block, themeSlug) {
- // Set isAttr to true if it is an attribute in the result HTML
- // If set to true, it generates esc_attr_, otherwise it generates esc_html_
- const allowedAttrs=[
- { name: 'label' },
- { name: 'placeholder', isAttr: true },
- { name: 'buttonText' },
- { name: 'content' }
- ];
- const start = block.indexOf('{');
- const end = block.lastIndexOf('}');
-
- const configPrefix = block.slice(0, start);
- const config = block.slice(start, end+1);
- const configSuffix = block.slice(end+1);
- try {
- const configJson = JSON.parse(config);
- allowedAttrs.forEach((attr) => {
- if (!configJson[attr.name]) return;
- configJson[attr.name] = escapeText(configJson[attr.name], themeSlug, attr.isAttr)
- })
- return configPrefix + JSON.stringify(configJson) + configSuffix;
- } catch (error) {
- // do nothing
- return block
- }
- }
- function escapeText(text, themeSlug, isAttr = false) {
- const trimmedText = text && text.trim();
- if (!themeSlug || !trimmedText || trimmedText.startsWith(`<?php`)) return text;
- const escFunction = isAttr ? 'esc_attr__' : 'esc_html__';
- const spaceChar = text.startsWith(' ') ? ' ' : ''
- const resultText = text.replace('\'', '\\\'').trim();
- return `${spaceChar}<?php echo ${escFunction}( '${resultText}', '${themeSlug}' ); ?>`;
- }
- function escapeImagePath(src) {
- if (!src || src.trim().startsWith('<?php')) return src;
-
- const assetsDir = 'assets';
- const parts = src.split('/');
- const resultSrc = parts.slice(parts.indexOf(assetsDir)).join('/');
- return `<?php echo esc_url( get_template_directory_uri() ); ?>/${resultSrc}`;
- }
- function getPatternTable(themeSlug, patterns) {
- const tableConfig = {
- columnDefault: {
- width: 40,
- },
- header: {
- alignment: 'center',
- content: `THEME: ${themeSlug}\n\n Following patterns may get updated with escaped strings and/or image paths`,
- }
- };
- return table(patterns.map(p => [p]), tableConfig);
- }
- }
- function startProgress(length) {
- let current = 0;
- function render() {
- const [progress, percentage] = progressbar.filledBar(length, current);
- console.log('\nProgress:', [progress, Math.round(percentage*100)/100], `${current}/${length}\n`);
- }
- render();
- return {
- increment() {
- current++;
- render();
- }
- };
- }
|