mirror of
https://github.com/Threnklyn/esphome-dev.git
synced 2026-05-19 20:53:26 +02:00
83 lines
2.2 KiB
C++
83 lines
2.2 KiB
C++
#include "mdns_component.h"
|
|
#include "esphome/core/defines.h"
|
|
#include "esphome/core/version.h"
|
|
#include "esphome/core/application.h"
|
|
|
|
#ifdef USE_API
|
|
#include "esphome/components/api/api_server.h"
|
|
#endif
|
|
#ifdef USE_DASHBOARD_IMPORT
|
|
#include "esphome/components/dashboard_import/dashboard_import.h"
|
|
#endif
|
|
|
|
namespace esphome {
|
|
namespace mdns {
|
|
|
|
#ifndef WEBSERVER_PORT
|
|
#define WEBSERVER_PORT 80 // NOLINT
|
|
#endif
|
|
|
|
std::vector<MDNSService> MDNSComponent::compile_services_() {
|
|
std::vector<MDNSService> res;
|
|
|
|
#ifdef USE_API
|
|
if (api::global_api_server != nullptr) {
|
|
MDNSService service{};
|
|
service.service_type = "esphomelib";
|
|
service.proto = "_tcp";
|
|
service.port = api::global_api_server->get_port();
|
|
service.txt_records.push_back({"version", ESPHOME_VERSION});
|
|
service.txt_records.push_back({"mac", get_mac_address()});
|
|
const char *platform = nullptr;
|
|
#ifdef USE_ESP8266
|
|
platform = "ESP8266";
|
|
#endif
|
|
#ifdef USE_ESP32
|
|
platform = "ESP32";
|
|
#endif
|
|
if (platform != nullptr) {
|
|
service.txt_records.push_back({"platform", platform});
|
|
}
|
|
|
|
service.txt_records.push_back({"board", ESPHOME_BOARD});
|
|
|
|
#ifdef ESPHOME_PROJECT_NAME
|
|
service.txt_records.push_back({"project_name", ESPHOME_PROJECT_NAME});
|
|
service.txt_records.push_back({"project_version", ESPHOME_PROJECT_VERSION});
|
|
#endif // ESPHOME_PROJECT_NAME
|
|
|
|
#ifdef USE_DASHBOARD_IMPORT
|
|
service.txt_records.push_back({"package_import_url", dashboard_import::get_package_import_url()});
|
|
#endif
|
|
|
|
res.push_back(service);
|
|
}
|
|
#endif // USE_API
|
|
|
|
#ifdef USE_PROMETHEUS
|
|
{
|
|
MDNSService service{};
|
|
service.service_type = "prometheus-http";
|
|
service.proto = "_tcp";
|
|
service.port = WEBSERVER_PORT;
|
|
res.push_back(service);
|
|
}
|
|
#endif
|
|
|
|
if (res.empty()) {
|
|
// Publish "http" service if not using native API
|
|
// This is just to have *some* mDNS service so that .local resolution works
|
|
MDNSService service{};
|
|
service.service_type = "http";
|
|
service.proto = "_tcp";
|
|
service.port = WEBSERVER_PORT;
|
|
service.txt_records.push_back({"version", ESPHOME_VERSION});
|
|
res.push_back(service);
|
|
}
|
|
return res;
|
|
}
|
|
std::string MDNSComponent::compile_hostname_() { return App.get_name(); }
|
|
|
|
} // namespace mdns
|
|
} // namespace esphome
|