From 8b286f529e3a2f06f3ee811e46ff12502d3ae4e6 Mon Sep 17 00:00:00 2001 From: Steve Boyd Date: Fri, 26 Jan 2024 15:03:31 +1300 Subject: [PATCH] NEW Update GitHub labels --- README.md | 38 ++++++++++-- funcs_utils.php | 58 +++++++++++++++++- labels_command.php | 142 +++++++++++++++++++++++++++++++++++++++++++++ run.php | 121 ++++++++++++++++++++++---------------- update_command.php | 30 +--------- 5 files changed, 305 insertions(+), 84 deletions(-) create mode 100644 labels_command.php diff --git a/README.md b/README.md index 557be79..e5b7152 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,8 @@ relevant branch e.g. `5` will be used depending on the command-line `--branch` o It will run all scripts in the `scripts/any` folder and then run all scripts in the applicable `scripts/` folder depending on the command-line `--branch` option that's passed in. +This tool can also be used to standardise GitHub labels on all supported repositories. + ## GitHub Token This tool creates pull-request via the GitHub API. You need to set the `MS_GITHUB_TOKEN` environment variable in order @@ -22,12 +24,17 @@ then you will get a 404 error when attempting to create pull-requests. Delete this token once you have finished. -## Usage +## Installation ```bash git clone git@github.com:silverstripe/module-standardiser.git cd module-standardiser composer install +``` + +## Usage - Standardising module files + +```bash MS_GITHUB_TOKEN= php run.php update ``` @@ -36,7 +43,7 @@ MS_GITHUB_TOKEN= php run.php update MS_GITHUB_TOKEN=abc123 php run.php update --cms-major=5 --branch=next-minor --dry-run --only=silverstripe-config,silverstripe-assets ``` -## Command line options: +### Command line options: | Flag | Description | | ---- | ------------| @@ -51,15 +58,15 @@ MS_GITHUB_TOKEN=abc123 php run.php update --cms-major=5 --branch=next-minor --dr **Note** that using `--branch=github-default` will only run scripts in the `scripts/default-branch` directory. -## GitHub API secondary rate limit +### GitHub API secondary rate limit You may hit a secondary GitHub rate limit because this tool may create too many pull-requests in a short space of time. To help with this the tool will always output the urls of all pull-requests updated and also the repos that were updated so you can add them to the --exclude flag on subsequent re-runs. -## Adding new scripts +### Adding new scripts -### Where to add your script +#### Where to add your script - `scripts/cms-` to run on a specific cms-major - `scripts/cms-any` to run on any cms-major @@ -76,6 +83,27 @@ Do not use functions in `funcs_utils.php` as they are not intended to be used in Scripts will be automatically wrapped in an anoymous function so you do not need to worry about variables crossing over into different scripts. +## Usage - Standardising GitHub labels + +```bash +MS_GITHUB_TOKEN= php run.php labels +``` + +**Example usage:** +```bash +MS_GITHUB_TOKEN=abc123 php run.php labels --dry-run --only=silverstripe-config,silverstripe-assets +``` + +### Command line options: + +| Flag | Description | +| ---- | ------------| +| --cms-major=[version] | The major version of CMS to use (default: 5) | +| --only=[modules] | Only include the specified modules (without account prefix) separated by commas e.g. `silverstripe-config,silverstripe-assets` | +| --exclude=[modules] | Exclude the specified modules (without account prefix) separated by commas e.g. `silverstripe-mfa,silverstripe-totp` | +| --dry-run | Do not update labels in GitHub, output to terminal only | +| --no-delete | Do not delete `_data` and `modules` directories before running | + ## Updating the tool when a new major version of CMS is updated Update the `CURRENT_CMS_MAJOR` constant in `run.php` diff --git a/funcs_utils.php b/funcs_utils.php index a25749d..a5803af 100644 --- a/funcs_utils.php +++ b/funcs_utils.php @@ -220,7 +220,7 @@ function github_token() /** * Makes a request to the github API */ -function github_api($url, $data = []) +function github_api($url, $data = [], $httpMethod = '') { // silverstripe-themes has a kind of weird redirect only for api requests $url = str_replace('/silverstripe-themes/silverstripe-simple', '/silverstripe/silverstripe-simple', $url); @@ -230,6 +230,9 @@ function github_api($url, $data = []) $ch = curl_init($url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_POST, !empty($data)); + if ($httpMethod) { + curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $httpMethod); + } curl_setopt($ch, CURLOPT_HTTPHEADER, [ 'User-Agent: silverstripe-module-standardiser', 'Accept: application/vnd.github+json', @@ -295,6 +298,24 @@ function output_repos_with_prs_created() $io->writeln(''); } +/** + * Outputs a list of repos that that had labels updated + * If there was an error with a run (probably a secondary rate limit), this can be + * copy pasted into the --exclude option for the next run to continue from where you left off + */ +function output_repos_with_labels_updated() +{ + if (running_unit_tests()) { + return; + } + global $REPOS_WITH_LABELS_UPDATED; + $io = io(); + $io->writeln(''); + $io->writeln('Repos with labels created (add to --exclude if you need to re-run):'); + $io->writeln(implode(',', $REPOS_WITH_LABELS_UPDATED)); + $io->writeln(''); +} + /** * Works out which branch in a module to checkout before running scripts on it * @@ -407,3 +428,38 @@ function current_branch_cms_major( } return (string) $cmsMajor; } + +function setup_directories($input) { + if (!$input->getOption('no-delete')) { + remove_dir(DATA_DIR); + remove_dir(MODULES_DIR); + } + if (!file_exists(DATA_DIR)) { + mkdir(DATA_DIR); + } + if (!file_exists(MODULES_DIR)) { + mkdir(MODULES_DIR); + } +} + +function filtered_modules($cmsMajor, $input) { + $modules = supported_modules($cmsMajor); + if ($cmsMajor === CURRENT_CMS_MAJOR) { + // only include extra_repositories() when using the current CMS major version because the extra rexpositories + // don't have multi majors branches supported e.g. gha-generate-matrix + $modules = array_merge($modules, extra_repositories()); + } + if ($input->getOption('only')) { + $only = explode(',', $input->getOption('only')); + $modules = array_filter($modules, function ($module) use ($only) { + return in_array($module['repo'], $only); + }); + } + if ($input->getOption('exclude')) { + $exclude = explode(',', $input->getOption('exclude')); + $modules = array_filter($modules, function ($module) use ($exclude) { + return !in_array($module['repo'], $exclude); + }); + } + return $modules; +} diff --git a/labels_command.php b/labels_command.php new file mode 100644 index 0000000..60d2b77 --- /dev/null +++ b/labels_command.php @@ -0,0 +1,142 @@ + '5319e7', + 'affects/v5' => '0e8a16', + 'complexity/low' => 'c2e0c6', + 'complexity/medium' => 'fef2c0', + 'complexity/high' => 'f9d0c4', + 'Epic' => '3e4b9e', + 'impact/low' => 'fef2c0', + 'impact/medium' => 'f7c6c7', + 'impact/high' => 'eb6420', + 'impact/critical' => 'e11d21', + 'rfc/accepted' => 'dddddd', + 'rfc/draft' => 'dddddd', + 'type/api-break' => '1d76db', + 'type/bug' => 'd93f0b', + 'type/docs' => '02d7e1', + 'type/enhancement' => '0e8a16', + 'type/userhelp' => 'c5def5', + 'type/UX' => '006b75', + 'type/other' => '975515', +]; + +// Rename existing labels 'from' => 'to' +const LABELS_RENAME = [ + 'effort/easy' => 'complexity/low', + 'effort/medium' => 'complexity/medium', + 'effort/hard' => 'complexity/high', + 'change/major' => 'type/api-break', + 'type/api-change' => 'type/api-break', +]; + +$labelsCommand = function(InputInterface $input, OutputInterface $output): int { + // This is the code that is executed when running the 'labels' command + + // variables + global $OUT, $REPOS_WITH_LABELS_UPDATED; + $OUT = $output; + + // validate system is ready + validate_system(); + + // setup directories + setup_directories($input); + + // CMS major version to use + $cmsMajor = $input->getOption('cms-major') ?: CURRENT_CMS_MAJOR; + + // modules + $modules = filtered_modules($cmsMajor, $input); + + // update labels + foreach ($modules as $module) { + $account = $module['account']; + $repo = $module['repo']; + + // Fetch labels + $labels = github_api("https://api.github.com/repos/$account/$repo/labels"); + + foreach ($labels as $key => $label) { + // $label is an array, for example: + // 'id' => 427423377 + // 'node_id' => MDU6TGFiZWw0Mjc0MjMzNzc=" + // 'url' => "https://api.github.com/repos/silverstripe/silverstripe-config/labels/affects/v4" + // 'name' => "affects/v4" + // 'color' => "5319e7" + // 'default' => false + // 'description' => NULL + $url = $label['url']; + $name = $label['name']; // e.g. 'affects/v4' + + // Rename label + // https://docs.github.com/en/rest/issues/labels#update-a-label + if (array_key_exists($name, LABELS_RENAME)) { + $newName = LABELS_RENAME[$name]; + info("Updating label $name to $newName in $repo"); + if ($input->getOption('dry-run')) { + info('Not updating label on GitHub because --dry-run option is set'); + } else { + github_api($url, ['new_name' => $newName], 'PATCH'); + } + $name = $newName; + $url = substr($url, 0, strlen($url) - strlen($name)) . $newName; + $labels[$key]['name'] = $newName; + $labels[$key]['url'] = $url; + } + + // Delete label + // https://docs.github.com/en/rest/issues/labels#delete-a-label + if (!array_key_exists($name, LABELS_COLORS)) { + info("Deleting label $name from $repo"); + if ($input->getOption('dry-run')) { + info('Not deleting label on GitHub because --dry-run option is set'); + } else { + github_api($url, [], 'DELETE'); + } + continue; + } + + // Update label color + // https://docs.github.com/en/rest/issues/labels#update-a-label + if (LABELS_COLORS[$name] !== $label['color']) { + info("Updating label color $name on $repo"); + if ($input->getOption('dry-run')) { + info('Not updating label color on GitHub because --dry-run option is set'); + } else { + github_api($url, ['color' => LABELS_COLORS[$name]], 'PATCH'); + } + } + } + + // Create missing labels + // https://docs.github.com/en/rest/issues/labels#create-a-label + foreach (LABELS_COLORS as $name => $color) { + foreach ($labels as $label) { + if ($name === $label['name']) { + continue 2; + } + } + info("Creating label $name on $repo"); + if ($input->getOption('dry-run')) { + info('Not creating label on GitHub because --dry-run option is set'); + } else { + $url = "https://api.github.com/repos/$account/$repo/labels"; + github_api($url, ['name' => $name,'color' => $color]); + } + } + $REPOS_WITH_LABELS_UPDATED[] = $repo; + } + output_repos_with_labels_updated(); + return Command::SUCCESS; +}; diff --git a/run.php b/run.php index 34a028a..2291889 100644 --- a/run.php +++ b/run.php @@ -4,6 +4,7 @@ include 'funcs_scripts.php'; include 'funcs_utils.php'; include 'update_command.php'; +include 'labels_command.php'; use Symfony\Component\Console\Application; use Symfony\Component\Console\Input\InputOption; @@ -25,61 +26,81 @@ $REPOS_WITH_PRS_CREATED = []; $OUT = null; +// options +$optionCmsMajor = [ + 'cms-major', + null, + InputOption::VALUE_REQUIRED, + 'The CMS major version to use (default: '. CURRENT_CMS_MAJOR .')' +]; +$optionBranch = [ + 'branch', + null, + InputOption::VALUE_REQUIRED, + 'The branch type to use - ' . implode('|', BRANCH_OPTIONS) . ' (default: ' . DEFAULT_BRANCH . ')' +]; +$optionOnly = [ + 'only', + null, + InputOption::VALUE_REQUIRED, + 'Only include the specified modules (without account prefix) separated by commas ' + . 'e.g. silverstripe-config,silverstripe-assets' +]; +$optionExclude = [ + 'exclude', + null, + InputOption::VALUE_REQUIRED, + 'Exclude the specified modules (without account prefix) separated by commas ' + . 'e.g. silverstripe-mfa,silverstripe-totp' +]; +$optionDryRun = [ + 'dry-run', + null, + InputOption::VALUE_NONE, + 'Do not push to github or create pull-requests' +]; +$optionAccount = [ + 'account', + null, + InputOption::VALUE_REQUIRED, + 'GitHub account to use for creating pull-requests (default: ' . DEFAULT_ACCOUNT . ')' +]; +$optionNoDelete = [ + 'no-delete', + null, + InputOption::VALUE_NONE, + 'Do not delete _data and _modules directories before running' +]; +$optionUpdatePrs = [ + 'update-prs', + null, + InputOption::VALUE_NONE, + 'Checkout out and update the latest open PR instead of creating a new one' +]; + $app = new Application(); + $app->register('update') ->setDescription('The main script of module-standardiser') - ->addOption( - 'cms-major', - null, - InputOption::VALUE_REQUIRED, - 'The CMS major version to use (default: '. CURRENT_CMS_MAJOR .')' - ) - ->addOption( - 'branch', - null, - InputOption::VALUE_REQUIRED, - 'The branch type to use - ' . implode('|', BRANCH_OPTIONS) . ' (default: ' . DEFAULT_BRANCH . ')' - ) - ->addOption( - 'only', - null, - InputOption::VALUE_REQUIRED, - 'Only include the specified modules (without account prefix) separated by commas ' - . 'e.g. silverstripe-config,silverstripe-assets' - ) - ->addOption( - 'exclude', - null, - InputOption::VALUE_REQUIRED, - 'Exclude the specified modules (without account prefix) separated by commas ' - . 'e.g. silverstripe-mfa,silverstripe-totp' - ) - ->addOption( - 'dry-run', - null, - InputOption::VALUE_NONE, - 'Do not push to github or create pull-requests' - ) - ->addOption( - 'account', - null, - InputOption::VALUE_REQUIRED, - 'GitHub account to use for creating pull-requests (default: ' . DEFAULT_ACCOUNT . ')' - ) - ->addOption( - 'no-delete', - null, - InputOption::VALUE_NONE, - 'Do not delete _data and _modules directories before running' - ) - ->addOption( - 'update-prs', - null, - InputOption::VALUE_NONE, - 'Checkout out and update the latest open PR instead of creating a new one' - ) + ->addOption(...$optionCmsMajor) + ->addOption(...$optionBranch) + ->addOption(...$optionOnly) + ->addOption(...$optionExclude) + ->addOption(...$optionDryRun) + ->addOption(...$optionAccount) + ->addOption(...$optionNoDelete) + ->addOption(...$optionUpdatePrs) ->setCode($updateCommand); +$app->register('labels') + ->setDescription('Script to set labels on all repos') + ->addOption(...$optionCmsMajor) + ->addOption(...$optionOnly) + ->addOption(...$optionExclude) + ->addOption(...$optionDryRun) + ->addOption(...$optionNoDelete) + ->setCode($labelsCommand); + try { $app->run(); } catch (Error|Exception $e) { diff --git a/update_command.php b/update_command.php index 2736c97..81ed009 100644 --- a/update_command.php +++ b/update_command.php @@ -15,16 +15,7 @@ validate_system(); // setup directories - if (!$input->getOption('no-delete')) { - remove_dir(DATA_DIR); - remove_dir(MODULES_DIR); - } - if (!file_exists(DATA_DIR)) { - mkdir(DATA_DIR); - } - if (!file_exists(MODULES_DIR)) { - mkdir(MODULES_DIR); - } + setup_directories($input); // branch $branchOption = $input->getOption('branch') ?: DEFAULT_BRANCH; @@ -36,24 +27,7 @@ $cmsMajor = $input->getOption('cms-major') ?: CURRENT_CMS_MAJOR; // modules - $modules = supported_modules($cmsMajor); - if ($cmsMajor === CURRENT_CMS_MAJOR) { - // only include extra_repositories() when using the current CMS major version because the extra rexpositories - // don't have multi majors branches supported e.g. gha-generate-matrix - $modules = array_merge($modules, extra_repositories()); - } - if ($input->getOption('only')) { - $only = explode(',', $input->getOption('only')); - $modules = array_filter($modules, function ($module) use ($only) { - return in_array($module['repo'], $only); - }); - } - if ($input->getOption('exclude')) { - $exclude = explode(',', $input->getOption('exclude')); - $modules = array_filter($modules, function ($module) use ($exclude) { - return !in_array($module['repo'], $exclude); - }); - } + $modules = filtered_modules($cmsMajor, $input); // script files if ($branchOption === 'github-default') {