-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
246 lines (185 loc) · 7.59 KB
/
main.cpp
File metadata and controls
246 lines (185 loc) · 7.59 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
#include "src/om_log.h"
#include "src/CmdLineOptions.h"
#include "src/MicroCore.h"
#include "src/YourMoneroRequests.h"
#include "src/ThreadRAII.h"
#include "src/MysqlPing.h"
#include <iostream>
#include <memory>
#include <cstdlib>
using namespace std;
using namespace restbed;
using boost::filesystem::path;
int
main(int ac, const char* av[])
{
// get command line options
xmreg::CmdLineOptions opts {ac, av};
auto help_opt = opts.get_option<bool>("help");
// if help was chosen, display help text and finish
if (*help_opt)
{
return EXIT_SUCCESS;
}
// setup monero logger
mlog_configure(mlog_get_default_log_path(""), true);
mlog_set_log("1");
string log_file = *(opts.get_option<string>("log-file"));
// setup a logger for Open Monero
el::Configurations defaultConf;
defaultConf.setToDefault();
if (!log_file.empty())
{
// setup openmonero log file
defaultConf.setGlobally(el::ConfigurationType::Filename, log_file);
defaultConf.setGlobally(el::ConfigurationType::ToFile, "true");
}
defaultConf.setGlobally(el::ConfigurationType::ToStandardOutput, "true");
el::Loggers::reconfigureLogger("openmonero", defaultConf);
OMINFO << "OpenMonero is starting";
auto do_not_relay_opt = opts.get_option<bool>("do-not-relay");
auto testnet_opt = opts.get_option<bool>("testnet");
auto stagenet_opt = opts.get_option<bool>("stagenet");
auto port_opt = opts.get_option<string>("port");
auto config_file_opt = opts.get_option<string>("config-file");
bool testnet = *testnet_opt;
bool stagenet = *stagenet_opt;
bool do_not_relay = *do_not_relay_opt;
if (testnet && stagenet)
{
OMERROR << "testnet and stagenet cannot be specified at the same time!";
return EXIT_FAILURE;
}
// get the network type
cryptonote::network_type nettype = testnet ?
cryptonote::network_type::TESTNET : stagenet ?
cryptonote::network_type::STAGENET : cryptonote::network_type::MAINNET;
// create blockchain setup instance and set its parameters
// such as blockchain status monitoring thread parameters
xmreg::BlockchainSetup bc_setup {nettype, do_not_relay, *config_file_opt};
OMINFO << "Using blockchain path: " << bc_setup.blockchain_path;
nlohmann::json config_json = bc_setup.get_config();
//cast port number in string to uint16
uint16_t app_port = boost::lexical_cast<uint16_t>(*port_opt);
// set mysql/mariadb connection details
xmreg::MySqlConnector::url = config_json["database"]["url"];
xmreg::MySqlConnector::port = config_json["database"]["port"];
xmreg::MySqlConnector::username = config_json["database"]["user"];
xmreg::MySqlConnector::password = config_json["database"]["password"];
xmreg::MySqlConnector::dbname = config_json["database"]["dbname"];
// once we have all the parameters for the blockchain and our backend
// we can create and instance of CurrentBlockchainStatus class.
// we are going to this through a shared pointer. This way we will
// have only once instance of this class, which we can easily inject
// and pass around other class which need to access blockchain data
auto current_bc_status
= make_shared<xmreg::CurrentBlockchainStatus>(
bc_setup,
std::make_unique<xmreg::MicroCore>(),
std::make_unique<xmreg::RPCCalls>(bc_setup.deamon_url));
// since CurrentBlockchainStatus class monitors current status
// of the blockchain (e.g., current height). This is the only class
// that has direct access to blockchain and talks (using rpc calls)
// with the nutu daemon.
if (!current_bc_status->init_nutu_blockchain())
{
OMERROR << "Error accessing blockchain.";
return EXIT_FAILURE;
}
// launch the status monitoring thread so that it keeps track of blockchain
// info, e.g., current height. Information from this thread is used
// by tx searching threads that are launched for each user independently,
// when they log back or create new account.
xmreg::ThreadRAII blockchain_monitoring_thread(
std::thread([current_bc_status]
{current_bc_status->monitor_blockchain();}),
xmreg::ThreadRAII::DtorAction::join);
OMINFO << "Blockchain monitoring thread started";
// try connecting to the mysql
shared_ptr<xmreg::MySqlAccounts> mysql_accounts;
try
{
// MySqlAccounts will try connecting to the mysql database
mysql_accounts = make_shared<xmreg::MySqlAccounts>(current_bc_status);
OMINFO << "Connected to the MySQL";
}
catch(std::exception const& e)
{
OMERROR << e.what();
return EXIT_FAILURE;
}
// at this point we should be connected to the mysql
// mysql connection will timeout after few hours
// of idle time. so we have this tiny helper
// thread to ping mysql, thus keeping it alive.
//
// "A completely different way to tackle this,
// if your program doesn't block forever waiting on I/O while idle,
// is to periodically call Connection::ping(). [12]
// This sends the smallest possible amount of data to the database server,
// which will reset its idle timer and cause it to respond, so ping() returns true.
// If it returns false instead, you know you need to reconnect to the server.
// Periodic pinging is easiest to do if your program uses asynchronous I/O,
// threads, or some kind of event loop to ensure that you can call
// something periodically even while the rest of the program has nothing to do."
// from: https://tangentsoft.net/mysql++/doc/html/userman/tutorial.html#connopts
//
xmreg::MysqlPing mysql_ping {mysql_accounts->get_connection()};
xmreg::ThreadRAII mysql_ping_thread(
std::thread(std::ref(mysql_ping)),
xmreg::ThreadRAII::DtorAction::join);
OMINFO << "MySQL ping thread started";
// create REST JSON API services
xmreg::YourMoneroRequests open_monero(mysql_accounts, current_bc_status);
// create Open Monero APIs
MAKE_RESOURCE(login);
MAKE_RESOURCE(get_address_txs);
MAKE_RESOURCE(get_address_info);
MAKE_RESOURCE(get_unspent_outs);
MAKE_RESOURCE(get_random_outs);
MAKE_RESOURCE(submit_raw_tx);
MAKE_RESOURCE(import_wallet_request);
MAKE_RESOURCE(import_recent_wallet_request);
MAKE_RESOURCE(get_tx);
MAKE_RESOURCE(get_version);
// restbed service
Service service;
// Publish the NutuWebWallet API created so that front end can use it
service.publish(login);
service.publish(get_address_txs);
service.publish(get_address_info);
service.publish(get_unspent_outs);
service.publish(get_random_outs);
service.publish(submit_raw_tx);
service.publish(import_wallet_request);
service.publish(import_recent_wallet_request);
service.publish(get_tx);
service.publish(get_version);
OMINFO << "JSON API endpoints published";
auto settings = make_shared<Settings>();
if (config_json["ssl"]["enable"])
{
// based on the example provided at
// https://github.com/Corvusoft/restbed/blob/34187502642144ab9f749ab40f5cdbd8cb17a54a/example/https_service/source/example.cpp
auto ssl_settings = make_shared<SSLSettings>( );
Uri ssl_key = Uri(config_json["ssl"]["ssl-key"].get<string>());
Uri ssl_crt = Uri(config_json["ssl"]["ssl-crt"].get<string>());
Uri dh_pem = Uri(config_json["ssl"]["dh-pem"].get<string>());
ssl_settings->set_http_disabled(true);
ssl_settings->set_port(app_port);
ssl_settings->set_private_key(ssl_key);
ssl_settings->set_certificate(ssl_crt);
ssl_settings->set_temporary_diffie_hellman(dh_pem);
settings->set_ssl_settings(ssl_settings);
// can check using: curl -k -v -w'\n' -X POST 'https://127.0.0.1:1984/get_version'
OMINFO << "Start the service at https://127.0.0.1:" << app_port;
}
else
{
settings->set_port(app_port);
settings->set_default_header("Connection", "close");
OMINFO << "Start the service at http://127.0.0.1:" << app_port;
}
service.start(settings);
return EXIT_SUCCESS;
}