You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openmonero/src/YourMoneroRequests.h

135 lines
3.1 KiB

//
// Created by mwo on 8/12/16.
//
#ifndef RESTBED_XMR_YOURMONEROREQUESTS_H
#define RESTBED_XMR_YOURMONEROREQUESTS_H
#include <iostream>
#include <functional>
#include "version.h"
#include "CurrentBlockchainStatus.h"
#include "MySqlAccounts.h"
#include "../ext/restbed/source/restbed"
#ifndef MAKE_RESOURCE
#define MAKE_RESOURCE(name) auto name = open_monero.make_resource( \
&xmreg::YourMoneroRequests::name, "/" + string(#name));
#endif
namespace xmreg
{
using namespace std;
using namespace restbed;
using namespace nlohmann;
struct handel_
{
using fetch_func_t = function< void ( const shared_ptr< Session >, const Bytes& ) >;
fetch_func_t request_callback;
handel_(const fetch_func_t& callback);
void operator()(const shared_ptr< Session > session);
};
class YourMoneroRequests
{
// this manages all mysql queries
shared_ptr<MySqlAccounts> xmr_accounts;
public:
static string frontend_url;
YourMoneroRequests(shared_ptr<MySqlAccounts> _acc);
/**
* A login request handler.
*
* It takes address and viewkey from the request
* and check mysql if address/account exist. If yes,
* it returns this account. If not, it creates new one.
*
* Once this complites, a thread is started that looks
* for txs belonging to that account.
*
* @param session a Restbed session
* @param body a POST body, i.e., json string
*/
void
login(const shared_ptr<Session> session, const Bytes & body);
void
get_address_txs(const shared_ptr< Session > session, const Bytes & body);
void
get_address_info(const shared_ptr< Session > session, const Bytes & body);
void
get_unspent_outs(const shared_ptr< Session > session, const Bytes & body);
void
get_random_outs(const shared_ptr< Session > session, const Bytes & body);
void
submit_raw_tx(const shared_ptr< Session > session, const Bytes & body);
void
import_wallet_request(const shared_ptr< Session > session, const Bytes & body);
void
get_version(const shared_ptr< Session > session, const Bytes & body);
shared_ptr<Resource>
make_resource(function< void (YourMoneroRequests&, const shared_ptr< Session >, const Bytes& ) > handle_func,
const string& path);
static void
generic_options_handler( const shared_ptr< Session > session );
static multimap<string, string>
make_headers(
const multimap<string, string>& extra_headers
= multimap<string, string>());
static void
print_json_log(const string& text, const json& j);
static inline string
body_to_string(const Bytes & body);
static inline json
body_to_json(const Bytes & body);
inline uint64_t
get_current_blockchain_height();
private:
inline void
session_close(const shared_ptr< Session > session, string response_body);
bool parse_request(const Bytes& body,
vector<string>& values_map,
json& j_request,
json& j_response);
};
}
#endif //RESTBED_XMR_YOURMONEROREQUESTS_H