00001 #ifndef IONFLUX_TOOLS_AUTH 00002 #define IONFLUX_TOOLS_AUTH 00003 /* ========================================================================== 00004 * Ionflux Tools 00005 * Copyright (c) 2004 Joern P. Meier 00006 * mail@ionflux.org 00007 * -------------------------------------------------------------------------- 00008 * Auth.hpp Simple user authentication (abstract class). 00009 * ========================================================================== 00010 * 00011 * This file is part of Ionflux Tools. 00012 * 00013 * Ionflux Tools is free software; you can redistribute it and/or modify it 00014 * under the terms of the GNU General Public License as published by the Free 00015 * Software Foundation; either version 2 of the License, or (at your option) 00016 * any later version. 00017 * 00018 * Ionflux Tools is distributed in the hope that it will be useful, but 00019 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 00020 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 00021 * for more details. 00022 * 00023 * You should have received a copy of the GNU General Public License 00024 * along with Ionflux Tools; if not, write to the Free Software Foundation, 00025 * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00026 * 00027 * ========================================================================== */ 00028 00029 #include <string> 00030 #include "ionflux/Reporter.hpp" 00031 00032 namespace Ionflux 00033 { 00034 00035 namespace Tools 00036 { 00037 00049 struct AuthData 00050 { 00052 std::string username; 00054 std::string password; 00056 std::string sessionSecret; 00057 }; 00058 00063 class Auth 00064 { 00065 protected: 00066 00067 public: 00072 Auth() { }; 00073 00078 virtual ~Auth() { }; 00079 00090 virtual bool auth(const std::string &username, 00091 const std::string &password) = 0; 00092 00101 virtual void getSecret(const std::string &username, 00102 std::string &secret) = 0; 00103 00108 virtual Reporter &getLog() = 0; 00109 }; 00110 00112 00113 } 00114 00115 } 00116 00120 #endif