فهرست منبع

chore(auth): remove dead code for link-account and new-account

Bryan Lee 1 سال پیش
والد
کامیت
89953170a4
1فایلهای تغییر یافته به همراه0 افزوده شده و 56 حذف شده
  1. 0 56
      authentication/src/auth/oauth2/mod.rs

+ 0 - 56
authentication/src/auth/oauth2/mod.rs

@@ -11,59 +11,3 @@ pub fn config_service(cfg: &mut web::ServiceConfig) {
     cfg.app_data(google_user_info_service)
         .service(sign_in::sign_in);
 }
-
-// #[post("/link-account/")]
-// async fn link_account(
-//     pool: web::Data<DbPool>,
-//     authorization: BearerAuth,
-//     jwt_config: web::Data<JwtConfig>,
-// ) -> actix_web::Result<impl Responder> {
-//     Ok(todo!())
-// }
-
-// #[post("/new-account/")]
-// async fn new_account(
-//     pool: web::Data<DbPool>,
-//     authorization: BearerAuth,
-//     jwt_config: web::Data<JwtConfig>,
-// ) -> actix_web::Result<impl Responder> {
-//     Ok(todo!())
-// }
-
-// #[derive(Serialize)]
-// #[serde(tag = "type", content = "payload", rename_all = "snake_case")]
-// enum CheckEmailResult {
-//     NoExisting,
-//     Existing(Vec<AuthProvider>),
-// }
-
-// #[get("/existing-email-providers/")]
-// async fn existing_email_providers(
-//     pool: web::Data<DbPool>,
-//     authorization: BearerAuth,
-// ) -> actix_web::Result<impl Responder> {
-//     let provider_info = get_provider_info(&authorization).await?;
-
-//     let Some(email_to_find) = provider_info.email else {
-//         return Ok(HttpResponse::Ok().json(CheckEmailResult::NoExisting));
-//     };
-
-//     let matching_providers = web::block(move || {
-//         let mut conn = pool.get()?;
-
-//         let providers = schema::auth_provider::table
-//             .filter(schema::auth_provider::email.eq(&email_to_find))
-//             .select(AuthProvider::as_select())
-//             .load(&mut conn)?;
-
-//         Ok(providers)
-//     })
-//     .await?
-//     .map_err(error::ErrorInternalServerError::<DbError>)?;
-
-//     if matching_providers.is_empty() {
-//         Ok(HttpResponse::Ok().json(CheckEmailResult::NoExisting))
-//     } else {
-//         Ok(HttpResponse::Ok().json(CheckEmailResult::Existing(matching_providers)))
-//     }
-// }