00001 #ifndef IONFLUX_TOOLS_AUTHFILE
00002 #define IONFLUX_TOOLS_AUTHFILE
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029 #include <string>
00030 #include <iostream>
00031 #include <sstream>
00032 #include <vector>
00033 #include "ionflux/Auth.hpp"
00034 #include "ionflux/Reporter.hpp"
00035 #include "ionflux/Tokenizer.hpp"
00036
00037 namespace Ionflux
00038 {
00039
00040 namespace Tools
00041 {
00042
00054 class AuthFile
00055 : public Auth
00056 {
00057 protected:
00059 Ionflux::Tools::Reporter log;
00061 std::string authFile;
00063 std::vector<AuthData> authData;
00064
00069 void parse();
00070
00071 public:
00073 static const TokenType TT_USER_PASS_SEP;
00074
00079 AuthFile();
00080
00087 AuthFile(const std::string &initAuthFile);
00088
00093 virtual ~AuthFile();
00094
00101 virtual void setAuthFile(const std::string &newAuthFile);
00102
00113 virtual bool auth(const std::string &username,
00114 const std::string &password);
00115
00126 virtual void getSecret(const std::string &username,
00127 std::string &secret);
00128
00133 virtual Reporter &getLog();
00134
00136 virtual void printDebugInfo();
00137 };
00138
00139 }
00140
00141 }
00142
00146 #endif