123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455 |
- /*
- Technitium DNS Server
- Copyright (C) 2022 Shreyas Zare (shreyas@technitium.com)
- This program is free software: you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
- You should have received a copy of the GNU General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
- using DnsServerCore.Dns.Zones;
- using Newtonsoft.Json;
- using System.Collections.Generic;
- using System.IO;
- using System.Net;
- using TechnitiumLibrary.Net.Dns;
- using TechnitiumLibrary.Net.Dns.ResourceRecords;
- namespace DnsServerCore
- {
- class WebServiceOtherZonesApi
- {
- #region variables
- readonly DnsWebService _dnsWebService;
- #endregion
- #region constructor
- public WebServiceOtherZonesApi(DnsWebService dnsWebService)
- {
- _dnsWebService = dnsWebService;
- }
- #endregion
- #region public
- #region cache api
- public void FlushCache(HttpListenerRequest request)
- {
- _dnsWebService.DnsServer.CacheZoneManager.Flush();
- _dnsWebService.Log.Write(DnsWebService.GetRequestRemoteEndPoint(request), "[" + _dnsWebService.GetSession(request).Username + "] Cache was flushed.");
- }
- public void ListCachedZones(HttpListenerRequest request, JsonTextWriter jsonWriter)
- {
- string domain = request.QueryString["domain"];
- if (domain == null)
- domain = "";
- string direction = request.QueryString["direction"];
- List<string> subZones = new List<string>();
- List<DnsResourceRecord> records = new List<DnsResourceRecord>();
- while (true)
- {
- subZones.Clear();
- records.Clear();
- _dnsWebService.DnsServer.CacheZoneManager.ListSubDomains(domain, subZones);
- _dnsWebService.DnsServer.CacheZoneManager.ListAllRecords(domain, records);
- if (records.Count > 0)
- break;
- if (subZones.Count != 1)
- break;
- if (direction == "up")
- {
- if (domain.Length == 0)
- break;
- int i = domain.IndexOf('.');
- if (i < 0)
- domain = "";
- else
- domain = domain.Substring(i + 1);
- }
- else if (domain.Length == 0)
- {
- domain = subZones[0];
- }
- else
- {
- domain = subZones[0] + "." + domain;
- }
- }
- subZones.Sort();
- jsonWriter.WritePropertyName("domain");
- jsonWriter.WriteValue(domain);
- jsonWriter.WritePropertyName("zones");
- jsonWriter.WriteStartArray();
- if (domain.Length != 0)
- domain = "." + domain;
- foreach (string subZone in subZones)
- jsonWriter.WriteValue(subZone + domain);
- jsonWriter.WriteEndArray();
- WebServiceZonesApi.WriteRecordsAsJson(records, jsonWriter, false);
- }
- public void DeleteCachedZone(HttpListenerRequest request)
- {
- string domain = request.QueryString["domain"];
- if (string.IsNullOrEmpty(domain))
- throw new DnsWebServiceException("Parameter 'domain' missing.");
- if (_dnsWebService.DnsServer.CacheZoneManager.DeleteZone(domain))
- _dnsWebService.Log.Write(DnsWebService.GetRequestRemoteEndPoint(request), "[" + _dnsWebService.GetSession(request).Username + "] Cached zone was deleted: " + domain);
- }
- #endregion
- #region allowed zones api
- public void ListAllowedZones(HttpListenerRequest request, JsonTextWriter jsonWriter)
- {
- string domain = request.QueryString["domain"];
- if (domain == null)
- domain = "";
- string direction = request.QueryString["direction"];
- List<string> subZones = new List<string>();
- List<DnsResourceRecord> records = new List<DnsResourceRecord>();
- while (true)
- {
- subZones.Clear();
- records.Clear();
- _dnsWebService.DnsServer.AllowedZoneManager.ListSubDomains(domain, subZones);
- _dnsWebService.DnsServer.AllowedZoneManager.ListAllRecords(domain, records);
- if (records.Count > 0)
- break;
- if (subZones.Count != 1)
- break;
- if (direction == "up")
- {
- if (domain.Length == 0)
- break;
- int i = domain.IndexOf('.');
- if (i < 0)
- domain = "";
- else
- domain = domain.Substring(i + 1);
- }
- else if (domain.Length == 0)
- {
- domain = subZones[0];
- }
- else
- {
- domain = subZones[0] + "." + domain;
- }
- }
- subZones.Sort();
- jsonWriter.WritePropertyName("domain");
- jsonWriter.WriteValue(domain);
- jsonWriter.WritePropertyName("zones");
- jsonWriter.WriteStartArray();
- if (domain.Length != 0)
- domain = "." + domain;
- foreach (string subZone in subZones)
- jsonWriter.WriteValue(subZone + domain);
- jsonWriter.WriteEndArray();
- WebServiceZonesApi.WriteRecordsAsJson(new List<DnsResourceRecord>(records), jsonWriter, false);
- }
- public void ImportAllowedZones(HttpListenerRequest request)
- {
- if (!request.ContentType.StartsWith("application/x-www-form-urlencoded"))
- throw new DnsWebServiceException("Invalid content type. Expected application/x-www-form-urlencoded.");
- string formRequest;
- using (StreamReader sR = new StreamReader(request.InputStream, request.ContentEncoding))
- {
- formRequest = sR.ReadToEnd();
- }
- string[] formParts = formRequest.Split('&');
- foreach (string formPart in formParts)
- {
- if (formPart.StartsWith("allowedZones="))
- {
- string[] allowedZones = formPart.Substring(13).Split(',');
- bool added = false;
- foreach (string allowedZone in allowedZones)
- {
- if (_dnsWebService.DnsServer.AllowedZoneManager.AllowZone(allowedZone))
- added = true;
- }
- if (added)
- {
- _dnsWebService.Log.Write(DnsWebService.GetRequestRemoteEndPoint(request), "[" + _dnsWebService.GetSession(request).Username + "] Total " + allowedZones.Length + " zones were imported into allowed zone successfully.");
- _dnsWebService.DnsServer.AllowedZoneManager.SaveZoneFile();
- }
- return;
- }
- }
- throw new DnsWebServiceException("Parameter 'allowedZones' missing.");
- }
- public void ExportAllowedZones(HttpListenerResponse response)
- {
- IReadOnlyList<AuthZoneInfo> zoneInfoList = _dnsWebService.DnsServer.AllowedZoneManager.ListZones();
- response.ContentType = "text/plain";
- response.AddHeader("Content-Disposition", "attachment;filename=AllowedZones.txt");
- using (StreamWriter sW = new StreamWriter(new BufferedStream(response.OutputStream)))
- {
- foreach (AuthZoneInfo zoneInfo in zoneInfoList)
- sW.WriteLine(zoneInfo.Name);
- }
- }
- public void DeleteAllowedZone(HttpListenerRequest request)
- {
- string domain = request.QueryString["domain"];
- if (string.IsNullOrEmpty(domain))
- throw new DnsWebServiceException("Parameter 'domain' missing.");
- if (_dnsWebService.DnsServer.AllowedZoneManager.DeleteZone(domain))
- {
- _dnsWebService.Log.Write(DnsWebService.GetRequestRemoteEndPoint(request), "[" + _dnsWebService.GetSession(request).Username + "] Allowed zone was deleted: " + domain);
- _dnsWebService.DnsServer.AllowedZoneManager.SaveZoneFile();
- }
- }
- public void FlushAllowedZone(HttpListenerRequest request)
- {
- _dnsWebService.DnsServer.AllowedZoneManager.Flush();
- _dnsWebService.Log.Write(DnsWebService.GetRequestRemoteEndPoint(request), "[" + _dnsWebService.GetSession(request).Username + "] Allowed zone was flushed successfully.");
- _dnsWebService.DnsServer.AllowedZoneManager.SaveZoneFile();
- }
- public void AllowZone(HttpListenerRequest request)
- {
- string domain = request.QueryString["domain"];
- if (string.IsNullOrEmpty(domain))
- throw new DnsWebServiceException("Parameter 'domain' missing.");
- if (IPAddress.TryParse(domain, out IPAddress ipAddress))
- domain = (new DnsQuestionRecord(ipAddress, DnsClass.IN)).Name;
- if (_dnsWebService.DnsServer.AllowedZoneManager.AllowZone(domain))
- {
- _dnsWebService.Log.Write(DnsWebService.GetRequestRemoteEndPoint(request), "[" + _dnsWebService.GetSession(request).Username + "] Zone was allowed: " + domain);
- _dnsWebService.DnsServer.AllowedZoneManager.SaveZoneFile();
- }
- }
- #endregion
- #region blocked zones api
- public void ListBlockedZones(HttpListenerRequest request, JsonTextWriter jsonWriter)
- {
- string domain = request.QueryString["domain"];
- if (domain == null)
- domain = "";
- string direction = request.QueryString["direction"];
- List<string> subZones = new List<string>();
- List<DnsResourceRecord> records = new List<DnsResourceRecord>();
- while (true)
- {
- subZones.Clear();
- records.Clear();
- _dnsWebService.DnsServer.BlockedZoneManager.ListSubDomains(domain, subZones);
- _dnsWebService.DnsServer.BlockedZoneManager.ListAllRecords(domain, records);
- if (records.Count > 0)
- break;
- if (subZones.Count != 1)
- break;
- if (direction == "up")
- {
- if (domain.Length == 0)
- break;
- int i = domain.IndexOf('.');
- if (i < 0)
- domain = "";
- else
- domain = domain.Substring(i + 1);
- }
- else if (domain.Length == 0)
- {
- domain = subZones[0];
- }
- else
- {
- domain = subZones[0] + "." + domain;
- }
- }
- subZones.Sort();
- jsonWriter.WritePropertyName("domain");
- jsonWriter.WriteValue(domain);
- jsonWriter.WritePropertyName("zones");
- jsonWriter.WriteStartArray();
- if (domain.Length != 0)
- domain = "." + domain;
- foreach (string subZone in subZones)
- jsonWriter.WriteValue(subZone + domain);
- jsonWriter.WriteEndArray();
- WebServiceZonesApi.WriteRecordsAsJson(new List<DnsResourceRecord>(records), jsonWriter, false);
- }
- public void ImportBlockedZones(HttpListenerRequest request)
- {
- if (!request.ContentType.StartsWith("application/x-www-form-urlencoded"))
- throw new DnsWebServiceException("Invalid content type. Expected application/x-www-form-urlencoded.");
- string formRequest;
- using (StreamReader sR = new StreamReader(request.InputStream, request.ContentEncoding))
- {
- formRequest = sR.ReadToEnd();
- }
- string[] formParts = formRequest.Split('&');
- foreach (string formPart in formParts)
- {
- if (formPart.StartsWith("blockedZones="))
- {
- string[] blockedZones = formPart.Substring(13).Split(',');
- bool added = false;
- foreach (string blockedZone in blockedZones)
- {
- if (_dnsWebService.DnsServer.BlockedZoneManager.BlockZone(blockedZone))
- added = true;
- }
- if (added)
- {
- _dnsWebService.Log.Write(DnsWebService.GetRequestRemoteEndPoint(request), "[" + _dnsWebService.GetSession(request).Username + "] Total " + blockedZones.Length + " zones were imported into blocked zone successfully.");
- _dnsWebService.DnsServer.BlockedZoneManager.SaveZoneFile();
- }
- return;
- }
- }
- throw new DnsWebServiceException("Parameter 'blockedZones' missing.");
- }
- public void ExportBlockedZones(HttpListenerResponse response)
- {
- IReadOnlyList<AuthZoneInfo> zoneInfoList = _dnsWebService.DnsServer.BlockedZoneManager.ListZones();
- response.ContentType = "text/plain";
- response.AddHeader("Content-Disposition", "attachment;filename=BlockedZones.txt");
- using (StreamWriter sW = new StreamWriter(new BufferedStream(response.OutputStream)))
- {
- foreach (AuthZoneInfo zoneInfo in zoneInfoList)
- sW.WriteLine(zoneInfo.Name);
- }
- }
- public void DeleteBlockedZone(HttpListenerRequest request)
- {
- string domain = request.QueryString["domain"];
- if (string.IsNullOrEmpty(domain))
- throw new DnsWebServiceException("Parameter 'domain' missing.");
- if (_dnsWebService.DnsServer.BlockedZoneManager.DeleteZone(domain))
- {
- _dnsWebService.Log.Write(DnsWebService.GetRequestRemoteEndPoint(request), "[" + _dnsWebService.GetSession(request).Username + "] Blocked zone was deleted: " + domain);
- _dnsWebService.DnsServer.BlockedZoneManager.SaveZoneFile();
- }
- }
- public void FlushBlockedZone(HttpListenerRequest request)
- {
- _dnsWebService.DnsServer.BlockedZoneManager.Flush();
- _dnsWebService.Log.Write(DnsWebService.GetRequestRemoteEndPoint(request), "[" + _dnsWebService.GetSession(request).Username + "] Blocked zone was flushed successfully.");
- _dnsWebService.DnsServer.BlockedZoneManager.SaveZoneFile();
- }
- public void BlockZone(HttpListenerRequest request)
- {
- string domain = request.QueryString["domain"];
- if (string.IsNullOrEmpty(domain))
- throw new DnsWebServiceException("Parameter 'domain' missing.");
- if (IPAddress.TryParse(domain, out IPAddress ipAddress))
- domain = (new DnsQuestionRecord(ipAddress, DnsClass.IN)).Name;
- if (_dnsWebService.DnsServer.BlockedZoneManager.BlockZone(domain))
- {
- _dnsWebService.Log.Write(DnsWebService.GetRequestRemoteEndPoint(request), "[" + _dnsWebService.GetSession(request).Username + "] Domain was added to blocked zone: " + domain);
- _dnsWebService.DnsServer.BlockedZoneManager.SaveZoneFile();
- }
- }
- #endregion
- #endregion
- }
- }
|