1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405
|
#define SATDUMP_DLL_EXPORT 1
#include "tle.h"
#include "common/utils.h"
#include "logger.h"
#include "core/config.h"
#include "core/plugin.h"
#include <thread>
#include "nlohmann/json_utils.h"
#include <fstream>
#include <filesystem>
#include <curl/curl.h>
namespace satdump
{
std::shared_ptr<TLERegistry> general_tle_registry = std::make_shared<TLERegistry>();
int parseTLEStream(std::istream &inputStream, std::shared_ptr<TLERegistry> new_registry)
{
std::string this_line;
std::deque<std::string> tle_lines;
int total_lines = 0;
while (std::getline(inputStream, this_line))
{
this_line.erase(0, this_line.find_first_not_of(" \t\n\r"));
this_line.erase(this_line.find_last_not_of(" \t\n\r") + 1);
if (this_line != "")
tle_lines.push_back(this_line);
if (tle_lines.size() == 3)
{
bool checksum_good = true;
for (int i = 1; i < 3; i++)
{
if (!isdigit(tle_lines[i].back()) || !isdigit(tle_lines[i].front()) || tle_lines[i].front() - '0' != i)
{
checksum_good = false;
break;
}
int checksum = tle_lines[i].back() - '0';
int actualsum = 0;
for (int j = 0; j < (int)tle_lines[i].size() - 1; j++)
{
if (tle_lines[i][j] == '-')
actualsum++;
else if (isdigit(tle_lines[i][j]))
actualsum += tle_lines[i][j] - '0';
}
checksum_good = checksum == actualsum % 10;
if (!checksum_good)
break;
}
if (!checksum_good)
{
tle_lines.pop_front();
continue;
}
int norad;
try
{
std::string noradstr = tle_lines[2].substr(2, tle_lines[2].substr(2, tle_lines[2].size() - 1).find(' '));
norad = std::stoi(noradstr);
}
catch (std::exception &)
{
tle_lines.pop_front();
continue;
}
new_registry->push_back({norad, tle_lines[0], tle_lines[1], tle_lines[2]});
tle_lines.clear();
total_lines++;
}
}
// Sort and remove duplicates
sort(new_registry->begin(), new_registry->end(), [](TLE &a, TLE &b)
{ return a.name < b.name; });
new_registry->erase(std::unique(new_registry->begin(), new_registry->end(), [](TLE &a, TLE &b)
{ return a.norad == b.norad; }),
new_registry->end());
return total_lines;
}
void updateTLEFile(std::string path)
{
try
{
if (!std::filesystem::exists(std::filesystem::path(path).parent_path()))
std::filesystem::create_directories(std::filesystem::path(path).parent_path());
}
catch (std::exception &e)
{
logger->error("Cannot create directory for TLE file: %s", e.what());
return;
}
std::vector<int> norads_to_fetch = config::main_cfg["tle_settings"]["tles_to_fetch"].get<std::vector<int>>();
std::vector<std::string> urls_to_fetch = config::main_cfg["tle_settings"]["urls_to_fetch"].get<std::vector<std::string>>();
bool success = true;
std::shared_ptr<TLERegistry> new_registry = std::make_shared<TLERegistry>();
for (auto &url_str : urls_to_fetch)
{
logger->info(url_str);
std::string result;
int http_res = 1, trials = 0;
while (http_res == 1 && trials < 10)
{
if ((http_res = perform_http_request(url_str, result)) != 1)
{
std::istringstream tle_stream(result);
success = parseTLEStream(tle_stream, new_registry) > 0;
}
else
success = false;
trials++;
if (!success)
{
std::this_thread::sleep_for(std::chrono::seconds(1));
logger->info("Failed getting TLEs. Retrying...");
}
}
if (!success)
{
logger->warn("Failed to get TLE for %s", url_str.c_str());
break;
}
}
if (!success)
{
logger->error("Error updating TLEs. Not updated.");
return;
}
for (int norad : norads_to_fetch)
{
std::string url_str = config::main_cfg["tle_settings"]["url_template"].get<std::string>();
while (url_str.find("%NORAD%") != std::string::npos)
url_str.replace(url_str.find("%NORAD%"), 7, std::to_string(norad));
logger->info(url_str);
std::string result;
int http_res = 1, trials = 0;
while (http_res == 1 && trials < 10)
{
if ((http_res = perform_http_request(url_str, result)) != 1)
{
std::istringstream tle_stream(result);
success = parseTLEStream(tle_stream, new_registry) > 0;
}
else
success = false;
trials++;
if (!success)
{
std::this_thread::sleep_for(std::chrono::seconds(1));
logger->info("Failed getting TLEs. Retrying...");
}
}
if (!success)
{
std::optional<TLE> old_tle = general_tle_registry->get_from_norad(norad);
if (old_tle.has_value())
{
logger->warn("Error updating TLE for %d. Using old record", norad);
new_registry->push_back(old_tle.value());
}
else
logger->error("Error updating TLE for %d. Ignoring!", norad);
}
}
std::ofstream outfile(path, std::ios::trunc);
for (TLE &tle : *new_registry)
outfile << tle.name << std::endl
<< tle.line1 << std::endl
<< tle.line2 << std::endl
<< std::endl;
outfile.close();
general_tle_registry = new_registry;
config::main_cfg["user"]["tles_last_updated"] = time(NULL);
config::saveUserConfig();
logger->info("%zu TLEs loaded!", new_registry->size());
eventBus->fire_event<TLEsUpdatedEvent>(TLEsUpdatedEvent());
}
void autoUpdateTLE(std::string path)
{
std::string update_setting = getValueOrDefault<std::string>(config::main_cfg["satdump_general"]["tle_update_interval"]["value"], "1 day");
time_t last_update = getValueOrDefault<time_t>(config::main_cfg["user"]["tles_last_updated"], 0);
bool honor_setting = true;
time_t update_interval;
if (update_setting == "Never")
honor_setting = false;
else if (update_setting == "4 hours")
update_interval = 14400;
else if (update_setting == "1 day")
update_interval = 86400;
else if (update_setting == "3 days")
update_interval = 259200;
else if (update_setting == "7 days")
update_interval = 604800;
else if (update_setting == "14 days")
update_interval = 1209600;
else
{
logger->error("Invalid TLE Auto-update interval: %s", update_setting.c_str());
honor_setting = false;
}
// Update now, if needed
time_t now = time(NULL);
if ((honor_setting && now > last_update + update_interval) || satdump::general_tle_registry->size() == 0)
{
updateTLEFile(path);
last_update = now;
}
// Schedule updates while running
if (honor_setting)
{
eventBus->register_handler<AutoUpdateTLEsEvent>([](AutoUpdateTLEsEvent evt) { updateTLEFile(evt.path); });
std::shared_ptr<AutoUpdateTLEsEvent> evt = std::make_shared<AutoUpdateTLEsEvent>();
evt->path = path;
taskScheduler->add_task<AutoUpdateTLEsEvent>("auto_tle_update", evt, last_update, update_interval);
}
}
void loadTLEFileIntoRegistry(std::string path)
{
logger->info("Loading TLEs from " + path);
std::ifstream tle_file(path);
std::shared_ptr<TLERegistry> new_registry = std::make_shared<TLERegistry>();
parseTLEStream(tle_file, new_registry);
tle_file.close();
logger->info("%zu TLEs loaded!", new_registry->size());
general_tle_registry = new_registry;
eventBus->fire_event<TLEsUpdatedEvent>(TLEsUpdatedEvent());
}
void fetchTLENow(int norad)
{
std::string url_str = config::main_cfg["tle_settings"]["url_template"].get<std::string>();
while (url_str.find("%NORAD%") != std::string::npos)
url_str.replace(url_str.find("%NORAD%"), 7, std::to_string(norad));
logger->info(url_str);
std::string result;
if (perform_http_request(url_str, result) != 1)
{
std::istringstream tle_stream(result);
int loaded_count = parseTLEStream(tle_stream, general_tle_registry);
logger->info("%d TLEs added!", loaded_count);
}
eventBus->fire_event<TLEsUpdatedEvent>(TLEsUpdatedEvent());
}
///////////////////////////////////////////////////////////////////////////////
std::optional<TLE> TLERegistry::get_from_norad(int norad)
{
std::vector<TLE>::iterator it = std::find_if(begin(),
end(),
[&norad](const TLE &e)
{
return e.norad == norad;
});
if (it != end())
return std::optional<TLE>(*it);
else
return std::optional<TLE>();
}
std::optional<TLE> TLERegistry::get_from_norad_time(int norad, time_t timestamp)
{
time_t last_update = getValueOrDefault<time_t>(config::main_cfg["user"]["tles_last_updated"], 0);
std::string sc_login = getValueOrDefault<std::string>(config::main_cfg["satdump_general"]["tle_space_track_login"]["value"], "");
std::string sc_passw = getValueOrDefault<std::string>(config::main_cfg["satdump_general"]["tle_space_track_password"]["value"], "");
// Use local time if Space Track credentials are not entered, or time is close to TLE catalog time
if (sc_login == "" || sc_passw == "" || sc_login == "yourloginemail" || sc_passw == "yourpassword" ||
fabs((double)last_update - (double)timestamp) < 4 * 24 * 3600)
return get_from_norad(norad);
// Otherwise, request on Space-Track's archive
logger->trace("Pulling historical TLE from Space Track...");
CURL *curl;
CURLcode res;
curl_global_init(CURL_GLOBAL_ALL);
curl = curl_easy_init();
if (!curl)
{
logger->warn("Failed to pull historical TLE due to internal curl failure! Using current TLE");
curl_global_cleanup();
return get_from_norad(norad);
}
// Get the cookie
std::string post_fields = "identity=" + sc_login + "&password=" + sc_passw;
curl_easy_setopt(curl, CURLOPT_COOKIEFILE, "");
curl_easy_setopt(curl, CURLOPT_USERAGENT, std::string((std::string)"SatDump/v" + SATDUMP_VERSION).c_str());
curl_easy_setopt(curl, CURLOPT_URL, "https://www.space-track.org/ajaxauth/login");
curl_easy_setopt(curl, CURLOPT_POSTFIELDS, post_fields.c_str());
#ifdef CURLSSLOPT_NATIVE_CA
curl_easy_setopt(curl, CURLOPT_SSL_OPTIONS, CURLSSLOPT_NATIVE_CA);
#endif
res = curl_easy_perform(curl);
if (res != CURLE_OK)
{
logger->warn("Failed to authenticate to Space Track! Using current TLE");
curl_easy_cleanup(curl);
curl_global_cleanup();
return get_from_norad(norad);
}
// Get the actual TLE
std::string timestamp_day, timestamp_daytime;
{
if (timestamp < 0)
timestamp = 0;
time_t tttime = timestamp;
std::tm *timeReadable = gmtime(&tttime);
timestamp_day = std::to_string(timeReadable->tm_year + 1900) + "-" +
(timeReadable->tm_mon + 1 > 9 ? std::to_string(timeReadable->tm_mon + 1) : "0" + std::to_string(timeReadable->tm_mon + 1)) + "-" +
(timeReadable->tm_mday > 9 ? std::to_string(timeReadable->tm_mday) : "0");
timestamp_daytime = (timeReadable->tm_hour > 9 ? std::to_string(timeReadable->tm_hour) : "0" + std::to_string(timeReadable->tm_hour)) + "%3A" +
(timeReadable->tm_min > 9 ? std::to_string(timeReadable->tm_min) : "0" + std::to_string(timeReadable->tm_min)) + "%3A" +
(timeReadable->tm_sec > 9 ? std::to_string(timeReadable->tm_sec) : "0" + std::to_string(timeReadable->tm_sec));
}
std::string result;
curl_easy_setopt(curl, CURLOPT_POSTFIELDS, NULL);
curl_easy_setopt(curl, CURLOPT_POST, 0);
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, curl_write_std_string);
curl_easy_setopt(curl, CURLOPT_WRITEDATA, &result);
curl_easy_setopt(curl, CURLOPT_URL, std::string("https://www.space-track.org/basicspacedata/query/class/gp_history/NORAD_CAT_ID/" +
std::to_string(norad) + "/EPOCH/%3C" + timestamp_day + "T" + timestamp_daytime + "/orderby/EPOCH%20desc/limit/1/emptyresult/show").c_str());
res = curl_easy_perform(curl);
if (res != CURLE_OK)
{
logger->warn("Failed to download TLE from Space Track! Using built-in TLE");
curl_easy_cleanup(curl);
curl_global_cleanup();
return get_from_norad(norad);
}
// Log out and clean up
std::string logout_result;
curl_easy_setopt(curl, CURLOPT_WRITEDATA, &logout_result);
curl_easy_setopt(curl, CURLOPT_URL, "https://www.space-track.org/ajaxauth/logout");
curl_easy_perform(curl); // We do not care about the result
curl_easy_cleanup(curl);
curl_global_cleanup();
// Parse the downloaded TLE
try
{
bool parsed = true;
nlohmann::json res;
try
{
res = nlohmann::json::parse(result)[0];
}
catch (std::exception &)
{
parsed = false;
}
if (!parsed || !res.contains("TLE_LINE0") || !res.contains("TLE_LINE1") || !res.contains("TLE_LINE2"))
{
logger->warn("Error pulling TLE from Space-Track! Returned data: %s", result.c_str());
return get_from_norad(norad);
}
TLE tle;
tle.norad = norad;
tle.name = res["TLE_LINE0"].get<std::string>().substr(2, res["TLE_LINE0"].get<std::string>().size());
tle.line1 = res["TLE_LINE1"].get<std::string>();
tle.line2 = res["TLE_LINE2"].get<std::string>();
return tle;
}
catch (std::exception &e)
{
logger->error("Could not get TLE from Space-Track : %s", e.what());
return get_from_norad(norad);
}
return std::optional<TLE>();
}
}
|