blob: b9545c151aff6468df3e1f53f3a7e06d833b46b6 [file] [log] [blame]
Amna38768302023-08-21 11:51:56 -04001/*
Amna2f3539b2023-09-18 13:59:22 -04002 * Copyright (C) 2023 Savoir-faire Linux Inc.
Amna38768302023-08-21 11:51:56 -04003 *
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, either version 3 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <https://www.gnu.org/licenses/>.
16 */
17#include "connectionmanager.h"
18#include "multiplexed_socket.h"
19#include "ice_transport_factory.h"
20#include "certstore.h"
21
22#include <asio.hpp>
23
24namespace dhtnet {
25/**
26 * Attempt to retrieve the identity from the .ssh directory, and if none is found, generate a new
27 * certification.
28 * @return dht::crypto::Identity
29 */
30
31class Dnc
32{
33public:
34 // Build a server
Adrien Béraudecde63f2023-08-26 18:11:21 -040035 Dnc(const std::filesystem::path& path,
36 dht::crypto::Identity identity,
Amna2f3539b2023-09-18 13:59:22 -040037 const std::string& bootstrap,
38 const std::string& turn_host,
39 const std::string& turn_user,
40 const std::string& turn_pass,
41 const std::string& turn_realm);
Amna38768302023-08-21 11:51:56 -040042 // Build a client
Adrien Béraudecde63f2023-08-26 18:11:21 -040043 Dnc(const std::filesystem::path& path,
44 dht::crypto::Identity identity,
45 const std::string& bootstrap,
Amna38768302023-08-21 11:51:56 -040046 dht::InfoHash peer_id,
Adrien Béraudecde63f2023-08-26 18:11:21 -040047 const std::string& remote_host,
Amna2f3539b2023-09-18 13:59:22 -040048 int remote_port,
49 const std::string& turn_host = "",
50 const std::string& turn_user = "",
51 const std::string& turn_pass = "",
52 const std::string& turn_realm = "");
Amna38768302023-08-21 11:51:56 -040053 ~Dnc();
54 void run();
55
56private:
57 std::unique_ptr<ConnectionManager> connectionManager;
58 std::shared_ptr<Logger> logger;
Amna2f3539b2023-09-18 13:59:22 -040059 std::shared_ptr<tls::CertificateStore> certStore;
60 std::shared_ptr<IceTransportFactory> iceFactory;
Amna38768302023-08-21 11:51:56 -040061 std::shared_ptr<asio::io_context> ioContext;
62 std::thread ioContextRunner;
63
Amna38768302023-08-21 11:51:56 -040064 std::pair<std::string, std::string> parseName(const std::string_view name);
65};
66
67} // namespace dhtnet