A personal app view to see Bsky posts of your followers (for when their app view goes down)
17
fork

Configure Feed

Select the types of activity you want to include in your feed.

add get profile endpoint but return unimplemented

authored by willdot.net and committed by

Tangled 87292769 91ff59c5

+19 -3
+9 -2
src/server.rs
··· 13 13 use std::net::SocketAddr; 14 14 15 15 use jacquard_api::{ 16 - app_bsky::feed::{get_feed::GetFeedRequest, get_timeline::GetTimelineRequest}, 16 + app_bsky::{ 17 + actor::get_profile::{GetProfile, GetProfileRequest}, 18 + feed::{get_feed::GetFeedRequest, get_timeline::GetTimelineRequest}, 19 + }, 17 20 com_atproto::repo::get_record::GetRecordRequest, 18 21 }; 19 22 20 23 use crate::xrpc::routes::{ 21 - app_bsky_feed_get_feed, app_bsky_feed_get_timeline, com_atproto_repo_get_record, 24 + app_bsky_actor_get_profile, app_bsky_feed_get_feed, app_bsky_feed_get_timeline, 25 + com_atproto_repo_get_record, 22 26 }; 23 27 24 28 #[derive(Clone)] ··· 60 64 )) 61 65 .merge(GetRecordRequest::into_router::<_, AppState, _>( 62 66 com_atproto_repo_get_record, 67 + )) 68 + .merge(GetProfileRequest::into_router::<_, AppState, _>( 69 + app_bsky_actor_get_profile, 63 70 )) 64 71 .with_state(app_state); 65 72
+10 -1
src/xrpc/routes.rs
··· 2 2 use crate::server::XrpcErrorResponse; 3 3 use axum::{Json, extract::State}; 4 4 use jacquard::xrpc::atproto::GetRecordOutput; 5 + use jacquard_api::app_bsky::actor::get_profile::GetProfileOutput; 6 + use jacquard_api::app_bsky::actor::get_profile::GetProfileRequest; 5 7 use jacquard_api::app_bsky::feed::get_timeline::GetTimelineOutput; 6 8 use jacquard_api::app_bsky::feed::{ 7 9 get_feed::{GetFeedOutput, GetFeedRequest}, 8 10 get_timeline::GetTimelineRequest, 9 11 }; 10 - 11 12 use jacquard_api::tools_ozone::moderation::get_record::GetRecordRequest; 12 13 use jacquard_axum::ExtractXrpc; 13 14 use jacquard_axum::service_auth::ExtractOptionalServiceAuth; 14 15 use serde_json::Value; 15 16 use serde_json::json; 17 + 18 + pub async fn app_bsky_actor_get_profile( 19 + State(_): State<AppState>, 20 + ExtractOptionalServiceAuth(_auth): ExtractOptionalServiceAuth, 21 + ExtractXrpc(_): ExtractXrpc<GetProfileRequest>, 22 + ) -> Result<Json<GetProfileOutput<'static>>, XrpcErrorResponse> { 23 + return Err(XrpcErrorResponse::not_implemented()); 24 + } 16 25 17 26 pub async fn com_atproto_repo_get_record( 18 27 State(_): State<AppState>,