mockforge-core 0.3.114

Shared logic for MockForge - routing, validation, latency, proxy
Documentation
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
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
//! GitHub PR client
//!
//! This module provides functionality for creating pull requests on GitHub.

use crate::pr_generation::types::{PRFileChange, PRFileChangeType, PRRequest, PRResult};
use crate::Error;
use reqwest::Client;

/// GitHub PR client
#[derive(Debug, Clone)]
pub struct GitHubPRClient {
    owner: String,
    repo: String,
    token: String,
    base_branch: String,
    client: Client,
}

impl GitHubPRClient {
    /// Create a new GitHub PR client
    pub fn new(owner: String, repo: String, token: String, base_branch: String) -> Self {
        Self {
            owner,
            repo,
            token,
            base_branch,
            client: Client::new(),
        }
    }

    /// Create a pull request
    pub async fn create_pr(&self, request: PRRequest) -> crate::Result<PRResult> {
        // Step 1: Get base branch SHA
        let base_sha = self.get_branch_sha(&self.base_branch).await?;

        // Step 2: Create new branch
        self.create_branch(&request.branch, &base_sha).await?;

        // Step 3: Create commits for file changes
        let mut current_sha = base_sha;
        for file_change in &request.files {
            current_sha = match file_change.change_type {
                PRFileChangeType::Create | PRFileChangeType::Update => {
                    self.create_file_commit(&request.branch, file_change, &current_sha).await?
                }
                PRFileChangeType::Delete => {
                    self.delete_file_commit(&request.branch, file_change, &current_sha).await?
                }
            };
        }

        // Step 4: Create pull request
        let pr = self.create_pull_request(&request, &current_sha).await?;

        // Step 5: Add labels if any
        if !request.labels.is_empty() {
            self.add_labels(pr.number, &request.labels).await?;
        }

        // Step 6: Request reviewers if any
        if !request.reviewers.is_empty() {
            self.request_reviewers(pr.number, &request.reviewers).await?;
        }

        Ok(pr)
    }

    async fn get_branch_sha(&self, branch: &str) -> crate::Result<String> {
        let url = format!(
            "https://api.github.com/repos/{}/{}/git/ref/heads/{}",
            self.owner, self.repo, branch
        );

        let response = self
            .client
            .get(&url)
            .header("Authorization", format!("Bearer {}", self.token))
            .header("Accept", "application/vnd.github.v3+json")
            .send()
            .await
            .map_err(|e| Error::internal(format!("Failed to get branch: {}", e)))?;

        if !response.status().is_success() {
            return Err(Error::internal(format!("Failed to get branch: {}", response.status())));
        }

        let json: serde_json::Value = response
            .json()
            .await
            .map_err(|e| Error::internal(format!("Failed to parse response: {}", e)))?;

        json["object"]["sha"]
            .as_str()
            .ok_or_else(|| Error::internal("Missing SHA in response"))?
            .to_string()
            .pipe(Ok)
    }

    async fn create_branch(&self, branch: &str, sha: &str) -> crate::Result<()> {
        let url = format!("https://api.github.com/repos/{}/{}/git/refs", self.owner, self.repo);

        let body = serde_json::json!({
            "ref": format!("refs/heads/{}", branch),
            "sha": sha
        });

        let response = self
            .client
            .post(&url)
            .header("Authorization", format!("Bearer {}", self.token))
            .header("Accept", "application/vnd.github.v3+json")
            .json(&body)
            .send()
            .await
            .map_err(|e| Error::internal(format!("Failed to create branch: {}", e)))?;

        let status = response.status();
        if !status.is_success() {
            let error_text = response.text().await.unwrap_or_default();
            return Err(Error::internal(format!(
                "Failed to create branch: {} - {}",
                status, error_text
            )));
        }

        Ok(())
    }

    async fn create_file_commit(
        &self,
        branch: &str,
        file_change: &PRFileChange,
        parent_sha: &str,
    ) -> crate::Result<String> {
        // First, create blob with file content
        let blob_sha = self.create_blob(&file_change.content).await?;

        // Then, create tree with the new file
        let tree_sha = self.create_tree(parent_sha, &file_change.path, &blob_sha, "100644").await?;

        // Finally, create commit
        let commit_sha = self
            .create_commit(parent_sha, &tree_sha, &format!("Update {}", file_change.path))
            .await?;

        // Update branch reference
        self.update_branch_ref(branch, &commit_sha).await?;

        Ok(commit_sha)
    }

    async fn delete_file_commit(
        &self,
        branch: &str,
        file_change: &PRFileChange,
        parent_sha: &str,
    ) -> crate::Result<String> {
        // Create tree without the file
        let tree_sha = self.create_tree_delete(parent_sha, &file_change.path).await?;

        // Create commit
        let commit_sha = self
            .create_commit(parent_sha, &tree_sha, &format!("Delete {}", file_change.path))
            .await?;

        // Update branch reference
        self.update_branch_ref(branch, &commit_sha).await?;

        Ok(commit_sha)
    }

    async fn create_blob(&self, content: &str) -> crate::Result<String> {
        let url = format!("https://api.github.com/repos/{}/{}/git/blobs", self.owner, self.repo);

        let body = serde_json::json!({
            "content": content,
            "encoding": "utf-8"
        });

        let response = self
            .client
            .post(&url)
            .header("Authorization", format!("Bearer {}", self.token))
            .header("Accept", "application/vnd.github.v3+json")
            .json(&body)
            .send()
            .await
            .map_err(|e| Error::internal(format!("Failed to create blob: {}", e)))?;

        if !response.status().is_success() {
            return Err(Error::internal(format!("Failed to create blob: {}", response.status())));
        }

        let json: serde_json::Value = response
            .json()
            .await
            .map_err(|e| Error::internal(format!("Failed to parse response: {}", e)))?;

        json["sha"]
            .as_str()
            .ok_or_else(|| Error::internal("Missing SHA in response"))?
            .to_string()
            .pipe(Ok)
    }

    async fn create_tree(
        &self,
        base_tree_sha: &str,
        path: &str,
        blob_sha: &str,
        mode: &str,
    ) -> crate::Result<String> {
        let url = format!("https://api.github.com/repos/{}/{}/git/trees", self.owner, self.repo);

        let body = serde_json::json!({
            "base_tree": base_tree_sha,
            "tree": [{
                "path": path,
                "mode": mode,
                "type": "blob",
                "sha": blob_sha
            }]
        });

        let response = self
            .client
            .post(&url)
            .header("Authorization", format!("Bearer {}", self.token))
            .header("Accept", "application/vnd.github.v3+json")
            .json(&body)
            .send()
            .await
            .map_err(|e| Error::internal(format!("Failed to create tree: {}", e)))?;

        if !response.status().is_success() {
            return Err(Error::internal(format!("Failed to create tree: {}", response.status())));
        }

        let json: serde_json::Value = response
            .json()
            .await
            .map_err(|e| Error::internal(format!("Failed to parse response: {}", e)))?;

        json["sha"]
            .as_str()
            .ok_or_else(|| Error::internal("Missing SHA in response"))?
            .to_string()
            .pipe(Ok)
    }

    async fn create_tree_delete(&self, base_tree_sha: &str, path: &str) -> crate::Result<String> {
        let url = format!("https://api.github.com/repos/{}/{}/git/trees", self.owner, self.repo);

        let body = serde_json::json!({
            "base_tree": base_tree_sha,
            "tree": [{
                "path": path,
                "mode": "100644",
                "type": "blob",
                "sha": null
            }]
        });

        let response = self
            .client
            .post(&url)
            .header("Authorization", format!("Bearer {}", self.token))
            .header("Accept", "application/vnd.github.v3+json")
            .json(&body)
            .send()
            .await
            .map_err(|e| Error::internal(format!("Failed to create tree: {}", e)))?;

        if !response.status().is_success() {
            return Err(Error::internal(format!("Failed to create tree: {}", response.status())));
        }

        let json: serde_json::Value = response
            .json()
            .await
            .map_err(|e| Error::internal(format!("Failed to parse response: {}", e)))?;

        json["sha"]
            .as_str()
            .ok_or_else(|| Error::internal("Missing SHA in response"))?
            .to_string()
            .pipe(Ok)
    }

    async fn create_commit(
        &self,
        parent_sha: &str,
        tree_sha: &str,
        message: &str,
    ) -> crate::Result<String> {
        let url = format!("https://api.github.com/repos/{}/{}/git/commits", self.owner, self.repo);

        let body = serde_json::json!({
            "message": message,
            "tree": tree_sha,
            "parents": [parent_sha]
        });

        let response = self
            .client
            .post(&url)
            .header("Authorization", format!("Bearer {}", self.token))
            .header("Accept", "application/vnd.github.v3+json")
            .json(&body)
            .send()
            .await
            .map_err(|e| Error::internal(format!("Failed to create commit: {}", e)))?;

        if !response.status().is_success() {
            return Err(Error::internal(format!("Failed to create commit: {}", response.status())));
        }

        let json: serde_json::Value = response
            .json()
            .await
            .map_err(|e| Error::internal(format!("Failed to parse response: {}", e)))?;

        json["sha"]
            .as_str()
            .ok_or_else(|| Error::internal("Missing SHA in response"))?
            .to_string()
            .pipe(Ok)
    }

    async fn update_branch_ref(&self, branch: &str, sha: &str) -> crate::Result<()> {
        let url = format!(
            "https://api.github.com/repos/{}/{}/git/refs/heads/{}",
            self.owner, self.repo, branch
        );

        let body = serde_json::json!({
            "sha": sha,
            "force": false
        });

        let response = self
            .client
            .patch(&url)
            .header("Authorization", format!("Bearer {}", self.token))
            .header("Accept", "application/vnd.github.v3+json")
            .json(&body)
            .send()
            .await
            .map_err(|e| Error::internal(format!("Failed to update branch: {}", e)))?;

        if !response.status().is_success() {
            return Err(Error::internal(format!("Failed to update branch: {}", response.status())));
        }

        Ok(())
    }

    async fn create_pull_request(
        &self,
        request: &PRRequest,
        _head_sha: &str,
    ) -> crate::Result<PRResult> {
        let url = format!("https://api.github.com/repos/{}/{}/pulls", self.owner, self.repo);

        let body = serde_json::json!({
            "title": request.title,
            "body": request.body,
            "head": request.branch,
            "base": self.base_branch
        });

        let response = self
            .client
            .post(&url)
            .header("Authorization", format!("Bearer {}", self.token))
            .header("Accept", "application/vnd.github.v3+json")
            .json(&body)
            .send()
            .await
            .map_err(|e| Error::internal(format!("Failed to create PR: {}", e)))?;

        let status = response.status();
        if !status.is_success() {
            let error_text = response.text().await.unwrap_or_default();
            return Err(Error::internal(format!(
                "Failed to create PR: {} - {}",
                status, error_text
            )));
        }

        let json: serde_json::Value = response
            .json()
            .await
            .map_err(|e| Error::internal(format!("Failed to parse response: {}", e)))?;

        Ok(PRResult {
            number: json["number"].as_u64().ok_or_else(|| Error::internal("Missing PR number"))?,
            url: json["html_url"]
                .as_str()
                .ok_or_else(|| Error::internal("Missing PR URL"))?
                .to_string(),
            branch: request.branch.clone(),
            title: request.title.clone(),
        })
    }

    async fn add_labels(&self, pr_number: u64, labels: &[String]) -> crate::Result<()> {
        let url = format!(
            "https://api.github.com/repos/{}/{}/issues/{}/labels",
            self.owner, self.repo, pr_number
        );

        let body = serde_json::json!({
            "labels": labels
        });

        let response = self
            .client
            .post(&url)
            .header("Authorization", format!("Bearer {}", self.token))
            .header("Accept", "application/vnd.github.v3+json")
            .json(&body)
            .send()
            .await
            .map_err(|e| Error::internal(format!("Failed to add labels: {}", e)))?;

        if !response.status().is_success() {
            return Err(Error::internal(format!("Failed to add labels: {}", response.status())));
        }

        Ok(())
    }

    async fn request_reviewers(&self, pr_number: u64, reviewers: &[String]) -> crate::Result<()> {
        let url = format!(
            "https://api.github.com/repos/{}/{}/pulls/{}/requested_reviewers",
            self.owner, self.repo, pr_number
        );

        let body = serde_json::json!({
            "reviewers": reviewers
        });

        let response = self
            .client
            .post(&url)
            .header("Authorization", format!("Bearer {}", self.token))
            .header("Accept", "application/vnd.github.v3+json")
            .json(&body)
            .send()
            .await
            .map_err(|e| Error::internal(format!("Failed to request reviewers: {}", e)))?;

        if !response.status().is_success() {
            return Err(Error::internal(format!(
                "Failed to request reviewers: {}",
                response.status()
            )));
        }

        Ok(())
    }
}

// Helper trait for pipe operator
trait Pipe: Sized {
    fn pipe<F, R>(self, f: F) -> R
    where
        F: FnOnce(Self) -> R,
    {
        f(self)
    }
}

impl<T> Pipe for T {}