2009-07-30 17:27:47 -04:00
|
|
|
#ifndef RETROSHARE_INIT_INTERFACE_H
|
|
|
|
#define RETROSHARE_INIT_INTERFACE_H
|
|
|
|
|
|
|
|
/*
|
|
|
|
* "$Id: rsiface.h,v 1.9 2007-04-21 19:08:51 rmf24 Exp $"
|
|
|
|
*
|
|
|
|
* RetroShare C++ Interface.
|
|
|
|
*
|
|
|
|
* Copyright 2004-2006 by Robert Fernie.
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License Version 2 as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
* USA.
|
|
|
|
*
|
|
|
|
* Please report all bugs and problems to "retroshare@lunamutt.com".
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2010-11-03 18:54:34 -04:00
|
|
|
// Initialize ok, result >= 0
|
|
|
|
#define RS_INIT_OK 0 // Initialize ok
|
|
|
|
#define RS_INIT_HAVE_ACCOUNT 1 // Initialize ok, have account
|
|
|
|
// Initialize failed, result < 0
|
|
|
|
#define RS_INIT_AUTH_FAILED -1 // AuthGPG::InitAuth failed
|
2010-07-26 18:09:33 -04:00
|
|
|
|
2009-02-08 09:30:28 -05:00
|
|
|
|
2009-05-23 11:07:35 -04:00
|
|
|
/****
|
|
|
|
* #define RS_USE_PGPSSL 1
|
|
|
|
***/
|
|
|
|
|
2009-07-30 17:27:47 -04:00
|
|
|
#define RS_USE_PGPSSL 1
|
|
|
|
|
2011-02-01 18:27:53 -05:00
|
|
|
#include <list>
|
|
|
|
|
2010-07-26 18:09:33 -04:00
|
|
|
/*!
|
|
|
|
* Initialisation Class (not publicly disclosed to RsIFace)
|
|
|
|
*/
|
2009-02-08 09:30:28 -05:00
|
|
|
class RsInit
|
|
|
|
{
|
|
|
|
public:
|
2009-07-30 17:27:47 -04:00
|
|
|
/* reorganised RsInit system */
|
2009-02-08 09:30:28 -05:00
|
|
|
|
2010-07-26 18:09:33 -04:00
|
|
|
/*!
|
|
|
|
* PreLogin
|
|
|
|
* Call before init retroshare, initialises rsinitconfig's public attributes
|
|
|
|
*/
|
2009-07-30 17:27:47 -04:00
|
|
|
static void InitRsConfig() ;
|
2010-07-26 18:09:33 -04:00
|
|
|
|
|
|
|
/*!
|
|
|
|
* Should be called to load up ssl cert and private key, and intialises gpg
|
|
|
|
* this must be called before accessing rsserver (e.g. ::startupretroshare)
|
|
|
|
* @param argc passed from executable
|
|
|
|
* @param argv commandline arguments passed to executable
|
|
|
|
* @param strictCheck set to true if you want rs to continue executing if invalid argument passed and vice versa
|
2010-11-03 18:54:34 -04:00
|
|
|
* @return RS_INIT_...
|
2010-07-26 18:09:33 -04:00
|
|
|
*/
|
2010-11-03 18:54:34 -04:00
|
|
|
static int InitRetroShare(int argc, char **argv, bool strictCheck=true);
|
2010-05-08 17:44:08 -04:00
|
|
|
|
2010-07-26 18:09:33 -04:00
|
|
|
/*!
|
|
|
|
* This return directory seperator for different platforms, not an issue anymore as C library can distinguish
|
|
|
|
* @returns directory of seperator used for different platforms
|
|
|
|
*
|
|
|
|
*/
|
2010-04-30 10:34:48 -04:00
|
|
|
static char dirSeperator();
|
|
|
|
static bool isPortable();
|
2010-10-07 07:17:42 -04:00
|
|
|
static bool isWindowsXP();
|
2009-05-23 11:07:35 -04:00
|
|
|
|
2010-07-26 18:09:33 -04:00
|
|
|
/*!
|
|
|
|
* Account Details (Combined GPG+SSL Setup)
|
|
|
|
*/
|
2009-07-30 17:27:47 -04:00
|
|
|
static bool getPreferedAccountId(std::string &id);
|
2009-10-27 16:50:30 -04:00
|
|
|
static bool getPGPEngineFileName(std::string &fileName);
|
2009-07-30 17:27:47 -04:00
|
|
|
static bool getAccountIds(std::list<std::string> &ids);
|
|
|
|
static bool getAccountDetails(std::string id,
|
|
|
|
std::string &gpgId, std::string &gpgName,
|
|
|
|
std::string &gpgEmail, std::string &sslName);
|
|
|
|
|
2009-02-08 09:30:28 -05:00
|
|
|
static bool ValidateCertificate(std::string &userName) ;
|
|
|
|
|
|
|
|
|
2010-07-26 18:09:33 -04:00
|
|
|
/*!
|
|
|
|
* Generating GPGme Account
|
|
|
|
*/
|
2009-07-30 17:27:47 -04:00
|
|
|
static int GetPGPLogins(std::list<std::string> &pgpIds);
|
|
|
|
static int GetPGPLoginDetails(std::string id, std::string &name, std::string &email);
|
2010-01-18 07:30:54 -05:00
|
|
|
static bool GeneratePGPCertificate(std::string name, std::string email, std::string passwd, std::string &pgpId, std::string &errString);
|
2009-05-23 11:07:35 -04:00
|
|
|
|
2010-07-26 18:09:33 -04:00
|
|
|
/*!
|
|
|
|
* Login GGP
|
|
|
|
*/
|
2010-07-01 16:30:36 -04:00
|
|
|
static bool SelectGPGAccount(const std::string& gpgId);
|
2009-07-30 17:27:47 -04:00
|
|
|
static bool LoadGPGPassword(std::string passwd);
|
2009-05-23 11:07:35 -04:00
|
|
|
|
2010-07-26 18:09:33 -04:00
|
|
|
/*!
|
|
|
|
* Create SSL Certificates
|
|
|
|
*/
|
2009-07-30 17:27:47 -04:00
|
|
|
static bool GenerateSSLCertificate(std::string name, std::string org, std::string loc, std::string country, std::string passwd, std::string &sslId, std::string &errString);
|
|
|
|
|
2010-07-26 18:09:33 -04:00
|
|
|
/*!
|
|
|
|
* intialises directories for passwords and ssl keys
|
|
|
|
*/
|
2009-07-30 17:27:47 -04:00
|
|
|
static bool LoadPassword(std::string id, std::string passwd) ;
|
2009-05-23 11:07:35 -04:00
|
|
|
|
2010-07-26 18:09:33 -04:00
|
|
|
/*!
|
|
|
|
* Final Certificate load. This can be called if:
|
2010-11-03 18:54:34 -04:00
|
|
|
* a) InitRetroshare() returns RS_INIT_HAVE_ACCOUNT -> autoLoad/password Set.
|
2009-07-30 17:27:47 -04:00
|
|
|
* b) SelectGPGAccount() && LoadPassword()
|
2010-07-01 16:30:36 -04:00
|
|
|
*
|
|
|
|
* This wrapper is used to lock the profile first before
|
|
|
|
* finalising the login
|
2009-02-08 09:30:28 -05:00
|
|
|
*/
|
2010-07-01 16:30:36 -04:00
|
|
|
static int LockAndLoadCertificates(bool autoLoginNT);
|
2009-07-30 17:27:47 -04:00
|
|
|
|
|
|
|
|
2010-07-26 18:09:33 -04:00
|
|
|
/*!
|
|
|
|
* Post Login Options
|
|
|
|
*/
|
2009-07-30 17:27:47 -04:00
|
|
|
static std::string RsConfigDirectory();
|
2011-02-01 18:27:53 -05:00
|
|
|
static std::string RsConfigKeysDirectory();
|
2010-07-26 18:09:33 -04:00
|
|
|
|
|
|
|
static std::string RsProfileConfigDirectory();
|
2009-07-30 17:27:47 -04:00
|
|
|
static bool setStartMinimised() ;
|
|
|
|
|
2010-04-08 08:02:46 -04:00
|
|
|
static int getSslPwdLen();
|
|
|
|
static bool getAutoLogin();
|
|
|
|
static void setAutoLogin(bool autoLogin);
|
|
|
|
static bool RsClearAutoLogin() ;
|
|
|
|
|
2010-10-28 18:59:46 -04:00
|
|
|
/* used for static install data */
|
|
|
|
static std::string getRetroshareDataDirectory();
|
2009-07-30 17:27:47 -04:00
|
|
|
|
|
|
|
private:
|
2010-07-26 18:09:33 -04:00
|
|
|
|
2009-07-30 17:27:47 -04:00
|
|
|
/* PreLogin */
|
|
|
|
static std::string getHomePath() ;
|
|
|
|
static void setupBaseDir();
|
|
|
|
|
|
|
|
/* Account Details */
|
|
|
|
static bool get_configinit(std::string dir, std::string &id);
|
|
|
|
static bool create_configinit(std::string dir, std::string id);
|
|
|
|
|
|
|
|
static bool setupAccount(std::string accountdir);
|
|
|
|
|
|
|
|
/* Auto Login */
|
|
|
|
static bool RsStoreAutoLogin() ;
|
|
|
|
static bool RsTryAutoLogin() ;
|
2010-04-08 08:02:46 -04:00
|
|
|
|
2010-07-01 16:30:36 -04:00
|
|
|
/* Lock/unlock profile directory */
|
|
|
|
static int LockConfigDirectory(const std::string& accountDir);
|
|
|
|
static void UnlockConfigDirectory();
|
|
|
|
|
|
|
|
/* The true LoadCertificates() method */
|
|
|
|
static int LoadCertificates(bool autoLoginNT) ;
|
2009-07-30 17:27:47 -04:00
|
|
|
|
2009-02-08 09:30:28 -05:00
|
|
|
};
|
|
|
|
|
2009-07-30 17:27:47 -04:00
|
|
|
|
2010-04-08 08:02:46 -04:00
|
|
|
|
2009-07-30 17:27:47 -04:00
|
|
|
#endif
|