mirror of https://github.com/BOINC/boinc.git
113 lines
3.1 KiB
C++
113 lines
3.1 KiB
C++
// Berkeley Open Infrastructure for Network Computing
|
|
// http://boinc.berkeley.edu
|
|
// Copyright (C) 2005 University of California
|
|
//
|
|
// This is free software; you can redistribute it and/or
|
|
// modify it under the terms of the GNU Lesser General Public
|
|
// License as published by the Free Software Foundation;
|
|
// either version 2.1 of the License, or (at your option) any later version.
|
|
//
|
|
// This software 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 Lesser General Public License for more details.
|
|
//
|
|
// To view the GNU Lesser General Public License visit
|
|
// http://www.gnu.org/copyleft/lesser.html
|
|
// or write to the Free Software Foundation, Inc.,
|
|
// 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
#ifndef _ACCT_SETUP_H_
|
|
#define _ACCT_SETUP_H_
|
|
|
|
#include "gui_http.h"
|
|
#include "error_numbers.h"
|
|
|
|
// represents the contents of project_info.xml
|
|
//
|
|
struct PROJECT_INIT {
|
|
char url[256];
|
|
char name[256];
|
|
char account_key[256];
|
|
|
|
PROJECT_INIT();
|
|
int init();
|
|
int remove();
|
|
void clear();
|
|
};
|
|
|
|
struct ACCOUNT_IN {
|
|
std::string url;
|
|
std::string email_addr;
|
|
// this is the account identifier. on systems that use
|
|
// usernames it is the username, on systems that use
|
|
// email addresses it is an email address for the user.
|
|
std::string user_name;
|
|
// this is the suggested friendly name for the user
|
|
// during account creation.
|
|
std::string passwd_hash;
|
|
|
|
void parse(char*);
|
|
};
|
|
|
|
struct GET_PROJECT_CONFIG_OP: public GUI_HTTP_OP {
|
|
std::string reply;
|
|
int error_num;
|
|
|
|
virtual ~GET_PROJECT_CONFIG_OP(){}
|
|
int do_rpc(string url);
|
|
virtual void handle_reply(int http_op_retval);
|
|
GET_PROJECT_CONFIG_OP(){error_num = BOINC_SUCCESS;}
|
|
};
|
|
|
|
struct LOOKUP_ACCOUNT_OP: public GUI_HTTP_OP {
|
|
std::string reply;
|
|
int error_num;
|
|
|
|
virtual ~LOOKUP_ACCOUNT_OP(){}
|
|
int do_rpc(ACCOUNT_IN&);
|
|
virtual void handle_reply(int http_op_retval);
|
|
LOOKUP_ACCOUNT_OP(){error_num = BOINC_SUCCESS;}
|
|
};
|
|
|
|
struct CREATE_ACCOUNT_OP: public GUI_HTTP_OP {
|
|
std::string reply;
|
|
int error_num;
|
|
|
|
virtual ~CREATE_ACCOUNT_OP(){}
|
|
int do_rpc(ACCOUNT_IN&);
|
|
virtual void handle_reply(int http_op_retval);
|
|
CREATE_ACCOUNT_OP(){error_num = BOINC_SUCCESS;}
|
|
};
|
|
|
|
// This is used to access a reference website (like yahoo or google)
|
|
// that is assumed to be 100% available.
|
|
// It is used ONLY from the HTTP code, when a transaction fails
|
|
//
|
|
struct LOOKUP_WEBSITE_OP: public GUI_HTTP_OP {
|
|
int error_num;
|
|
|
|
virtual ~LOOKUP_WEBSITE_OP(){}
|
|
int do_rpc(std::string&);
|
|
virtual void handle_reply(int http_op_retval);
|
|
LOOKUP_WEBSITE_OP(){
|
|
error_num = BOINC_SUCCESS;
|
|
}
|
|
};
|
|
|
|
struct GET_CURRENT_VERSION_OP: public GUI_HTTP_OP {
|
|
int error_num;
|
|
|
|
virtual ~GET_CURRENT_VERSION_OP(){}
|
|
int do_rpc();
|
|
virtual void handle_reply(int http_op_retval);
|
|
GET_CURRENT_VERSION_OP(){error_num = BOINC_SUCCESS;}
|
|
};
|
|
|
|
struct PROJECT_ATTACH {
|
|
int error_num;
|
|
std::vector<std::string> messages;
|
|
};
|
|
|
|
#endif
|