// // Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2019 // // 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 { void Location::init(double latitude, double longitude, 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; access_hash_ = access_hash; G()->add_location_access_hash(latitude_, longitude_, access_hash_); } } Location::Location(double latitude, double longitude, int64 access_hash) { init(latitude, longitude, access_hash); } Location::Location(const tl_object_ptr &geo_point) : Location(geo_point->lat_, geo_point->long_, 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->access_hash_); break; } default: UNREACHABLE(); break; } } Location::Location(const tl_object_ptr &location) { if (location == nullptr) { return; } init(location->latitude_, location->longitude_, 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_); } tl_object_ptr Location::get_input_geo_point() const { if (empty()) { return make_tl_object(); } return make_tl_object(latitude_, longitude_); } 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; } 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_ << "]"; } 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"); } return std::make_pair(std::move(location), period); } } // namespace td