// 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 info stored on files // struct PROJECT_INIT { char url[256]; char name[256]; char account_key[256]; bool has_project_init; bool has_url; bool has_account_key; PROJECT_INIT(); int init(); int remove(); void clear(); }; struct ACCOUNT_IN { std::string url; std::string email_addr; std::string user_name; 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;} }; 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 PROJECT_ATTACH { int error_num; }; #endif