instant-epp/epp-client/src/login.rs

66 lines
1.8 KiB
Rust
Raw Normal View History

2021-11-29 22:25:35 +00:00
use std::fmt::Debug;
use serde::{Deserialize, Serialize};
use crate::{
common::{NoExtension, Options, ServiceExtension, Services, StringValue},
contact, domain, host,
request::{Command, Transaction, EPP_LANG, EPP_VERSION},
2021-11-29 22:25:35 +00:00
};
impl Transaction<NoExtension> for Login {}
2021-11-26 22:21:38 +00:00
#[derive(Serialize, Deserialize, Debug, PartialEq)]
/// Type corresponding to the &lt;login&gt; tag in an EPP XML login request
pub struct Login {
/// The username to use for the login
#[serde(rename(serialize = "clID", deserialize = "clID"))]
username: StringValue,
/// The password to use for the login
#[serde(rename = "pw", default)]
password: StringValue,
/// Data under the <options> tag
options: Options,
/// Data under the <svcs> tag
#[serde(rename = "svcs")]
services: Services,
2021-11-26 22:21:38 +00:00
}
2021-11-29 22:25:35 +00:00
impl Login {
pub fn new(username: &str, password: &str, ext_uris: Option<Vec<String>>) -> Self {
let ext_uris = ext_uris.map(|uris| uris.iter().map(|u| u.as_str().into()).collect());
2021-11-29 22:25:35 +00:00
Self {
username: username.into(),
password: password.into(),
options: Options {
version: EPP_VERSION.into(),
lang: EPP_LANG.into(),
},
services: Services {
obj_uris: vec![
host::XMLNS.into(),
contact::XMLNS.into(),
domain::XMLNS.into(),
],
svc_ext: Some(ServiceExtension { ext_uris }),
2021-11-29 22:25:35 +00:00
},
2021-11-26 22:21:38 +00:00
}
2021-11-29 22:25:35 +00:00
}
/// Sets the <options> tag data
pub fn options(&mut self, options: Options) {
self.options = options;
2021-11-29 22:25:35 +00:00
}
/// Sets the <svcs> tag data
pub fn services(&mut self, services: Services) {
self.services = services;
2021-11-29 22:25:35 +00:00
}
}
impl Command for Login {
type Response = ();
const COMMAND: &'static str = "login";
2021-11-29 22:25:35 +00:00
}