rust-nex/rnex-core/src/nex/datastore.rs

60 lines
2.2 KiB
Rust
Raw Normal View History

2026-04-13 00:36:12 +02:00
use crate::define_rmc_proto;
use macros::rmc_struct;
2026-04-13 00:27:30 +02:00
use rnex_core::prudp::socket_addr::PRUDPSockAddr;
use std::sync::{Weak};
use rnex_core::PID;
use rnex_core::nex::remote_console::RemoteConsole;
2026-04-14 09:00:49 +02:00
use rnex_core::nex::s3presigner::S3Presigner;
2026-04-13 00:27:30 +02:00
use rnex_core::rmc::response::ErrorCode;
use rnex_core::rmc::protocols::secure::{Secure, RawSecure, RawSecureInfo, RemoteSecure};
2026-04-14 09:00:49 +02:00
use rnex_core::rmc::protocols::datastore::{CompletePostParam, GetMetaInfo, GetMetaParam, KeyValue, RateCustomRankingParam};
use rnex_core::rmc::protocols::datastore::{DataStore, RawDataStore, RawDataStoreInfo, RemoteDataStore, PreparePostParam, ReqPostInfo};
use crate::nex::user::User;
2026-04-14 09:19:00 +02:00
use rnex_core::executables::common::{RNEX_DATASTORE_S3_BUCKET, RNEX_DATASTORE_S3_ENDPOINT};
2026-04-13 00:27:30 +02:00
impl DataStore for User {
2026-04-13 00:30:10 +02:00
async fn get_meta(&self, metaparam: GetMetaParam) -> Result<GetMetaInfo, ErrorCode> {
2026-04-14 09:00:49 +02:00
println!("dataid: {}", metaparam.dataid);
println!("access password: {}", metaparam.access_password);
2026-04-13 00:27:30 +02:00
// just trying to see what methods it tries to use
2026-04-13 00:30:10 +02:00
Err(ErrorCode::DataStore_NotFound)
2026-04-13 00:27:30 +02:00
}
2026-04-14 09:00:49 +02:00
async fn prepare_post_object(&self, postparam: PreparePostParam) -> Result<ReqPostInfo, ErrorCode> {
let data_id: u64 = 9400001;
2026-04-14 09:19:00 +02:00
let presigner = S3Presigner::new(
&format!("https://{}", *RNEX_DATASTORE_S3_ENDPOINT),
format!("{}", *RNEX_DATASTORE_S3_BUCKET)
).await;
2026-04-14 09:00:49 +02:00
let key = format!("data/{}.bin", data_id);
let (upload_url, fields) = presigner.generate_presigned_post(&key).await;
let form_fields = fields.into_iter().map(|(k, v)| {
KeyValue { key: k, value: v }
}).collect();
Ok(ReqPostInfo {
dataid: data_id,
url: upload_url,
request_headers: vec![],
form_fields,
root_ca_cert: vec![],
})
}
async fn complete_post_object(&self, completeparam: CompletePostParam) -> Result<(), ErrorCode> {
// whatever
println!("dataid: {}", completeparam.dataid);
println!("succeeded?: {}", completeparam.success);
Ok(())
}
async fn rate_custom_ranking(&self, rankingparam: Vec<RateCustomRankingParam>) -> Result<(), ErrorCode> {
// this returns nothing
Ok(())
}
2026-04-13 00:27:30 +02:00
}