| Andrew Geissler | 3c88e2d | 2021-01-28 15:18:11 -0600 | [diff] [blame] | 1 | #!/bin/bash -e | 
 | 2 | # | 
 | 3 | # Purpose: | 
 | 4 | #  This script is responsible for determining the owner of a gerrit | 
 | 5 | #  commit, verifying they are within an approved gerrit group, and | 
 | 6 | #  then updating gerrit with that verification info. | 
 | 7 | # | 
 | 8 | # Note: It is assumed this script is run as a part of a jenkins job triggered | 
 | 9 | #       by the gerrit plugin. Therefore it assumes certain env variables | 
 | 10 | #       provided by that plugin are avialable (i.e. GERRIT_PROJECT, ...) | 
 | 11 | # | 
 | 12 | # Required Inputs: | 
 | 13 | #  SSH_KEY:  Path to private ssh key used to post messages to gerrit | 
 | 14 |  | 
| Andrew Geissler | 3705241 | 2022-05-20 15:28:26 -0400 | [diff] [blame] | 15 | GERRIT_COMMAND="curl -s --anyauth -n https://gerrit.openbmc.org" | 
| Patrick Williams | a4d19dc | 2021-03-15 14:51:06 -0500 | [diff] [blame] | 16 | GERRIT_SSH_CMD=( \ | 
| Patrick Williams | 476a7e9 | 2022-12-06 09:52:53 -0600 | [diff] [blame] | 17 |         ssh -o 'StrictHostKeyChecking no' -i "$SSH_KEY" \ | 
 | 18 |         -p 29418 jenkins-openbmc-ci@gerrit.openbmc.org gerrit \ | 
 | 19 |     ) | 
| Andrew Geissler | 3c88e2d | 2021-01-28 15:18:11 -0600 | [diff] [blame] | 20 |  | 
 | 21 | echo "Checking ${GERRIT_PROJECT}:${GERRIT_BRANCH}:${GERRIT_CHANGE_ID}:${GERRIT_PATCHSET_REVISION}" | 
 | 22 |  | 
| Andrew Geissler | 308091d | 2024-01-12 05:59:28 -0600 | [diff] [blame] | 23 | COMMITTER_USERNAME=$("${GERRIT_SSH_CMD[@]}" query "${GERRIT_CHANGE_NUMBER}" --format json | jq -r '.owner.username | select (. != null )') | 
| Andrew Geissler | 3c88e2d | 2021-01-28 15:18:11 -0600 | [diff] [blame] | 24 | echo "USERNAME: $COMMITTER_USERNAME" | 
| Ed Tanous | 5d3031d | 2022-02-16 15:57:15 -0800 | [diff] [blame] | 25 | if [ "${COMMITTER_USERNAME}" = "" ]; then | 
| Andrew Geissler | 3c88e2d | 2021-01-28 15:18:11 -0600 | [diff] [blame] | 26 |     echo "Unable to determine github user for ${COMMITTER_EMAIL}." | 
| Patrick Williams | a4d19dc | 2021-03-15 14:51:06 -0500 | [diff] [blame] | 27 |     "${GERRIT_SSH_CMD[@]}" review \ | 
 | 28 |         "${GERRIT_CHANGE_NUMBER},${GERRIT_PATCHSET_NUMBER}" \ | 
| Patrick Williams | f8ee6f0 | 2022-01-04 12:03:19 -0600 | [diff] [blame] | 29 |         --ok-to-test=0 "--message='Unable to determine github user'" | 
| Patrick Williams | a4d19dc | 2021-03-15 14:51:06 -0500 | [diff] [blame] | 30 |     exit 1 | 
| Andrew Geissler | 3c88e2d | 2021-01-28 15:18:11 -0600 | [diff] [blame] | 31 | fi | 
 | 32 |  | 
 | 33 | # Reset the vote to 0 so jenkins will detect a new +1 on retriggers | 
| Patrick Williams | a4d19dc | 2021-03-15 14:51:06 -0500 | [diff] [blame] | 34 | "${GERRIT_SSH_CMD[@]}" review \ | 
 | 35 |     "${GERRIT_CHANGE_NUMBER},${GERRIT_PATCHSET_NUMBER}" \ | 
| Patrick Williams | 8ac8e09 | 2022-01-04 12:05:50 -0600 | [diff] [blame] | 36 |     --ok-to-test=0 -t autogenerated:jenkins --notify=NONE | 
| Andrew Geissler | 3c88e2d | 2021-01-28 15:18:11 -0600 | [diff] [blame] | 37 |  | 
| Patrick Williams | 47b59dc | 2022-07-18 16:58:42 -0500 | [diff] [blame] | 38 | # Add reviewers based on OWNERS files. | 
 | 39 | "${WORKSPACE}/openbmc-build-scripts/tools/owners" -p "${WORKSPACE}" reviewers | | 
 | 40 | { | 
 | 41 |     while read -r reviewer ; | 
 | 42 |     do | 
 | 43 |         # shellcheck disable=2086 # GERRIT_COMMAND is purposefully wordsplit. | 
 | 44 |         ${GERRIT_COMMAND}/a/changes/${GERRIT_PROJECT/\//%2F}~${GERRIT_BRANCH}~${GERRIT_CHANGE_ID}/reviewers \ | 
 | 45 |             -X POST \ | 
 | 46 |             -H "Content-Type: application/json" \ | 
 | 47 |             -d "$reviewer" || true | 
 | 48 |     done | 
 | 49 | } || true | 
 | 50 |  | 
| Andrew Geissler | 3c88e2d | 2021-01-28 15:18:11 -0600 | [diff] [blame] | 51 | # Write full list of users to a file | 
| Patrick Williams | a4d19dc | 2021-03-15 14:51:06 -0500 | [diff] [blame] | 52 | GERRIT_CI_GROUPS=( \ | 
| Patrick Williams | b836d24 | 2023-10-13 21:10:41 -0500 | [diff] [blame] | 53 |         akamai/ci-authorized \ | 
| Patrick Williams | 476a7e9 | 2022-12-06 09:52:53 -0600 | [diff] [blame] | 54 |         alibaba/ci-authorized \ | 
 | 55 |         amd/ci-authorized \ | 
 | 56 |         ami/ci-authorized \ | 
 | 57 |         ampere/ci-authorized \ | 
 | 58 |         arm/ci-authorized \ | 
 | 59 |         aspeed/ci-authorized \ | 
| Andrew Geissler | 971d68b | 2023-11-10 08:54:49 -0600 | [diff] [blame] | 60 |         asus/ci-authorized \ | 
| Patrick Williams | 476a7e9 | 2022-12-06 09:52:53 -0600 | [diff] [blame] | 61 |         bytedance/ci-authorized \ | 
| Andrew Geissler | ad42f70 | 2023-11-17 09:45:25 -0600 | [diff] [blame] | 62 |         celestica/ci-authorized \ | 
| Patrick Williams | 476a7e9 | 2022-12-06 09:52:53 -0600 | [diff] [blame] | 63 |         code-construct/ci-authorized \ | 
 | 64 |         depo/ci-authorized \ | 
 | 65 |         erg/ci-authorized \ | 
| Patrick Williams | 93d22a4 | 2023-04-21 14:55:26 -0500 | [diff] [blame] | 66 |         equinix/ci-authorized \ | 
| Patrick Williams | 476a7e9 | 2022-12-06 09:52:53 -0600 | [diff] [blame] | 67 |         facebook/ci-authorized \ | 
 | 68 |         fii/ci-authorized \ | 
| Paul Fertser | 83d69a2 | 2024-01-24 10:46:32 +0000 | [diff] [blame] | 69 |         gagar-in/ci-authorized \ | 
| Patrick Williams | 476a7e9 | 2022-12-06 09:52:53 -0600 | [diff] [blame] | 70 |         google/ci-authorized \ | 
 | 71 |         hcl/ci-authorized \ | 
 | 72 |         hpe/ci-authorized \ | 
 | 73 |         ibm/ci-authorized \ | 
| Andrew Geissler | 6481ea4 | 2023-11-10 14:39:25 -0600 | [diff] [blame] | 74 |         iei/ci-authorized \ | 
| Patrick Williams | 476a7e9 | 2022-12-06 09:52:53 -0600 | [diff] [blame] | 75 |         individual/ci-authorized \ | 
 | 76 |         inspur/ci-authorized \ | 
 | 77 |         intel/ci-authorized \ | 
 | 78 |         inventec/ci-authorized \ | 
 | 79 |         lenovo/ci-authorized \ | 
 | 80 |         microsoft/ci-authorized \ | 
 | 81 |         nineelements/ci-authorized \ | 
 | 82 |         nuvoton/ci-authorized \ | 
 | 83 |         nvidia/ci-authorized \ | 
 | 84 |         openbmc/ci-authorized \ | 
 | 85 |         pcpartner/ci-authorized \ | 
 | 86 |         phytium/ci-authorized \ | 
| Andrew Geissler | 7d88622 | 2024-01-12 00:52:37 -0600 | [diff] [blame] | 87 |         plexus/ci-authorized \ | 
| Patrick Williams | 476a7e9 | 2022-12-06 09:52:53 -0600 | [diff] [blame] | 88 |         quanta/ci-authorized \ | 
 | 89 |         quic/ci-authorized \ | 
 | 90 |         rcs/ci-authorized \ | 
 | 91 |         supermicro/ci-authorized \ | 
| Andrew Geissler | b873036 | 2023-12-01 13:46:26 -0600 | [diff] [blame] | 92 |         tencent/ci-authorized \ | 
| Andrew Geissler | 2b2f4f1 | 2024-03-11 18:21:56 +0530 | [diff] [blame] | 93 |         triple-crown/ci-authorized \ | 
| Jordan Chang | fd0e80d | 2023-03-06 09:49:30 +0800 | [diff] [blame] | 94 |         ufispace/ci-authorized \ | 
| Patrick Williams | eb4961b | 2023-05-04 11:28:26 -0500 | [diff] [blame] | 95 |         vaisala/ci-authorized \ | 
| Patrick Williams | 476a7e9 | 2022-12-06 09:52:53 -0600 | [diff] [blame] | 96 |         wistron/ci-authorized \ | 
 | 97 |         wiwynn/ci-authorized \ | 
 | 98 |         yadro/ci-authorized \ | 
 | 99 |     ) | 
| Andrew Geissler | 3c88e2d | 2021-01-28 15:18:11 -0600 | [diff] [blame] | 100 |  | 
| Patrick Williams | a4d19dc | 2021-03-15 14:51:06 -0500 | [diff] [blame] | 101 | rm -f "$WORKSPACE/users.txt" | 
 | 102 | for g in "${GERRIT_CI_GROUPS[@]}"; do | 
 | 103 |     "${GERRIT_SSH_CMD[@]}" ls-members "$g" --recursive \ | 
 | 104 |         >> "$WORKSPACE/users.txt" | 
 | 105 | done | 
| Andrew Geissler | 3c88e2d | 2021-01-28 15:18:11 -0600 | [diff] [blame] | 106 |  | 
 | 107 | # grep for the specific username word in the file | 
| Patrick Williams | a4d19dc | 2021-03-15 14:51:06 -0500 | [diff] [blame] | 108 | if grep -q -w "${COMMITTER_USERNAME}" "$WORKSPACE/users.txt"; then | 
 | 109 |     "${GERRIT_SSH_CMD[@]}" review \ | 
 | 110 |         "${GERRIT_CHANGE_NUMBER},${GERRIT_PATCHSET_NUMBER}" \ | 
| Patrick Williams | 8ac8e09 | 2022-01-04 12:05:50 -0600 | [diff] [blame] | 111 |         --ok-to-test=1 -t autogenerated:jenkins --notify=NONE \ | 
| Patrick Williams | a4d19dc | 2021-03-15 14:51:06 -0500 | [diff] [blame] | 112 |         "--message='User approved, CI ok to start'" | 
| Patrick Williams | 2e93e4e | 2021-12-30 10:29:38 -0600 | [diff] [blame] | 113 |  | 
 | 114 |     # Immediately erase the score to prevent infinite triggers. | 
 | 115 |     "${GERRIT_SSH_CMD[@]}" review \ | 
 | 116 |         "${GERRIT_CHANGE_NUMBER},${GERRIT_PATCHSET_NUMBER}" \ | 
| Patrick Williams | 8ac8e09 | 2022-01-04 12:05:50 -0600 | [diff] [blame] | 117 |         --ok-to-test=0 -t autogenerated:jenkins --notify=NONE | 
| Patrick Williams | 2e93e4e | 2021-12-30 10:29:38 -0600 | [diff] [blame] | 118 |  | 
| Andrew Geissler | 3c88e2d | 2021-01-28 15:18:11 -0600 | [diff] [blame] | 119 |     exit 0 | 
 | 120 | fi | 
 | 121 |  | 
 | 122 | echo "${COMMITTER_USERNAME} is not on the approved list." | 
| Patrick Williams | a4d19dc | 2021-03-15 14:51:06 -0500 | [diff] [blame] | 123 | "${GERRIT_SSH_CMD[@]}" review \ | 
 | 124 |     "${GERRIT_CHANGE_NUMBER},${GERRIT_PATCHSET_NUMBER}" \ | 
| Patrick Williams | f8ee6f0 | 2022-01-04 12:03:19 -0600 | [diff] [blame] | 125 |     --ok-to-test=0 -t autogenerated:jenkins \ | 
| Patrick Williams | a4d19dc | 2021-03-15 14:51:06 -0500 | [diff] [blame] | 126 |     "--message='User not approved, see admin, no CI'" | 
| Andrew Geissler | 3c88e2d | 2021-01-28 15:18:11 -0600 | [diff] [blame] | 127 |  | 
 | 128 | exit 0 |