use crate::authentication::IdentityProviderHandler;
use async_trait::async_trait;
use http_api_isahc_client::IsahcClient;
use oauth2_client::re_exports::{ClientId, ClientSecret, RedirectUri};
use oauth2_facebook::{FacebookExtensionsBuilder, FacebookProviderForWebApp, FacebookScope};
use oauth2_signin::web_app::{SigninFlow, SigninFlowHandleCallbackByQueryConfiguration, SigninFlowHandleCallbackRet};
pub use oauth2_facebook;
#[derive(Default)]
pub struct FacebookIdentityProviderHandler {}
#[async_trait]
impl IdentityProviderHandler for FacebookIdentityProviderHandler {
async fn handle_callback(
&self,
client_id: ClientId,
client_secret: ClientSecret,
redirect_uri: RedirectUri,
query: String,
) -> Result<SigninFlowHandleCallbackRet, Box<dyn std::error::Error>> {
let client = IsahcClient::new()?;
let provider = FacebookProviderForWebApp::new(client_id, client_secret, redirect_uri)?;
let scopes = vec![FacebookScope::Email];
let flow = SigninFlow::new(client, provider, scopes, FacebookExtensionsBuilder);
let config = SigninFlowHandleCallbackByQueryConfiguration::new();
Ok(flow.handle_callback_by_query(query, config).await)
}
}