blob: 4da937cb85698825885b76afa359af4d141345f3 [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
15GERRIT_COMMAND="curl -s --anyauth -n https://gerrit.openbmc-project.xyz"
Patrick Williamsa4d19dc2021-03-15 14:51:06 -050016GERRIT_SSH_CMD=( \
17 ssh -o 'StrictHostKeyChecking no' -i "$SSH_KEY" \
18 -p 29418 jenkins-openbmc-ci@gerrit.openbmc-project.xyz gerrit \
19)
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 Geissler6b69ff02021-03-17 15:04:21 -050024COMMITTER_EMAIL=$(${GERRIT_COMMAND}/a/changes/${GERRIT_PROJECT/\//%2F}~${GERRIT_BRANCH}~${GERRIT_CHANGE_ID}/revisions/${GERRIT_PATCHSET_REVISION}/commit | python2 -c "import sys, json; sys.stdin.read(4); print(json.load(sys.stdin)['committer']['email'])")
Andrew Geissler3c88e2d2021-01-28 15:18:11 -060025if [ "x${COMMITTER_EMAIL}" == "x" ]; then
26 echo "Unable to find committer."
Patrick Williamsa4d19dc2021-03-15 14:51:06 -050027 "${GERRIT_SSH_CMD[@]}" review \
28 "${GERRIT_CHANGE_NUMBER},${GERRIT_PATCHSET_NUMBER}" \
29 --label=Ok-To-Test=0 "--message='Unable to determine committer'"
30 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 Geissler6b69ff02021-03-17 15:04:21 -050035COMMITTER_USERNAME=$(${GERRIT_COMMAND}/a/accounts/${COMMITTER_EMAIL} | python2 -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"
38if [ "x${COMMITTER_USERNAME}" == "x" ]; then
39 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}" \
42 --label=Ok-To-Test=0 "--message='Unable to determine github user'"
43 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}" \
49 --label=Ok-To-Test=0 -t autogenerated:jenkins
Andrew Geissler3c88e2d2021-01-28 15:18:11 -060050
51# Write full list of users to a file
Patrick Williamsa4d19dc2021-03-15 14:51:06 -050052GERRIT_CI_GROUPS=( \
53 alibaba/ci-authorized \
54 amd/ci-authorized \
Andrew Geisslere63bb542021-06-04 10:15:26 -050055 ami/ci-authorized \
Patrick Williamsa4d19dc2021-03-15 14:51:06 -050056 ampere/ci-authorized \
Andrew Geissler2fde84b2021-04-01 10:17:36 -050057 aspeed/ci-authorized \
Patrick Williamsa4d19dc2021-03-15 14:51:06 -050058 bytedance/ci-authorized \
59 facebook/ci-authorized \
Patrick Williams870b41a2021-03-27 09:05:56 -050060 fii/ci-authorized \
Patrick Williamsa4d19dc2021-03-15 14:51:06 -050061 gager-in/ci-authorized \
62 google/ci-authorized \
63 hcl/ci-authorized \
64 hpe/ci-authorized \
65 ibm/ci-authorized \
66 individual/ci-authorized \
67 inspur/ci-authorized \
68 intel/ci-authorized \
69 inventec/ci-authorized \
Andrew Geisslere13a7112021-03-31 08:14:25 -050070 lenovo/ci-authorized \
Andrew Geisslera56c7012021-08-20 10:03:30 -050071 nineelements/ci-authorized \
Patrick Williamsa4d19dc2021-03-15 14:51:06 -050072 nuvoton/ci-authorized \
73 nvidia/ci-authorized \
74 openbmc/ci-authorized \
Andrew Geissler46182102021-06-08 08:13:13 -050075 pcpartner/ci-authorized \
Patrick Williamsa4d19dc2021-03-15 14:51:06 -050076 quanta/ci-authorized \
77 rcs/ci-authorized \
78 supermicro/ci-authorized \
79 wistron/ci-authorized \
80 wiwynn/ci-authorized \
81 yadro/ci-authorized \
82)
Andrew Geissler3c88e2d2021-01-28 15:18:11 -060083
Patrick Williamsa4d19dc2021-03-15 14:51:06 -050084rm -f "$WORKSPACE/users.txt"
85for g in "${GERRIT_CI_GROUPS[@]}"; do
86 "${GERRIT_SSH_CMD[@]}" ls-members "$g" --recursive \
87 >> "$WORKSPACE/users.txt"
88done
Andrew Geissler3c88e2d2021-01-28 15:18:11 -060089
90# grep for the specific username word in the file
Patrick Williamsa4d19dc2021-03-15 14:51:06 -050091if grep -q -w "${COMMITTER_USERNAME}" "$WORKSPACE/users.txt"; then
92 "${GERRIT_SSH_CMD[@]}" review \
93 "${GERRIT_CHANGE_NUMBER},${GERRIT_PATCHSET_NUMBER}" \
94 --label=Ok-To-Test=1 -t autogenerated:jenkins \
95 "--message='User approved, CI ok to start'"
Andrew Geissler3c88e2d2021-01-28 15:18:11 -060096 exit 0
97fi
98
99echo "${COMMITTER_USERNAME} is not on the approved list."
Patrick Williamsa4d19dc2021-03-15 14:51:06 -0500100"${GERRIT_SSH_CMD[@]}" review \
101 "${GERRIT_CHANGE_NUMBER},${GERRIT_PATCHSET_NUMBER}" \
102 --label=Ok-To-Test=0 -t autogenerated:jenkins \
103 "--message='User not approved, see admin, no CI'"
Andrew Geissler3c88e2d2021-01-28 15:18:11 -0600104
105exit 0