00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifndef _LOGIN_HH_
00018 #define _LOGIN_HH_
00019
00020 #if defined(_WIN32) && defined(_MSC_VER)
00021 # ifdef MISC_EXPORTS
00022 # define MISC_API __declspec(dllexport)
00023 # else
00024 # define MISC_API __declspec(dllimport)
00025 # endif
00026 #else
00027 # define MISC_API
00028 #endif
00029
00030 #include <vos/corelibs/vos/vos.hh>
00031 #include <vos/metaobjects/property/property.hh>
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045 class MISC_API LocalLogin : public virtual MetaObject
00046 {
00047 public:
00048
00049
00050 LocalLogin(MetaObject* superobject);
00051
00052
00053 virtual ~LocalLogin();
00054
00055 class BadUsernameError : public runtime_error {
00056 public:
00057 BadUsernameError(const string& s) : runtime_error(s) { };
00058 };
00059
00060 virtual string getPassword(string username) = 0;
00061 virtual void notifyAuthenticated(const string& username, Site* site) = 0;
00062
00063 virtual const string getType();
00064
00065 protected:
00066
00067
00068
00069
00070
00071
00072
00073 virtual void handleRequestLogin(Message* m);
00074
00075
00076 virtual void handleLoginChallengeReply(Message* m);
00077
00078
00079
00080 struct AuthState
00081 {
00082 string username;
00083 int timestamp;
00084 string nonce;
00085 };
00086 map<Site*, AuthState > nonceMap;
00087 };
00088
00089
00090
00091
00092 class MISC_API RemoteLogin : public virtual MetaObject
00093 {
00094 public:
00095
00096
00097 RemoteLogin(MetaObject* superobject);
00098
00099 static void registerExtenders();
00100
00101
00102 virtual ~RemoteLogin();
00103
00104
00105 static MetaObject* new_RemoteLogin(MetaObject* superobject, const string& type);
00106
00107
00108
00109
00110
00111
00112 virtual bool doRequestLogin(const string& username, const string& password);
00113
00114 virtual const string getType();
00115
00116 protected:
00117
00118
00119
00120
00121 virtual void handleRequestLoginChallenge(Message* m);
00122
00123
00124 virtual void handleLoginResult(Message* m);
00125
00126
00127
00128 bool success;
00129 string password;
00130 };
00131
00132
00133 #endif // #ifdef _LOGIN_HH_
00134