-
Notifications
You must be signed in to change notification settings - Fork 9
/
github_release_manager.sh
executable file
·165 lines (152 loc) · 5.52 KB
/
github_release_manager.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
#!/bin/bash
# ***************************************************************************************
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ****************************************************************************************
#*****************************************************************************************
# Github management script.
#
# Script relying on Github API v3, as described in:
# https://developer.github.com/v3/repos/releases/
#
# This script can be used either as a command-line tool (use -h to get help) or as an API.
# For the latter use, see github_release_api.sh script.
#
# Author: Patrick Durand, Inria (pdurand)
# Created: December 2015
#
# ---
# Updated: Art Eschenlauer, University of Minnesota (eschen42)
# Change: Added "draft" command
#*****************************************************************************************
# ========================================================================================
# Section: include API
script_dir=$( cd -P -- "$(dirname -- "$(command -v -- "$0")")" && pwd -P )
. $script_dir/github_release_api.sh
# ========================================================================================
# Section: utility function declarations
# --------
# FUNCTION: display help message
function help(){
printf "\n$0: a tool to handle github release management using github/api v3.\n\n"
printf "usage: $0 [-h] [-s] -l <login> -t <token> -o <owner> -r <repository> [-d <git_tab>] [-m <message>] -c <command> [file ...]\n\n"
printf "Credential parameters used to access remote github repository:\n"
printf " -l <login> -t <token> -o <owner> -r <repository> \n"
printf "\n"
printf "Release identification:\n"
printf " -d <git_tab>\n"
printf "\n"
printf "Release managment commands are provided using:\n"
printf " -c <command> command to execute.\n"
printf " 'command' is one of create, draft, flist, upload, delete, info, erase, rlist.\n"
printf " create: create a new release.\n"
printf " draft: create a new draft release.\n"
printf " flist: list files available for an existing release.\n"
printf " upload: upload file(s) to an existing release.\n"
printf " delete: permanently delete remote file(s) from an existing release.\n"
printf " info: print out some information about an existing release.\n"
printf " erase: permanently delete an existing release. Use with extreme caution!\n"
printf " rlist: list existing releases for a repository.\n"
printf "\n"
printf " All commands but 'rlist' require the -d <git_tag>.\n"
printf "\n"
printf " Commands 'upload' and 'delete' expect files as remaining command line arguments:\n"
printf " -c upload file1.tgz file2.tgz\n"
printf "\n"
printf "Notice:\n"
printf " /!\ this script does not handle file name/path containing space characters.\n"
printf "\n"
printf "Other arguments:\n"
printf " -s turn script to silent mode\n"
printf " -m release message: only used when creating a new release\n"
printf " -h display this message\n"
exit 1
}
# ========================================================================================
# Section : main
# Prepare arguments for processing
while getopts shl:t:o:r:c:d:m: opt
do
case "$opt" in
s) SILENT="true";;
l) LOGIN="$OPTARG";;
t) TOKEN="$OPTARG";;
o) OWNER="$OPTARG";;
r) REPOSITORY="$OPTARG";;
c) COMMAND="$OPTARG";;
d) TAG="$OPTARG";;
m) CREATE_MESSAGE="$OPTARG";;
h) help;;
\?) help;;
esac
done
shift `expr $OPTIND - 1`
# remaining arguments, if any, are supposed to be the [file ...] part of the command-line
FILES=$@
#check we have all required arguments
checkMandatoryArg
#check the validity of the command name
checkCommand "$COMMAND"
#we need at least one file for these commands: upload, delete
checkFileList "$COMMAND" "$FILES"
#execute command
case "$COMMAND" in
info)
checkTag
release_id=$(getGithubReleaseId $TAG)
infoMsg "Git tag $TAG refers to github release ID: $release_id"
echo $(getGithubReleaseDescription $release_id)
;;
create)
checkTag
createRelease $TAG "false" "$CREATE_MESSAGE"
;;
draft)
checkTag
createRelease $TAG "true" "$CREATE_MESSAGE"
;;
upload)
checkTag
release_id=$(getGithubReleaseId $TAG)
infoMsg "Git tag $TAG refers to github release ID: $release_id"
for fname in $FILES
do
uploadAsset $release_id "$fname"
done
;;
delete)
checkTag
release_id=$(getGithubReleaseId $TAG)
infoMsg "Git tag $TAG refers to github release ID: $release_id"
for fname in $FILES
do
deleteAsset $release_id "$fname"
done
;;
rlist)
listReleaseSummary
;;
flist)
checkTag
release_id=$(getGithubReleaseId $TAG)
infoMsg "Git tag $TAG refers to github release ID: $release_id"
listAssetSummary $release_id
;;
erase)
checkTag
release_id=$(getGithubReleaseId $TAG)
infoMsg "Git tag $TAG refers to github release ID: $release_id"
deleteRelease $release_id
;;
esac
clean
exit 0