-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgitlab-manager
executable file
·193 lines (176 loc) · 8.05 KB
/
gitlab-manager
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
#!/usr/bin/env python3
import argparse
import gitlab
import logging as log
from requests import exceptions
import json
import unidecode
class MergeRequest:
def __init__(self, mr):
self.Id = mr.iid
self.Author = mr.author['username']
self.Title = unidecode.unidecode(mr.title)
self.Description = unidecode.unidecode(mr.description)
self.Label = "info"
self.Url = mr.web_url
if len(mr.labels) == 1:
self.Label = "[{}]".format(mr.labels[0])
def json_mr(self):
return {'Url':self.Url, 'Label': self.Label, 'Title': self.Title, 'Description': self.Description, 'Author': self.Author, 'Id': self.Id }
def print_mr(self):
return "### {}: {}\n\n{}\n\n * by: {}\n\n * Merge Request ID:{}\n".format(self.Label, self.Title, self.Description, self.Author, self.Id)
def list_mrs(project, state, wip, labels=[]):
print("\nHere is the list of MRs for your chosen project:\n")
mrs = []
if len(labels) > 0:
mrs = project.mergerequests.list(state=state, order_by='updated_at', wip=wip, labels=labels)
else:
mrs = project.mergerequests.list(state=state, order_by='updated_at', wip=wip)
all_mr = []
for mr in mrs:
current = MergeRequest(mr)
all_mr.append(current.json_mr())
print(json.dumps(all_mr, indent=4, sort_keys=True ))
return all_mr
def update_mr(project, mr_id, label=None, tag=None):
mr = project.mergerequests.get(mr_id)
if label is not None:
mr.labels = [label]
if tag is not None:
milestones = project.milestones.list(state='active', search=tag)
if len(milestones) == 1:
milestone = milestones[0]
elif len(milestones) == 0:
print("create milestone")
milestone = project.milestones.create({'title': tag})
else:
print("please verify your tag")
exit()
mr.milestone_id = milestone.id
mr.save()
def print_changelog(project, tag, output="json"):
#print("\nYour changelog for {} on Project {}:\n".format(tag, project.name))
mrs = project.mergerequests.list(order_by='updated_at', milestone=tag)
all_mr = []
all_mr_text = ""
for mr in mrs:
current = MergeRequest(mr)
all_mr.append(current.json_mr())
all_mr_text = all_mr_text + "{}\n\n------------------\n\n".format(current.print_mr())
json_all_mr = json.dumps(all_mr, indent=4, sort_keys=True)
if output == "json":
print(json_all_mr)
return all_mr
if output == "html":
from json2html import json2html
import htmlmin
result_html = json2html.convert(json = json_all_mr, encode=True, table_attributes="id=\"info-table\" width=\"100%\" cellspacing=\"0\" cellpadding=\"5\" border=\"1\" align=\"center\"")
result_html = htmlmin.minify(result_html.decode("UTF-8"), remove_empty_space=True)
print(result_html, end = '')
return result_html
if output == "text":
print(all_mr_text)
return all_mr_text
def push_changelog(all_mr, tag, push=False):
if push:
project.releases.create({'name': str(tag), 'tag_name': tag, 'description': all_mr})
#project.releases.delete(tag)
#print(release)
def init_argparse():
try:
parser = argparse.ArgumentParser(prog='gitlab-manager', description='manage gitlab api mr and changelog')
# Optionals
'''override defaults or configuration'''
parser.add_argument("project")
optionals = parser.add_argument_group()
optionals.add_argument("--gitlab-url", dest='gitlab_url', action='store', type=str,
help='Specify gitlab url ex: https://gitlab.com')
optionals.add_argument("--gitlab-token", dest='gitlab_token', action='store', type=str,
help='Specify private gitlab token')
subparsers = parser.add_subparsers(dest='command')
mr_group = subparsers.add_parser('mr')
changelog_group = subparsers.add_parser('changelog')
subparsers = mr_group.add_subparsers(dest='action')
ls_mr = subparsers.add_parser('ls')
ls_mr.add_argument("--wip", dest='wip', action='store', type=str,
help='search wip or not', choices=['yes', 'no'])
ls_mr.add_argument("--labels", dest='labels', action='store', type=str,
help='Comma separated list of labels to filter MRs for',
default='')
ls_mr.add_argument("--state", dest='state', action='store', type=str,
help='filter for the specified state',
choices=['all', 'opened', 'closed', 'locked', 'merged'],
default='opened')
update_mr = subparsers.add_parser('update')
update_mr.add_argument('mr_id')
update_mr.add_argument("--label", dest='label', action='store', type=str,
help='put a speficic label ex: Feature')
update_mr.add_argument("--tag", dest='tag', action='store', type=str,
help='put a speficic tag ex: 0.2.0')
subparsers = changelog_group.add_subparsers(dest='action')
print_changelog = subparsers.add_parser('print', help='print changelog')
print_changelog.add_argument("tag",
help='generate changelog for specific tag ex: 0.2.0')
print_changelog.add_argument("--output", dest='output', action='store', type=str,
help='Define the output you want for the changelog', choices=['json', 'text', 'html'], default='json')
push_changelog = subparsers.add_parser('push', help='Push changelog to releases in gitlab')
push_changelog.add_argument("tag",
help='generate changelog for specific tag ex: 0.2.0')
arguments = parser.parse_args()
if "command" in arguments:
if arguments.command =="mr":
if arguments.action == "update" and (not arguments.label and not arguments.tag):
update_mr.error("At least one of --label or --tag must be given")
if arguments.action is None:
mr_group.error("One action is required")
if arguments.command =="changelog":
if arguments.action is None:
changelog_group.error("One action is required")
else:
parser.error("One command is needed")
except argparse.ArgumentError as e:
log.error("Error parsing arguments")
raise e
else:
log.debug("Arguments have been parsed: {arguments}")
return arguments
if __name__ == '__main__':
args = init_argparse()
if args.gitlab_url is not None and args.gitlab_token is not None:
gl = gitlab.Gitlab(args.gitlab_url, private_token=args.gitlab_token)
else:
try:
gl = gitlab.Gitlab.from_config()
except gitlab.config.GitlabConfigMissingError as e:
print(e)
exit()
try:
if args.project.isdecimal():
projects = [gl.projects.get(args.project)]
else:
projects = gl.projects.list(search=args.project)
except exceptions.MissingSchema:
log.error("Error with the URL defined")
exit()
except gitlab.exceptions.GitlabAuthenticationError:
log.error("Wrong private token")
exit()
if len(projects) != 1:
print("can't find the project {}\n {}".format(args.project, projects))
exit()
project = projects[0]
if args.command == "mr":
if args.action == "ls":
list_mrs(project, args.state, args.wip, [item for item in args.labels.split(',')])
if args.action == "update":
update_mr(project, args.mr_id, args.label, args.tag)
if args.command == "changelog":
push = False
if "output" not in args:
print_changelog(project, args.tag, "json")
else:
print_changelog(project, args.tag, args.output)
if args.action == "push":
push = True
all_mr_txt = print_changelog(project, args.tag, "text")
push_changelog(all_mr_txt, args.tag, push)