forked from commitizen-tools/commitizen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgit.py
302 lines (233 loc) · 8.14 KB
/
git.py
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
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
from __future__ import annotations
import os
from enum import Enum
from os import linesep
from pathlib import Path
from tempfile import NamedTemporaryFile
from commitizen import cmd, out
from commitizen.exceptions import GitCommandError
UNIX_EOL = "\n"
WINDOWS_EOL = "\r\n"
class EOLTypes(Enum):
"""The EOL type from `git config core.eol`."""
LF = "lf"
CRLF = "crlf"
NATIVE = "native"
def get_eol_for_open(self) -> str:
"""Get the EOL character for `open()`."""
map = {
EOLTypes.CRLF: WINDOWS_EOL,
EOLTypes.LF: UNIX_EOL,
EOLTypes.NATIVE: linesep,
}
return map[self]
class GitObject:
rev: str
name: str
date: str
def __eq__(self, other) -> bool:
if not hasattr(other, "rev"):
return False
return self.rev == other.rev # type: ignore
class GitCommit(GitObject):
def __init__(
self, rev, title, body: str = "", author: str = "", author_email: str = ""
):
self.rev = rev.strip()
self.title = title.strip()
self.body = body.strip()
self.author = author.strip()
self.author_email = author_email.strip()
@property
def message(self):
return f"{self.title}\n\n{self.body}".strip()
def __repr__(self):
return f"{self.title} ({self.rev})"
class GitTag(GitObject):
def __init__(self, name, rev, date):
self.rev = rev.strip()
self.name = name.strip()
self._date = date.strip()
def __repr__(self):
return f"GitTag('{self.name}', '{self.rev}', '{self.date}')"
@property
def date(self):
return self._date
@classmethod
def from_line(cls, line: str, inner_delimiter: str) -> GitTag:
name, objectname, date, obj = line.split(inner_delimiter)
if not obj:
obj = objectname
return cls(name=name, rev=obj, date=date)
def tag(
tag: str, annotated: bool = False, signed: bool = False, msg: str | None = None
) -> cmd.Command:
_opt = ""
if annotated:
_opt = f"-a {tag} -m"
if signed:
_opt = f"-s {tag} -m"
# according to https://git-scm.com/book/en/v2/Git-Basics-Tagging,
# we're not able to create lightweight tag with message.
# by adding message, we make it a annotated tags
c = cmd.run(f'git tag {_opt} "{tag if _opt == "" or msg is None else msg}"')
return c
def add(*args: str) -> cmd.Command:
c = cmd.run(f"git add {' '.join(args)}")
return c
def commit(
message: str,
args: str = "",
committer_date: str | None = None,
) -> cmd.Command:
f = NamedTemporaryFile("wb", delete=False)
f.write(message.encode("utf-8"))
f.close()
command = f'git commit {args} -F "{f.name}"'
if committer_date and os.name == "nt": # pragma: no cover
# Using `cmd /v /c "{command}"` sets environment variables only for that command
command = f'cmd /v /c "set GIT_COMMITTER_DATE={committer_date}&& {command}"'
elif committer_date:
command = f"GIT_COMMITTER_DATE={committer_date} {command}"
c = cmd.run(command)
os.unlink(f.name)
return c
def get_commits(
start: str | None = None,
end: str = "HEAD",
*,
args: str = "",
) -> list[GitCommit]:
"""Get the commits between start and end."""
git_log_entries = _get_log_as_str_list(start, end, args)
git_commits = []
for rev_and_commit in git_log_entries:
if not rev_and_commit:
continue
rev, title, author, author_email, *body_list = rev_and_commit.split("\n")
if rev_and_commit:
git_commit = GitCommit(
rev=rev.strip(),
title=title.strip(),
body="\n".join(body_list).strip(),
author=author,
author_email=author_email,
)
git_commits.append(git_commit)
return git_commits
def get_filenames_in_commit(git_reference: str = ""):
"""Get the list of files that were committed in the requested git reference.
:param git_reference: a git reference as accepted by `git show`, default: the last commit
:returns: file names committed in the last commit by default or inside the passed git reference
"""
c = cmd.run(f"git show --name-only --pretty=format: {git_reference}")
if c.return_code == 0:
return c.out.strip().split("\n")
else:
raise GitCommandError(c.err)
def get_tags(
dateformat: str = "%Y-%m-%d", reachable_only: bool = False
) -> list[GitTag]:
inner_delimiter = "---inner_delimiter---"
formatter = (
f'"%(refname:lstrip=2){inner_delimiter}'
f"%(objectname){inner_delimiter}"
f"%(creatordate:format:{dateformat}){inner_delimiter}"
f'%(object)"'
)
extra = "--merged" if reachable_only else ""
# Force the default language for parsing
env = {"LC_ALL": "C", "LANG": "C", "LANGUAGE": "C"}
c = cmd.run(f"git tag --format={formatter} --sort=-creatordate {extra}", env=env)
if c.return_code != 0:
if reachable_only and c.err == "fatal: malformed object name HEAD\n":
# this can happen if there are no commits in the repo yet
return []
raise GitCommandError(c.err)
if c.err:
out.warn(f"Attempting to proceed after: {c.err}")
if not c.out:
return []
git_tags = [
GitTag.from_line(line=line, inner_delimiter=inner_delimiter)
for line in c.out.split("\n")[:-1]
]
return git_tags
def tag_exist(tag: str) -> bool:
c = cmd.run(f"git tag --list {tag}")
return tag in c.out
def is_signed_tag(tag: str) -> bool:
return cmd.run(f"git tag -v {tag}").return_code == 0
def get_latest_tag_name() -> str | None:
c = cmd.run("git describe --abbrev=0 --tags")
if c.err:
return None
return c.out.strip()
def get_tag_message(tag: str) -> str | None:
c = cmd.run(f"git tag -l --format='%(contents:subject)' {tag}")
if c.err:
return None
return c.out.strip()
def get_tag_names() -> list[str | None]:
c = cmd.run("git tag --list")
if c.err:
return []
return [tag.strip() for tag in c.out.split("\n") if tag.strip()]
def find_git_project_root() -> Path | None:
c = cmd.run("git rev-parse --show-toplevel")
if not c.err:
return Path(c.out.strip())
return None
def is_staging_clean() -> bool:
"""Check if staging is clean."""
c = cmd.run("git diff --no-ext-diff --cached --name-only")
return not bool(c.out)
def is_git_project() -> bool:
c = cmd.run("git rev-parse --is-inside-work-tree")
if c.out.strip() == "true":
return True
return False
def get_eol_style() -> EOLTypes:
c = cmd.run("git config core.eol")
eol = c.out.strip().lower()
# We enumerate the EOL types of the response of
# `git config core.eol`, and map it to our enumration EOLTypes.
#
# It is just like the variant of the "match" syntax.
map = {
"lf": EOLTypes.LF,
"crlf": EOLTypes.CRLF,
"native": EOLTypes.NATIVE,
}
# If the response of `git config core.eol` is in the map:
if eol in map:
return map[eol]
else:
# The default value is "native".
# https://git-scm.com/docs/git-config#Documentation/git-config.txt-coreeol
return map["native"]
def get_core_editor() -> str | None:
c = cmd.run("git var GIT_EDITOR")
if c.out:
return c.out.strip()
return None
def smart_open(*args, **kargs):
"""Open a file with the EOL style determined from Git."""
return open(*args, newline=get_eol_style().get_eol_for_open(), **kargs)
def _get_log_as_str_list(start: str | None, end: str, args: str) -> list[str]:
"""Get string representation of each log entry"""
delimiter = "----------commit-delimiter----------"
log_format: str = "%H%n%s%n%an%n%ae%n%b"
git_log_cmd = (
f"git -c log.showSignature=False log --pretty={log_format}{delimiter} {args}"
)
if start:
command = f"{git_log_cmd} {start}..{end}"
else:
command = f"{git_log_cmd} {end}"
c = cmd.run(command)
if c.return_code != 0:
raise GitCommandError(c.err)
if not c.out:
return []
return c.out.split(f"{delimiter}\n")