Crates.io | octorust |
lib.rs | octorust |
version | 0.8.0-rc.1 |
source | src |
created_at | 2021-07-13 02:30:14.06422 |
updated_at | 2024-05-29 16:34:11.007583 |
description | A fully generated & opinionated API client for the GitHub API. |
homepage | |
repository | https://github.com/oxidecomputer/third-party-api-clients/tree/main/github |
max_upload_size | |
id | 422153 |
size | 2,808,804 |
octorust
A fully generated, opinionated API client library for GitHub.
GitHub's v3 REST API.
name | url |
---|---|
Support | https://support.github.com/contact?tags=rest-api |
name | url |
---|---|
MIT | https://spdx.org/licenses/MIT |
This client is generated from the GitHub OpenAPI
specs based on API spec version 1.1.4
. This way it will remain
up to date as features are added. The documentation for the crate is generated
along with the code to make this library easy to use.
To install the library, add the following to your Cargo.toml
file.
[dependencies]
octorust = "0.8.0-rc.1"
Typical use will require intializing a Client
. This requires
a user agent string and set of auth::Credentials
.
use octorust::{auth::Credentials, Client};
let github = Client::new(
String::from("user-agent-name"),
Credentials::Token(
String::from("personal-access-token")
),
);
If you are a GitHub enterprise customer, you will want to create a client with the Client#host_override method.
Github supports conditional HTTP requests using etags to checksum responses
Experimental support for utilizing this to cache responses locally with the
httpcache
feature flag.
To enable this, add the following to your Cargo.toml
file:
[dependencies]
octorust = { version = "0.8.0-rc.1", features = ["httpcache"] }
Then use the Client::custom
constructor to provide a cache implementation.
Here is an example:
use octorust::{auth::Credentials, Client};
#[cfg(feature = "httpcache")]
use octorust::http_cache::HttpCache;
#[cfg(feature = "httpcache")]
let http_cache = HttpCache::in_home_dir();
#[cfg(not(feature = "httpcache"))]
let github = Client::custom(
concat!(env!("CARGO_PKG_NAME"), "/", env!("CARGO_PKG_VERSION")),
Credentials::Token(
String::from("personal-access-token")
),
reqwest::Client::builder().build().unwrap(),
);
#[cfg(feature = "httpcache")]
let github = Client::custom(
concat!(env!("CARGO_PKG_NAME"), "/", env!("CARGO_PKG_VERSION")),
Credentials::Token(
String::from("personal-access-token")
),
reqwest::Client::builder().build().unwrap(),
http_cache
);
You can also authenticate via a GitHub app.
Here is an example:
use std::env;
use octorust::{Client, auth::{Credentials, InstallationTokenGenerator, JWTCredentials}};
#[cfg(feature = "httpcache")]
use octorust::http_cache::FileBasedCache;
use base64::{Engine, engine::general_purpose::STANDARD};
let app_id_str = env::var("GH_APP_ID").unwrap();
let app_id = app_id_str.parse::<u64>().unwrap();
let app_installation_id_str = env::var("GH_INSTALLATION_ID").unwrap();
let app_installation_id = app_installation_id_str.parse::<u64>().unwrap();
let encoded_private_key = env::var("GH_PRIVATE_KEY").unwrap();
let private_key = STANDARD.decode(encoded_private_key).unwrap();
// Decode the key.
let key = nom_pem::decode_block(&private_key).unwrap();
// Get the JWT credentials.
let jwt = JWTCredentials::new(app_id, key.data).unwrap();
// Create the HTTP cache.
#[cfg(feature = "httpcache")]
let mut dir = dirs::home_dir().expect("Expected a home dir");
#[cfg(feature = "httpcache")]
dir.push(".cache/github");
#[cfg(feature = "httpcache")]
let http_cache = Box::new(FileBasedCache::new(dir));
let token_generator = InstallationTokenGenerator::new(app_installation_id, jwt);
#[cfg(not(feature = "httpcache"))]
let github = Client::custom(
concat!(env!("CARGO_PKG_NAME"), "/", env!("CARGO_PKG_VERSION")),
Credentials::InstallationToken(token_generator),
reqwest::Client::builder().build().unwrap(),
);
#[cfg(feature = "httpcache")]
let github = Client::custom(
concat!(env!("CARGO_PKG_NAME"), "/", env!("CARGO_PKG_VERSION")),
Credentials::InstallationToken(token_generator),
reqwest::Client::builder().build().unwrap(),
http_cache,
);
Shout out to hubcaps for paving the way here. This extends that effort in a generated way so the library is always up to the date with the OpenAPI spec and no longer requires manual contributions to add new endpoints.