use color_eyre::eyre::{ContextCompat, WrapErr};
use inquire::{CustomType, Select};
use near_cli_rs::common::{CallResultExt, JsonRpcClientExt};
#[derive(Debug, Clone, interactive_clap::InteractiveClap)]
#[interactive_clap(input_context = super::selected::ComponentContext)]
#[interactive_clap(output_context = SignerContext)]
pub struct Signer {
#[interactive_clap(skip_default_input_arg)]
signer_account_id: near_cli_rs::types::account_id::AccountId,
#[interactive_clap(named_arg)]
network_config: near_cli_rs::network_for_transaction::NetworkForTransactionArgs,
}
#[derive(Clone)]
pub struct SignerContext {
global_context: near_cli_rs::GlobalContext,
components: Vec<String>,
social_db_folder: String,
account_id: near_cli_rs::types::account_id::AccountId,
signer_account_id: near_primitives::types::AccountId,
}
impl SignerContext {
pub fn from_previous_context(
previous_context: super::selected::ComponentContext,
scope: &<Signer as interactive_clap::ToInteractiveClapContextScope>::InteractiveClapContextScope,
) -> color_eyre::eyre::Result<Self> {
Ok(Self {
global_context: previous_context.global_context,
components: previous_context.components,
social_db_folder: previous_context.social_db_folder,
account_id: previous_context.account_id,
signer_account_id: scope.signer_account_id.clone().into(),
})
}
}
impl From<SignerContext> for near_cli_rs::commands::ActionContext {
fn from(item: SignerContext) -> Self {
let on_after_getting_network_callback: near_cli_rs::commands::OnAfterGettingNetworkCallback = std::sync::Arc::new({
let components = item.components.clone();
let account_id: near_primitives::types::AccountId = item.account_id.clone().into();
let signer_id = item.signer_account_id.clone();
let social_db_folder = item.social_db_folder.clone();
move |network_config| {
let near_social_account_id = crate::consts::NEAR_SOCIAL_ACCOUNT_ID.get(network_config.network_name.as_str())
.wrap_err_with(|| format!("The <{}> network does not have a near-social contract.", network_config.network_name))?;
let keys_components_to_remove = if components.is_empty() {
vec![format!("{account_id}/{social_db_folder}/**")]
} else {
components
.iter()
.map(|component| format!("{account_id}/{social_db_folder}/{component}/**"))
.collect::<Vec<_>>()
};
let input_args = serde_json::to_string(&crate::socialdb_types::SocialDbQuery {
keys: keys_components_to_remove,
})
.wrap_err("Internal error: could not serialize SocialDB input args")?;
let mut social_db_data_to_remove: serde_json::Value = network_config
.json_rpc_client()
.blocking_call_view_function(
near_social_account_id,
"get",
input_args.into_bytes(),
near_primitives::types::Finality::Final.into(),
)
.wrap_err("Failed to fetch the components from SocialDB")?
.parse_result_from_json()
.wrap_err("SocialDB `get` data response cannot be parsed")?;
if social_db_data_to_remove.as_object().map(|result| result.is_empty()).unwrap_or(true) {
println!("No components to remove. Goodbye.");
return Ok(near_cli_rs::commands::PrepopulatedTransaction {
signer_id: signer_id.clone(),
receiver_id: near_social_account_id.clone(),
actions: vec![],
});
}
crate::common::mark_leaf_values_as_null(&mut social_db_data_to_remove);
Ok(near_cli_rs::commands::PrepopulatedTransaction {
signer_id: signer_id.clone(),
receiver_id: near_social_account_id.clone(),
actions: vec![near_primitives::transaction::Action::FunctionCall(
Box::new(near_primitives::transaction::FunctionCallAction {
method_name: "set".to_string(),
args: serde_json::json!({
"data": social_db_data_to_remove
}).to_string().into_bytes(),
gas: near_cli_rs::common::NearGas::from_tgas(300).as_gas(),
deposit: near_cli_rs::types::near_token::NearToken::from_yoctonear(0).as_yoctonear(),
}),
)]
})
}
});
let on_after_sending_transaction_callback: near_cli_rs::transaction_signature_options::OnAfterSendingTransactionCallback = std::sync::Arc::new({
let account_id = item.account_id.clone();
move |transaction_info, _network_config| {
if let near_primitives::views::FinalExecutionStatus::SuccessValue(_) = transaction_info.status {
println!("The components were deleted successfully from <{}>/{}/", &account_id, item.social_db_folder);
} else {
color_eyre::eyre::bail!("The components were not successfully deleted from <{}>/{}/", &account_id, item.social_db_folder);
};
Ok(())
}
});
Self {
global_context: item.global_context,
interacting_with_account_ids: vec![item.signer_account_id],
on_after_getting_network_callback,
on_before_signing_callback: std::sync::Arc::new(
|_prepolulated_unsinged_transaction, _network_config| Ok(()),
),
on_before_sending_transaction_callback: std::sync::Arc::new(
|_signed_transaction, _network_config, _message| Ok(()),
),
on_after_sending_transaction_callback,
}
}
}
impl Signer {
fn input_signer_account_id(
context: &super::selected::ComponentContext,
) -> color_eyre::eyre::Result<Option<near_cli_rs::types::account_id::AccountId>> {
loop {
let signer_account_id: near_cli_rs::types::account_id::AccountId =
CustomType::new("What is the signer account ID?")
.with_default(context.account_id.clone())
.prompt()?;
if !near_cli_rs::common::is_account_exist(
&context.global_context.config.network_connection,
signer_account_id.clone().into(),
) {
println!("\nThe account <{signer_account_id}> does not yet exist.");
#[derive(strum_macros::Display)]
enum ConfirmOptions {
#[strum(to_string = "Yes, I want to enter a new account name.")]
Yes,
#[strum(to_string = "No, I want to use this account name.")]
No,
}
let select_choose_input = Select::new(
"Do you want to enter another signer account id?",
vec![ConfirmOptions::Yes, ConfirmOptions::No],
)
.prompt()?;
if let ConfirmOptions::No = select_choose_input {
return Ok(Some(signer_account_id));
}
} else {
return Ok(Some(signer_account_id));
}
}
}
}