dash/src/governance/governance-validators.h
PastaPastaPasta d931cb723e Update copyright date (2019) (#2970)
Signed-off-by: Pasta <Pasta@dash.org>
2019-06-11 14:46:07 +03:00

48 lines
1.2 KiB
C++

// Copyright (c) 2014-2019 The Dash Core developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#ifndef GOVERNANCE_VALIDATORS_H
#define GOVERNANCE_VALIDATORS_H
#include <string>
#include <univalue.h>
class CProposalValidator
{
private:
UniValue objJSON;
bool fJSONValid;
bool fAllowLegacyFormat;
std::string strErrorMessages;
public:
CProposalValidator(const std::string& strDataHexIn = std::string(), bool fAllowLegacyFormat = true);
bool Validate(bool fCheckExpiration = true);
const std::string& GetErrorMessages()
{
return strErrorMessages;
}
private:
void ParseStrHexData(const std::string& strHexData);
void ParseJSONData(const std::string& strJSONData);
bool GetDataValue(const std::string& strKey, std::string& strValueRet);
bool GetDataValue(const std::string& strKey, int64_t& nValueRet);
bool GetDataValue(const std::string& strKey, double& dValueRet);
bool ValidateName();
bool ValidateStartEndEpoch(bool fCheckExpiration = true);
bool ValidatePaymentAmount();
bool ValidatePaymentAddress();
bool ValidateURL();
bool CheckURL(const std::string& strURLIn);
};
#endif