Added values for update interval and max updates within this interval for DynDNS...
[bpdyndnsd] / src / service_dyndns.cpp
CommitLineData
089a7152
BS
1/** @file
2 * @brief DYNDNS Service class implementation. This class represents the DYNDNS service.
3 *
4 *
5 *
6 * @copyright Intra2net AG
7 * @license GPLv2
8*/
9
4de6a9b8 10#include "service_dyndns.hpp"
089a7152 11
089a7152
BS
12#include <boost/foreach.hpp>
13
14using namespace std;
15
16
17/**
18 * Default Constructor, needed for object serialization.
19 */
629d8110 20ServiceDyndns::ServiceDyndns()
089a7152
BS
21{
22}
23
24
25/**
26 * Constructor.
27 * @param _hostname The hostname to update
28 * @param _login The login name.
29 * @param _password The corresponding password.
30 */
f04a7cb4
BS
31ServiceDyndns::ServiceDyndns(const string& _protocol, const string& _hostname, const string& _login, const string& _password, const Logger::Ptr& _logger, const int _update_interval, const int _max_updates_within_interval, const int _dns_cache_ttl, const string& _proxy, const int _proxy_port, const string& _alternative_server)
32 : AlternativeServer(_alternative_server)
089a7152
BS
33{
34 if ( _update_interval == -1 ) // If _update_interval is default po::option_desc (not specified via config)
a01ce6d7 35 set_update_interval(15); // use default protocol value
089a7152
BS
36 else
37 set_update_interval(_update_interval);
38
39 if ( _max_updates_within_interval == -1 )
a01ce6d7 40 set_max_updates_within_interval(3);
089a7152
BS
41 else
42 set_max_updates_within_interval(_max_updates_within_interval);
43
44 if ( _dns_cache_ttl == -1 )
45 set_dns_cache_ttl(60);
46 else
47 set_dns_cache_ttl(_dns_cache_ttl);
48
49 set_protocol(_protocol);
50 set_hostname(_hostname);
51 set_login(_login);
52 set_password(_password);
53 set_logger(_logger);
54
55 // create http helper class
ce70569b 56 HTTPHelp = HTTPHelper::Ptr(new HTTPHelper(_logger,_proxy,_proxy_port,_login,_password));
089a7152
BS
57
58 BaseUrl = assemble_base_url(get_hostname());
59}
60
61
62/**
63 * Default destructor
64 */
629d8110 65ServiceDyndns::~ServiceDyndns()
089a7152
BS
66{
67}
68
69
70/**
71 * Assemble the dyndns update url from the given fqhn
72 * @param hostname The fqhn hostname to update IP for.
73 * @return The assembled update url without IP.
74 */
629d8110 75string ServiceDyndns::assemble_base_url(const string& fqhn) const
089a7152 76{
f04a7cb4
BS
77 string base_url = "https://";
78
79 // Test if a AlternativeServer name is given, needed for e.g. NO-IP
80 if ( AlternativeServer.empty() )
81 base_url.append("members.dyndns.org");
82 else
7b955644 83 base_url.append(AlternativeServer);
089a7152 84
089a7152
BS
85 base_url.append("/nic/update?hostname=");
86 base_url.append(fqhn);
87 base_url.append("&wildcard=NOCHG&mx=NOCHG&backmx=NOCHG&myip=");
88
89 return base_url;
90}
91
92
93/**
94 * Performs the Service update.
95 * @param ip IP Address to set.
96 * @return 0 if all is fine, -1 otherwise.
97 */
629d8110 98int ServiceDyndns::perform_update(const std::string& ip)
089a7152 99{
089a7152
BS
100 string url = BaseUrl;
101 url.append(ip);
102
25ce914f 103 if ( !HTTPHelp->is_initialized() )
089a7152 104 {
25ce914f
TJ
105 get_logger()->print_httphelper_not_initialized();
106 HTTPHelp->re_initialize();
107 return -1;
108 }
089a7152 109
25ce914f
TJ
110 // Perform curl operation on given url
111 long http_status_code = HTTPHelp->http_get(url);
112
113 get_logger()->print_http_status_code(url,http_status_code);
114
115 // HTTP operation completed successful.
116 // Now we have to parse the data received by curl,
117 // cause http status code is not significant for dyndns update errors
118 if ( http_status_code == 200 )
119 {
120 // Get the received http data.
121 string curl_data = HTTPHelp->get_curl_data();
31af6a2e 122
80b0e508
TJ
123 // Note: We don't handle "nochg" as this shouldn't happen
124 // if only one client is active.
125
ffac9540 126 if ( curl_data.compare(0,4,"good") == 0 )
a78b44b5 127 {
25ce914f
TJ
128 return 0;
129 }
130 else if ( curl_data == "badauth" )
131 {
132 get_logger()->print_service_not_authorized(url,get_login(),get_password());
a78b44b5 133 }
089a7152 134 else
a78b44b5 135 {
25ce914f 136 get_logger()->print_update_failure(url, curl_data);
a78b44b5
BS
137 }
138 }
139 else
140 {
25ce914f 141 get_logger()->print_update_failure(url,http_status_code);
089a7152 142 }
25ce914f 143
a78b44b5 144 return -1;
089a7152 145}