#[derive(Debug, Clone, interactive_clap::InteractiveClap)]
#[interactive_clap(input_context = super::access_key_type::AccessTypeContext)]
#[interactive_clap(output_context = AddAccessKeyActionContext)]
pub struct AddAccessKeyAction {
public_key: crate::types::public_key::PublicKey,
#[interactive_clap(named_arg)]
network_config: crate::network_for_transaction::NetworkForTransactionArgs,
}
#[derive(Debug, Clone)]
pub struct AddAccessKeyActionContext {
global_context: crate::GlobalContext,
signer_account_id: unc_primitives::types::AccountId,
permission: unc_primitives::account::AccessKeyPermission,
public_key: crate::types::public_key::PublicKey,
}
impl AddAccessKeyActionContext {
pub fn from_previous_context(
previous_context: super::access_key_type::AccessTypeContext,
scope: &<AddAccessKeyAction as interactive_clap::ToInteractiveClapContextScope>::InteractiveClapContextScope,
) -> color_eyre::eyre::Result<Self> {
Ok(Self {
global_context: previous_context.global_context,
signer_account_id: previous_context.signer_account_id,
permission: previous_context.permission,
public_key: scope.public_key.clone(),
})
}
}
impl From<AddAccessKeyActionContext> for crate::commands::ActionContext {
fn from(item: AddAccessKeyActionContext) -> Self {
let on_after_getting_network_callback: crate::commands::OnAfterGettingNetworkCallback =
std::sync::Arc::new({
let signer_account_id = item.signer_account_id.clone();
move |_network_config| {
Ok(crate::commands::PrepopulatedTransaction {
signer_id: signer_account_id.clone(),
receiver_id: signer_account_id.clone(),
actions: vec![unc_primitives::transaction::Action::AddKey(Box::new(
unc_primitives::transaction::AddKeyAction {
public_key: item.public_key.clone().into(),
access_key: unc_primitives::account::AccessKey {
nonce: 0,
permission: item.permission.clone(),
},
},
))],
})
}
});
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: std::sync::Arc::new(
|_outcome_view, _network_config| Ok(()),
),
}
}
}