forked from sqlfluff/sqlfluff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutil.py
212 lines (183 loc) · 7.68 KB
/
util.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
#!/usr/bin/env python
"""Utility strings for use during deployment.
NB: This is not part of the core sqlfluff code.
"""
# This contains various utility scripts
import os
import re
import shutil
import time
import click
from ghapi.all import GhApi
@click.group()
def cli():
"""Launch the utility cli."""
pass
@cli.command()
@click.option("--path", default=".test-reports")
def clean_tests(path):
"""Clear up the tests directory.
NB: Using scripts allows platform independence
Makes a new one afterward
"""
try:
shutil.rmtree(path)
click.echo(f"Removed {path!r}...")
# OSError is for python 27
# in py36 its FileNotFoundError (but that inherits from IOError, which exists in
# py27)
except OSError:
click.echo(f"Directory {path!r} does not exist. Skipping...")
os.mkdir(path)
click.echo(f"Created {path!r}")
@cli.command()
@click.argument("new_version_num")
def release(new_version_num):
"""Change version number in the cfg files.
NOTE: For fine grained personal access tokens, this requires
_write_ access to the "contents" scope. For dome reason, if you
only grant the _read_ access, you can't see any *draft* PRs
which are necessary for this script to run.
"""
api = GhApi(
owner=os.environ["GITHUB_REPOSITORY_OWNER"],
repo="sqlfluff",
token=os.environ["GITHUB_TOKEN"],
)
releases = api.repos.list_releases(per_page=100)
latest_draft_release = None
for rel in releases:
if rel["draft"]:
latest_draft_release = rel
break
if not latest_draft_release:
raise ValueError("No draft release found!")
# Linkify the PRs and authors
draft_body_parts = latest_draft_release["body"].split("\n")
potential_new_contributors = []
for i, p in enumerate(draft_body_parts):
draft_body_parts[i] = re.sub(
r"\(#([0-9]*)\) @([^ ]*)$",
r"[#\1](https://github.com/sqlfluff/sqlfluff/pull/\1) [@\2](https://github.com/\2)", # noqa E501
p,
)
new_contrib_string = re.sub(
r".*\(#([0-9]*)\) @([^ ]*)$",
r"* [@\2](https://github.com/\2) made their first contribution in [#\1](https://github.com/sqlfluff/sqlfluff/pull/\1)", # noqa E501
p,
)
if new_contrib_string.startswith("* "):
new_contrib_name = re.sub(r"\* \[(.*?)\].*", r"\1", new_contrib_string)
potential_new_contributors.append(
{"name": new_contrib_name, "line": new_contrib_string}
)
whats_changed_text = "\n".join(draft_body_parts)
# Find the first commit for each contributor in this release
potential_new_contributors.reverse()
seen_contributors = set()
deduped_potential_new_contributors = []
for c in potential_new_contributors:
if c["name"] not in seen_contributors:
seen_contributors.add(c["name"])
deduped_potential_new_contributors.append(c)
input_changelog = open("CHANGELOG.md", encoding="utf8").readlines()
write_changelog = open("CHANGELOG.md", "w", encoding="utf8")
for i, line in enumerate(input_changelog):
write_changelog.write(line)
if "DO NOT DELETE THIS LINE" in line:
existing_entry_start = i + 2
# If the release is already in the changelog, update it
if f"## [{new_version_num}]" in input_changelog[existing_entry_start]:
input_changelog[
existing_entry_start
] = f"## [{new_version_num}] - {time.strftime('%Y-%m-%d')}\n"
# Delete the existing What’s Changed and New Contributors sections
remaining_changelog = input_changelog[existing_entry_start:]
existing_whats_changed_start = (
next(
j
for j, line in enumerate(remaining_changelog)
if line.startswith("## What’s Changed")
)
+ existing_entry_start
)
existing_new_contributors_start = (
next(
j
for j, line in enumerate(remaining_changelog)
if line.startswith("## New Contributors")
)
+ existing_entry_start
)
existing_new_contributors_length = (
next(
j
for j, line in enumerate(
input_changelog[existing_new_contributors_start:]
)
if line.startswith("## [")
)
- 1
)
del input_changelog[
existing_whats_changed_start : existing_new_contributors_start
+ existing_new_contributors_length
]
# Now that we've cleared the previous sections, we will accurately
# find if contributors have been previously mentioned in the changelog
new_contributor_lines = []
input_changelog_str = "".join(
input_changelog[existing_whats_changed_start:]
)
for c in deduped_potential_new_contributors:
if c["name"] not in input_changelog_str:
new_contributor_lines.append(c["line"])
input_changelog[existing_whats_changed_start] = (
whats_changed_text
+ "\n\n## New Contributors\n"
+ "\n".join(new_contributor_lines)
+ "\n\n"
)
else:
write_changelog.write(
f"\n## [{new_version_num}] - {time.strftime('%Y-%m-%d')}\n\n## Highlights\n\n" # noqa E501
)
write_changelog.write(whats_changed_text)
write_changelog.write("\n## New Contributors\n\n")
# Ensure contributor names don't appear in input_changelog list
new_contributor_lines = []
input_changelog_str = "".join(input_changelog)
for c in deduped_potential_new_contributors:
if c["name"] not in input_changelog_str:
new_contributor_lines.append(c["line"])
write_changelog.write("\n".join(new_contributor_lines))
write_changelog.write("\n")
write_changelog.close()
for filename in ["setup.cfg", "plugins/sqlfluff-templater-dbt/setup.cfg"]:
input_file = open(filename, "r").readlines()
# Regardless of platform, write newlines as \n
write_file = open(filename, "w", newline="\n")
for line in input_file:
for key in ["stable_version", "version"]:
if line.startswith(key):
line = f"{key} = {new_version_num}\n"
break
if line.startswith(" sqlfluff=="):
line = f" sqlfluff=={new_version_num}\n"
write_file.write(line)
write_file.close()
for filename in ["docs/source/gettingstarted.rst"]:
input_file = open(filename, "r").readlines()
# Regardless of platform, write newlines as \n
write_file = open(filename, "w", newline="\n")
change_next_line = False
for line in input_file:
if change_next_line:
line = f" {new_version_num}\n"
change_next_line = False
elif line.startswith(" $ sqlfluff version"):
change_next_line = True
write_file.write(line)
write_file.close()
if __name__ == "__main__":
cli()