2021-11-29 22:25:35 +00:00
|
|
|
use std::fmt::Debug;
|
|
|
|
|
|
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
|
|
|
|
use crate::{
|
2021-12-09 09:17:00 +00:00
|
|
|
common::{NoExtension, Options, ServiceExtension, Services, StringValue},
|
2021-12-02 10:00:33 +00:00
|
|
|
contact, domain, host,
|
2021-12-09 09:17:00 +00:00
|
|
|
request::{Command, Transaction, EPP_LANG, EPP_VERSION},
|
2021-11-29 22:25:35 +00:00
|
|
|
};
|
|
|
|
|
2021-12-09 09:17:00 +00:00
|
|
|
impl Transaction<NoExtension> for Login {}
|
2021-11-26 22:21:38 +00:00
|
|
|
|
2021-12-09 09:17:00 +00:00
|
|
|
#[derive(Serialize, Deserialize, Debug, PartialEq)]
|
|
|
|
/// Type corresponding to the <login> 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
|
|
|
|
2021-12-09 09:17:00 +00:00
|
|
|
impl Login {
|
|
|
|
pub fn new(username: &str, password: &str, ext_uris: Option<Vec<String>>) -> Self {
|
2021-12-03 18:07:36 +00:00
|
|
|
let ext_uris = ext_uris.map(|uris| uris.iter().map(|u| u.as_str().into()).collect());
|
2021-11-29 22:25:35 +00:00
|
|
|
|
2021-12-09 09:17:00 +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) {
|
2021-12-09 09:17:00 +00:00
|
|
|
self.options = options;
|
2021-11-29 22:25:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Sets the <svcs> tag data
|
|
|
|
pub fn services(&mut self, services: Services) {
|
2021-12-09 09:17:00 +00:00
|
|
|
self.services = services;
|
2021-11-29 22:25:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-12-09 09:17:00 +00:00
|
|
|
impl Command for Login {
|
|
|
|
type Response = ();
|
|
|
|
const COMMAND: &'static str = "login";
|
2021-11-29 22:25:35 +00:00
|
|
|
}
|