]> git.stg.codes - stg.git/blobdiff - projects/rlm_stg/stg_client.h
Merge branch 'stg-2.409-radius'
[stg.git] / projects / rlm_stg / stg_client.h
index f87f816fbf1e6cc33665c07358455f1ab67149ee..917d0e511fa18c68bef09587725a765dff3ab191 100644 (file)
  *    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_RLM_CLIENT_H__
+#define __STG_RLM_CLIENT_H__
 
-#ifndef STG_CLIENT_H
-#define STG_CLIENT_H
+#include "types.h"
 
-#include <string>
+#include "stg/os_int.h"
 
-#include <netinet/in.h>
-#include <arpa/inet.h>
-#include <sys/socket.h> // socklen_t
+#include <boost/scoped_ptr.hpp>
 
-#include "stg/blowfish.h"
-#include "stg/rad_packets.h"
+#include <string>
 
-class STG_CLIENT
+namespace STG
+{
+namespace RLM
 {
-public:
-    STG_CLIENT(const std::string & host, uint16_t port, uint16_t lp, const std::string & pass);
-    ~STG_CLIENT();
 
-    std::string GetUserPassword() const;
+class Client
+{
+public:
+    explicit Client(const std::string& address);
+    ~Client();
 
-    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 Client* get();
+    static bool configure(const std::string& address);
 
-    const std::string & GetError() const { return errorStr; };
+    RESULT request(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;
 };
 
+} // namespace RLM
+} // namespace STG
+
 #endif