]> git.ipfire.org Git - thirdparty/pdns.git/blame - pdns/ws-api.hh
Meson: Add systemd feature support for service files
[thirdparty/pdns.git] / pdns / ws-api.hh
CommitLineData
6ec5e728 1/*
12471842
PL
2 * This file is part of PowerDNS or dnsdist.
3 * Copyright -- PowerDNS.COM B.V. and its contributors
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of version 2 of the GNU General Public License as
7 * published by the Free Software Foundation.
8 *
9 * In addition, for the avoidance of any doubt, permission is granted to
10 * link this program with OpenSSL and to (re)distribute the binaries
11 * produced as the result of such linking.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 */
e8c59f2d 22#pragma once
6ec5e728 23#include <map>
1a09e47b 24#include <optional>
6ec5e728
CH
25#include "webserver.hh"
26
9e6d2033 27void apiDiscovery(HttpRequest* req, HttpResponse* resp);
bd7759ce 28void apiDiscoveryV1(HttpRequest* req, HttpResponse* resp);
6ec5e728
CH
29void apiServer(HttpRequest* req, HttpResponse* resp);
30void apiServerDetail(HttpRequest* req, HttpResponse* resp);
31void apiServerConfig(HttpRequest* req, HttpResponse* resp);
6ec5e728
CH
32void apiServerStatistics(HttpRequest* req, HttpResponse* resp);
33
3c3c006b 34// helpers
dd754091 35DNSName apiZoneIdToName(const string& identifier);
8171ab83 36string apiZoneNameToId(const DNSName& name);
cc015fba 37void apiCheckNameAllowedCharacters(const string& name);
cb9b5901 38void apiCheckQNameAllowedCharacters(const string& name);
c576d0c5 39DNSName apiNameToDNSName(const string& name);
3c3c006b 40
6ec5e728 41// To be provided by product code.
8751855b 42void productServerStatisticsFetch(std::map<string, string>& out);
1a09e47b 43std::optional<uint64_t> productServerStatisticsFetch(const std::string& name);