nomilo/src/main.rs

57 lines
1.7 KiB
Rust
Raw Normal View History

2021-03-20 02:31:41 +00:00
#![feature(proc_macro_hygiene, decl_macro)]
#[macro_use] extern crate rocket;
use rocket::State;
2021-03-20 18:18:08 +00:00
use rocket::http::Status;
2021-03-20 02:31:41 +00:00
use rocket_contrib::json::Json;
use trust_dns_client::client::{Client, SyncClient};
use trust_dns_client::tcp::TcpClientConnection;
2021-03-20 18:18:08 +00:00
use trust_dns_client::op::{DnsResponse, ResponseCode};
2021-03-20 20:10:11 +00:00
use trust_dns_client::rr::{DNSClass, Name, RecordType};
2021-03-20 02:31:41 +00:00
2021-03-20 18:18:08 +00:00
mod models;
2021-03-20 02:31:41 +00:00
mod config;
2021-03-20 18:18:08 +00:00
use models::errors::ErrorResponse;
2021-03-20 02:31:41 +00:00
#[get("/zones/<zone>/records")]
2021-03-20 20:10:11 +00:00
fn get_zone_records(client: State<SyncClient<TcpClientConnection>>, zone: String) -> Result<Json<Vec<models::dns::Record>>, ErrorResponse<()>> {
2021-03-20 02:31:41 +00:00
// TODO: Implement FromParam for Name
2021-03-20 18:18:08 +00:00
let name = Name::from_utf8(&zone).unwrap();
2021-03-20 02:31:41 +00:00
let response: DnsResponse = client.query(&name, DNSClass::IN, RecordType::AXFR).unwrap();
2021-03-20 18:18:08 +00:00
if response.response_code() != ResponseCode::NoError {
return ErrorResponse::new(
Status::NotFound,
format!("zone {} could not be found", name.to_utf8())
).err()
}
2021-03-20 20:10:11 +00:00
let answers = response.answers();
let mut records: Vec<_> = answers.to_vec().into_iter()
2021-03-20 18:18:08 +00:00
.map(|record| models::dns::Record::from(record))
.filter(|record| match record.rdata {
2021-03-20 18:18:08 +00:00
models::dns::RData::NULL { .. } | models::dns::RData::DNSSEC(_) => false,
_ => true,
}).collect();
// AXFR response ends with SOA, we remove it so it is not doubled in the response.
records.pop();
2021-03-20 02:31:41 +00:00
2021-03-20 18:18:08 +00:00
Ok(Json(records))
2021-03-20 02:31:41 +00:00
}
fn main() {
let app_config = config::load("config.toml".into());
let conn = TcpClientConnection::new(app_config.dns_server.address).unwrap();
let client = SyncClient::new(conn);
rocket::ignite()
.manage(client)
2021-03-20 20:10:11 +00:00
.mount("/api/v1", routes![get_zone_records]).launch();
2021-03-20 02:31:41 +00:00
}