-
-
Notifications
You must be signed in to change notification settings - Fork 55
PDS: Implemented Request PLC Signature API #55
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
Merged
rudyfraser
merged 7 commits into
blacksky-algorithms:main
from
TheRipperoni:requestPlcOpSignature
Feb 15, 2025
Merged
Changes from 4 commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
32acc9e
Implemented Request PLC Signature Call
TheRipperoni 6d4feb3
1. Ran Clippy
TheRipperoni 425e7fb
Merge remote-tracking branch 'origin/main' into requestPlcOpSignature
TheRipperoni 9f217a1
Merge branch 'main' into requestPlcOpSignature
rudyfraser 3262b71
Moved unwraps into ApiError errors
TheRipperoni b1b4e50
Merge remote-tracking branch 'Ripperoni-Fork/requestPlcOpSignature' i…
TheRipperoni 8ddf839
Ran rustfmt
TheRipperoni File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
41 changes: 41 additions & 0 deletions
41
rsky-pds/src/apis/com/atproto/identity/request_plc_operation_signature.rs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,41 @@ | ||
| use crate::account_manager::helpers::account::AvailabilityFlags; | ||
| use crate::account_manager::AccountManager; | ||
| use crate::apis::ApiError; | ||
| use crate::auth_verifier::AccessFull; | ||
| use crate::mailer::{send_plc_operation, TokenParam}; | ||
| use crate::models::models::EmailTokenPurpose; | ||
|
|
||
| #[rocket::post("/xrpc/com.atproto.identity.requestPlcOperationSignature")] | ||
| #[tracing::instrument(skip_all)] | ||
| pub async fn request_plc_operation_signature(auth: AccessFull) -> Result<(), ApiError> { | ||
| let requester = auth.access.credentials.unwrap().did.unwrap(); | ||
| let availability_flags = AvailabilityFlags { | ||
| include_taken_down: Some(true), | ||
| include_deactivated: Some(true), | ||
| }; | ||
| let account = AccountManager::get_account(&requester, Some(availability_flags)) | ||
| .await? | ||
| .expect("Account not found despite valid access"); | ||
|
|
||
| let token = | ||
| match AccountManager::create_email_token(&requester, EmailTokenPurpose::PlcOperation).await | ||
| { | ||
| Ok(res) => res, | ||
| Err(error) => { | ||
| tracing::error!("Failed to create plc operation token\n{error}"); | ||
| return Err(ApiError::RuntimeError); | ||
| } | ||
| }; | ||
|
|
||
| match send_plc_operation(account.email.unwrap(), TokenParam { token }).await { | ||
TheRipperoni marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| Ok(_) => { | ||
| tracing::info!("Successfully sent PLC Operation Email"); | ||
| } | ||
| Err(error) => { | ||
| tracing::error!("Failed to send PLC Operation Token Email\n{error}"); | ||
| return Err(ApiError::RuntimeError); | ||
| } | ||
| } | ||
|
|
||
| Ok(()) | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.