* Author : Maxim Mamontov <faust@stargazer.dp.ua>
*/
-/*
- * Header file for client part of data access via Stargazer for RADIUS
- *
- * $Revision: 1.4 $
- * $Date: 2010/04/16 12:30:02 $
- *
- */
-
#ifndef STG_CLIENT_H
#define STG_CLIENT_H
+#include "stg/os_int.h"
+
+#include <boost/scoped_ptr.hpp>
+
#include <string>
+#include <vector>
+#include <stdexcept>
+
+typedef std::vector<std::pair<std::string, std::string> > PAIRS;
+
+struct RESULT
+{
+ PAIRS modify;
+ PAIRS reply;
+};
-#include <netinet/in.h>
-#include <arpa/inet.h>
-#include <sys/socket.h> // socklen_t
+struct ChannelConfig {
+ struct Error : std::runtime_error {
+ Error(const std::string& message) : runtime_error(message) {}
+ };
-#include "blowfish.h"
-#include "rad_packets.h"
+ ChannelConfig(std::string address);
+
+ std::string transport;
+ std::string key;
+ std::string address;
+ std::string portStr;
+ uint16_t port;
+};
class STG_CLIENT
{
public:
- STG_CLIENT(const std::string & host, uint16_t port, uint16_t lp, const std::string & pass);
+ enum TYPE {
+ AUTHORIZE,
+ AUTHENTICATE,
+ POST_AUTH,
+ PRE_ACCT,
+ ACCOUNT
+ };
+ struct Error : std::runtime_error {
+ Error(const std::string& message) : runtime_error(message) {}
+ };
+
+ typedef bool (*Callback)(void* /*data*/, const RESULT& /*result*/, bool /*status*/);
+
+ STG_CLIENT(const std::string& address, Callback callback, void* data);
~STG_CLIENT();
- std::string GetUserPassword() const;
-
- int Authorize(const std::string & login, const std::string & svc);
- int Authenticate(const std::string & login, const std::string & svc);
- int PostAuthenticate(const std::string & login, const std::string & svc);
- int Account(const std::string & type, const std::string & login, const std::string & svc, const std::string & sessid);
+ bool stop();
- uint32_t GetFramedIP() const;
+ static STG_CLIENT* get();
+ static bool configure(const std::string& address, Callback callback, void* data);
- const std::string & GetError() const { return errorStr; };
+ bool request(TYPE type, const std::string& userName, const std::string& password, const PAIRS& pairs);
private:
- uint16_t localPort;
- std::string password;
- int sock;
- std::string errorStr;
-
- struct sockaddr_in outerAddr;
-
- std::string userPassword;
-
- uint32_t framedIP;
-
- BLOWFISH_CTX ctx;
-
- int PrepareNet();
-
- int Request(RAD_PACKET * packet, const std::string & login, const std::string & svc, uint8_t packetType);
-
- int RecvData(RAD_PACKET * packet);
- int Send(const RAD_PACKET & packet);
+ class Impl;
+ boost::scoped_ptr<Impl> m_impl;
};
#endif