-
Notifications
You must be signed in to change notification settings - Fork 114
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use actix-web instead of hyper #135
Comments
Could you provide some examples on using your authenticator inside actor context, please? |
I am not sure that the following example is what you are looking for. But this is something I use in my actix-web server: use service_authenticator::authenticator::{Authenticator, AuthenticatorBuilder as AB};
use service_authenticator::parse_service_key;
static SERVICE_CREDENTIALS:&[u8] = include_bytes!("my-credentials.json");
static GMAIL_SCOPES: &[&str] = &[
"https://www.googleapis.com/auth/gmail.labels",
"https://www.googleapis.com/auth/gmail.send",
"https://www.googleapis.com/auth/gmail.readonly",
"https://www.googleapis.com/auth/gmail.compose",
"https://www.googleapis.com/auth/gmail.insert",
"https://www.googleapis.com/auth/gmail.modify",
"https://www.googleapis.com/auth/gmail.metadata",
"https://www.googleapis.com/auth/gmail.settings.basic",
"https://www.googleapis.com/auth/gmail.settings.sharing",
"https://mail.google.com/",
"https://www.googleapis.com/auth/spreadsheets",
]; // find out which scopes you actually need
async fn create_authenticator() -> std::io::Result<Authenticator> {
let k = parse_service_key(SERVICE_CREDENTIALS)
.expect("bad gmail credentials");
AB::with_service_key(k, "[email protected]")
.build()
.await
}
async fn do_get_range_from_sheet(
auth: &Authenticator,
a: &str,
b: &str,
sheet_id: &str,
) -> Result<Vec<u8>, Error> {
let url = format!(
"https://sheets.googleapis.com/v4/spreadsheets/{}/values/{}%3A{}?dateTimeRenderOption=FORMATTED_STRING&majorDimension=ROWS&valueRenderOption=FORMATTED_VALUE",
sheet_id,
a,
b,
);
if let Ok(h) = auth.header(GMAIL_SCOPES).await {
let res = auth
.client
.get(&url)
.header("Authorization", h.as_str())
.header("Accept", "application/json")
.send()
.await;
if let Ok(mut r) = res {
let xr = r.body().await;
return match xr {
Ok(x) => Ok(x.to_vec()),
Err(e) => {println!("Error:{:?}", e); Ok(Vec::new())}
}
} else {
println!("error sending request");
Ok(Vec::new())
}
} else {
println!("can't get authorization header");
Ok(Vec::new())
}
}
pub async fn get_sheet(
auth: web::Data<Authenticator>,
pool: web::Data<DbPool>,
req: HttpRequest,
) -> HttpResponse {
let a: &str = req.match_info().query("a");
let b: &str = req.match_info().query("b");
let sheet_id: &str = req.match_info().query("sheet");
match do_get_range_from_sheet(&auth, a, b, sheet_id).await
{ Ok(s) => HttpResponse::Ok()
.header("Content-Type", "application/json")
.body(s)
, Err(e) => {
println!("Error: {:?}", e);
HttpResponse::InternalServerError().body(format!("{:?}", e))
}
}
}
#[actix_rt::main]
async fn main() -> std::io::Result<()> {
HttpServer::new(move || {
App::new()
.data_factory(create_authenticator)
.route("/api/sheet/{sheet}/{a}/{b}", web::get().to(get_sheet))
})
.bind(&bind_address)?
.run()
.await
} I made this example just by copying and pasting pieces from my source code. I haven't tried to compile it. In my source this functions are in separate modules, and also in this example I've showed only "use" lines for |
Thanks for the response. |
Sorry I couldn't help you more. I remember that I've also had some issues with authorization with google. I've contacted their support team several times. You need to register you client with google and receive from them credentials.json for your application. But you also need to authorize your application as a google user in order to allow your application to use google apis on your behalf. I don't remember the details but try to ask google support team for solving authorization problems. |
Thanks for your attention, Виталије! |
Note that yup-oauth2 v4 has the old pre-1.0 tokio version, in case that helps. It will be supported for a bit. |
Thanks. |
It's the other way around: Switching to tokio 1.0 was the reason for releasing v5.x. Because they are incompatible, and many other folks are probably upgrading their software to tokio 1.0. Thus it's recommended that you use yup-oauth2 4.x for tokio 0.2 and yup-oauth2 5.x for tokio 1.0. There is no difference in functionality - the big version bump is purely about tokio (a minor release is not possible, as switching tokio/hyper also changes the public API). |
Thanks, I'll check 4.x. |
Yeah in fact yup was one of the last crates we waited for to receive tokio 1.0 support! thanks for your work @dermesser 👍 |
I needed to send authenticated google api requests from my actix-web server using my service account credentials. I've found your great project, but it uses hyper by default. I didn't want to add hyper to my dependences, so I've changed your code to use actix web client. To make my task easer I stripped all other authentication flows (installed and device). The result is published as a service-authenticator crate.
Source code can be found here
Hope this will help someone.
The text was updated successfully, but these errors were encountered: