github-bot-sdk 0.2.1

A comprehensive Rust SDK for GitHub App integration with authentication, webhooks, and API client
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
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
// Spec: docs/specs/interfaces/additional-operations.md
// Release operations for GitHub API

use chrono::{DateTime, Utc};
use serde::{Deserialize, Serialize};

use crate::client::issue::IssueUser;
use crate::client::InstallationClient;
use crate::error::ApiError;

/// GitHub release.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Release {
    /// Unique release identifier
    pub id: u64,

    /// Node ID for GraphQL API
    pub node_id: String,

    /// Release tag name
    pub tag_name: String,

    /// Target commitish (branch or commit SHA)
    pub target_commitish: String,

    /// Release name
    pub name: Option<String>,

    /// Release body (Markdown)
    pub body: Option<String>,

    /// Whether this is a draft release
    pub draft: bool,

    /// Whether this is a prerelease
    pub prerelease: bool,

    /// User who created the release
    pub author: IssueUser,

    /// Creation timestamp
    pub created_at: DateTime<Utc>,

    /// Publication timestamp
    pub published_at: Option<DateTime<Utc>>,

    /// Release URL
    pub url: String,

    /// Release HTML URL
    pub html_url: String,

    /// Release assets
    pub assets: Vec<ReleaseAsset>,
}

/// Asset attached to a release.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ReleaseAsset {
    /// Unique asset identifier
    pub id: u64,

    /// Node ID for GraphQL API
    pub node_id: String,

    /// Asset filename
    pub name: String,

    /// Asset label
    pub label: Option<String>,

    /// Asset content type
    pub content_type: String,

    /// Asset state
    pub state: String, // "uploaded", "open"

    /// Asset size in bytes
    pub size: u64,

    /// Download count
    pub download_count: u64,

    /// User who uploaded the asset
    pub uploader: IssueUser,

    /// Creation timestamp
    pub created_at: DateTime<Utc>,

    /// Last update timestamp
    pub updated_at: DateTime<Utc>,

    /// Asset download URL
    pub browser_download_url: String,
}

/// Request to create a release.
#[derive(Debug, Clone, Serialize)]
pub struct CreateReleaseRequest {
    /// Tag name (required)
    pub tag_name: String,

    /// Target commitish (branch or commit SHA)
    #[serde(skip_serializing_if = "Option::is_none")]
    pub target_commitish: Option<String>,

    /// Release name
    #[serde(skip_serializing_if = "Option::is_none")]
    pub name: Option<String>,

    /// Release body (Markdown)
    #[serde(skip_serializing_if = "Option::is_none")]
    pub body: Option<String>,

    /// Whether to create as draft
    #[serde(skip_serializing_if = "Option::is_none")]
    pub draft: Option<bool>,

    /// Whether to mark as prerelease
    #[serde(skip_serializing_if = "Option::is_none")]
    pub prerelease: Option<bool>,

    /// Whether to automatically generate the name and body for this release.
    ///
    /// When set to `true`, GitHub will auto-generate the release name (if `name`
    /// is not provided) and the release notes body from merged pull requests and
    /// other repository activity since the previous release. If `name` is provided
    /// it is used as-is; if `body` is provided it is pre-pended to the generated
    /// notes. Defaults to `false`.
    ///
    /// # Example
    ///
    /// ```
    /// use github_bot_sdk::client::CreateReleaseRequest;
    ///
    /// let request = CreateReleaseRequest {
    ///     tag_name: "v1.2.0".to_string(),
    ///     target_commitish: None,
    ///     name: None,
    ///     body: None,
    ///     draft: None,
    ///     prerelease: None,
    ///     generate_release_notes: Some(true),
    /// };
    /// ```
    #[serde(skip_serializing_if = "Option::is_none")]
    pub generate_release_notes: Option<bool>,
}

/// Request to update a release.
///
/// Note: `generate_release_notes` is intentionally absent from this type.
/// The GitHub Update Release endpoint does not accept that parameter — it is
/// only valid on the Create Release endpoint.
#[derive(Debug, Clone, Serialize, Default)]
pub struct UpdateReleaseRequest {
    /// Tag name
    #[serde(skip_serializing_if = "Option::is_none")]
    pub tag_name: Option<String>,

    /// Target commitish
    #[serde(skip_serializing_if = "Option::is_none")]
    pub target_commitish: Option<String>,

    /// Release name
    #[serde(skip_serializing_if = "Option::is_none")]
    pub name: Option<String>,

    /// Release body (Markdown)
    #[serde(skip_serializing_if = "Option::is_none")]
    pub body: Option<String>,

    /// Whether this is a draft
    #[serde(skip_serializing_if = "Option::is_none")]
    pub draft: Option<bool>,

    /// Whether this is a prerelease
    #[serde(skip_serializing_if = "Option::is_none")]
    pub prerelease: Option<bool>,
}

/// Domain client for release operations.
///
/// Obtained via [`InstallationClient::releases()`]. Cheap to clone (Arc-backed).
///
/// See docs/specs/interfaces/additional-operations.md
#[derive(Debug, Clone)]
pub struct ReleasesClient {
    client: InstallationClient,
}

impl ReleasesClient {
    pub(crate) fn new(client: InstallationClient) -> Self {
        Self { client }
    }

    /// List releases in a repository.
    ///
    /// Retrieves all releases for a repository, including drafts and prereleases.
    ///
    /// # Arguments
    ///
    /// * `owner` - Repository owner
    /// * `repo` - Repository name
    ///
    /// # Returns
    ///
    /// Returns vector of releases ordered by creation date (newest first).
    ///
    /// # Errors
    ///
    /// * `ApiError::NotFound` - Repository does not exist
    /// * `ApiError::AuthorizationFailed` - Insufficient permissions
    ///
    /// # Example
    ///
    /// ```no_run
    /// # use github_bot_sdk::client::ReleasesClient;
    /// # async fn example(client: &ReleasesClient) -> Result<(), Box<dyn std::error::Error>> {
    /// let releases = client.list("owner", "repo").await?;
    /// for release in releases {
    ///     println!("Release: {} ({})", release.name.unwrap_or_default(), release.tag_name);
    /// }
    /// # Ok(())
    /// # }
    /// ```
    pub async fn list(&self, owner: &str, repo: &str) -> Result<Vec<Release>, ApiError> {
        let path = format!("/repos/{}/{}/releases", owner, repo);
        let response = self.client.get(&path).await?;

        let status = response.status();
        if !status.is_success() {
            return Err(super::map_http_error(status, response).await);
        }

        response.json().await.map_err(ApiError::from)
    }

    /// Get the latest published release.
    ///
    /// Returns the most recent non-draft, non-prerelease release.
    ///
    /// # Arguments
    ///
    /// * `owner` - Repository owner
    /// * `repo` - Repository name
    ///
    /// # Returns
    ///
    /// Returns the latest published `Release`.
    ///
    /// # Errors
    ///
    /// * `ApiError::NotFound` - Repository or no published releases exist
    /// * `ApiError::AuthorizationFailed` - Insufficient permissions
    ///
    /// # Example
    ///
    /// ```no_run
    /// # use github_bot_sdk::client::ReleasesClient;
    /// # async fn example(client: &ReleasesClient) -> Result<(), Box<dyn std::error::Error>> {
    /// let release = client.get_latest("owner", "repo").await?;
    /// println!("Latest: {} ({})", release.name.unwrap_or_default(), release.tag_name);
    /// # Ok(())
    /// # }
    /// ```
    pub async fn get_latest(&self, owner: &str, repo: &str) -> Result<Release, ApiError> {
        let path = format!("/repos/{}/{}/releases/latest", owner, repo);
        let response = self.client.get(&path).await?;

        let status = response.status();
        if !status.is_success() {
            return Err(super::map_http_error(status, response).await);
        }

        response.json().await.map_err(ApiError::from)
    }

    /// Get a release by tag name.
    ///
    /// Retrieves a release by its git tag name.
    ///
    /// # Arguments
    ///
    /// * `owner` - Repository owner
    /// * `repo` - Repository name
    /// * `tag` - Git tag name
    ///
    /// # Returns
    ///
    /// Returns the `Release` with the specified tag.
    ///
    /// # Errors
    ///
    /// * `ApiError::NotFound` - Release with tag does not exist
    /// * `ApiError::AuthorizationFailed` - Insufficient permissions
    ///
    /// # Example
    ///
    /// ```no_run
    /// # use github_bot_sdk::client::ReleasesClient;
    /// # async fn example(client: &ReleasesClient) -> Result<(), Box<dyn std::error::Error>> {
    /// let release = client.get_by_tag("owner", "repo", "v1.0.0").await?;
    /// println!("Release: {}", release.tag_name);
    /// # Ok(())
    /// # }
    /// ```
    pub async fn get_by_tag(
        &self,
        owner: &str,
        repo: &str,
        tag: &str,
    ) -> Result<Release, ApiError> {
        let encoded_tag = urlencoding::encode(tag);
        let path = format!("/repos/{}/{}/releases/tags/{}", owner, repo, encoded_tag);
        let response = self.client.get(&path).await?;

        let status = response.status();
        if !status.is_success() {
            return Err(super::map_http_error(status, response).await);
        }

        response.json().await.map_err(ApiError::from)
    }

    /// Get a release by ID.
    ///
    /// Retrieves a release by its unique identifier.
    ///
    /// # Arguments
    ///
    /// * `owner` - Repository owner
    /// * `repo` - Repository name
    /// * `release_id` - Release ID
    ///
    /// # Returns
    ///
    /// Returns the `Release` with the specified ID.
    ///
    /// # Errors
    ///
    /// * `ApiError::NotFound` - Release does not exist
    /// * `ApiError::AuthorizationFailed` - Insufficient permissions
    ///
    /// # Example
    ///
    /// ```no_run
    /// # use github_bot_sdk::client::ReleasesClient;
    /// # async fn example(client: &ReleasesClient) -> Result<(), Box<dyn std::error::Error>> {
    /// let release = client.get("owner", "repo", 12345).await?;
    /// println!("Release: {}", release.tag_name);
    /// # Ok(())
    /// # }
    /// ```
    pub async fn get(&self, owner: &str, repo: &str, release_id: u64) -> Result<Release, ApiError> {
        let path = format!("/repos/{}/{}/releases/{}", owner, repo, release_id);
        let response = self.client.get(&path).await?;

        let status = response.status();
        if !status.is_success() {
            return Err(super::map_http_error(status, response).await);
        }

        response.json().await.map_err(ApiError::from)
    }

    /// Create a new release.
    ///
    /// Creates a new release for a repository. Can create published releases,
    /// drafts, or prereleases.
    ///
    /// # Arguments
    ///
    /// * `owner` - Repository owner
    /// * `repo` - Repository name
    /// * `request` - Release creation parameters
    ///
    /// # Returns
    ///
    /// Returns the created `Release`.
    ///
    /// # Errors
    ///
    /// * `ApiError::InvalidRequest` - Tag already exists or invalid parameters
    /// * `ApiError::AuthorizationFailed` - Insufficient permissions
    ///
    /// # Example
    ///
    /// ```no_run
    /// # use github_bot_sdk::client::{ReleasesClient, CreateReleaseRequest};
    /// # async fn example(client: &ReleasesClient) -> Result<(), Box<dyn std::error::Error>> {
    /// let request = CreateReleaseRequest {
    ///     tag_name: "v1.0.0".to_string(),
    ///     name: Some("Version 1.0.0".to_string()),
    ///     body: Some("Release notes".to_string()),
    ///     draft: Some(false),
    ///     prerelease: Some(false),
    ///     target_commitish: None,
    ///     generate_release_notes: None,
    /// };
    /// let release = client.create("owner", "repo", request).await?;
    /// println!("Created release: {}", release.tag_name);
    /// # Ok(())
    /// # }
    /// ```
    pub async fn create(
        &self,
        owner: &str,
        repo: &str,
        request: CreateReleaseRequest,
    ) -> Result<Release, ApiError> {
        let path = format!("/repos/{}/{}/releases", owner, repo);
        let response = self.client.post(&path, &request).await?;

        let status = response.status();
        if !status.is_success() {
            return Err(super::map_http_error(status, response).await);
        }

        response.json().await.map_err(ApiError::from)
    }

    /// Update an existing release.
    ///
    /// Updates release properties. Only specified fields are modified.
    ///
    /// # Arguments
    ///
    /// * `owner` - Repository owner
    /// * `repo` - Repository name
    /// * `release_id` - Release ID
    /// * `request` - Fields to update
    ///
    /// # Returns
    ///
    /// Returns the updated `Release`.
    ///
    /// # Errors
    ///
    /// * `ApiError::NotFound` - Release does not exist
    /// * `ApiError::InvalidRequest` - Invalid parameters
    /// * `ApiError::AuthorizationFailed` - Insufficient permissions
    ///
    /// # Example
    ///
    /// ```no_run
    /// # use github_bot_sdk::client::{ReleasesClient, UpdateReleaseRequest};
    /// # async fn example(client: &ReleasesClient) -> Result<(), Box<dyn std::error::Error>> {
    /// let request = UpdateReleaseRequest {
    ///     name: Some("Updated name".to_string()),
    ///     body: Some("Updated notes".to_string()),
    ///     ..Default::default()
    /// };
    /// let release = client.update("owner", "repo", 12345, request).await?;
    /// println!("Updated release: {}", release.tag_name);
    /// # Ok(())
    /// # }
    /// ```
    pub async fn update(
        &self,
        owner: &str,
        repo: &str,
        release_id: u64,
        request: UpdateReleaseRequest,
    ) -> Result<Release, ApiError> {
        let path = format!("/repos/{}/{}/releases/{}", owner, repo, release_id);
        let response = self.client.patch(&path, &request).await?;

        let status = response.status();
        if !status.is_success() {
            return Err(super::map_http_error(status, response).await);
        }

        response.json().await.map_err(ApiError::from)
    }

    /// Delete a release.
    ///
    /// Deletes a release. Does not delete the associated git tag.
    ///
    /// # Arguments
    ///
    /// * `owner` - Repository owner
    /// * `repo` - Repository name
    /// * `release_id` - Release ID
    ///
    /// # Returns
    ///
    /// Returns `Ok(())` on successful deletion.
    ///
    /// # Errors
    ///
    /// * `ApiError::NotFound` - Release does not exist
    /// * `ApiError::AuthorizationFailed` - Insufficient permissions
    ///
    /// # Example
    ///
    /// ```no_run
    /// # use github_bot_sdk::client::ReleasesClient;
    /// # async fn example(client: &ReleasesClient) -> Result<(), Box<dyn std::error::Error>> {
    /// client.delete("owner", "repo", 12345).await?;
    /// println!("Release deleted");
    /// # Ok(())
    /// # }
    /// ```
    pub async fn delete(&self, owner: &str, repo: &str, release_id: u64) -> Result<(), ApiError> {
        let path = format!("/repos/{}/{}/releases/{}", owner, repo, release_id);
        let response = self.client.delete(&path).await?;

        let status = response.status();
        if !status.is_success() {
            return Err(super::map_http_error(status, response).await);
        }

        Ok(())
    }
}

#[cfg(test)]
#[path = "release_tests.rs"]
mod tests;