mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
Merge pull request #1376 from G10h4ck/jsonapi
JSON API authorize token in createLocation
This commit is contained in:
commit
450ed27b17
@ -118,6 +118,54 @@ JsonApiServer::JsonApiServer(uint16_t port, const std::string& bindAddress,
|
|||||||
mNewAccessRequestCallback(newAccessRequestCallback),
|
mNewAccessRequestCallback(newAccessRequestCallback),
|
||||||
configMutex("JsonApiServer config")
|
configMutex("JsonApiServer config")
|
||||||
{
|
{
|
||||||
|
registerHandler("/rsLoginHelper/createLocation",
|
||||||
|
[this](const std::shared_ptr<rb::Session> session)
|
||||||
|
{
|
||||||
|
size_t reqSize = session->get_request()->get_header("Content-Length", 0);
|
||||||
|
session->fetch( reqSize, [this](
|
||||||
|
const std::shared_ptr<rb::Session> session,
|
||||||
|
const rb::Bytes& body )
|
||||||
|
{
|
||||||
|
INITIALIZE_API_CALL_JSON_CONTEXT;
|
||||||
|
|
||||||
|
RsLoginHelper::Location location;
|
||||||
|
std::string password;
|
||||||
|
std::string errorMessage;
|
||||||
|
bool makeHidden = false;
|
||||||
|
bool makeAutoTor = false;
|
||||||
|
|
||||||
|
// deserialize input parameters from JSON
|
||||||
|
{
|
||||||
|
RsGenericSerializer::SerializeContext& ctx(cReq);
|
||||||
|
RsGenericSerializer::SerializeJob j(RsGenericSerializer::FROM_JSON);
|
||||||
|
RS_SERIAL_PROCESS(location);
|
||||||
|
RS_SERIAL_PROCESS(password);
|
||||||
|
RS_SERIAL_PROCESS(makeHidden);
|
||||||
|
RS_SERIAL_PROCESS(makeAutoTor);
|
||||||
|
}
|
||||||
|
|
||||||
|
// call retroshare C++ API
|
||||||
|
bool retval = rsLoginHelper->createLocation(
|
||||||
|
location, password, errorMessage, makeHidden,
|
||||||
|
makeAutoTor );
|
||||||
|
|
||||||
|
if(retval)
|
||||||
|
authorizeToken(location.mLocationId.toStdString()+":"+password);
|
||||||
|
|
||||||
|
// serialize out parameters and return value to JSON
|
||||||
|
{
|
||||||
|
RsGenericSerializer::SerializeContext& ctx(cAns);
|
||||||
|
RsGenericSerializer::SerializeJob j(RsGenericSerializer::TO_JSON);
|
||||||
|
RS_SERIAL_PROCESS(location);
|
||||||
|
RS_SERIAL_PROCESS(errorMessage);
|
||||||
|
RS_SERIAL_PROCESS(retval);
|
||||||
|
}
|
||||||
|
|
||||||
|
// return them to the API caller
|
||||||
|
DEFAULT_API_CALL_JSON_RETURN(rb::OK);
|
||||||
|
} );
|
||||||
|
}, false);
|
||||||
|
|
||||||
registerHandler("/rsLoginHelper/attemptLogin",
|
registerHandler("/rsLoginHelper/attemptLogin",
|
||||||
[this](const std::shared_ptr<rb::Session> session)
|
[this](const std::shared_ptr<rb::Session> session)
|
||||||
{
|
{
|
||||||
|
@ -292,20 +292,20 @@ struct RsLoginHelper
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Creates a new RetroShare location, and log in once is created
|
* @brief Creates a new RetroShare location, and log in once is created
|
||||||
* @jsonapi{development,unauthenticated}
|
* @jsonapi{development,manualwrapper}
|
||||||
* @param[inout] location provide input information to generate the location
|
* @param[inout] location provide input information to generate the location
|
||||||
* and storage to output the data of the generated location
|
* and storage to output the data of the generated location
|
||||||
* @param[in] password to protect and unlock the associated PGP key
|
* @param[in] password to protect and unlock the associated PGP key
|
||||||
|
* @param[out] errorMessage if some error occurred human readable error
|
||||||
|
* message
|
||||||
* @param[in] makeHidden pass true to create an hidden location. UNTESTED!
|
* @param[in] makeHidden pass true to create an hidden location. UNTESTED!
|
||||||
* @param[in] makeAutoTor pass true to create an automatically configured
|
* @param[in] makeAutoTor pass true to create an automatically configured
|
||||||
* Tor hidden location. UNTESTED!
|
* Tor hidden location. UNTESTED!
|
||||||
* @param[out] errorMessage if some error occurred human readable error
|
|
||||||
* message
|
|
||||||
* @return true if success, false otherwise
|
* @return true if success, false otherwise
|
||||||
*/
|
*/
|
||||||
bool createLocation( RsLoginHelper::Location& location,
|
bool createLocation( RsLoginHelper::Location& location,
|
||||||
const std::string& password, bool makeHidden,
|
const std::string& password, std::string& errorMessage,
|
||||||
bool makeAutoTor, std::string& errorMessage );
|
bool makeHidden = false, bool makeAutoTor = false );
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Check if RetroShare is already logged in, this usually return true
|
* @brief Check if RetroShare is already logged in, this usually return true
|
||||||
|
@ -1952,7 +1952,7 @@ void RsLoginHelper::getLocations(std::vector<RsLoginHelper::Location>& store)
|
|||||||
|
|
||||||
bool RsLoginHelper::createLocation(
|
bool RsLoginHelper::createLocation(
|
||||||
RsLoginHelper::Location& l, const std::string& password,
|
RsLoginHelper::Location& l, const std::string& password,
|
||||||
bool makeHidden, bool makeAutoTor, std::string& errorMessage )
|
std::string& errorMessage, bool makeHidden, bool makeAutoTor )
|
||||||
{
|
{
|
||||||
if(isLoggedIn()) return (errorMessage="Already Running", false);
|
if(isLoggedIn()) return (errorMessage="Already Running", false);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user