// // Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2022 // // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) // #include "td/telegram/Location.h" #include namespace td { double Location::fix_accuracy(double accuracy) { if (!std::isfinite(accuracy) || accuracy <= 0.0) { return 0.0; } if (accuracy >= 1500.0) { return 1500.0; } return accuracy; } void Location::init(double latitude, double longitude, double horizontal_accuracy, int64 access_hash) { if (std::isfinite(latitude) && std::isfinite(longitude) && std::abs(latitude) <= 90 && std::abs(longitude) <= 180) { is_empty_ = false; latitude_ = latitude; longitude_ = longitude; horizontal_accuracy_ = fix_accuracy(horizontal_accuracy); access_hash_ = access_hash; G()->add_location_access_hash(latitude_, longitude_, access_hash_); } } Location::Location(double latitude, double longitude, double horizontal_accuracy, int64 access_hash) { init(latitude, longitude, horizontal_accuracy, access_hash); } Location::Location(const tl_object_ptr &geo_point) : Location(geo_point->lat_, geo_point->long_, 0.0, 0) { } Location::Location(const tl_object_ptr &geo_point_ptr) { if (geo_point_ptr == nullptr) { return; } switch (geo_point_ptr->get_id()) { case telegram_api::geoPointEmpty::ID: break; case telegram_api::geoPoint::ID: { auto geo_point = static_cast(geo_point_ptr.get()); init(geo_point->lat_, geo_point->long_, geo_point->accuracy_radius_, geo_point->access_hash_); break; } default: UNREACHABLE(); break; } } Location::Location(const tl_object_ptr &location) { if (location == nullptr) { return; } init(location->latitude_, location->longitude_, location->horizontal_accuracy_, 0); } bool Location::empty() const { return is_empty_; } bool Location::is_valid_map_point() const { const double MAX_VALID_MAP_LATITUDE = 85.05112877; return !empty() && std::abs(latitude_) <= MAX_VALID_MAP_LATITUDE; } tl_object_ptr Location::get_location_object() const { if (empty()) { return nullptr; } return make_tl_object(latitude_, longitude_, horizontal_accuracy_); } tl_object_ptr Location::get_input_geo_point() const { if (empty()) { return make_tl_object(); } int32 flags = 0; if (horizontal_accuracy_ > 0) { flags |= telegram_api::inputGeoPoint::ACCURACY_RADIUS_MASK; } return make_tl_object(flags, latitude_, longitude_, static_cast(std::ceil(horizontal_accuracy_))); } tl_object_ptr Location::get_input_media_geo_point() const { return make_tl_object(get_input_geo_point()); } SecretInputMedia Location::get_secret_input_media_geo_point() const { return SecretInputMedia{nullptr, make_tl_object(latitude_, longitude_)}; } bool operator==(const Location &lhs, const Location &rhs) { if (lhs.is_empty_) { return rhs.is_empty_; } return !rhs.is_empty_ && std::abs(lhs.latitude_ - rhs.latitude_) < 1e-6 && std::abs(lhs.longitude_ - rhs.longitude_) < 1e-6 && std::abs(lhs.horizontal_accuracy_ - rhs.horizontal_accuracy_) < 1e-6; } bool operator!=(const Location &lhs, const Location &rhs) { return !(lhs == rhs); } StringBuilder &operator<<(StringBuilder &string_builder, const Location &location) { if (location.empty()) { return string_builder << "Location[empty]"; } return string_builder << "Location[latitude = " << location.latitude_ << ", longitude = " << location.longitude_ << ", accuracy = " << location.horizontal_accuracy_ << "]"; } Result process_input_message_location( tl_object_ptr &&input_message_content) { CHECK(input_message_content != nullptr); CHECK(input_message_content->get_id() == td_api::inputMessageLocation::ID); auto input_location = static_cast(input_message_content.get()); Location location(input_location->location_); if (location.empty()) { return Status::Error(400, "Wrong location specified"); } constexpr int32 MIN_LIVE_LOCATION_PERIOD = 60; // seconds, server side limit constexpr int32 MAX_LIVE_LOCATION_PERIOD = 86400; // seconds, server side limit auto period = input_location->live_period_; if (period != 0 && (period < MIN_LIVE_LOCATION_PERIOD || period > MAX_LIVE_LOCATION_PERIOD)) { return Status::Error(400, "Wrong live location period specified"); } constexpr int32 MIN_LIVE_LOCATION_HEADING = 1; // degrees, server side limit constexpr int32 MAX_LIVE_LOCATION_HEADING = 360; // degrees, server side limit auto heading = input_location->heading_; if (heading != 0 && (heading < MIN_LIVE_LOCATION_HEADING || heading > MAX_LIVE_LOCATION_HEADING)) { return Status::Error(400, "Wrong live location heading specified"); } constexpr int32 MAX_PROXIMITY_ALERT_RADIUS = 100000; // meters, server side limit auto proximity_alert_radius = input_location->proximity_alert_radius_; if (proximity_alert_radius < 0 || proximity_alert_radius > MAX_PROXIMITY_ALERT_RADIUS) { return Status::Error(400, "Wrong live location proximity alert radius specified"); } return InputMessageLocation(std::move(location), period, heading, proximity_alert_radius); } } // namespace td