epp-client is a client library written in Rust for Internet domain registration and management for domain registrars.
It supports the following basic Domain, Contact, Host, and Message management calls, with plans to add more calls and other EPP extensions in the future, and to eventually be RFC compliant with the EPP protocol.
Domain Transfer
Contact Check
Contact Delete
Host Check
Host Delete
Message Poll
Message Ack
RGP Restore Request
Just add the following to your project's Cargo.toml
toml
epp-client = "0.3"
You can create a mut variable of type EppClient
with the domain registry config.
```rust use std::collections::HashMap;
use eppclient::config::{EppClientConfig, EppClientConnection}; use eppclient::EppClient; use eppclient::epp::{EppDomainCheck, EppDomainCheckResponse}; use eppclient::epp::generateclienttr_id;
async fn main() {
// Configure the client to connect to one of more registries
let mut registry: HashMap
// Create an instance of EppClient, passing the config and the
// registry you want to connect to
let mut client = match EppClient::new(&config, "registry_name").await {
Ok(client) => client,
Err(e) => panic!("Failed to create EppClient: {}", e)
};
// Make a domain check call, which returns an object of type EppDomainCheckResponse
// that contains the result of the call
let domain_check = EppDomainCheck::new(
vec!["eppdev.com", "eppdev.net"]
generate_client_tr_id(&client).as_str()
);
let response = client.transact::<_, EppDomainCheckResponse>(&domain_check).await.unwrap();
// print the availability results
response.data.res_data.unwrap().check_data.domain_list
.iter()
.for_each(|chk| println!("Domain: {}, Available: {}", chk.domain.name, chk.domain.available));
// Close the connection
client.logout().await.unwrap();
} ```
The output would look similar to the following:
Domain: eppdev.com, Available: 1
Domain: eppdev.net, Available: 1
You may also choose to store your configuration in something like a toml file:
```toml [registry.verisign] host = 'epp.verisign-grs.com' port = 700 username = 'username' password = 'password'
ext_uris = []
[registry.verisign.tls_files]
cert_chain = '/path/to/certificate/chain/pemfile'
key = '/path/to/private/key/pemfile' ```
```rust use epp_client::config::{EppClientConfig};
async fn main() { // parse EppClientConfig from toml file let configpath = Path::new("../secrets/epp-client.toml"); let config: EppClientConfig = toml::fromstr(&fs::readtostring(config_path).await.unwrap()).unwrap(); } ```
Currently I don't have access to a registry's OT&E account to do extensive testing. I am using hexonet's EPP Gateway for testing, but access to a registry's OT&E account would be very helpful, so if anyone could help me out with one I would be very grateful!