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
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
//! GitHub Repository Pages API.
//!
//! See: [GitHub API Documentation](https://docs.github.com/en/rest/pages/pages?apiVersion=2022-11-28)
use super::RepoHandler;
use crate::{
models::{
repos::{
PageBuild, PageBuildStatus, PagesBuildType, PagesDeployment, PagesDeploymentId,
PagesDeploymentStatus, PagesHealthCheck, PagesSite, PagesSource, UpdatePagesSource,
},
PageBuildId,
},
Page, Result,
};
/// A client to GitHub's repository pages API.
///
/// Created with [`RepoHandler::pages`].
///
/// See also: [GitHub API Documentation](https://docs.github.com/en/rest/pages/pages?apiVersion=2022-11-28)
pub struct RepoPagesHandler<'octo, 'r> {
handler: &'r RepoHandler<'octo>,
}
impl<'octo, 'r> RepoPagesHandler<'octo, 'r> {
pub(crate) fn new(handler: &'r RepoHandler<'octo>) -> Self {
Self { handler }
}
/// Access the builds sub-API for GitHub Pages.
pub fn builds(&self) -> RepoPagesBuildsHandler<'octo, 'r> {
RepoPagesBuildsHandler::new(self.handler)
}
/// Access the deployments sub-API for GitHub Pages.
pub fn deployments(&self) -> RepoPagesDeploymentsHandler<'octo, 'r> {
RepoPagesDeploymentsHandler::new(self.handler)
}
/// Gets information about a GitHub Pages site.
///
/// See: [GitHub API Documentation](https://docs.github.com/en/rest/pages/pages?apiVersion=2022-11-28#get-a-github-pages-site)
///
/// # Examples
///
/// ```no_run
/// # async fn run(octocrab: &octocrab::Octocrab) -> octocrab::Result<()> {
/// let site = octocrab
/// .repos("owner", "repo")
/// .pages()
/// .get()
/// .await?;
/// # Ok(())
/// # }
/// ```
pub async fn get(&self) -> Result<PagesSite> {
let route = format!("/{}/pages", self.handler.repo);
self.handler.crab.get(route, None::<&()>).await
}
/// Creates a builder to configure and enable a GitHub Pages site.
///
/// See: [GitHub API Documentation](https://docs.github.com/en/rest/pages/pages?apiVersion=2022-11-28#create-a-apiname-pages-site)
///
/// # Examples
///
/// ```no_run
/// # async fn run(octocrab: &octocrab::Octocrab) -> octocrab::Result<()> {
/// use octocrab::models::repos::{PagesBuildType, PagesSource};
///
/// let site = octocrab
/// .repos("owner", "repo")
/// .pages()
/// .create()
/// .source_branch("main", "/")
/// .build_type(PagesBuildType::Legacy)
/// .send()
/// .await?;
/// # Ok(())
/// # }
/// ```
pub fn create(&self) -> CreatePagesSiteBuilder<'octo, 'r> {
CreatePagesSiteBuilder::new(self.handler)
}
/// Creates a builder to update information about a GitHub Pages site.
///
/// See: [GitHub API Documentation](https://docs.github.com/en/rest/pages/pages?apiVersion=2022-11-28#update-information-about-a-apiname-pages-site)
///
/// # Examples
///
/// ```no_run
/// # async fn run(octocrab: &octocrab::Octocrab) -> octocrab::Result<()> {
/// octocrab
/// .repos("owner", "repo")
/// .pages()
/// .update()
/// .cname("example.com")
/// .https_enforced(true)
/// .send()
/// .await?;
/// # Ok(())
/// # }
/// ```
pub fn update(&self) -> UpdatePagesSiteBuilder<'octo, 'r> {
UpdatePagesSiteBuilder::new(self.handler)
}
/// Deletes a GitHub Pages site.
///
/// See: [GitHub API Documentation](https://docs.github.com/en/rest/pages/pages?apiVersion=2022-11-28#delete-a-apiname-pages-site)
///
/// # Examples
///
/// ```no_run
/// # async fn run(octocrab: &octocrab::Octocrab) -> octocrab::Result<()> {
/// octocrab
/// .repos("owner", "repo")
/// .pages()
/// .delete()
/// .await?;
/// # Ok(())
/// # }
/// ```
pub async fn delete(&self) -> Result<()> {
let route = format!("/{}/pages", self.handler.repo);
let response = self.handler.crab._delete(route, None::<&()>).await?;
if response.status() != http::StatusCode::NO_CONTENT {
return Err(crate::map_github_error(response).await.unwrap_err());
}
Ok(())
}
/// Gets a DNS health check for GitHub Pages.
///
/// See: [GitHub API Documentation](https://docs.github.com/en/rest/pages/pages?apiVersion=2022-11-28#get-a-dns-health-check-for-github-pages)
///
/// # Examples
///
/// ```no_run
/// # async fn run(octocrab: &octocrab::Octocrab) -> octocrab::Result<()> {
/// let health = octocrab
/// .repos("owner", "repo")
/// .pages()
/// .health()
/// .await?;
/// # Ok(())
/// # }
/// ```
pub async fn health(&self) -> Result<PagesHealthCheck> {
let route = format!("/{}/pages/health", self.handler.repo);
self.handler.crab.get(route, None::<&()>).await
}
/// Creates a builder to list GitHub Pages builds.
///
/// Convenience method for [`RepoPagesBuildsHandler::list`].
pub fn list_builds(&self) -> ListPagesBuildsBuilder<'octo, 'r> {
self.builds().list()
}
/// Gets the latest GitHub Pages build.
///
/// Convenience method for [`RepoPagesBuildsHandler::latest`].
pub async fn latest_build(&self) -> Result<PageBuild> {
self.builds().latest().await
}
/// Gets a specific GitHub Pages build by ID.
///
/// Convenience method for [`RepoPagesBuildsHandler::get`].
pub async fn get_build(&self, build_id: impl Into<PageBuildId>) -> Result<PageBuild> {
self.builds().get(build_id).await
}
/// Requests a new GitHub Pages build.
///
/// Convenience method for [`RepoPagesBuildsHandler::request`].
pub async fn request_build(&self) -> Result<PageBuildStatus> {
self.builds().request().await
}
/// Creates a builder to create a GitHub Pages deployment.
///
/// Convenience method for [`RepoPagesDeploymentsHandler::create`].
pub fn create_deployment(
&self,
oidc_token: impl Into<String>,
) -> CreatePagesDeploymentBuilder<'octo, 'r> {
self.deployments().create(oidc_token)
}
/// Gets the status of a GitHub Pages deployment.
///
/// Convenience method for [`RepoPagesDeploymentsHandler::status`].
pub async fn get_deployment_status(
&self,
deployment_id: impl Into<PagesDeploymentId>,
) -> Result<PagesDeploymentStatus> {
self.deployments().status(deployment_id).await
}
/// Cancels a GitHub Pages deployment.
///
/// Convenience method for [`RepoPagesDeploymentsHandler::cancel`].
pub async fn cancel_deployment(
&self,
deployment_id: impl Into<PagesDeploymentId>,
) -> Result<()> {
self.deployments().cancel(deployment_id).await
}
}
/// A client to GitHub's repository pages builds API.
///
/// Created with [`RepoPagesHandler::builds`].
pub struct RepoPagesBuildsHandler<'octo, 'r> {
handler: &'r RepoHandler<'octo>,
}
impl<'octo, 'r> RepoPagesBuildsHandler<'octo, 'r> {
pub(crate) fn new(handler: &'r RepoHandler<'octo>) -> Self {
Self { handler }
}
/// Lists builds of a GitHub Pages site.
///
/// See: [GitHub API Documentation](https://docs.github.com/en/rest/pages/pages?apiVersion=2022-11-28#list-apiname-pages-builds)
///
/// # Examples
///
/// ```no_run
/// # async fn run(octocrab: &octocrab::Octocrab) -> octocrab::Result<()> {
/// let builds = octocrab
/// .repos("owner", "repo")
/// .pages()
/// .builds()
/// .list()
/// .per_page(50)
/// .send()
/// .await?;
/// # Ok(())
/// # }
/// ```
pub fn list(&self) -> ListPagesBuildsBuilder<'octo, 'r> {
ListPagesBuildsBuilder::new(self.handler)
}
/// Gets the latest build of a GitHub Pages site.
///
/// See: [GitHub API Documentation](https://docs.github.com/en/rest/pages/pages?apiVersion=2022-11-28#get-latest-pages-build)
///
/// # Examples
///
/// ```no_run
/// # async fn run(octocrab: &octocrab::Octocrab) -> octocrab::Result<()> {
/// let latest = octocrab
/// .repos("owner", "repo")
/// .pages()
/// .builds()
/// .latest()
/// .await?;
/// # Ok(())
/// # }
/// ```
pub async fn latest(&self) -> Result<PageBuild> {
let route = format!("/{}/pages/builds/latest", self.handler.repo);
self.handler.crab.get(route, None::<&()>).await
}
/// Gets a specific build of a GitHub Pages site by ID.
///
/// See: [GitHub API Documentation](https://docs.github.com/en/rest/pages/pages?apiVersion=2022-11-28#get-github-pages-build)
///
/// # Examples
///
/// ```no_run
/// # async fn run(octocrab: &octocrab::Octocrab) -> octocrab::Result<()> {
/// let build = octocrab
/// .repos("owner", "repo")
/// .pages()
/// .builds()
/// .get(5472601u64)
/// .await?;
/// # Ok(())
/// # }
/// ```
pub async fn get(&self, build_id: impl Into<PageBuildId>) -> Result<PageBuild> {
let build_id = build_id.into();
let route = format!("/{}/pages/builds/{build_id}", self.handler.repo);
self.handler.crab.get(route, None::<&()>).await
}
/// Requests a new GitHub Pages build.
///
/// See: [GitHub API Documentation](https://docs.github.com/en/rest/pages/pages?apiVersion=2022-11-28#request-a-apiname-pages-build)
///
/// # Examples
///
/// ```no_run
/// # async fn run(octocrab: &octocrab::Octocrab) -> octocrab::Result<()> {
/// let build_status = octocrab
/// .repos("owner", "repo")
/// .pages()
/// .builds()
/// .request()
/// .await?;
/// # Ok(())
/// # }
/// ```
pub async fn request(&self) -> Result<PageBuildStatus> {
let route = format!("/{}/pages/builds", self.handler.repo);
self.handler.crab.post(route, None::<&()>).await
}
}
/// A client to GitHub's repository pages deployments API.
///
/// Created with [`RepoPagesHandler::deployments`].
pub struct RepoPagesDeploymentsHandler<'octo, 'r> {
handler: &'r RepoHandler<'octo>,
}
impl<'octo, 'r> RepoPagesDeploymentsHandler<'octo, 'r> {
pub(crate) fn new(handler: &'r RepoHandler<'octo>) -> Self {
Self { handler }
}
/// Creates a builder to create a GitHub Pages deployment.
///
/// See: [GitHub API Documentation](https://docs.github.com/en/rest/pages/pages?apiVersion=2022-11-28#create-a-github-pages-deployment)
///
/// # Examples
///
/// ```no_run
/// # async fn run(octocrab: &octocrab::Octocrab) -> octocrab::Result<()> {
/// let deployment = octocrab
/// .repos("owner", "repo")
/// .pages()
/// .deployments()
/// .create("oidc_jwt_token")
/// .artifact_id(12345u64)
/// .send()
/// .await?;
/// # Ok(())
/// # }
/// ```
pub fn create(&self, oidc_token: impl Into<String>) -> CreatePagesDeploymentBuilder<'octo, 'r> {
CreatePagesDeploymentBuilder::new(self.handler, oidc_token.into())
}
/// Gets the status of a GitHub Pages deployment.
///
/// See: [GitHub API Documentation](https://docs.github.com/en/rest/pages/pages?apiVersion=2022-11-28#get-the-status-of-a-github-pages-deployment)
///
/// # Examples
///
/// ```no_run
/// # async fn run(octocrab: &octocrab::Octocrab) -> octocrab::Result<()> {
/// let status = octocrab
/// .repos("owner", "repo")
/// .pages()
/// .deployments()
/// .status("4fd754f7e594640989b406850d0bc8f06a121251")
/// .await?;
/// # Ok(())
/// # }
/// ```
pub async fn status(
&self,
deployment_id: impl Into<PagesDeploymentId>,
) -> Result<PagesDeploymentStatus> {
let deployment_id = deployment_id.into();
let route = format!("/{}/pages/deployments/{deployment_id}", self.handler.repo);
self.handler.crab.get(route, None::<&()>).await
}
/// Cancels a GitHub Pages deployment.
///
/// See: [GitHub API Documentation](https://docs.github.com/en/rest/pages/pages?apiVersion=2022-11-28#cancel-a-github-pages-deployment)
///
/// # Examples
///
/// ```no_run
/// # async fn run(octocrab: &octocrab::Octocrab) -> octocrab::Result<()> {
/// octocrab
/// .repos("owner", "repo")
/// .pages()
/// .deployments()
/// .cancel("4fd754f7e594640989b406850d0bc8f06a121251")
/// .await?;
/// # Ok(())
/// # }
/// ```
pub async fn cancel(&self, deployment_id: impl Into<PagesDeploymentId>) -> Result<()> {
let deployment_id = deployment_id.into();
let route = format!(
"/{}/pages/deployments/{deployment_id}/cancel",
self.handler.repo
);
let response = self.handler.crab._post(route, None::<&()>).await?;
if response.status() != http::StatusCode::NO_CONTENT {
return Err(crate::map_github_error(response).await.unwrap_err());
}
Ok(())
}
}
/// A builder pattern struct for creating a GitHub Pages site.
///
/// Created by [`RepoPagesHandler::create`].
#[derive(serde::Serialize)]
pub struct CreatePagesSiteBuilder<'octo, 'r> {
#[serde(skip)]
handler: &'r RepoHandler<'octo>,
#[serde(skip_serializing_if = "Option::is_none")]
build_type: Option<PagesBuildType>,
#[serde(skip_serializing_if = "Option::is_none")]
source: Option<PagesSource>,
}
impl<'octo, 'r> CreatePagesSiteBuilder<'octo, 'r> {
pub(crate) fn new(handler: &'r RepoHandler<'octo>) -> Self {
Self {
handler,
build_type: None,
source: None,
}
}
/// The process in which the Page will be built. Possible values are `legacy` and `workflow`.
pub fn build_type(mut self, build_type: impl Into<PagesBuildType>) -> Self {
self.build_type = Some(build_type.into());
self
}
/// The source branch and directory used to publish your Pages site.
pub fn source(mut self, source: PagesSource) -> Self {
self.source = Some(source);
self
}
/// Sets the source branch and path used to publish your Pages site.
pub fn source_branch(mut self, branch: impl Into<String>, path: impl Into<String>) -> Self {
self.source = Some(PagesSource::new(branch, path));
self
}
/// Sends the actual request.
pub async fn send(self) -> Result<PagesSite> {
let route = format!("/{}/pages", self.handler.repo);
self.handler.crab.post(route, Some(&self)).await
}
}
/// A builder pattern struct for updating information about a GitHub Pages site.
///
/// Created by [`RepoPagesHandler::update`].
#[derive(serde::Serialize)]
pub struct UpdatePagesSiteBuilder<'octo, 'r> {
#[serde(skip)]
handler: &'r RepoHandler<'octo>,
#[serde(skip_serializing_if = "Option::is_none")]
cname: Option<Option<String>>,
#[serde(skip_serializing_if = "Option::is_none")]
https_enforced: Option<bool>,
#[serde(skip_serializing_if = "Option::is_none")]
build_type: Option<PagesBuildType>,
#[serde(skip_serializing_if = "Option::is_none")]
source: Option<UpdatePagesSource>,
}
impl<'octo, 'r> UpdatePagesSiteBuilder<'octo, 'r> {
pub(crate) fn new(handler: &'r RepoHandler<'octo>) -> Self {
Self {
handler,
cname: None,
https_enforced: None,
build_type: None,
source: None,
}
}
/// Specify a custom domain for the repository.
pub fn cname(mut self, cname: impl Into<String>) -> Self {
self.cname = Some(Some(cname.into()));
self
}
/// Removes the custom domain by sending `null`.
pub fn remove_cname(mut self) -> Self {
self.cname = Some(None);
self
}
/// Specify whether HTTPS should be enforced for the repository.
pub fn https_enforced(mut self, https_enforced: bool) -> Self {
self.https_enforced = Some(https_enforced);
self
}
/// The process by which the GitHub Pages site will be built.
pub fn build_type(mut self, build_type: impl Into<PagesBuildType>) -> Self {
self.build_type = Some(build_type.into());
self
}
/// Update the source for the repository.
pub fn source(mut self, source: impl Into<UpdatePagesSource>) -> Self {
self.source = Some(source.into());
self
}
/// Sends the actual request.
pub async fn send(self) -> Result<()> {
let route = format!("/{}/pages", self.handler.repo);
let response = self.handler.crab._put(route, Some(&self)).await?;
if response.status() != http::StatusCode::NO_CONTENT {
return Err(crate::map_github_error(response).await.unwrap_err());
}
Ok(())
}
}
/// A builder pattern struct for listing GitHub Pages builds.
///
/// Created by [`RepoPagesBuildsHandler::list`] or [`RepoPagesHandler::list_builds`].
#[derive(serde::Serialize)]
pub struct ListPagesBuildsBuilder<'octo, 'r> {
#[serde(skip)]
handler: &'r RepoHandler<'octo>,
#[serde(skip_serializing_if = "Option::is_none")]
per_page: Option<u8>,
#[serde(skip_serializing_if = "Option::is_none")]
page: Option<u32>,
}
impl<'octo, 'r> ListPagesBuildsBuilder<'octo, 'r> {
pub(crate) fn new(handler: &'r RepoHandler<'octo>) -> Self {
Self {
handler,
per_page: None,
page: None,
}
}
/// Results per page (max 100). Default: 30.
pub fn per_page(mut self, per_page: impl Into<u8>) -> Self {
self.per_page = Some(per_page.into());
self
}
/// Page number of the results to fetch.
pub fn page(mut self, page: impl Into<u32>) -> Self {
self.page = Some(page.into());
self
}
/// Sends the actual request.
pub async fn send(self) -> Result<Page<PageBuild>> {
let route = format!("/{}/pages/builds", self.handler.repo);
self.handler.crab.get(route, Some(&self)).await
}
}
/// A builder pattern struct for creating a GitHub Pages deployment.
///
/// Created by [`RepoPagesDeploymentsHandler::create`] or [`RepoPagesHandler::create_deployment`].
#[derive(serde::Serialize)]
pub struct CreatePagesDeploymentBuilder<'octo, 'r> {
#[serde(skip)]
handler: &'r RepoHandler<'octo>,
#[serde(skip_serializing_if = "Option::is_none")]
artifact_id: Option<u64>,
#[serde(skip_serializing_if = "Option::is_none")]
artifact_url: Option<String>,
#[serde(skip_serializing_if = "Option::is_none")]
environment: Option<String>,
pages_build_version: String,
oidc_token: String,
}
impl<'octo, 'r> CreatePagesDeploymentBuilder<'octo, 'r> {
pub(crate) fn new(handler: &'r RepoHandler<'octo>, oidc_token: String) -> Self {
Self {
handler,
artifact_id: None,
artifact_url: None,
environment: None,
pages_build_version: "GITHUB_SHA".to_string(),
oidc_token,
}
}
/// The ID of an artifact that contains the .zip or .tar of static assets to deploy.
pub fn artifact_id(mut self, artifact_id: impl Into<u64>) -> Self {
self.artifact_id = Some(artifact_id.into());
self
}
/// The URL of an artifact that contains the .zip or .tar of static assets to deploy.
pub fn artifact_url(mut self, artifact_url: impl Into<String>) -> Self {
self.artifact_url = Some(artifact_url.into());
self
}
/// The target environment for this GitHub Pages deployment (default: `github-pages`).
pub fn environment(mut self, environment: impl Into<String>) -> Self {
self.environment = Some(environment.into());
self
}
/// A unique string that represents the version of the build for this deployment (default: `GITHUB_SHA`).
pub fn pages_build_version(mut self, pages_build_version: impl Into<String>) -> Self {
self.pages_build_version = pages_build_version.into();
self
}
/// Sends the actual request.
pub async fn send(self) -> Result<PagesDeployment> {
let route = format!("/{}/pages/deployments", self.handler.repo);
self.handler.crab.post(route, Some(&self)).await
}
}