-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathgithub.rs
More file actions
313 lines (277 loc) · 9.62 KB
/
github.rs
File metadata and controls
313 lines (277 loc) · 9.62 KB
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
303
304
305
306
307
308
309
310
311
312
313
use actix_web::HttpResponse;
use octocrab::Octocrab;
use regex::Regex;
use tracing::error;
#[derive(Debug)]
pub struct GitHub {
octocrab: Option<Octocrab>,
}
impl Default for GitHub {
fn default() -> Self {
let octocrab = if let Some(personal_token) = Self::github_token() {
Octocrab::builder()
.personal_token(personal_token)
.build()
.map_err(|e| error!(error = ?e, "Could not create Octocrab instance"))
.ok()
} else {
None
};
Self { octocrab }
}
}
impl GitHub {
#[tracing::instrument(skip(description))]
pub async fn open_issue(
self,
title: &str,
description: &str,
labels: Vec<String>,
) -> HttpResponse {
let title = Self::clean_feedback_data(title, 512);
let description = Self::clean_feedback_data(description, 1024 * 1024);
if title.len() < 3 || description.len() < 10 {
return HttpResponse::UnprocessableEntity()
.content_type("text/plain")
.body("Subject or body missing or too short");
}
let Some(octocrab) = self.octocrab else {
return HttpResponse::InternalServerError()
.content_type("text/plain")
.body("Failed to create issue, please try again later");
};
let resp = octocrab
.issues("TUM-Dev", "navigatum")
.create(title)
.body(description)
.labels(labels)
.send()
.await;
match resp {
Ok(issue) => HttpResponse::Created()
.content_type("text/plain")
.body(issue.html_url.to_string()),
Err(e) => {
error!(error = ?e, "Error creating issue");
HttpResponse::InternalServerError()
.content_type("text/plain")
.body("Failed to create issue, please try again later")
}
}
}
#[tracing::instrument(skip(description))]
pub async fn open_pr(
self,
branch: String,
title: &str,
description: &str,
labels: Vec<String>,
) -> HttpResponse {
let Some(octocrab) = self.octocrab else {
return HttpResponse::InternalServerError()
.content_type("text/plain")
.body("Failed to create a pull request, please try again later");
};
// create the PR
let pr_number = match octocrab
.pulls("TUM-Dev", "NavigaTUM")
.create(title, branch, "main")
.body(description)
.maintainer_can_modify(true)
.send()
.await
{
Ok(pr) => pr.number,
Err(e) => {
error!(error = ?e, "Error creating pull request");
return HttpResponse::InternalServerError()
.content_type("text/plain")
.body("Failed to create a pull request, please try again later");
}
};
// For some reason the labels and assignees cannot be set via the create call, but must be updated afterwards
let resp = octocrab
.issues("TUM-Dev", "navigatum")
.update(pr_number)
.labels(&labels)
.assignees(&["CommanderStorm".to_string()])
.send()
.await;
match resp {
Ok(issue) => HttpResponse::Created()
.content_type("text/plain")
.body(issue.html_url.to_string()),
Err(e) => {
error!(error = ?e, "Error updating PR");
HttpResponse::InternalServerError()
.content_type("text/plain")
.body("Failed to create a pull request, please try again later")
}
}
}
/// Remove all returns a string, which has
/// - all control characters removed
/// - is at most len characters long
/// - can be nicely formatted in markdown (just \n in md is not a linebreak)
fn clean_feedback_data(s: &str, len: usize) -> String {
let s_clean = s
.chars()
.filter(|c| !c.is_control() || (c == &'\n'))
.take(len)
.collect::<String>();
let re = Regex::new(r"[ \t]*\n").unwrap();
re.replace_all(&s_clean, " \n").to_string()
}
pub fn github_token() -> Option<String> {
match std::env::var("GITHUB_TOKEN") {
Ok(token) => Some(token.trim().to_string()),
Err(e) => {
error!(error = ?e, "GITHUB_TOKEN has to be set for feedback");
None
}
}
}
/// Find an open PR with a specific label
#[tracing::instrument]
pub async fn find_pr_with_label(self, label: &str) -> anyhow::Result<Option<(u64, String)>> {
let Some(octocrab) = self.octocrab else {
anyhow::bail!("GitHub client not initialized");
};
// Search through all pages of open PRs to find one with the label
let mut page = octocrab
.pulls("TUM-Dev", "NavigaTUM")
.list()
.state(octocrab::params::State::Open)
.per_page(100)
.send()
.await?;
loop {
for pr in &page.items {
if let Some(labels) = &pr.labels {
for pr_label in labels {
if pr_label.name == label {
return Ok(Some((pr.number, pr.head.ref_field.clone())));
}
}
}
}
// Check if there's a next page
match octocrab.get_page(&page.next).await? {
Some(next_page) => page = next_page,
None => break,
}
}
Ok(None)
}
/// Update PR labels
#[tracing::instrument]
pub async fn update_pr_labels(self, pr_number: u64, labels: Vec<String>) -> anyhow::Result<()> {
let Some(octocrab) = self.octocrab else {
anyhow::bail!("GitHub client not initialized");
};
octocrab
.issues("TUM-Dev", "NavigaTUM")
.update(pr_number)
.labels(&labels)
.send()
.await?;
Ok(())
}
/// Update PR title
#[tracing::instrument]
pub async fn update_pr_title(self, pr_number: u64, title: &str) -> anyhow::Result<()> {
let Some(octocrab) = self.octocrab else {
anyhow::bail!("GitHub client not initialized");
};
octocrab
.issues("TUM-Dev", "NavigaTUM")
.update(pr_number)
.title(title)
.send()
.await?;
Ok(())
}
/// Get the number of commits in a PR
#[tracing::instrument]
pub async fn get_pr_commit_count(self, pr_number: u64) -> anyhow::Result<usize> {
let Some(octocrab) = self.octocrab else {
anyhow::bail!("GitHub client not initialized");
};
// Fetch the first page of commits (up to 100 per page)
let mut page = octocrab
.pulls("TUM-Dev", "NavigaTUM")
.pr_commits(pr_number)
.per_page(100)
.send()
.await?;
// Count commits from the first page
let mut total_commits = page.items.len();
// Follow pagination links to count commits from all subsequent pages
while let Some(next_page) = octocrab.get_page(&page.next).await? {
total_commits += next_page.items.len();
page = next_page;
}
Ok(total_commits)
}
/// Get PR description (body)
#[tracing::instrument]
pub async fn get_pr_description(self, pr_number: u64) -> anyhow::Result<String> {
let Some(octocrab) = self.octocrab else {
anyhow::bail!("GitHub client not initialized");
};
let pr = octocrab
.pulls("TUM-Dev", "NavigaTUM")
.get(pr_number)
.await?;
Ok(pr.body.unwrap_or_default())
}
/// Update PR description (body)
#[tracing::instrument(skip(description))]
pub async fn update_pr_description(
self,
pr_number: u64,
description: &str,
) -> anyhow::Result<()> {
let Some(octocrab) = self.octocrab else {
anyhow::bail!("GitHub client not initialized");
};
octocrab
.issues("TUM-Dev", "NavigaTUM")
.update(pr_number)
.body(description)
.send()
.await?;
Ok(())
}
}
#[cfg(test)]
mod tests {
use pretty_assertions::assert_eq;
use super::*;
#[test]
fn newlines_whitespace() {
assert_eq!(
GitHub::clean_feedback_data("a\r\nb", 9),
GitHub::clean_feedback_data("a\nb", 9)
);
assert_eq!(GitHub::clean_feedback_data("a\nb\nc", 9), "a \nb \nc");
assert_eq!(GitHub::clean_feedback_data("a\nb \nc", 9), "a \nb \nc");
assert_eq!(GitHub::clean_feedback_data("a \nb", 9), "a \nb");
assert_eq!(GitHub::clean_feedback_data("a\n\nb", 9), "a \n \nb");
assert_eq!(GitHub::clean_feedback_data("a\n b", 9), "a \n b");
}
#[test]
fn truncate_len() {
for i in 0..10 {
let mut expected = "abcd".to_string();
expected.truncate(i);
assert_eq!(GitHub::clean_feedback_data("abcd", i), expected);
}
}
#[test]
fn special_cases() {
assert_eq!(GitHub::clean_feedback_data("", 0), "");
assert_eq!(GitHub::clean_feedback_data("a\x05bc", 9), "abc");
assert_eq!(GitHub::clean_feedback_data("ab\x0Dc", 9), "abc");
}
}