2cbc54163c2728ac35a1a21efab045f0d17ee59b
[bpdyndnsd] / src / service_dyndns.hpp
1 /** @file
2  * @brief DYNDNS Service class header. This class represents the DYNDNS service.
3  *
4  *
5  *
6  * @copyright Intra2net AG
7  * @license GPLv2
8 */
9
10 #ifndef ServiceDyndns_H
11 #define ServiceDyndns_H
12
13 #include "service.hpp"
14 #include "logger.hpp"
15 #include "httphelper.hpp"
16
17 #include <boost/shared_ptr.hpp>
18 #include <string>
19
20
21 class ServiceDyndns : public Service
22 {
23
24 private:
25
26     friend class boost::serialization::access;
27     template<class Archive>
28     void serialize(Archive & ar, const unsigned int version)
29     {
30         ar & boost::serialization::base_object<Service>(*this);
31     }
32
33     std::string AlternativeServer;  // Needed for NO-IP
34     std::string BaseUrl;
35
36     HTTPHelper::Ptr HTTPHelp;
37
38     std::string assemble_base_url(const std::string& fqhn) const;
39
40 public:
41
42     typedef boost::shared_ptr<ServiceDyndns> Ptr;
43
44     ServiceDyndns();
45
46     ServiceDyndns(const std::string& _protocol, const std::string& _hostname, const std::string& _login, const std::string& _password, const Logger::Ptr& _logger, const int _update_interval, const int _max_updates_within_interval, const int _max_equal_updates_in_succession, const int dns_cache_ttl, const std::string& proxy, const int proxy_port, const std::string& _alternative_server = "");
47
48     ~ServiceDyndns();
49
50     int perform_update(const std::string& ip);
51
52 };
53
54 #endif