blob: d68a8c5c06af99a193e731842496427c4791e1a2 [file] [log] [blame]
Andrew Geissler3c88e2d2021-01-28 15:18:11 -06001#!/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 Geissler37052412022-05-20 15:28:26 -040015GERRIT_COMMAND="curl -s --anyauth -n https://gerrit.openbmc.org"
Patrick Williamsa4d19dc2021-03-15 14:51:06 -050016GERRIT_SSH_CMD=( \
17 ssh -o 'StrictHostKeyChecking no' -i "$SSH_KEY" \
Andrew Geissler37052412022-05-20 15:28:26 -040018 -p 29418 jenkins-openbmc-ci@gerrit.openbmc.org gerrit \
Patrick Williamsa4d19dc2021-03-15 14:51:06 -050019)
Andrew Geissler3c88e2d2021-01-28 15:18:11 -060020
21echo "Checking ${GERRIT_PROJECT}:${GERRIT_BRANCH}:${GERRIT_CHANGE_ID}:${GERRIT_PATCHSET_REVISION}"
22
Patrick Williamsa4d19dc2021-03-15 14:51:06 -050023# shellcheck disable=2086 # GERRIT_COMMAND is purposefully wordsplit.
Andrew Geisslerc4917092022-05-20 16:07:58 -040024COMMITTER_EMAIL=$(${GERRIT_COMMAND}/a/changes/${GERRIT_PROJECT/\//%2F}~${GERRIT_BRANCH}~${GERRIT_CHANGE_ID}/revisions/${GERRIT_PATCHSET_REVISION}/commit | python3 -c "import sys, json; sys.stdin.read(4); print(json.load(sys.stdin)['committer']['email'])")
Ed Tanous5d3031d2022-02-16 15:57:15 -080025if [ "${COMMITTER_EMAIL}" = "" ]; then
Andrew Geissler3c88e2d2021-01-28 15:18:11 -060026 echo "Unable to find committer."
Patrick Williamsa4d19dc2021-03-15 14:51:06 -050027 "${GERRIT_SSH_CMD[@]}" review \
28 "${GERRIT_CHANGE_NUMBER},${GERRIT_PATCHSET_NUMBER}" \
Patrick Williamsf8ee6f02022-01-04 12:03:19 -060029 --ok-to-test=0 "--message='Unable to determine committer'"
Patrick Williamsa4d19dc2021-03-15 14:51:06 -050030 exit 1
Andrew Geissler3c88e2d2021-01-28 15:18:11 -060031fi
32
33#echo "Commit by '${COMMITTER_EMAIL}'"
Patrick Williamsa4d19dc2021-03-15 14:51:06 -050034# shellcheck disable=2086 # GERRIT_COMMAND is purposefully wordsplit.
Andrew Geisslerc4917092022-05-20 16:07:58 -040035COMMITTER_USERNAME=$(${GERRIT_COMMAND}/a/accounts/${COMMITTER_EMAIL} | python3 -c "import sys, json; sys.stdin.read(4); print(json.load(sys.stdin)['username'])")
Andrew Geissler3c88e2d2021-01-28 15:18:11 -060036#COMMITTER_USERNAME=`${GERRIT_COMMAND}/a/accounts/${COMMITTER_EMAIL}`
37echo "USERNAME: $COMMITTER_USERNAME"
Ed Tanous5d3031d2022-02-16 15:57:15 -080038if [ "${COMMITTER_USERNAME}" = "" ]; then
Andrew Geissler3c88e2d2021-01-28 15:18:11 -060039 echo "Unable to determine github user for ${COMMITTER_EMAIL}."
Patrick Williamsa4d19dc2021-03-15 14:51:06 -050040 "${GERRIT_SSH_CMD[@]}" review \
41 "${GERRIT_CHANGE_NUMBER},${GERRIT_PATCHSET_NUMBER}" \
Patrick Williamsf8ee6f02022-01-04 12:03:19 -060042 --ok-to-test=0 "--message='Unable to determine github user'"
Patrick Williamsa4d19dc2021-03-15 14:51:06 -050043 exit 1
Andrew Geissler3c88e2d2021-01-28 15:18:11 -060044fi
45
46# Reset the vote to 0 so jenkins will detect a new +1 on retriggers
Patrick Williamsa4d19dc2021-03-15 14:51:06 -050047"${GERRIT_SSH_CMD[@]}" review \
48 "${GERRIT_CHANGE_NUMBER},${GERRIT_PATCHSET_NUMBER}" \
Patrick Williams8ac8e092022-01-04 12:05:50 -060049 --ok-to-test=0 -t autogenerated:jenkins --notify=NONE
Andrew Geissler3c88e2d2021-01-28 15:18:11 -060050
Patrick Williams47b59dc2022-07-18 16:58:42 -050051# Add reviewers based on OWNERS files.
52"${WORKSPACE}/openbmc-build-scripts/tools/owners" -p "${WORKSPACE}" reviewers |
53{
54 while read -r reviewer ;
55 do
56 # shellcheck disable=2086 # GERRIT_COMMAND is purposefully wordsplit.
57 ${GERRIT_COMMAND}/a/changes/${GERRIT_PROJECT/\//%2F}~${GERRIT_BRANCH}~${GERRIT_CHANGE_ID}/reviewers \
58 -X POST \
59 -H "Content-Type: application/json" \
60 -d "$reviewer" || true
61 done
62} || true
63
Andrew Geissler3c88e2d2021-01-28 15:18:11 -060064# Write full list of users to a file
Patrick Williamsa4d19dc2021-03-15 14:51:06 -050065GERRIT_CI_GROUPS=( \
66 alibaba/ci-authorized \
67 amd/ci-authorized \
Andrew Geisslere63bb542021-06-04 10:15:26 -050068 ami/ci-authorized \
Patrick Williamsa4d19dc2021-03-15 14:51:06 -050069 ampere/ci-authorized \
Gilbert Chen76f25de2022-02-10 21:05:06 +000070 arm/ci-authorized \
Andrew Geissler2fde84b2021-04-01 10:17:36 -050071 aspeed/ci-authorized \
Patrick Williamsa4d19dc2021-03-15 14:51:06 -050072 bytedance/ci-authorized \
Andrew Geissler0cc575a2021-09-07 07:53:58 -050073 code-construct/ci-authorized \
Patrick Williams123ffbe2022-03-01 09:18:41 -060074 depo/ci-authorized \
Andrew Geisslera9a79192021-12-09 14:04:18 -060075 erg/ci-authorized \
Patrick Williamsa4d19dc2021-03-15 14:51:06 -050076 facebook/ci-authorized \
Patrick Williams870b41a2021-03-27 09:05:56 -050077 fii/ci-authorized \
Patrick Williamsa4d19dc2021-03-15 14:51:06 -050078 gager-in/ci-authorized \
79 google/ci-authorized \
80 hcl/ci-authorized \
81 hpe/ci-authorized \
82 ibm/ci-authorized \
83 individual/ci-authorized \
84 inspur/ci-authorized \
85 intel/ci-authorized \
86 inventec/ci-authorized \
Andrew Geisslere13a7112021-03-31 08:14:25 -050087 lenovo/ci-authorized \
Andrew Geisslerec22c462022-08-15 09:41:34 -040088 microsoft/ci-authorized \
Andrew Geisslera56c7012021-08-20 10:03:30 -050089 nineelements/ci-authorized \
Patrick Williamsa4d19dc2021-03-15 14:51:06 -050090 nuvoton/ci-authorized \
91 nvidia/ci-authorized \
92 openbmc/ci-authorized \
Andrew Geissler46182102021-06-08 08:13:13 -050093 pcpartner/ci-authorized \
Patrick Williamsbc73b752022-07-08 06:59:05 -050094 phytium/ci-authorized \
Patrick Williamsa4d19dc2021-03-15 14:51:06 -050095 quanta/ci-authorized \
Jae Hyun Yoo7031b332022-04-13 15:21:31 -070096 quic/ci-authorized \
Patrick Williamsa4d19dc2021-03-15 14:51:06 -050097 rcs/ci-authorized \
98 supermicro/ci-authorized \
99 wistron/ci-authorized \
100 wiwynn/ci-authorized \
101 yadro/ci-authorized \
102)
Andrew Geissler3c88e2d2021-01-28 15:18:11 -0600103
Patrick Williamsa4d19dc2021-03-15 14:51:06 -0500104rm -f "$WORKSPACE/users.txt"
105for g in "${GERRIT_CI_GROUPS[@]}"; do
106 "${GERRIT_SSH_CMD[@]}" ls-members "$g" --recursive \
107 >> "$WORKSPACE/users.txt"
108done
Andrew Geissler3c88e2d2021-01-28 15:18:11 -0600109
110# grep for the specific username word in the file
Patrick Williamsa4d19dc2021-03-15 14:51:06 -0500111if grep -q -w "${COMMITTER_USERNAME}" "$WORKSPACE/users.txt"; then
112 "${GERRIT_SSH_CMD[@]}" review \
113 "${GERRIT_CHANGE_NUMBER},${GERRIT_PATCHSET_NUMBER}" \
Patrick Williams8ac8e092022-01-04 12:05:50 -0600114 --ok-to-test=1 -t autogenerated:jenkins --notify=NONE \
Patrick Williamsa4d19dc2021-03-15 14:51:06 -0500115 "--message='User approved, CI ok to start'"
Patrick Williams2e93e4e2021-12-30 10:29:38 -0600116
117 # Immediately erase the score to prevent infinite triggers.
118 "${GERRIT_SSH_CMD[@]}" review \
119 "${GERRIT_CHANGE_NUMBER},${GERRIT_PATCHSET_NUMBER}" \
Patrick Williams8ac8e092022-01-04 12:05:50 -0600120 --ok-to-test=0 -t autogenerated:jenkins --notify=NONE
Patrick Williams2e93e4e2021-12-30 10:29:38 -0600121
Andrew Geissler3c88e2d2021-01-28 15:18:11 -0600122 exit 0
123fi
124
125echo "${COMMITTER_USERNAME} is not on the approved list."
Patrick Williamsa4d19dc2021-03-15 14:51:06 -0500126"${GERRIT_SSH_CMD[@]}" review \
127 "${GERRIT_CHANGE_NUMBER},${GERRIT_PATCHSET_NUMBER}" \
Patrick Williamsf8ee6f02022-01-04 12:03:19 -0600128 --ok-to-test=0 -t autogenerated:jenkins \
Patrick Williamsa4d19dc2021-03-15 14:51:06 -0500129 "--message='User not approved, see admin, no CI'"
Andrew Geissler3c88e2d2021-01-28 15:18:11 -0600130
131exit 0