use std::fmt::Debug; use epp_client_macros::ElementName; use serde::{Deserialize, Serialize}; use crate::{ common::{ElementName, NoExtension, Options, ServiceExtension, Services, StringValue}, contact::EPP_CONTACT_XMLNS, domain::EPP_DOMAIN_XMLNS, host::EPP_HOST_XMLNS, request::{EppExtension, EppRequest, EPP_LANG, EPP_VERSION}, response::EppCommandResponse, }; #[derive(Debug)] pub struct Login { request: LoginRequest, extension: Option, } impl EppRequest for Login { type Input = LoginRequest; type Output = EppCommandResponse; fn into_parts(self) -> (Self::Input, Option) { (self.request, self.extension) } } impl Login { pub fn new( username: &str, password: &str, ext_uris: &Option>, ) -> Login { let ext_uris = ext_uris .as_ref() .map(|uris| uris.iter().map(|u| u.as_str().into()).collect()); Login { request: LoginRequest { username: username.into(), password: password.into(), options: Options { version: EPP_VERSION.into(), lang: EPP_LANG.into(), }, services: Services { obj_uris: vec![ EPP_HOST_XMLNS.into(), EPP_CONTACT_XMLNS.into(), EPP_DOMAIN_XMLNS.into(), ], svc_ext: Some(ServiceExtension { ext_uris }), }, }, extension: None, } } pub fn with_extension(self, extension: F) -> Login { Login { request: self.request, extension: Some(extension), } } /// Sets the tag data pub fn options(&mut self, options: Options) { self.request.options = options; } /// Sets the tag data pub fn services(&mut self, services: Services) { self.request.services = services; } } #[derive(Serialize, Deserialize, Debug, PartialEq, ElementName)] #[element_name(name = "login")] /// Type corresponding to the <login> tag in an EPP XML login request pub struct LoginRequest { /// 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 tag options: Options, /// Data under the tag #[serde(rename = "svcs")] services: Services, }