Crates.io | octocrate |
lib.rs | octocrate |
version | 2.0.1 |
source | src |
created_at | 2023-04-11 13:37:55.245363 |
updated_at | 2024-08-03 06:56:10.045266 |
description | A comprehensive GitHub REST API library based on Rust. |
homepage | https://github.com/panghu-huang/octocrate |
repository | https://github.com/panghu-huang/octocrate |
max_upload_size | |
id | 836048 |
size | 1,885,757 |
octocrate is a comprehensive GitHub REST API library based on Rust.
[dependencies]
octocrate = "*"
Use features to selectively import the required APIs:
octocrate = { version = "*", features = ["repos", "git", "pulls", "issues", "users", "search"] }
Or use the full
feature to import all APIs and Webhooks (note: this will increase compilation time):
octocrate = { version = "*", features = ["full"] }
You can also import only types without using the corresponding APIs:
octocrate-types = "*"
Use features to selectively import the required types:
octocrate-types = { version = "*", features = ["repos", "git", "pulls", "issues", "users", "search"] }
Import Webhooks types:
octocrate-webhooks = { version = "*", features = ["pull_request", "push"] }
You can check octocrate-types documentation and octocrate-webhooks documentation for all supported features and types.
Create a default GitHub API configuration and use it to get a repository's Pull Request:
use octocrate::{APIConfig, Error, GitHubAPI};
#[tokio::main]
async fn main() {
// Create a default GitHub API configuration
let config = APIConfig::default().shared();
let api = GitHubAPI::new(&config);
let pull_request = api
.pulls
.get("panghu-huang", "octocrate", 1)
.send()
.await
.unwrap();
// ..
}
// Import the repos API instead of GitHubAPI
use octocrate::{repos::GitHubReposAPI, APIConfig, GitHubAPI, PersonalAccessToken};
#[tokio::main]
async fn main() {
// Create a personal access token
let personal_access_token = PersonalAccessToken::new("YOUR_PERSONAL_ACCESS_TOKEN");
// Use the personal access token to create a API configuration
let config = APIConfig::with_token(personal_access_token).shared();
let repos_api = GitHubReposAPI::new(&config);
let commit = repos_api
.get_commit(
"panghu-huang",
"octocrate",
"18ff8ed1a3437649e7d87bec9a7d4fe5562f6ad3",
)
.send()
.await
.unwrap();
}
use octocrate::{APIConfig, AppAuthorization, GitHubAPI};
#[tokio::main]
async fn main() {
let app_id = "YOUR_APP_ID";
let private_key = "YOUR_PRIVATE_KEY";
// Create a GitHub App authorization
let app_authorization = AppAuthorization::new(app_id, private_key);
// Use the GitHub App authorization to create an API configuration
let config = APIConfig::with_token(app_authorization).shared();
let api = GitHubAPI::new(&config);
// Get the Installation for a repository
let installation = api
.apps
.get_repo_installation("panghu-huang", "octocrate")
.send()
.await
.unwrap();
// Get the Installation Access Token for this Installation
let installation_token = api
.apps
.create_installation_access_token(installation.id)
.send()
.await
.unwrap();
// Use the Installation Access Token to create a new API configuration
let config = APIConfig::with_token(installation_token).shared();
let api = GitHubAPI::new(&config);
let repository = api
.repos
.get("panghu-huang", "octocrate")
.send()
.await
.unwrap();
// ..
}
use octocrate::{
issues, APIConfig, AuthorAssociation, GitHubAPI, PersonalAccessToken,
};
#[tokio::main]
async fn main() {
let personal_access_token = PersonalAccessToken::new("YOUR_PERSONAL_ACCESS_TOKEN");
let config = APIConfig::with_token(personal_access_token).shared();
let api = GitHubAPI::new(&config);
// Create a comment request
// https://github.com/panghu-huang/octocrate/pull/1#issuecomment-2041280635
let comment = issues::create_comment::Request {
body: "Hello, world! (Created by octocrate)".to_string(),
};
// Create a comment on the issue
let issue_comment = api
.issues
.create_comment("panghu-huang", "octocrate", 1)
.body(&comment)
.send()
.await
.unwrap();
}
use octocrate::{
pulls, APIConfig, Error, GitHubAPI, PersonalAccessToken,
};
#[tokio::main]
async fn main() {
let personal_access_token = PersonalAccessToken::new("YOUR_PERSONAL_ACCESS_TOKEN");
let config = APIConfig::with_token(personal_access_token).shared();
let api = GitHubAPI::new(&config);
// Use builder pattern to construct query parameters
let query = pulls::list::Query::builder()
.state(pulls::list::QueryState::Open)
.per_page(10)
.build()
let pull_requests = api
.pulls
.list("facebook", "react")
.query(&query)
.send()
.await
.unwrap();
// ..
}
You can find more example code in the octocrate/examples directory.
Contributions are welcome! Feel free to open issues or submit pull requests to improve the project.
This project is licensed under the MIT License.