Pass multiple pattern args in logs-deploy.sh
[releng/global-jjb.git] / shell / gerrit-branch-lock.sh
1 #!/bin/bash
2 # SPDX-License-Identifier: EPL-1.0
3 ##############################################################################
4 # Copyright (c) 2017 The Linux Foundation and others.
5 #
6 # All rights reserved. This program and the accompanying materials
7 # are made available under the terms of the Eclipse Public License v1.0
8 # which accompanies this distribution, and is available at
9 # http://www.eclipse.org/legal/epl-v10.html
10 ##############################################################################
11 echo "---> gerrit-branch-lock.sh"
12 # Generates a patch to lock|unlock a branch in Gerrit
13 #
14 # Assumes that the project repository was cloned via ssh and thus uses ssh to
15 # install the git commit hook.
16
17 # Ensure we fail the job if any steps fail.
18 set -eu -o pipefail
19
20 git fetch origin refs/meta/config:config
21 git checkout config
22
23 install_gerrit_hook() {
24     ssh_url=$(git remote show origin | grep Fetch | grep 'ssh://' \
25         | awk -F'/' '{print $3}' | awk -F':' '{print $1}')
26     ssh_port=$(git remote show origin | grep Fetch | grep 'ssh://' \
27         | awk -F'/' '{print $3}' | awk -F':' '{print $2}')
28
29     if [ -z $ssh_url ]; then
30         echo "ERROR: Gerrit SSH URL not found."
31         exit 1
32     fi
33
34     scp -p -P "$ssh_port" "$ssh_url":hooks/commit-msg .git/hooks/
35     chmod u+x .git/hooks/commit-msg
36 }
37 install_gerrit_hook
38
39 # Groups must be mapped in the groups file before they can be used
40 if ! grep 'Registered Users'; then
41     echo -e "global:Registered-Users\tRegistered Users" >> groups
42 fi
43
44 mode=$(echo "$GERRIT_EVENT_COMMENT_TEXT" | grep branch | awk '{print $1}')
45 case $mode in
46     lock)
47         echo "Locking branch: $GERRIT_BRANCH"
48         git config -f project.config "access.refs/heads/${GERRIT_BRANCH}.exclusiveGroupPermissions" "submit"
49         git config -f project.config "access.refs/heads/${GERRIT_BRANCH}.submit" "block group Registered Users"
50         git commit -asm "Lock branch $GERRIT_BRANCH"
51         ;;
52
53     unlock)
54         echo "Unlocking branch: $GERRIT_BRANCH"
55         git config -f project.config --remove-section "access.refs/heads/${GERRIT_BRANCH}" || true
56         git commit -asm "Unlock branch $GERRIT_BRANCH"
57         ;;
58
59     *)
60         echo "ERROR: Unknown mode selected '$mode'."
61         exit 1
62         ;;
63 esac
64
65 git diff HEAD~1
66 git push origin HEAD:refs/for/refs/meta/config