use super::put_object::PutObjectParams;
use super::{Command, Response};
use {
Adapter, AuthAlg, AuthKey, Capability, CommandType, Domain, ObjectId, ObjectLabel, Session,
SessionError,
};
#[allow(unknown_lints, renamed_and_removed_lints, too_many_arguments)]
pub fn put_auth_key<A: Adapter, K: Into<AuthKey>>(
session: &mut Session<A>,
key_id: ObjectId,
label: ObjectLabel,
domains: Domain,
capabilities: Capability,
delegated_capabilities: Capability,
algorithm: AuthAlg,
auth_key: K,
) -> Result<ObjectId, SessionError> {
session
.send_command(PutAuthKeyCommand {
params: PutObjectParams {
id: key_id,
label,
domains,
capabilities,
algorithm: algorithm.into(),
},
delegated_capabilities,
auth_key: auth_key.into(),
}).map(|response| response.key_id)
}
#[derive(Serialize, Deserialize, Debug)]
pub(crate) struct PutAuthKeyCommand {
pub params: PutObjectParams,
pub delegated_capabilities: Capability,
pub auth_key: AuthKey,
}
impl Command for PutAuthKeyCommand {
type ResponseType = PutAuthKeyResponse;
}
#[derive(Serialize, Deserialize, Debug)]
pub(crate) struct PutAuthKeyResponse {
pub key_id: ObjectId,
}
impl Response for PutAuthKeyResponse {
const COMMAND_TYPE: CommandType = CommandType::PutAuthKey;
}