DynuIPRefresher/src/main.cpp

72 lines
2.7 KiB
C++
Raw Normal View History

2019-05-05 13:38:48 +00:00
#include <iostream>
2019-05-05 14:35:38 +00:00
#include <ctime>
2019-05-05 14:42:39 +00:00
#include "api/API.h"
2019-05-05 14:35:38 +00:00
#include "Logger.h"
#include "api/TelegramAPI.h"
2019-05-05 13:38:48 +00:00
2019-05-06 10:55:01 +00:00
int main(int argc, char *argv[]) {
2019-05-06 16:49:38 +00:00
if (argc > 1) {
2019-05-06 10:55:01 +00:00
std::string firstarg(argv[1]);
2019-05-06 16:49:38 +00:00
if (firstarg == "-h" || firstarg == "--help") {
std::cout << "help page: " << std::endl << "[-h] [--help] print this help page" << std::endl
<< "[-v] [--version] print the software version" << std::endl
<< "[no argument] normal ip check and refresh" << std::endl;
} else if (firstarg == "-v" || firstarg == "--version") {
2019-05-06 10:55:01 +00:00
std::cout << "Version 1.0" << std::endl;
2019-05-06 16:49:38 +00:00
} else {
2019-05-06 10:55:01 +00:00
std::cout << "wrong arguments! -h for help" << std::endl;
}
2019-05-06 16:49:38 +00:00
} else {
2019-05-06 10:55:01 +00:00
API api;
Logger logger;
2019-05-05 14:35:38 +00:00
2019-05-06 10:55:01 +00:00
std::string ip = api.request("https://api.ipify.org");
2019-05-05 14:35:38 +00:00
2019-05-06 10:55:01 +00:00
if (ip == "") {
//no internet connection
logger.logToLogfile("[WARNING] no internet connection");
std::cout << "[WARNING] no internet connection" << std::endl;
} else {
2019-05-06 10:55:01 +00:00
std::string oldip = logger.readip();
2019-05-05 14:35:38 +00:00
2019-05-06 10:55:01 +00:00
if (oldip == ip) {
2019-05-06 16:49:38 +00:00
std::cout << "[INFO] no change -- ip: " << ip << std::endl;
2019-05-06 10:55:01 +00:00
logger.logToLogfile(" [INFO] no change -- ip: " + ip);
} else {
logger.logToLogfile(" [INFO] ip changed! -- from :" + oldip + "to: " + ip);
2019-05-06 16:49:38 +00:00
std::cout << "[INFO] ip changed! -- from :" << oldip << "to: " << ip << std::endl;
2019-05-05 13:38:48 +00:00
2019-05-06 16:49:38 +00:00
static std::string dynuapikey = "88vNpMfDhMM2YYDNfWR1DNYfRX9W6fYg";
2019-05-05 13:38:48 +00:00
2019-05-06 10:55:01 +00:00
static std::string domainid = "8506047"; //id of the dynu domain
2019-05-06 16:49:38 +00:00
static std::string domainname = "luki.dynu.net";
2019-05-05 13:38:48 +00:00
2019-05-06 10:55:01 +00:00
Hashmap<std::string, std::string> args;
2019-05-06 16:49:38 +00:00
args.add("name", domainname);
2019-05-06 10:55:01 +00:00
args.add("ipv4Address", ip);
2019-05-05 13:38:48 +00:00
2019-05-06 10:55:01 +00:00
std::vector<std::string> headers;
headers.push_back("accept: application/json");
headers.push_back("User-Agent: Mozilla/5.0 (compatible; Rigor/1.0.0; http://rigor.com)");
2019-05-06 16:49:38 +00:00
headers.push_back("API-Key: " + dynuapikey);
2019-05-05 13:38:48 +00:00
2019-05-06 10:55:01 +00:00
std::string dynurepl = api.request("https://api.dynu.com/v2/dns/" + domainid, true, args, headers);
2019-05-05 13:38:48 +00:00
2019-05-06 16:49:38 +00:00
std::cout << "[DEBUG] api reply:: " << dynurepl << std::endl;
2019-05-05 13:38:48 +00:00
2019-05-06 10:55:01 +00:00
if (dynurepl != "{\"statusCode\":200}") {
logger.logToLogfile(" [ERROR] failed to write ip to dynu api!");
2019-05-08 17:31:49 +00:00
} else {
TelegramAPI tele;
tele.sendMessage(oldip + " moved to " + ip);
2019-05-06 10:55:01 +00:00
}
logger.safeip(ip);
}
2019-05-05 16:50:10 +00:00
}
}
2019-05-05 13:38:48 +00:00
return 0;
}