From aaf52d4282df77bf8ff30980787923b96c34ae98 Mon Sep 17 00:00:00 2001 From: Isaac <> Date: Sun, 30 Mar 2025 02:06:50 +0400 Subject: [PATCH] Conference calls --- .../BroadcastUploadExtension.swift | 4 +- Telegram/NotificationService/BUILD | 1 - .../Sources/NotificationService.swift | 25 +- .../Sources/AccountContext.swift | 8 +- .../Sources/OpenChatMessage.swift | 3 + .../Sources/PresentationCallManager.swift | 15 +- .../Sources/BrowserBookmarksScreen.swift | 1 + submodules/CallListUI/BUILD | 1 + .../Sources/CallListController.swift | 55 +- .../ChatListUI/Sources/ChatContextMenus.swift | 30 +- .../Sources/ChatListSearchListPaneNode.swift | 6 +- .../Sources/Node/ChatListItemStrings.swift | 3 + .../Sources/InviteLinkInviteController.swift | 1 + .../ItemListPermanentInviteLinkItem.swift | 5 +- submodules/PeerInfoAvatarListNode/BUILD | 1 + .../Sources/PeerInfoAvatarListNode.swift | 20 + .../SwiftSignalKit/Source/Signal_Catch.swift | 42 + submodules/TelegramApi/Sources/Api0.swift | 19 +- submodules/TelegramApi/Sources/Api10.swift | 40 + submodules/TelegramApi/Sources/Api15.swift | 38 + submodules/TelegramApi/Sources/Api19.swift | 100 +- submodules/TelegramApi/Sources/Api20.swift | 40 +- submodules/TelegramApi/Sources/Api26.swift | 40 + submodules/TelegramApi/Sources/Api38.swift | 116 +- submodules/TelegramApi/Sources/Api7.swift | 18 +- submodules/TelegramApi/Sources/Buffer.swift | 37 +- .../Sources/TelegramBaseController.swift | 3 +- submodules/TelegramCallsUI/BUILD | 1 + .../Sources/PresentationCall.swift | 434 +- .../Sources/PresentationCallManager.swift | 49 +- .../Sources/PresentationGroupCall.swift | 407 +- .../Sources/VideoChatScreen.swift | 152 +- .../VideoChatScreenInviteMembers.swift | 4 +- .../Sources/VideoChatScreenMoreMenu.swift | 4 +- .../Sources/VoiceChatJoinScreen.swift | 2 +- .../Account/AccountIntermediateState.swift | 48 +- .../ApiUtils/StoreMessage_Telegram.swift | 4 + .../ApiUtils/TelegramMediaAction.swift | 32 +- .../State/AccountStateManagementUtils.swift | 24 +- .../Sources/State/AccountStateManager.swift | 7 +- .../Sources/State/CallSessionManager.swift | 489 +- .../Sources/State/Serialization.swift | 2 +- .../SyncCore_TelegramMediaAction.swift | 12 + .../TelegramEngine/Calls/GroupCalls.swift | 863 +- .../Calls/TelegramEngineCalls.swift | 46 +- .../TelegramEngine/Peers/JoinLink.swift | 58 +- .../Peers/TelegramEnginePeers.swift | 4 + .../Peers/UpdateCachedPeerData.swift | 4 + .../Sources/ServiceMessageStrings.swift | 4 + .../Sources/ChatBotInfoItem.swift | 2 +- .../ChatMessageBubbleContentNode.swift | 1 + .../Sources/ChatMessageBubbleItemNode.swift | 16 +- .../ChatMessageCallBubbleContentNode.swift | 11 + .../ChatMessageInteractiveMediaNode.swift | 12 +- .../Sources/ChatMessageItemView.swift | 1 + .../ChatRecentActionsControllerNode.swift | 12 +- .../ChatSendAudioMessageContextPreview.swift | 3 +- .../Sources/ChatControllerInteraction.swift | 3 + .../Sources/JoinSubjectScreen.swift | 15 +- .../Components/PeerInfo/PeerInfoScreen/BUILD | 1 + ...PeerInfoAvatarTransformContainerNode.swift | 150 +- .../Sources/PeerInfoEditingAvatarNode.swift | 4 +- .../Sources/PeerInfoScreen.swift | 3 +- .../Sources/StorageUsageScreen.swift | 2 +- ...ChatControllerOpenMessageContextMenu.swift | 2 + ...atControllerOpenViewOnceMediaMessage.swift | 3 +- .../TelegramUI/Sources/ChatController.swift | 47 + .../Sources/FetchCachedRepresentations.swift | 53 +- .../TelegramUI/Sources/OpenResolvedUrl.swift | 7 +- submodules/TelegramUI/Sources/OpenUrl.swift | 16 + .../OverlayAudioPlayerControllerNode.swift | 4 +- .../Sources/SharedAccountContext.swift | 3 +- .../Sources/GroupCallContext.swift | 37 +- submodules/TgVoipWebrtc/BUILD | 1 + .../OngoingCallThreadLocalContext.h | 4 +- .../Sources/OngoingCallThreadLocalContext.mm | 29 +- third-party/boringssl/BUILD | 4 +- third-party/td/BUILD | 150 + .../td/TdBinding/Public/TdBinding/TdBinding.h | 56 + third-party/td/TdBinding/Sources/TdBinding.mm | 275 + third-party/td/build-td-bazel.sh | 52 + third-party/td/td/.clang-format | 194 + third-party/td/td/.gitattributes | 39 + third-party/td/td/.gitignore | 8 + third-party/td/td/CHANGELOG.md | 1520 + .../td/td/CMake/AddCXXCompilerFlag.cmake | 74 + third-party/td/td/CMake/FindAtomics.cmake | 62 + third-party/td/td/CMake/FindReadline.cmake | 25 + .../td/td/CMake/GeneratePkgConfig.cmake | 99 + .../td/CMake/GetGitRevisionDescription.cmake | 127 + .../CMake/GetGitRevisionDescription.cmake.in | 43 + .../td/td/CMake/PreventInSourceBuild.cmake | 14 + third-party/td/td/CMake/TdSetUpCompiler.cmake | 185 + third-party/td/td/CMake/iOS.cmake | 278 + third-party/td/td/CMake/illumos.cmake | 10 + third-party/td/td/CMakeLists.txt | 1440 + third-party/td/td/Doxyfile | 2473 + third-party/td/td/LICENSE_1_0.txt | 23 + third-party/td/td/README.md | 145 + third-party/td/td/SplitSource.php | 508 + third-party/td/td/TdConfig.cmake | 8 + third-party/td/td/benchmark/CMakeLists.txt | 93 + third-party/td/td/benchmark/bench_actor.cpp | 349 + third-party/td/td/benchmark/bench_crypto.cpp | 526 + third-party/td/td/benchmark/bench_db.cpp | 244 + third-party/td/td/benchmark/bench_empty.cpp | 8 + .../td/td/benchmark/bench_handshake.cpp | 72 + third-party/td/td/benchmark/bench_http.cpp | 77 + .../td/td/benchmark/bench_http_reader.cpp | 119 + .../td/td/benchmark/bench_http_server.cpp | 84 + .../td/benchmark/bench_http_server_cheat.cpp | 132 + .../td/benchmark/bench_http_server_fast.cpp | 116 + third-party/td/td/benchmark/bench_log.cpp | 160 + third-party/td/td/benchmark/bench_misc.cpp | 841 + third-party/td/td/benchmark/bench_queue.cpp | 932 + third-party/td/td/benchmark/bench_tddb.cpp | 113 + third-party/td/td/benchmark/check_proxy.cpp | 193 + third-party/td/td/benchmark/check_tls.cpp | 336 + third-party/td/td/benchmark/hashmap_build.cpp | 545 + .../td/td/benchmark/hashset_memory.cpp | 193 + third-party/td/td/benchmark/rmdir.cpp | 45 + third-party/td/td/benchmark/wget.cpp | 43 + third-party/td/td/build.html | 1139 + third-party/td/td/example/README.md | 321 + third-party/td/td/example/android/.gitignore | 3 + .../td/td/example/android/AddIntDef.php | 51 + .../td/td/example/android/CMakeLists.txt | 72 + third-party/td/td/example/android/Dockerfile | 28 + third-party/td/td/example/android/README.md | 32 + .../td/td/example/android/build-openssl.sh | 93 + .../td/td/example/android/build-tdlib.sh | 117 + .../td/example/android/check-environment.sh | 51 + .../td/td/example/android/fetch-sdk.sh | 30 + third-party/td/td/example/cpp/.gitignore | 1 + third-party/td/td/example/cpp/CMakeLists.txt | 13 + third-party/td/td/example/cpp/README.md | 24 + third-party/td/td/example/cpp/td_example.cpp | 337 + .../td/td/example/cpp/tdjson_example.cpp | 55 + third-party/td/td/example/csharp/.gitignore | 5 + third-party/td/td/example/csharp/README.md | 40 + third-party/td/td/example/csharp/TdExample.cs | 293 + .../td/td/example/csharp/TdExample.csproj | 119 + .../td/td/example/csharp/TdExample.sln | 31 + .../td/example/ios/Python-Apple-support.patch | 118 + third-party/td/td/example/ios/README.md | 46 + .../td/td/example/ios/build-openssl.sh | 37 + third-party/td/td/example/ios/build.sh | 92 + third-party/td/td/example/java/.gitignore | 5 + third-party/td/td/example/java/CMakeLists.txt | 141 + third-party/td/td/example/java/README.md | 47 + .../java/org/drinkless/tdlib/Client.java | 259 + .../java/org/drinkless/tdlib/JsonClient.java | 79 + .../org/drinkless/tdlib/example/Example.java | 780 + .../drinkless/tdlib/example/JsonExample.java | 47 + third-party/td/td/example/java/td_jni.cpp | 241 + third-party/td/td/example/python/.gitignore | 3 + third-party/td/td/example/python/README.md | 11 + .../td/td/example/python/tdjson_example.py | 145 + third-party/td/td/example/swift/.gitignore | 3 + third-party/td/td/example/swift/README.md | 15 + .../td/td/example/swift/src/main.swift | 189 + .../td/example/swift/src/td-Bridging-Header.h | 9 + third-party/td/td/example/uwp/LICENSE_1_0.txt | 23 + third-party/td/td/example/uwp/README.md | 33 + third-party/td/td/example/uwp/SDKManifest.xml | 12 + .../td/td/example/uwp/Telegram.Td.UWP.nuspec | 19 + .../td/td/example/uwp/Telegram.Td.UWP.targets | 21 + .../td/td/example/uwp/[Content_Types].xml | 14 + third-party/td/td/example/uwp/app/.gitignore | 5 + third-party/td/td/example/uwp/app/App.xaml | 7 + third-party/td/td/example/uwp/app/App.xaml.cs | 104 + .../uwp/app/ApplicationInsights.config | 3 + .../app/Assets/LockScreenLogo.scale-200.png | Bin 0 -> 1430 bytes .../uwp/app/Assets/SplashScreen.scale-200.png | Bin 0 -> 7700 bytes .../Assets/Square150x150Logo.scale-200.png | Bin 0 -> 2937 bytes .../app/Assets/Square44x44Logo.scale-200.png | Bin 0 -> 1647 bytes ...x44Logo.targetsize-24_altform-unplated.png | Bin 0 -> 1255 bytes .../td/example/uwp/app/Assets/StoreLogo.png | Bin 0 -> 1451 bytes .../app/Assets/Wide310x150Logo.scale-200.png | Bin 0 -> 3204 bytes .../td/td/example/uwp/app/MainPage.xaml | 29 + .../td/td/example/uwp/app/MainPage.xaml.cs | 186 + .../td/example/uwp/app/Package.appxmanifest | 28 + .../uwp/app/Properties/AssemblyInfo.cs | 29 + .../example/uwp/app/Properties/Default.rd.xml | 31 + .../td/td/example/uwp/app/TdApp.csproj | 151 + third-party/td/td/example/uwp/app/TdApp.sln | 40 + .../td/example/uwp/app/TdApp_TemporaryKey.pfx | Bin 0 -> 2456 bytes .../td/td/example/uwp/app/project.json | 19 + third-party/td/td/example/uwp/build.ps1 | 173 + .../td/td/example/uwp/extension.vsixmanifest | 17 + third-party/td/td/example/web/.gitignore | 5 + third-party/td/td/example/web/README.md | 29 + .../td/td/example/web/build-openssl.sh | 29 + third-party/td/td/example/web/build-tdlib.sh | 38 + third-party/td/td/example/web/build-tdweb.sh | 7 + third-party/td/td/example/web/copy-tdlib.sh | 6 + third-party/td/td/example/web/tdweb/README.md | 29 + .../td/td/example/web/tdweb/package-lock.json | 9401 + .../td/td/example/web/tdweb/package.json | 102 + .../td/td/example/web/tdweb/src/index.js | 679 + .../td/td/example/web/tdweb/src/logger.js | 47 + .../td/td/example/web/tdweb/src/wasm-utils.js | 136 + .../td/td/example/web/tdweb/src/worker.js | 996 + .../td/td/example/web/tdweb/webpack.config.js | 85 + third-party/td/td/format.ps1 | 3 + third-party/td/td/format.sh | 3 + third-party/td/td/memprof/memprof.cpp | 331 + third-party/td/td/memprof/memprof.h | 27 + third-party/td/td/memprof/memprof_stat.cpp | 169 + third-party/td/td/memprof/memprof_stat.h | 13 + third-party/td/td/post.js | 1 + third-party/td/td/sqlite/CMakeLists.txt | 80 + third-party/td/td/sqlite/sqlite/LICENSE | 24 + third-party/td/td/sqlite/sqlite/sqlite3.c | 232086 +++++++++++++++ third-party/td/td/sqlite/sqlite/sqlite3.h | 12100 + third-party/td/td/sqlite/sqlite/sqlite3ext.h | 650 + .../td/td/sqlite/sqlite/sqlite3session.h | 1659 + third-party/td/td/src.ps1 | 1 + third-party/td/td/src.sh | 2 + third-party/td/td/td/generate/CMakeLists.txt | 228 + .../DotnetTlDocumentationGenerator.php | 237 + .../DoxygenTlDocumentationGenerator.php | 447 + .../JavadocTlDocumentationGenerator.php | 294 + .../td/generate/TlDocumentationGenerator.php | 366 + third-party/td/td/td/generate/generate_c.cpp | 17 + .../td/td/td/generate/generate_common.cpp | 51 + .../td/td/td/generate/generate_dotnet.cpp | 22 + .../td/td/td/generate/generate_java.cpp | 29 + .../td/td/td/generate/generate_json.cpp | 15 + .../td/td/td/generate/generate_mtproto.cpp | 27 + .../td/td/generate/remove_documentation.cpp | 23 + .../td/td/td/generate/scheme/e2e_api.tl | 92 + .../td/td/td/generate/scheme/mtproto_api.tl | 87 + .../td/td/td/generate/scheme/secret_api.tl | 131 + .../td/td/td/generate/scheme/td_api.tl | 12677 + .../td/td/td/generate/scheme/telegram_api.tl | 2690 + .../td/td/generate/tl-parser/CMakeLists.txt | 19 + .../td/td/td/generate/tl-parser/LICENSE | 339 + .../td/td/td/generate/tl-parser/crc32.c | 345 + .../td/td/td/generate/tl-parser/crc32.h | 37 + .../td/generate/tl-parser/portable_endian.h | 88 + .../td/td/generate/tl-parser/tl-parser-tree.h | 178 + .../td/td/td/generate/tl-parser/tl-parser.c | 3078 + .../td/td/td/generate/tl-parser/tl-parser.h | 223 + .../td/td/td/generate/tl-parser/tl-tl.h | 55 + third-party/td/td/td/generate/tl-parser/tlc.c | 165 + .../td/td/td/generate/tl-parser/wgetopt.c | 1274 + .../td/td/td/generate/tl-parser/wgetopt.h | 193 + .../td/td/td/generate/tl_json_converter.cpp | 297 + .../td/td/td/generate/tl_json_converter.h | 18 + third-party/td/td/td/generate/tl_writer_c.h | 1378 + .../td/td/td/generate/tl_writer_cpp.cpp | 733 + third-party/td/td/td/generate/tl_writer_cpp.h | 107 + .../td/td/td/generate/tl_writer_dotnet.h | 582 + third-party/td/td/td/generate/tl_writer_h.cpp | 420 + third-party/td/td/td/generate/tl_writer_h.h | 95 + .../td/td/td/generate/tl_writer_hpp.cpp | 274 + third-party/td/td/td/generate/tl_writer_hpp.h | 108 + .../td/td/td/generate/tl_writer_java.cpp | 500 + .../td/td/td/generate/tl_writer_java.h | 124 + .../td/td/td/generate/tl_writer_jni_cpp.cpp | 675 + .../td/td/td/generate/tl_writer_jni_cpp.h | 109 + .../td/td/td/generate/tl_writer_jni_h.cpp | 170 + .../td/td/td/generate/tl_writer_jni_h.h | 57 + .../td/td/td/generate/tl_writer_td.cpp | 297 + third-party/td/td/td/generate/tl_writer_td.h | 67 + third-party/td/td/td/mtproto/AuthData.cpp | 178 + third-party/td/td/td/mtproto/AuthData.h | 295 + third-party/td/td/td/mtproto/AuthKey.h | 134 + .../td/td/td/mtproto/ConnectionManager.cpp | 37 + .../td/td/td/mtproto/ConnectionManager.h | 70 + third-party/td/td/td/mtproto/CryptoStorer.h | 371 + third-party/td/td/td/mtproto/DhCallback.h | 29 + third-party/td/td/td/mtproto/DhHandshake.cpp | 232 + third-party/td/td/td/mtproto/DhHandshake.h | 124 + third-party/td/td/td/mtproto/Handshake.cpp | 366 + third-party/td/td/td/mtproto/Handshake.h | 109 + .../td/td/td/mtproto/HandshakeActor.cpp | 113 + third-party/td/td/td/mtproto/HandshakeActor.h | 56 + .../td/td/td/mtproto/HandshakeConnection.h | 86 + .../td/td/td/mtproto/HttpTransport.cpp | 108 + third-party/td/td/td/mtproto/HttpTransport.h | 59 + .../td/td/td/mtproto/IStreamTransport.cpp | 28 + .../td/td/td/mtproto/IStreamTransport.h | 40 + third-party/td/td/td/mtproto/KDF.cpp | 107 + third-party/td/td/td/mtproto/KDF.h | 22 + third-party/td/td/td/mtproto/MessageId.h | 70 + third-party/td/td/td/mtproto/MtprotoQuery.h | 27 + third-party/td/td/td/mtproto/NoCryptoStorer.h | 43 + third-party/td/td/td/mtproto/PacketInfo.h | 33 + third-party/td/td/td/mtproto/PacketStorer.h | 44 + third-party/td/td/td/mtproto/Ping.cpp | 104 + third-party/td/td/td/mtproto/Ping.h | 25 + .../td/td/td/mtproto/PingConnection.cpp | 217 + third-party/td/td/td/mtproto/PingConnection.h | 34 + third-party/td/td/td/mtproto/ProxySecret.cpp | 56 + third-party/td/td/td/mtproto/ProxySecret.h | 69 + third-party/td/td/td/mtproto/RSA.cpp | 158 + third-party/td/td/td/mtproto/RSA.h | 49 + .../td/td/td/mtproto/RawConnection.cpp | 493 + third-party/td/td/td/mtproto/RawConnection.h | 92 + .../td/td/td/mtproto/SessionConnection.cpp | 1156 + .../td/td/td/mtproto/SessionConnection.h | 288 + third-party/td/td/td/mtproto/TcpTransport.cpp | 221 + third-party/td/td/td/mtproto/TcpTransport.h | 181 + third-party/td/td/td/mtproto/TlsInit.cpp | 558 + third-party/td/td/td/mtproto/TlsInit.h | 51 + .../td/td/td/mtproto/TlsReaderByteFlow.cpp | 40 + .../td/td/td/mtproto/TlsReaderByteFlow.h | 20 + third-party/td/td/td/mtproto/Transport.cpp | 464 + third-party/td/td/td/mtproto/Transport.h | 139 + third-party/td/td/td/mtproto/TransportType.h | 27 + third-party/td/td/td/mtproto/utils.cpp | 19 + third-party/td/td/td/mtproto/utils.h | 55 + third-party/td/td/td/telegram/AccentColorId.h | 82 + third-party/td/td/td/telegram/AccessRights.h | 15 + .../td/td/td/telegram/AccountManager.cpp | 1347 + .../td/td/td/telegram/AccountManager.h | 136 + .../td/td/td/telegram/AffectedHistory.h | 33 + .../td/td/td/telegram/AffiliateType.cpp | 76 + third-party/td/td/td/telegram/AffiliateType.h | 43 + .../td/td/td/telegram/AlarmManager.cpp | 58 + third-party/td/td/td/telegram/AlarmManager.h | 38 + .../td/td/td/telegram/AnimationsManager.cpp | 851 + .../td/td/td/telegram/AnimationsManager.h | 166 + .../td/td/td/telegram/AnimationsManager.hpp | 77 + third-party/td/td/td/telegram/Application.cpp | 144 + third-party/td/td/td/telegram/Application.h | 28 + .../td/td/td/telegram/AttachMenuManager.cpp | 875 + .../td/td/td/telegram/AttachMenuManager.h | 140 + .../td/td/td/telegram/AudiosManager.cpp | 295 + third-party/td/td/td/telegram/AudiosManager.h | 90 + .../td/td/td/telegram/AudiosManager.hpp | 132 + third-party/td/td/td/telegram/AuthManager.cpp | 1494 + third-party/td/td/td/telegram/AuthManager.h | 233 + third-party/td/td/td/telegram/AuthManager.hpp | 45 + .../td/td/telegram/AutoDownloadSettings.cpp | 150 + .../td/td/td/telegram/AutoDownloadSettings.h | 39 + .../td/td/td/telegram/AutosaveManager.cpp | 550 + .../td/td/td/telegram/AutosaveManager.h | 117 + third-party/td/td/td/telegram/BackgroundId.h | 70 + .../td/td/td/telegram/BackgroundInfo.cpp | 34 + .../td/td/td/telegram/BackgroundInfo.h | 61 + .../td/td/td/telegram/BackgroundInfo.hpp | 30 + .../td/td/td/telegram/BackgroundManager.cpp | 1505 + .../td/td/td/telegram/BackgroundManager.h | 243 + .../td/td/td/telegram/BackgroundType.cpp | 507 + .../td/td/td/telegram/BackgroundType.h | 159 + .../td/td/td/telegram/BackgroundType.hpp | 94 + third-party/td/td/td/telegram/BaseTheme.cpp | 45 + third-party/td/td/td/telegram/BaseTheme.h | 22 + third-party/td/td/td/telegram/Birthdate.cpp | 69 + third-party/td/td/td/telegram/Birthdate.h | 69 + third-party/td/td/td/telegram/Birthdate.hpp | 25 + third-party/td/td/td/telegram/BlockListId.h | 99 + .../td/td/td/telegram/BoostManager.cpp | 524 + third-party/td/td/td/telegram/BoostManager.h | 65 + third-party/td/td/td/telegram/BotCommand.cpp | 230 + third-party/td/td/td/telegram/BotCommand.h | 103 + .../td/td/td/telegram/BotCommandScope.cpp | 122 + .../td/td/td/telegram/BotCommandScope.h | 43 + .../td/td/td/telegram/BotInfoManager.cpp | 1079 + .../td/td/td/telegram/BotInfoManager.h | 207 + .../td/td/td/telegram/BotMenuButton.cpp | 165 + third-party/td/td/td/telegram/BotMenuButton.h | 83 + third-party/td/td/td/telegram/BotQueries.cpp | 116 + third-party/td/td/td/telegram/BotQueries.h | 25 + .../td/telegram/BotRecommendationManager.cpp | 366 + .../td/td/telegram/BotRecommendationManager.h | 81 + .../td/td/td/telegram/BotVerification.cpp | 65 + .../td/td/td/telegram/BotVerification.h | 59 + .../td/td/td/telegram/BotVerification.hpp | 33 + .../td/td/td/telegram/BotVerifierSettings.cpp | 66 + .../td/td/td/telegram/BotVerifierSettings.h | 56 + .../td/td/td/telegram/BotVerifierSettings.hpp | 43 + .../td/td/td/telegram/BusinessAwayMessage.cpp | 68 + .../td/td/td/telegram/BusinessAwayMessage.h | 70 + .../td/td/td/telegram/BusinessAwayMessage.hpp | 38 + .../telegram/BusinessAwayMessageSchedule.cpp | 105 + .../td/telegram/BusinessAwayMessageSchedule.h | 54 + .../telegram/BusinessAwayMessageSchedule.hpp | 50 + .../td/td/telegram/BusinessBotManageBar.cpp | 88 + .../td/td/td/telegram/BusinessBotManageBar.h | 86 + .../td/td/td/telegram/BusinessChatLink.cpp | 56 + .../td/td/td/telegram/BusinessChatLink.h | 54 + .../td/td/telegram/BusinessConnectedBot.cpp | 46 + .../td/td/td/telegram/BusinessConnectedBot.h | 71 + .../td/td/telegram/BusinessConnectedBot.hpp | 35 + .../td/td/td/telegram/BusinessConnectionId.h | 79 + .../td/telegram/BusinessConnectionManager.cpp | 1528 + .../td/telegram/BusinessConnectionManager.h | 230 + .../td/telegram/BusinessGreetingMessage.cpp | 68 + .../td/td/telegram/BusinessGreetingMessage.h | 70 + .../td/telegram/BusinessGreetingMessage.hpp | 35 + .../td/td/td/telegram/BusinessInfo.cpp | 116 + third-party/td/td/td/telegram/BusinessInfo.h | 60 + .../td/td/td/telegram/BusinessInfo.hpp | 83 + .../td/td/td/telegram/BusinessIntro.cpp | 97 + third-party/td/td/td/telegram/BusinessIntro.h | 62 + .../td/td/td/telegram/BusinessIntro.hpp | 63 + .../td/td/td/telegram/BusinessManager.cpp | 628 + .../td/td/td/telegram/BusinessManager.h | 71 + .../td/td/td/telegram/BusinessRecipients.cpp | 187 + .../td/td/td/telegram/BusinessRecipients.h | 67 + .../td/td/td/telegram/BusinessRecipients.hpp | 58 + .../td/td/td/telegram/BusinessWorkHours.cpp | 251 + .../td/td/td/telegram/BusinessWorkHours.h | 91 + .../td/td/td/telegram/BusinessWorkHours.hpp | 43 + third-party/td/td/td/telegram/CallActor.cpp | 1144 + third-party/td/td/td/telegram/CallActor.h | 249 + .../td/td/td/telegram/CallDiscardReason.cpp | 91 + .../td/td/td/telegram/CallDiscardReason.h | 35 + third-party/td/td/td/telegram/CallId.h | 59 + third-party/td/td/td/telegram/CallManager.cpp | 237 + third-party/td/td/td/telegram/CallManager.h | 80 + .../td/td/telegram/CallbackQueriesManager.cpp | 315 + .../td/td/telegram/CallbackQueriesManager.h | 57 + third-party/td/td/td/telegram/ChainId.h | 66 + third-party/td/td/td/telegram/ChannelId.h | 74 + .../td/telegram/ChannelParticipantFilter.cpp | 116 + .../td/td/telegram/ChannelParticipantFilter.h | 62 + .../telegram/ChannelRecommendationManager.cpp | 541 + .../telegram/ChannelRecommendationManager.h | 108 + third-party/td/td/td/telegram/ChannelType.h | 15 + third-party/td/td/td/telegram/ChatId.h | 73 + third-party/td/td/td/telegram/ChatManager.cpp | 9133 + third-party/td/td/td/telegram/ChatManager.h | 929 + .../td/td/td/telegram/ChatReactions.cpp | 164 + third-party/td/td/td/telegram/ChatReactions.h | 79 + .../td/td/td/telegram/ChatReactions.hpp | 55 + third-party/td/td/td/telegram/Client.cpp | 725 + third-party/td/td/td/telegram/Client.h | 289 + third-party/td/td/td/telegram/ClientActor.cpp | 50 + third-party/td/td/td/telegram/ClientActor.h | 108 + .../td/td/td/telegram/ClientDotNet.cpp | 175 + third-party/td/td/td/telegram/ClientJson.cpp | 162 + third-party/td/td/td/telegram/ClientJson.h | 45 + .../td/td/td/telegram/CommonDialogManager.cpp | 225 + .../td/td/td/telegram/CommonDialogManager.h | 59 + .../td/td/td/telegram/ConfigManager.cpp | 2268 + third-party/td/td/td/telegram/ConfigManager.h | 140 + .../td/td/td/telegram/ConnectionState.cpp | 38 + .../td/td/td/telegram/ConnectionState.h | 19 + .../td/td/telegram/ConnectionStateManager.cpp | 61 + .../td/td/telegram/ConnectionStateManager.h | 39 + third-party/td/td/td/telegram/Contact.cpp | 127 + third-party/td/td/td/telegram/Contact.h | 151 + .../td/td/td/telegram/CountryInfoManager.cpp | 613 + .../td/td/td/telegram/CountryInfoManager.h | 96 + third-party/td/td/td/telegram/CustomEmojiId.h | 74 + .../td/td/td/telegram/DelayDispatcher.cpp | 66 + .../td/td/td/telegram/DelayDispatcher.h | 45 + .../td/td/td/telegram/Dependencies.cpp | 153 + third-party/td/td/td/telegram/Dependencies.h | 58 + .../td/td/td/telegram/DeviceTokenManager.cpp | 471 + .../td/td/td/telegram/DeviceTokenManager.h | 91 + third-party/td/td/td/telegram/DhCache.cpp | 55 + third-party/td/td/td/telegram/DhCache.h | 26 + third-party/td/td/td/telegram/DhConfig.h | 38 + .../td/td/td/telegram/DialogAction.cpp | 554 + third-party/td/td/td/telegram/DialogAction.h | 101 + .../td/td/td/telegram/DialogActionBar.cpp | 398 + .../td/td/td/telegram/DialogActionBar.h | 172 + .../td/td/td/telegram/DialogActionManager.cpp | 427 + .../td/td/td/telegram/DialogActionManager.h | 80 + .../td/td/td/telegram/DialogAdministrator.cpp | 26 + .../td/td/td/telegram/DialogAdministrator.h | 88 + .../td/td/td/telegram/DialogBoostLinkInfo.h | 21 + third-party/td/td/td/telegram/DialogDate.h | 73 + third-party/td/td/td/telegram/DialogDb.cpp | 489 + third-party/td/td/td/telegram/DialogDb.h | 110 + .../td/td/td/telegram/DialogEventLog.cpp | 683 + .../td/td/td/telegram/DialogEventLog.h | 24 + .../td/td/td/telegram/DialogFilter.cpp | 978 + third-party/td/td/td/telegram/DialogFilter.h | 172 + .../td/td/td/telegram/DialogFilter.hpp | 111 + .../td/td/telegram/DialogFilterDialogInfo.h | 24 + .../td/td/td/telegram/DialogFilterId.h | 79 + .../td/td/telegram/DialogFilterInviteLink.cpp | 55 + .../td/td/telegram/DialogFilterInviteLink.h | 50 + .../td/td/td/telegram/DialogFilterManager.cpp | 2210 + .../td/td/td/telegram/DialogFilterManager.h | 253 + third-party/td/td/td/telegram/DialogId.cpp | 187 + third-party/td/td/td/telegram/DialogId.h | 98 + .../td/td/td/telegram/DialogInviteLink.cpp | 142 + .../td/td/td/telegram/DialogInviteLink.h | 81 + .../td/td/td/telegram/DialogInviteLink.hpp | 126 + .../td/telegram/DialogInviteLinkManager.cpp | 1121 + .../td/td/telegram/DialogInviteLinkManager.h | 146 + third-party/td/td/td/telegram/DialogListId.h | 140 + .../td/td/td/telegram/DialogLocation.cpp | 87 + .../td/td/td/telegram/DialogLocation.h | 71 + .../td/td/td/telegram/DialogManager.cpp | 3661 + third-party/td/td/td/telegram/DialogManager.h | 395 + .../telegram/DialogNotificationSettings.cpp | 221 + .../td/telegram/DialogNotificationSettings.h | 98 + .../telegram/DialogNotificationSettings.hpp | 113 + .../td/td/td/telegram/DialogParticipant.cpp | 841 + .../td/td/td/telegram/DialogParticipant.h | 703 + .../td/telegram/DialogParticipantFilter.cpp | 142 + .../td/td/telegram/DialogParticipantFilter.h | 39 + .../td/telegram/DialogParticipantManager.cpp | 3051 + .../td/td/telegram/DialogParticipantManager.h | 322 + .../td/td/td/telegram/DialogSource.cpp | 98 + third-party/td/td/td/telegram/DialogSource.h | 48 + third-party/td/td/td/telegram/Dimensions.cpp | 51 + third-party/td/td/td/telegram/Dimensions.h | 28 + third-party/td/td/td/telegram/Dimensions.hpp | 28 + third-party/td/td/td/telegram/Document.cpp | 113 + third-party/td/td/td/telegram/Document.h | 46 + third-party/td/td/td/telegram/Document.hpp | 107 + .../td/td/td/telegram/DocumentsManager.cpp | 767 + .../td/td/td/telegram/DocumentsManager.h | 142 + .../td/td/td/telegram/DocumentsManager.hpp | 87 + .../td/td/td/telegram/DownloadManager.cpp | 838 + .../td/td/td/telegram/DownloadManager.h | 113 + .../td/telegram/DownloadManagerCallback.cpp | 126 + .../td/td/telegram/DownloadManagerCallback.h | 70 + .../td/td/td/telegram/DraftMessage.cpp | 563 + third-party/td/td/td/telegram/DraftMessage.h | 115 + .../td/td/td/telegram/DraftMessage.hpp | 86 + .../td/td/td/telegram/EmailVerification.cpp | 53 + .../td/td/td/telegram/EmailVerification.h | 37 + third-party/td/td/td/telegram/EmojiGroup.cpp | 97 + third-party/td/td/td/telegram/EmojiGroup.h | 79 + third-party/td/td/td/telegram/EmojiGroup.hpp | 64 + .../td/td/td/telegram/EmojiGroupType.cpp | 46 + .../td/td/td/telegram/EmojiGroupType.h | 24 + third-party/td/td/td/telegram/EmojiStatus.cpp | 634 + third-party/td/td/td/telegram/EmojiStatus.h | 194 + third-party/td/td/td/telegram/EncryptedFile.h | 91 + third-party/td/td/td/telegram/FactCheck.cpp | 56 + third-party/td/td/td/telegram/FactCheck.h | 64 + third-party/td/td/td/telegram/FactCheck.hpp | 55 + .../td/td/telegram/FileReferenceManager.cpp | 559 + .../td/td/td/telegram/FileReferenceManager.h | 234 + .../td/td/telegram/FileReferenceManager.hpp | 201 + third-party/td/td/td/telegram/FolderId.h | 74 + third-party/td/td/td/telegram/ForumTopic.cpp | 80 + third-party/td/td/td/telegram/ForumTopic.h | 75 + third-party/td/td/td/telegram/ForumTopic.hpp | 106 + .../td/td/telegram/ForumTopicEditedData.cpp | 49 + .../td/td/td/telegram/ForumTopicEditedData.h | 68 + .../td/td/telegram/ForumTopicEditedData.hpp | 56 + .../td/td/td/telegram/ForumTopicIcon.cpp | 43 + .../td/td/td/telegram/ForumTopicIcon.h | 45 + .../td/td/td/telegram/ForumTopicIcon.hpp | 40 + .../td/td/td/telegram/ForumTopicInfo.cpp | 91 + .../td/td/td/telegram/ForumTopicInfo.h | 95 + .../td/td/td/telegram/ForumTopicInfo.hpp | 45 + .../td/td/td/telegram/ForumTopicManager.cpp | 1232 + .../td/td/td/telegram/ForumTopicManager.h | 195 + third-party/td/td/td/telegram/Game.cpp | 139 + third-party/td/td/td/telegram/Game.h | 86 + third-party/td/td/td/telegram/Game.hpp | 63 + third-party/td/td/td/telegram/GameManager.cpp | 196 + third-party/td/td/td/telegram/GameManager.h | 50 + .../td/td/td/telegram/GitCommitHash.cpp.in | 15 + third-party/td/td/td/telegram/GitCommitHash.h | 13 + .../td/td/td/telegram/GiveawayParameters.cpp | 202 + .../td/td/td/telegram/GiveawayParameters.h | 94 + .../td/td/td/telegram/GiveawayParameters.hpp | 65 + third-party/td/td/td/telegram/Global.cpp | 356 + third-party/td/td/td/telegram/Global.h | 826 + .../td/td/telegram/GlobalPrivacySettings.cpp | 201 + .../td/td/td/telegram/GlobalPrivacySettings.h | 53 + third-party/td/td/td/telegram/GroupCallId.h | 53 + .../td/td/td/telegram/GroupCallManager.cpp | 4915 + .../td/td/td/telegram/GroupCallManager.h | 437 + .../td/td/telegram/GroupCallParticipant.cpp | 322 + .../td/td/td/telegram/GroupCallParticipant.h | 112 + .../td/telegram/GroupCallParticipantOrder.cpp | 73 + .../td/telegram/GroupCallParticipantOrder.h | 64 + .../td/td/telegram/GroupCallVideoPayload.cpp | 63 + .../td/td/td/telegram/GroupCallVideoPayload.h | 40 + .../td/td/td/telegram/HashtagHints.cpp | 127 + third-party/td/td/td/telegram/HashtagHints.h | 48 + .../td/td/telegram/InlineMessageManager.cpp | 384 + .../td/td/td/telegram/InlineMessageManager.h | 61 + .../td/td/telegram/InlineQueriesManager.cpp | 2391 + .../td/td/td/telegram/InlineQueriesManager.h | 192 + .../td/td/telegram/InputBusinessChatLink.cpp | 50 + .../td/td/td/telegram/InputBusinessChatLink.h | 36 + .../td/td/td/telegram/InputDialogId.cpp | 157 + third-party/td/td/td/telegram/InputDialogId.h | 82 + .../td/td/td/telegram/InputGroupCallId.cpp | 23 + .../td/td/td/telegram/InputGroupCallId.h | 72 + .../td/td/td/telegram/InputInvoice.cpp | 452 + third-party/td/td/td/telegram/InputInvoice.h | 135 + .../td/td/td/telegram/InputInvoice.hpp | 226 + .../td/td/td/telegram/InputMessageText.cpp | 96 + .../td/td/td/telegram/InputMessageText.h | 65 + .../td/td/td/telegram/InputMessageText.hpp | 57 + third-party/td/td/td/telegram/JsonValue.cpp | 247 + third-party/td/td/td/telegram/JsonValue.h | 39 + .../td/td/td/telegram/LabeledPricePart.h | 47 + .../td/td/td/telegram/LanguagePackManager.cpp | 1889 + .../td/td/td/telegram/LanguagePackManager.h | 201 + third-party/td/td/td/telegram/LinkManager.cpp | 3478 + third-party/td/td/td/telegram/LinkManager.h | 204 + third-party/td/td/td/telegram/Location.cpp | 183 + third-party/td/td/td/telegram/Location.h | 144 + third-party/td/td/td/telegram/Log.cpp | 72 + third-party/td/td/td/telegram/Log.h | 86 + third-party/td/td/td/telegram/LogDotNet.cpp | 64 + third-party/td/td/td/telegram/Logging.cpp | 163 + third-party/td/td/td/telegram/Logging.h | 36 + third-party/td/td/td/telegram/MediaArea.cpp | 414 + third-party/td/td/td/telegram/MediaArea.h | 103 + third-party/td/td/td/telegram/MediaArea.hpp | 168 + .../td/td/telegram/MediaAreaCoordinates.cpp | 84 + .../td/td/td/telegram/MediaAreaCoordinates.h | 59 + .../td/td/telegram/MediaAreaCoordinates.hpp | 56 + .../td/td/td/telegram/MessageContent.cpp | 9944 + .../td/td/td/telegram/MessageContent.h | 358 + .../td/td/td/telegram/MessageContentType.cpp | 929 + .../td/td/td/telegram/MessageContentType.h | 129 + .../td/td/td/telegram/MessageCopyOptions.h | 64 + third-party/td/td/td/telegram/MessageDb.cpp | 1237 + third-party/td/td/td/telegram/MessageDb.h | 205 + .../td/td/td/telegram/MessageEffectId.h | 65 + .../td/td/td/telegram/MessageEntity.cpp | 4801 + third-party/td/td/td/telegram/MessageEntity.h | 258 + .../td/td/td/telegram/MessageEntity.hpp | 68 + .../td/td/telegram/MessageExtendedMedia.cpp | 459 + .../td/td/td/telegram/MessageExtendedMedia.h | 134 + .../td/td/telegram/MessageExtendedMedia.hpp | 132 + .../td/td/td/telegram/MessageForwardInfo.cpp | 266 + .../td/td/td/telegram/MessageForwardInfo.h | 175 + .../td/td/td/telegram/MessageForwardInfo.hpp | 105 + third-party/td/td/td/telegram/MessageFullId.h | 79 + third-party/td/td/td/telegram/MessageId.cpp | 217 + third-party/td/td/td/telegram/MessageId.h | 203 + .../td/td/telegram/MessageImportManager.cpp | 551 + .../td/td/td/telegram/MessageImportManager.h | 116 + .../td/td/td/telegram/MessageInputReplyTo.cpp | 174 + .../td/td/td/telegram/MessageInputReplyTo.h | 114 + .../td/td/td/telegram/MessageInputReplyTo.hpp | 87 + .../td/td/td/telegram/MessageLinkInfo.h | 33 + .../td/td/td/telegram/MessageOrigin.cpp | 172 + third-party/td/td/td/telegram/MessageOrigin.h | 101 + .../td/td/td/telegram/MessageOrigin.hpp | 79 + .../td/td/td/telegram/MessageQueryManager.cpp | 3178 + .../td/td/td/telegram/MessageQueryManager.h | 292 + .../td/td/td/telegram/MessageQuote.cpp | 238 + third-party/td/td/td/telegram/MessageQuote.h | 85 + .../td/td/td/telegram/MessageQuote.hpp | 50 + .../td/td/td/telegram/MessageReaction.cpp | 1231 + .../td/td/td/telegram/MessageReaction.h | 257 + .../td/td/td/telegram/MessageReaction.hpp | 160 + .../td/td/td/telegram/MessageReactor.cpp | 130 + .../td/td/td/telegram/MessageReactor.h | 100 + .../td/td/td/telegram/MessageReactor.hpp | 57 + .../td/td/td/telegram/MessageReplyHeader.cpp | 65 + .../td/td/td/telegram/MessageReplyHeader.h | 37 + .../td/td/td/telegram/MessageReplyInfo.cpp | 235 + .../td/td/td/telegram/MessageReplyInfo.h | 74 + .../td/td/td/telegram/MessageReplyInfo.hpp | 104 + .../td/td/td/telegram/MessageSearchFilter.cpp | 147 + .../td/td/td/telegram/MessageSearchFilter.h | 68 + .../td/td/td/telegram/MessageSearchOffset.cpp | 69 + .../td/td/td/telegram/MessageSearchOffset.h | 30 + .../td/telegram/MessageSelfDestructType.cpp | 90 + .../td/td/telegram/MessageSelfDestructType.h | 74 + .../td/td/td/telegram/MessageSender.cpp | 173 + third-party/td/td/td/telegram/MessageSender.h | 44 + .../td/td/td/telegram/MessageSource.cpp | 71 + third-party/td/td/td/telegram/MessageSource.h | 34 + .../td/td/td/telegram/MessageThreadDb.cpp | 343 + .../td/td/td/telegram/MessageThreadDb.h | 98 + .../td/td/td/telegram/MessageThreadInfo.h | 22 + third-party/td/td/td/telegram/MessageTtl.cpp | 31 + third-party/td/td/td/telegram/MessageTtl.h | 58 + .../td/td/td/telegram/MessageViewer.cpp | 55 + third-party/td/td/td/telegram/MessageViewer.h | 62 + .../td/td/td/telegram/MessagesInfo.cpp | 78 + third-party/td/td/td/telegram/MessagesInfo.h | 29 + .../td/td/td/telegram/MessagesManager.cpp | 35316 +++ .../td/td/td/telegram/MessagesManager.h | 3409 + third-party/td/td/td/telegram/MinChannel.h | 23 + third-party/td/td/td/telegram/MinChannel.hpp | 61 + .../td/td/td/telegram/MissingInvitee.cpp | 57 + .../td/td/td/telegram/MissingInvitee.h | 54 + .../td/td/td/telegram/NewPasswordState.cpp | 58 + .../td/td/td/telegram/NewPasswordState.h | 27 + third-party/td/td/td/telegram/Notification.h | 47 + .../telegram/NotificationGroupFromDatabase.h | 24 + .../td/td/td/telegram/NotificationGroupId.h | 67 + .../td/td/telegram/NotificationGroupInfo.cpp | 133 + .../td/td/td/telegram/NotificationGroupInfo.h | 87 + .../td/td/telegram/NotificationGroupInfo.hpp | 39 + .../td/td/td/telegram/NotificationGroupKey.h | 43 + .../td/td/telegram/NotificationGroupType.cpp | 88 + .../td/td/td/telegram/NotificationGroupType.h | 28 + .../td/td/td/telegram/NotificationId.h | 72 + .../td/td/td/telegram/NotificationManager.cpp | 4239 + .../td/td/td/telegram/NotificationManager.h | 423 + .../td/td/telegram/NotificationObjectFullId.h | 60 + .../td/td/td/telegram/NotificationObjectId.h | 83 + .../telegram/NotificationSettingsManager.cpp | 1783 + .../td/telegram/NotificationSettingsManager.h | 259 + .../td/telegram/NotificationSettingsScope.cpp | 69 + .../td/telegram/NotificationSettingsScope.h | 29 + .../td/td/td/telegram/NotificationSound.cpp | 316 + .../td/td/td/telegram/NotificationSound.h | 69 + .../td/td/td/telegram/NotificationSoundType.h | 15 + .../td/td/td/telegram/NotificationType.cpp | 485 + .../td/td/td/telegram/NotificationType.h | 69 + .../td/td/td/telegram/OnlineManager.cpp | 164 + third-party/td/td/td/telegram/OnlineManager.h | 60 + .../td/td/td/telegram/OptionManager.cpp | 1076 + third-party/td/td/td/telegram/OptionManager.h | 98 + third-party/td/td/td/telegram/OrderInfo.cpp | 190 + third-party/td/td/td/telegram/OrderInfo.h | 82 + third-party/td/td/td/telegram/OrderInfo.hpp | 87 + .../td/td/td/telegram/OrderedMessage.cpp | 420 + .../td/td/td/telegram/OrderedMessage.h | 228 + third-party/td/td/td/telegram/Outline.cpp | 254 + third-party/td/td/td/telegram/Outline.h | 17 + .../td/td/td/telegram/PaidReactionType.cpp | 164 + .../td/td/td/telegram/PaidReactionType.h | 70 + .../td/td/td/telegram/PaidReactionType.hpp | 40 + .../td/td/td/telegram/PasswordManager.cpp | 871 + .../td/td/td/telegram/PasswordManager.h | 212 + third-party/td/td/td/telegram/Payments.cpp | 1255 + third-party/td/td/td/telegram/Payments.h | 59 + third-party/td/td/td/telegram/PeerColor.cpp | 33 + third-party/td/td/td/telegram/PeerColor.h | 22 + .../td/td/td/telegram/PeopleNearbyManager.cpp | 27 + .../td/td/td/telegram/PeopleNearbyManager.h | 28 + .../td/td/td/telegram/PhoneNumberManager.cpp | 345 + .../td/td/td/telegram/PhoneNumberManager.h | 64 + third-party/td/td/td/telegram/Photo.cpp | 793 + third-party/td/td/td/telegram/Photo.h | 161 + third-party/td/td/td/telegram/Photo.hpp | 129 + third-party/td/td/td/telegram/PhotoFormat.h | 15 + third-party/td/td/td/telegram/PhotoSize.cpp | 548 + third-party/td/td/td/telegram/PhotoSize.h | 90 + third-party/td/td/td/telegram/PhotoSize.hpp | 57 + .../td/td/td/telegram/PhotoSizeSource.cpp | 317 + .../td/td/td/telegram/PhotoSizeSource.h | 279 + .../td/td/td/telegram/PhotoSizeSource.hpp | 201 + third-party/td/td/td/telegram/PhotoSizeType.h | 55 + .../td/td/td/telegram/PhotoSizeType.hpp | 28 + third-party/td/td/td/telegram/PollId.h | 55 + third-party/td/td/td/telegram/PollId.hpp | 27 + third-party/td/td/td/telegram/PollManager.cpp | 1984 + third-party/td/td/td/telegram/PollManager.h | 270 + third-party/td/td/td/telegram/PollManager.hpp | 296 + third-party/td/td/td/telegram/Premium.cpp | 1309 + third-party/td/td/td/telegram/Premium.h | 73 + .../td/td/td/telegram/PremiumGiftOption.cpp | 102 + .../td/td/td/telegram/PremiumGiftOption.h | 61 + .../td/td/td/telegram/PremiumGiftOption.hpp | 91 + .../td/td/td/telegram/PrivacyManager.cpp | 285 + .../td/td/td/telegram/PrivacyManager.h | 75 + .../td/td/td/telegram/PromoDataManager.cpp | 195 + .../td/td/td/telegram/PromoDataManager.h | 52 + third-party/td/td/td/telegram/PtsManager.h | 58 + .../td/td/td/telegram/PublicDialogType.h | 22 + .../td/td/td/telegram/QueryCombiner.cpp | 109 + third-party/td/td/td/telegram/QueryCombiner.h | 51 + third-party/td/td/td/telegram/QueryMerger.cpp | 81 + third-party/td/td/td/telegram/QueryMerger.h | 54 + .../td/td/td/telegram/QuickReplyManager.cpp | 3864 + .../td/td/td/telegram/QuickReplyManager.h | 484 + .../td/td/telegram/QuickReplyMessageFullId.h | 79 + .../td/td/td/telegram/QuickReplyShortcutId.h | 94 + .../td/td/td/telegram/ReactionListType.cpp | 39 + .../td/td/td/telegram/ReactionListType.h | 22 + .../td/td/td/telegram/ReactionManager.cpp | 1541 + .../td/td/td/telegram/ReactionManager.h | 352 + .../td/td/td/telegram/ReactionManager.hpp | 220 + .../telegram/ReactionNotificationSettings.cpp | 75 + .../telegram/ReactionNotificationSettings.h | 60 + .../telegram/ReactionNotificationSettings.hpp | 45 + .../td/telegram/ReactionNotificationsFrom.cpp | 98 + .../td/telegram/ReactionNotificationsFrom.h | 52 + .../td/telegram/ReactionNotificationsFrom.hpp | 29 + .../td/td/td/telegram/ReactionType.cpp | 236 + third-party/td/td/td/telegram/ReactionType.h | 101 + .../td/td/td/telegram/ReactionType.hpp | 27 + .../telegram/ReactionUnavailabilityReason.h | 15 + .../td/td/td/telegram/RecentDialogList.cpp | 264 + .../td/td/td/telegram/RecentDialogList.h | 58 + .../td/td/td/telegram/ReferralProgramInfo.cpp | 45 + .../td/td/td/telegram/ReferralProgramInfo.h | 58 + .../td/td/td/telegram/ReferralProgramInfo.hpp | 56 + .../td/td/telegram/ReferralProgramManager.cpp | 497 + .../td/td/telegram/ReferralProgramManager.h | 103 + .../td/telegram/ReferralProgramParameters.cpp | 44 + .../td/telegram/ReferralProgramParameters.h | 60 + .../td/telegram/ReferralProgramParameters.hpp | 43 + .../td/telegram/ReferralProgramSortOrder.cpp | 29 + .../td/td/telegram/ReferralProgramSortOrder.h | 21 + .../td/td/td/telegram/RepliedMessageInfo.cpp | 391 + .../td/td/td/telegram/RepliedMessageInfo.h | 121 + .../td/td/td/telegram/RepliedMessageInfo.hpp | 110 + third-party/td/td/td/telegram/ReplyMarkup.cpp | 1202 + third-party/td/td/td/telegram/ReplyMarkup.h | 118 + third-party/td/td/td/telegram/ReplyMarkup.hpp | 181 + .../td/td/td/telegram/ReportReason.cpp | 109 + third-party/td/td/td/telegram/ReportReason.h | 61 + third-party/td/td/td/telegram/RequestActor.h | 160 + .../td/td/td/telegram/RequestedDialogType.cpp | 308 + .../td/td/td/telegram/RequestedDialogType.h | 76 + .../td/td/td/telegram/RequestedDialogType.hpp | 79 + third-party/td/td/td/telegram/Requests.cpp | 8044 + third-party/td/td/td/telegram/Requests.h | 1755 + .../td/td/td/telegram/RestrictionReason.cpp | 116 + .../td/td/td/telegram/RestrictionReason.h | 79 + .../td/td/telegram/SavedMessagesManager.cpp | 1056 + .../td/td/td/telegram/SavedMessagesManager.h | 204 + .../td/td/telegram/SavedMessagesTopicId.cpp | 127 + .../td/td/td/telegram/SavedMessagesTopicId.h | 92 + .../td/td/telegram/ScheduledServerMessageId.h | 65 + .../td/telegram/ScopeNotificationSettings.cpp | 109 + .../td/telegram/ScopeNotificationSettings.h | 67 + .../td/telegram/ScopeNotificationSettings.hpp | 90 + .../td/td/td/telegram/SecretChatActor.cpp | 2255 + .../td/td/td/telegram/SecretChatActor.h | 716 + .../td/td/td/telegram/SecretChatDb.cpp | 15 + third-party/td/td/td/telegram/SecretChatDb.h | 49 + third-party/td/td/td/telegram/SecretChatId.h | 67 + .../td/td/td/telegram/SecretChatLayer.h | 21 + .../td/td/td/telegram/SecretChatsManager.cpp | 496 + .../td/td/td/telegram/SecretChatsManager.h | 88 + .../td/td/td/telegram/SecretInputMedia.cpp | 41 + .../td/td/td/telegram/SecretInputMedia.h | 41 + .../td/td/td/telegram/SecureManager.cpp | 1333 + third-party/td/td/td/telegram/SecureManager.h | 99 + .../td/td/td/telegram/SecureStorage.cpp | 408 + third-party/td/td/td/telegram/SecureStorage.h | 195 + third-party/td/td/td/telegram/SecureValue.cpp | 1470 + third-party/td/td/td/telegram/SecureValue.h | 235 + third-party/td/td/td/telegram/SecureValue.hpp | 159 + .../td/td/td/telegram/SendCodeHelper.cpp | 309 + .../td/td/td/telegram/SendCodeHelper.h | 118 + .../td/td/td/telegram/SendCodeHelper.hpp | 59 + .../td/td/td/telegram/SentEmailCode.cpp | 29 + third-party/td/td/td/telegram/SentEmailCode.h | 50 + .../td/td/td/telegram/SequenceDispatcher.cpp | 462 + .../td/td/td/telegram/SequenceDispatcher.h | 100 + .../td/td/td/telegram/ServerMessageId.h | 43 + .../td/td/td/telegram/SetWithPosition.h | 228 + .../td/td/td/telegram/SharedDialog.cpp | 83 + third-party/td/td/td/telegram/SharedDialog.h | 71 + .../td/td/td/telegram/SharedDialog.hpp | 70 + .../td/td/telegram/SpecialStickerSetType.cpp | 121 + .../td/td/td/telegram/SpecialStickerSetType.h | 68 + .../td/telegram/SponsoredMessageManager.cpp | 484 + .../td/td/telegram/SponsoredMessageManager.h | 80 + third-party/td/td/td/telegram/StarAmount.cpp | 49 + third-party/td/td/td/telegram/StarAmount.h | 57 + third-party/td/td/td/telegram/StarAmount.hpp | 28 + third-party/td/td/td/telegram/StarGift.cpp | 185 + third-party/td/td/td/telegram/StarGift.h | 106 + third-party/td/td/td/telegram/StarGift.hpp | 191 + .../td/td/td/telegram/StarGiftAttribute.cpp | 114 + .../td/td/td/telegram/StarGiftAttribute.h | 133 + .../td/td/td/telegram/StarGiftAttribute.hpp | 127 + third-party/td/td/td/telegram/StarGiftId.cpp | 127 + third-party/td/td/td/telegram/StarGiftId.h | 71 + third-party/td/td/td/telegram/StarGiftId.hpp | 61 + .../td/td/td/telegram/StarGiftManager.cpp | 1269 + .../td/td/td/telegram/StarGiftManager.h | 109 + third-party/td/td/td/telegram/StarManager.cpp | 1362 + third-party/td/td/td/telegram/StarManager.h | 117 + .../td/td/td/telegram/StarSubscription.cpp | 67 + .../td/td/td/telegram/StarSubscription.h | 52 + .../td/telegram/StarSubscriptionPricing.cpp | 58 + .../td/td/telegram/StarSubscriptionPricing.h | 55 + .../td/telegram/StarSubscriptionPricing.hpp | 32 + .../td/td/td/telegram/StateManager.cpp | 177 + third-party/td/td/td/telegram/StateManager.h | 102 + .../td/td/td/telegram/StatisticsManager.cpp | 989 + .../td/td/td/telegram/StatisticsManager.h | 98 + .../td/td/td/telegram/StickerFormat.cpp | 183 + third-party/td/td/td/telegram/StickerFormat.h | 44 + .../td/td/td/telegram/StickerListType.cpp | 43 + .../td/td/td/telegram/StickerListType.h | 22 + .../td/td/td/telegram/StickerMaskPosition.cpp | 96 + .../td/td/td/telegram/StickerMaskPosition.h | 50 + .../td/td/td/telegram/StickerMaskPosition.hpp | 31 + .../td/td/td/telegram/StickerPhotoSize.cpp | 186 + .../td/td/td/telegram/StickerPhotoSize.h | 57 + .../td/td/td/telegram/StickerPhotoSize.hpp | 53 + .../td/td/td/telegram/StickerSetId.cpp | 27 + third-party/td/td/td/telegram/StickerSetId.h | 63 + third-party/td/td/td/telegram/StickerType.cpp | 66 + third-party/td/td/td/telegram/StickerType.h | 29 + .../td/td/td/telegram/StickersManager.cpp | 10272 + .../td/td/td/telegram/StickersManager.h | 1198 + .../td/td/td/telegram/StickersManager.hpp | 488 + .../td/td/td/telegram/StorageManager.cpp | 366 + .../td/td/td/telegram/StorageManager.h | 105 + .../td/td/td/telegram/StoryContent.cpp | 507 + third-party/td/td/td/telegram/StoryContent.h | 73 + .../td/td/td/telegram/StoryContentType.cpp | 24 + .../td/td/td/telegram/StoryContentType.h | 26 + third-party/td/td/td/telegram/StoryDb.cpp | 569 + third-party/td/td/td/telegram/StoryDb.h | 133 + .../td/td/td/telegram/StoryForwardInfo.cpp | 65 + .../td/td/td/telegram/StoryForwardInfo.h | 56 + .../td/td/td/telegram/StoryForwardInfo.hpp | 62 + third-party/td/td/td/telegram/StoryFullId.h | 77 + third-party/td/td/td/telegram/StoryId.h | 90 + .../td/td/telegram/StoryInteractionInfo.cpp | 154 + .../td/td/td/telegram/StoryInteractionInfo.h | 97 + .../td/td/telegram/StoryInteractionInfo.hpp | 82 + third-party/td/td/td/telegram/StoryListId.h | 95 + .../td/td/td/telegram/StoryManager.cpp | 6025 + third-party/td/td/td/telegram/StoryManager.h | 754 + .../td/telegram/StoryNotificationSettings.h | 31 + .../td/td/td/telegram/StoryStealthMode.cpp | 63 + .../td/td/td/telegram/StoryStealthMode.h | 55 + .../td/td/td/telegram/StoryStealthMode.hpp | 50 + third-party/td/td/td/telegram/StoryViewer.cpp | 229 + third-party/td/td/td/telegram/StoryViewer.h | 84 + .../td/td/td/telegram/SuggestedAction.cpp | 291 + .../td/td/td/telegram/SuggestedAction.h | 101 + .../td/td/td/telegram/SuggestedAction.hpp | 50 + .../td/td/telegram/SuggestedActionManager.cpp | 236 + .../td/td/telegram/SuggestedActionManager.h | 61 + third-party/td/td/td/telegram/Support.cpp | 142 + third-party/td/td/td/telegram/Support.h | 26 + .../td/td/td/telegram/SynchronousRequests.cpp | 397 + .../td/td/td/telegram/SynchronousRequests.h | 89 + .../td/td/td/telegram/TargetDialogTypes.cpp | 104 + .../td/td/td/telegram/TargetDialogTypes.h | 57 + third-party/td/td/td/telegram/Td.cpp | 1459 + third-party/td/td/td/telegram/Td.h | 466 + third-party/td/td/td/telegram/TdCallback.h | 42 + third-party/td/td/td/telegram/TdDb.cpp | 767 + third-party/td/td/td/telegram/TdDb.h | 199 + .../td/td/td/telegram/TermsOfService.cpp | 35 + .../td/td/td/telegram/TermsOfService.h | 40 + .../td/td/td/telegram/TermsOfService.hpp | 40 + .../td/td/telegram/TermsOfServiceManager.cpp | 201 + .../td/td/td/telegram/TermsOfServiceManager.h | 59 + .../td/td/td/telegram/ThemeManager.cpp | 986 + third-party/td/td/td/telegram/ThemeManager.h | 200 + .../td/td/td/telegram/ThemeSettings.cpp | 46 + third-party/td/td/td/telegram/ThemeSettings.h | 58 + .../td/td/td/telegram/ThemeSettings.hpp | 59 + .../td/td/td/telegram/TimeZoneManager.cpp | 206 + .../td/td/td/telegram/TimeZoneManager.h | 91 + .../td/td/td/telegram/TopDialogCategory.cpp | 117 + .../td/td/td/telegram/TopDialogCategory.h | 38 + .../td/td/td/telegram/TopDialogManager.cpp | 681 + .../td/td/td/telegram/TopDialogManager.h | 131 + .../td/td/td/telegram/TranscriptionInfo.cpp | 202 + .../td/td/td/telegram/TranscriptionInfo.h | 62 + .../td/td/td/telegram/TranscriptionInfo.hpp | 31 + .../td/td/telegram/TranscriptionManager.cpp | 444 + .../td/td/td/telegram/TranscriptionManager.h | 135 + .../td/td/td/telegram/TranslationManager.cpp | 136 + .../td/td/td/telegram/TranslationManager.h | 43 + third-party/td/td/td/telegram/UniqueId.h | 38 + .../td/td/td/telegram/UpdatesManager.cpp | 4625 + .../td/td/td/telegram/UpdatesManager.h | 704 + third-party/td/td/td/telegram/UserId.h | 94 + third-party/td/td/td/telegram/UserManager.cpp | 8686 + third-party/td/td/td/telegram/UserManager.h | 1174 + .../td/td/td/telegram/UserPrivacySetting.cpp | 180 + .../td/td/td/telegram/UserPrivacySetting.h | 54 + .../td/td/telegram/UserPrivacySettingRule.cpp | 424 + .../td/td/telegram/UserPrivacySettingRule.h | 157 + .../td/td/td/telegram/UserStarGift.cpp | 73 + third-party/td/td/td/telegram/UserStarGift.h | 49 + third-party/td/td/td/telegram/Usernames.cpp | 222 + third-party/td/td/td/telegram/Usernames.h | 142 + third-party/td/td/td/telegram/Venue.cpp | 132 + third-party/td/td/td/telegram/Venue.h | 101 + .../td/td/td/telegram/VerificationStatus.cpp | 20 + .../td/td/td/telegram/VerificationStatus.h | 19 + third-party/td/td/td/telegram/Version.h | 94 + .../td/td/td/telegram/VideoNotesManager.cpp | 254 + .../td/td/td/telegram/VideoNotesManager.h | 94 + .../td/td/td/telegram/VideoNotesManager.hpp | 101 + .../td/td/td/telegram/VideosManager.cpp | 415 + third-party/td/td/td/telegram/VideosManager.h | 110 + .../td/td/td/telegram/VideosManager.hpp | 119 + .../td/td/td/telegram/VoiceNotesManager.cpp | 223 + .../td/td/td/telegram/VoiceNotesManager.h | 84 + .../td/td/td/telegram/VoiceNotesManager.hpp | 88 + third-party/td/td/td/telegram/WebApp.cpp | 81 + third-party/td/td/td/telegram/WebApp.h | 60 + third-party/td/td/td/telegram/WebApp.hpp | 58 + .../td/td/td/telegram/WebAppManager.cpp | 670 + third-party/td/td/td/telegram/WebAppManager.h | 103 + .../td/td/telegram/WebAppOpenParameters.cpp | 46 + .../td/td/td/telegram/WebAppOpenParameters.h | 40 + .../td/td/td/telegram/WebPageBlock.cpp | 2508 + third-party/td/td/td/telegram/WebPageBlock.h | 109 + third-party/td/td/td/telegram/WebPageId.h | 66 + .../td/td/td/telegram/WebPagesManager.cpp | 2552 + .../td/td/td/telegram/WebPagesManager.h | 238 + third-party/td/td/td/telegram/cli.cpp | 7767 + .../td/td/td/telegram/files/FileBitmask.cpp | 172 + .../td/td/td/telegram/files/FileBitmask.h | 41 + .../td/td/td/telegram/files/FileData.h | 60 + .../td/td/td/telegram/files/FileData.hpp | 137 + .../td/td/td/telegram/files/FileDb.cpp | 302 + third-party/td/td/td/telegram/files/FileDb.h | 91 + .../td/td/td/telegram/files/FileDbId.h | 58 + .../td/telegram/files/FileDownloadManager.cpp | 205 + .../td/telegram/files/FileDownloadManager.h | 128 + .../td/td/telegram/files/FileDownloader.cpp | 743 + .../td/td/td/telegram/files/FileDownloader.h | 156 + .../td/telegram/files/FileEncryptionKey.cpp | 101 + .../td/td/telegram/files/FileEncryptionKey.h | 104 + .../td/td/td/telegram/files/FileFromBytes.cpp | 30 + .../td/td/td/telegram/files/FileFromBytes.h | 43 + .../td/td/telegram/files/FileGcParameters.cpp | 46 + .../td/td/telegram/files/FileGcParameters.h | 37 + .../td/td/td/telegram/files/FileGcWorker.cpp | 199 + .../td/td/td/telegram/files/FileGcWorker.h | 41 + .../td/telegram/files/FileGenerateManager.cpp | 522 + .../td/telegram/files/FileGenerateManager.h | 74 + .../td/td/telegram/files/FileHashUploader.cpp | 149 + .../td/td/telegram/files/FileHashUploader.h | 86 + third-party/td/td/td/telegram/files/FileId.h | 68 + .../td/td/td/telegram/files/FileId.hpp | 27 + .../td/td/telegram/files/FileLoadManager.cpp | 41 + .../td/td/td/telegram/files/FileLoadManager.h | 34 + .../td/td/td/telegram/files/FileLoaderActor.h | 25 + .../td/td/telegram/files/FileLoaderUtils.cpp | 364 + .../td/td/td/telegram/files/FileLoaderUtils.h | 55 + .../td/td/td/telegram/files/FileLocation.h | 939 + .../td/td/td/telegram/files/FileLocation.hpp | 434 + .../td/td/td/telegram/files/FileManager.cpp | 5242 + .../td/td/td/telegram/files/FileManager.h | 982 + .../td/td/td/telegram/files/FileManager.hpp | 275 + .../td/td/td/telegram/files/FileSourceId.h | 59 + .../td/td/td/telegram/files/FileSourceId.hpp | 28 + .../td/td/td/telegram/files/FileStats.cpp | 256 + .../td/td/td/telegram/files/FileStats.h | 114 + .../td/td/telegram/files/FileStatsWorker.cpp | 225 + .../td/td/td/telegram/files/FileStatsWorker.h | 30 + .../td/td/td/telegram/files/FileType.cpp | 403 + .../td/td/td/telegram/files/FileType.h | 78 + .../td/td/td/telegram/files/FileUploadId.h | 58 + .../td/telegram/files/FileUploadManager.cpp | 201 + .../td/td/telegram/files/FileUploadManager.h | 123 + .../td/td/td/telegram/files/FileUploader.cpp | 487 + .../td/td/td/telegram/files/FileUploader.h | 124 + .../td/td/td/telegram/files/PartsManager.cpp | 594 + .../td/td/td/telegram/files/PartsManager.h | 114 + .../td/td/telegram/files/ResourceManager.cpp | 187 + .../td/td/td/telegram/files/ResourceManager.h | 72 + .../td/td/td/telegram/files/ResourceState.cpp | 90 + .../td/td/td/telegram/files/ResourceState.h | 62 + .../td/td/td/telegram/logevent/LogEvent.h | 254 + .../td/telegram/logevent/LogEventHelper.cpp | 56 + .../td/td/telegram/logevent/LogEventHelper.h | 57 + .../td/td/telegram/logevent/SecretChatEvent.h | 521 + third-party/td/td/td/telegram/misc.cpp | 406 + third-party/td/td/td/telegram/misc.h | 61 + .../td/td/td/telegram/net/AuthDataShared.cpp | 133 + .../td/td/td/telegram/net/AuthDataShared.h | 53 + .../td/td/td/telegram/net/AuthKeyState.h | 41 + .../td/td/telegram/net/ConnectionCreator.cpp | 1478 + .../td/td/td/telegram/net/ConnectionCreator.h | 281 + .../td/td/td/telegram/net/DcAuthManager.cpp | 250 + .../td/td/td/telegram/net/DcAuthManager.h | 71 + third-party/td/td/td/telegram/net/DcId.h | 118 + third-party/td/td/td/telegram/net/DcOptions.h | 252 + .../td/td/td/telegram/net/DcOptionsSet.cpp | 206 + .../td/td/td/telegram/net/DcOptionsSet.h | 115 + .../td/td/td/telegram/net/MtprotoHeader.cpp | 115 + .../td/td/td/telegram/net/MtprotoHeader.h | 122 + .../td/td/td/telegram/net/NetActor.cpp | 36 + third-party/td/td/td/telegram/net/NetActor.h | 47 + .../td/td/td/telegram/net/NetQuery.cpp | 185 + third-party/td/td/td/telegram/net/NetQuery.h | 370 + .../td/td/td/telegram/net/NetQueryCounter.h | 40 + .../td/td/td/telegram/net/NetQueryCreator.cpp | 110 + .../td/td/td/telegram/net/NetQueryCreator.h | 55 + .../td/td/td/telegram/net/NetQueryDelayer.cpp | 144 + .../td/td/td/telegram/net/NetQueryDelayer.h | 38 + .../td/td/telegram/net/NetQueryDispatcher.cpp | 449 + .../td/td/telegram/net/NetQueryDispatcher.h | 101 + .../td/td/td/telegram/net/NetQueryStats.cpp | 56 + .../td/td/td/telegram/net/NetQueryStats.h | 49 + .../td/td/telegram/net/NetQueryVerifier.cpp | 134 + .../td/td/td/telegram/net/NetQueryVerifier.h | 48 + .../td/td/td/telegram/net/NetStatsManager.cpp | 344 + .../td/td/td/telegram/net/NetStatsManager.h | 209 + third-party/td/td/td/telegram/net/NetType.h | 53 + third-party/td/td/td/telegram/net/Proxy.cpp | 70 + third-party/td/td/td/telegram/net/Proxy.h | 163 + .../td/telegram/net/PublicRsaKeySharedCdn.cpp | 74 + .../td/telegram/net/PublicRsaKeySharedCdn.h | 59 + .../telegram/net/PublicRsaKeySharedMain.cpp | 69 + .../td/telegram/net/PublicRsaKeySharedMain.h | 33 + .../td/telegram/net/PublicRsaKeyWatchdog.cpp | 139 + .../td/td/telegram/net/PublicRsaKeyWatchdog.h | 48 + third-party/td/td/td/telegram/net/Session.cpp | 1581 + third-party/td/td/td/telegram/net/Session.h | 289 + .../td/td/telegram/net/SessionMultiProxy.cpp | 179 + .../td/td/td/telegram/net/SessionMultiProxy.h | 63 + .../td/td/td/telegram/net/SessionProxy.cpp | 281 + .../td/td/td/telegram/net/SessionProxy.h | 80 + .../td/td/telegram/net/TempAuthKeyWatchdog.h | 150 + third-party/td/td/td/telegram/td_c_client.cpp | 73 + third-party/td/td/td/telegram/td_c_client.h | 41 + .../td/td/td/telegram/td_emscripten.cpp | 39 + .../td/td/td/telegram/td_json_client.cpp | 52 + .../td/td/td/telegram/td_json_client.h | 187 + third-party/td/td/td/telegram/td_log.cpp | 27 + third-party/td/td/td/telegram/td_log.h | 82 + third-party/td/td/td/tl/TlObject.h | 263 + third-party/td/td/td/tl/tl_dotnet_object.h | 205 + third-party/td/td/td/tl/tl_jni_object.cpp | 383 + third-party/td/td/td/tl/tl_jni_object.h | 268 + third-party/td/td/td/tl/tl_json.h | 218 + third-party/td/td/td/tl/tl_object_parse.h | 147 + third-party/td/td/td/tl/tl_object_store.h | 86 + third-party/td/td/tdactor/CMakeLists.txt | 61 + third-party/td/td/tdactor/example/example.cpp | 49 + .../tdactor/td/actor/ConcurrentScheduler.cpp | 205 + .../td/tdactor/td/actor/ConcurrentScheduler.h | 116 + .../td/td/tdactor/td/actor/MultiPromise.cpp | 105 + .../td/td/tdactor/td/actor/MultiPromise.h | 120 + .../td/td/tdactor/td/actor/MultiTimeout.cpp | 119 + .../td/td/tdactor/td/actor/MultiTimeout.h | 81 + .../td/td/tdactor/td/actor/PromiseFuture.h | 324 + .../tdactor/td/actor/SchedulerLocalStorage.h | 81 + .../td/td/tdactor/td/actor/SignalSlot.h | 112 + .../td/td/tdactor/td/actor/SleepActor.h | 41 + third-party/td/td/tdactor/td/actor/Timeout.h | 68 + third-party/td/td/tdactor/td/actor/actor.h | 13 + .../td/td/tdactor/td/actor/impl/Actor-decl.h | 121 + .../td/td/tdactor/td/actor/impl/Actor.h | 167 + .../td/tdactor/td/actor/impl/ActorId-decl.h | 159 + .../td/td/tdactor/td/actor/impl/ActorId.h | 195 + .../td/tdactor/td/actor/impl/ActorInfo-decl.h | 128 + .../td/td/tdactor/td/actor/impl/ActorInfo.h | 209 + .../td/td/tdactor/td/actor/impl/Event.h | 247 + .../td/tdactor/td/actor/impl/EventFull-decl.h | 87 + .../td/td/tdactor/td/actor/impl/EventFull.h | 38 + .../td/tdactor/td/actor/impl/Scheduler-decl.h | 314 + .../td/td/tdactor/td/actor/impl/Scheduler.cpp | 611 + .../td/td/tdactor/td/actor/impl/Scheduler.h | 370 + .../td/td/tdactor/test/actors_bugs.cpp | 112 + .../td/td/tdactor/test/actors_main.cpp | 506 + .../td/td/tdactor/test/actors_simple.cpp | 682 + .../td/td/tdactor/test/actors_workers.cpp | 188 + third-party/td/td/tdclientjson_export_list | 14 + third-party/td/td/tddb/CMakeLists.txt | 65 + third-party/td/td/tddb/td/db/BinlogKeyValue.h | 301 + third-party/td/td/tddb/td/db/DbKey.h | 61 + .../td/td/tddb/td/db/KeyValueSyncInterface.h | 56 + third-party/td/td/tddb/td/db/SeqKeyValue.h | 105 + .../td/td/tddb/td/db/SqliteConnectionSafe.cpp | 51 + .../td/td/tddb/td/db/SqliteConnectionSafe.h | 39 + third-party/td/td/tddb/td/db/SqliteDb.cpp | 323 + third-party/td/td/tddb/td/db/SqliteDb.h | 94 + .../td/td/tddb/td/db/SqliteKeyValue.cpp | 130 + third-party/td/td/tddb/td/db/SqliteKeyValue.h | 134 + .../td/td/tddb/td/db/SqliteKeyValueAsync.cpp | 166 + .../td/td/tddb/td/db/SqliteKeyValueAsync.h | 38 + .../td/td/tddb/td/db/SqliteKeyValueSafe.h | 40 + .../td/td/tddb/td/db/SqliteStatement.cpp | 205 + .../td/td/tddb/td/db/SqliteStatement.h | 88 + third-party/td/td/tddb/td/db/TQueue.cpp | 613 + third-party/td/td/tddb/td/db/TQueue.h | 157 + third-party/td/td/tddb/td/db/TsSeqKeyValue.h | 91 + .../td/td/tddb/td/db/binlog/Binlog.cpp | 775 + third-party/td/td/tddb/td/db/binlog/Binlog.h | 183 + .../td/td/tddb/td/db/binlog/BinlogEvent.cpp | 75 + .../td/td/tddb/td/db/binlog/BinlogEvent.h | 115 + .../td/td/tddb/td/db/binlog/BinlogHelper.h | 32 + .../td/td/tddb/td/db/binlog/BinlogInterface.h | 90 + .../td/tddb/td/db/binlog/ConcurrentBinlog.cpp | 231 + .../td/tddb/td/db/binlog/ConcurrentBinlog.h | 72 + .../td/td/tddb/td/db/binlog/binlog_dump.cpp | 158 + .../db/binlog/detail/BinlogEventsBuffer.cpp | 43 + .../td/db/binlog/detail/BinlogEventsBuffer.h | 51 + .../binlog/detail/BinlogEventsProcessor.cpp | 80 + .../db/binlog/detail/BinlogEventsProcessor.h | 61 + .../td/td/tddb/td/db/detail/RawSqliteDb.cpp | 60 + .../td/td/tddb/td/db/detail/RawSqliteDb.h | 78 + third-party/td/td/tde2e/CMakeLists.txt | 84 + third-party/td/td/tde2e/td/e2e/BitString.cpp | 355 + third-party/td/td/tde2e/td/e2e/BitString.h | 62 + third-party/td/td/tde2e/td/e2e/Blockchain.cpp | 642 + third-party/td/td/tde2e/td/e2e/Blockchain.h | 328 + third-party/td/td/tde2e/td/e2e/Blockchain.md | 189 + third-party/td/td/tde2e/td/e2e/Call.cpp | 570 + third-party/td/td/tde2e/td/e2e/Call.h | 187 + .../td/td/tde2e/td/e2e/CheckSharedSecret.cpp | 75 + .../td/td/tde2e/td/e2e/CheckSharedSecret.h | 32 + third-party/td/td/tde2e/td/e2e/Container.h | 255 + .../td/td/tde2e/td/e2e/DecryptedKey.cpp | 40 + third-party/td/td/tde2e/td/e2e/DecryptedKey.h | 52 + .../td/td/tde2e/td/e2e/EncryptedKey.cpp | 38 + third-party/td/td/tde2e/td/e2e/EncryptedKey.h | 28 + .../td/td/tde2e/td/e2e/EncryptedStorage.cpp | 365 + .../td/td/tde2e/td/e2e/EncryptedStorage.h | 411 + third-party/td/td/tde2e/td/e2e/Encryption.md | 118 + third-party/td/td/tde2e/td/e2e/Keys.cpp | 163 + third-party/td/td/tde2e/td/e2e/Keys.h | 104 + .../td/td/tde2e/td/e2e/MessageEncryption.cpp | 135 + .../td/td/tde2e/td/e2e/MessageEncryption.h | 36 + third-party/td/td/tde2e/td/e2e/Mnemonic.cpp | 264 + third-party/td/td/tde2e/td/e2e/Mnemonic.h | 59 + .../td/td/tde2e/td/e2e/QRHandshake.cpp | 223 + third-party/td/td/tde2e/td/e2e/QRHandshake.h | 91 + .../td/td/tde2e/td/e2e/TestBlockchain.cpp | 759 + .../td/td/tde2e/td/e2e/TestBlockchain.h | 230 + third-party/td/td/tde2e/td/e2e/Trie.cpp | 505 + third-party/td/td/tde2e/td/e2e/Trie.h | 97 + third-party/td/td/tde2e/td/e2e/bip39.cpp | 2063 + third-party/td/td/tde2e/td/e2e/bip39.h | 15 + third-party/td/td/tde2e/td/e2e/e2e_api.cpp | 825 + third-party/td/td/tde2e/td/e2e/e2e_api.h | 355 + third-party/td/td/tde2e/td/e2e/e2e_errors.h | 66 + third-party/td/td/tde2e/td/e2e/utils.h | 120 + third-party/td/td/tde2e/test/blockchain.cpp | 248 + third-party/td/td/tde2e/test/e2e.cpp | 809 + third-party/td/td/tdnet/CMakeLists.txt | 90 + third-party/td/td/tdnet/td/net/DarwinHttp.h | 21 + third-party/td/td/tdnet/td/net/DarwinHttp.mm | 80 + .../td/td/tdnet/td/net/GetHostByNameActor.cpp | 213 + .../td/td/tdnet/td/net/GetHostByNameActor.h | 76 + .../td/tdnet/td/net/HttpChunkedByteFlow.cpp | 75 + .../td/td/tdnet/td/net/HttpChunkedByteFlow.h | 29 + .../td/td/tdnet/td/net/HttpConnectionBase.cpp | 210 + .../td/td/tdnet/td/net/HttpConnectionBase.h | 77 + .../td/net/HttpContentLengthByteFlow.cpp | 36 + .../tdnet/td/net/HttpContentLengthByteFlow.h | 25 + third-party/td/td/tdnet/td/net/HttpFile.cpp | 25 + third-party/td/td/tdnet/td/net/HttpFile.h | 49 + .../td/td/tdnet/td/net/HttpHeaderCreator.h | 153 + .../td/tdnet/td/net/HttpInboundConnection.cpp | 32 + .../td/tdnet/td/net/HttpInboundConnection.h | 44 + .../tdnet/td/net/HttpOutboundConnection.cpp | 23 + .../td/tdnet/td/net/HttpOutboundConnection.h | 49 + third-party/td/td/tdnet/td/net/HttpProxy.cpp | 111 + third-party/td/td/tdnet/td/net/HttpProxy.h | 28 + third-party/td/td/tdnet/td/net/HttpQuery.cpp | 86 + third-party/td/td/tdnet/td/net/HttpQuery.h | 50 + third-party/td/td/tdnet/td/net/HttpReader.cpp | 882 + third-party/td/td/tdnet/td/net/HttpReader.h | 116 + third-party/td/td/tdnet/td/net/NetStats.h | 144 + third-party/td/td/tdnet/td/net/Socks5.cpp | 190 + third-party/td/td/tdnet/td/net/Socks5.h | 39 + third-party/td/td/tdnet/td/net/SslCtx.cpp | 370 + third-party/td/td/tdnet/td/net/SslCtx.h | 45 + third-party/td/td/tdnet/td/net/SslStream.cpp | 423 + third-party/td/td/tdnet/td/net/SslStream.h | 46 + .../td/td/tdnet/td/net/TcpListener.cpp | 64 + third-party/td/td/tdnet/td/net/TcpListener.h | 38 + .../td/td/tdnet/td/net/TransparentProxy.cpp | 84 + .../td/td/tdnet/td/net/TransparentProxy.h | 57 + third-party/td/td/tdnet/td/net/Wget.cpp | 158 + third-party/td/td/tdnet/td/net/Wget.h | 53 + third-party/td/td/tdtl/CMakeLists.txt | 28 + third-party/td/td/tdtl/td/tl/tl_config.cpp | 364 + third-party/td/td/tdtl/td/tl/tl_config.h | 87 + third-party/td/td/tdtl/td/tl/tl_core.cpp | 21 + third-party/td/td/tdtl/td/tl/tl_core.h | 159 + .../td/td/tdtl/td/tl/tl_file_outputer.cpp | 41 + .../td/td/tdtl/td/tl/tl_file_outputer.h | 33 + .../td/td/tdtl/td/tl/tl_file_utils.cpp | 104 + third-party/td/td/tdtl/td/tl/tl_file_utils.h | 21 + third-party/td/td/tdtl/td/tl/tl_generate.cpp | 1017 + third-party/td/td/tdtl/td/tl/tl_generate.h | 28 + third-party/td/td/tdtl/td/tl/tl_outputer.cpp | 16 + third-party/td/td/tdtl/td/tl/tl_outputer.h | 22 + third-party/td/td/tdtl/td/tl/tl_simple.h | 256 + .../td/td/tdtl/td/tl/tl_simple_parser.h | 107 + .../td/td/tdtl/td/tl/tl_string_outputer.cpp | 32 + .../td/td/tdtl/td/tl/tl_string_outputer.h | 26 + third-party/td/td/tdtl/td/tl/tl_writer.cpp | 239 + third-party/td/td/tdtl/td/tl/tl_writer.h | 169 + third-party/td/td/tdutils/CMakeLists.txt | 430 + .../td/td/tdutils/generate/CMakeLists.txt | 62 + .../generate/generate_mime_types_gperf.cpp | 156 + .../td/td/tdutils/generate/mime_types.txt | 779 + .../td/td/tdutils/td/utils/AesCtrByteFlow.h | 51 + .../td/td/tdutils/td/utils/AsyncFileLog.cpp | 165 + .../td/td/tdutils/td/utils/AsyncFileLog.h | 51 + .../td/td/tdutils/td/utils/AtomicRead.h | 89 + third-party/td/td/tdutils/td/utils/BigNum.cpp | 321 + third-party/td/td/tdutils/td/utils/BigNum.h | 122 + .../td/td/tdutils/td/utils/BufferedFd.h | 231 + .../td/td/tdutils/td/utils/BufferedReader.h | 61 + .../td/td/tdutils/td/utils/BufferedUdp.cpp | 17 + .../td/td/tdutils/td/utils/BufferedUdp.h | 177 + third-party/td/td/tdutils/td/utils/ByteFlow.h | 389 + .../td/tdutils/td/utils/CancellationToken.h | 71 + .../td/td/tdutils/td/utils/ChainScheduler.h | 385 + .../td/td/tdutils/td/utils/ChangesProcessor.h | 61 + third-party/td/td/tdutils/td/utils/Closure.h | 119 + .../td/td/tdutils/td/utils/CombinedLog.h | 86 + .../td/tdutils/td/utils/ConcurrentHashTable.h | 321 + .../td/td/tdutils/td/utils/Container.h | 168 + third-party/td/td/tdutils/td/utils/Context.h | 44 + third-party/td/td/tdutils/td/utils/DecTree.h | 216 + .../td/td/tdutils/td/utils/Destructor.h | 52 + .../td/td/tdutils/td/utils/Ed25519.cpp | 347 + third-party/td/td/tdutils/td/utils/Ed25519.h | 97 + .../td/td/tdutils/td/utils/Enumerator.h | 55 + .../td/utils/EpochBasedMemoryReclamation.h | 201 + .../td/td/tdutils/td/utils/ExitGuard.cpp | 20 + .../td/td/tdutils/td/utils/ExitGuard.h | 30 + .../td/td/tdutils/td/utils/FileLog.cpp | 145 + third-party/td/td/tdutils/td/utils/FileLog.h | 54 + .../td/td/tdutils/td/utils/FlatHashMap.h | 24 + .../td/tdutils/td/utils/FlatHashMapChunks.h | 578 + .../td/td/tdutils/td/utils/FlatHashSet.h | 24 + .../td/td/tdutils/td/utils/FlatHashTable.cpp | 24 + .../td/td/tdutils/td/utils/FlatHashTable.h | 558 + .../td/td/tdutils/td/utils/FloodControlFast.h | 87 + .../tdutils/td/utils/FloodControlGlobal.cpp | 32 + .../td/tdutils/td/utils/FloodControlGlobal.h | 35 + .../td/tdutils/td/utils/FloodControlStrict.h | 97 + third-party/td/td/tdutils/td/utils/Gzip.cpp | 208 + third-party/td/td/tdutils/td/utils/Gzip.h | 106 + .../td/td/tdutils/td/utils/GzipByteFlow.cpp | 64 + .../td/td/tdutils/td/utils/GzipByteFlow.h | 46 + third-party/td/td/tdutils/td/utils/Hash.h | 70 + third-party/td/td/tdutils/td/utils/HashMap.h | 27 + third-party/td/td/tdutils/td/utils/HashSet.h | 27 + .../td/td/tdutils/td/utils/HashTableUtils.h | 76 + .../td/td/tdutils/td/utils/HazardPointers.h | 141 + third-party/td/td/tdutils/td/utils/Heap.h | 171 + third-party/td/td/tdutils/td/utils/Hints.cpp | 206 + third-party/td/td/tdutils/td/utils/Hints.h | 87 + .../td/td/tdutils/td/utils/HttpDate.cpp | 92 + third-party/td/td/tdutils/td/utils/HttpDate.h | 34 + .../td/td/tdutils/td/utils/HttpUrl.cpp | 272 + third-party/td/td/tdutils/td/utils/HttpUrl.h | 64 + .../td/td/tdutils/td/utils/JsonBuilder.cpp | 745 + .../td/td/tdutils/td/utils/JsonBuilder.h | 895 + third-party/td/td/tdutils/td/utils/List.h | 129 + third-party/td/td/tdutils/td/utils/MapNode.h | 166 + .../td/td/tdutils/td/utils/MemoryLog.h | 79 + .../td/td/tdutils/td/utils/MimeType.cpp | 44 + third-party/td/td/tdutils/td/utils/MimeType.h | 20 + .../td/td/tdutils/td/utils/MovableValue.h | 42 + .../td/td/tdutils/td/utils/MpmcQueue.cpp | 15 + .../td/td/tdutils/td/utils/MpmcQueue.h | 460 + .../td/td/tdutils/td/utils/MpmcWaiter.h | 332 + .../td/td/tdutils/td/utils/MpscLinkQueue.h | 173 + .../td/tdutils/td/utils/MpscPollableQueue.h | 159 + third-party/td/td/tdutils/td/utils/Named.h | 27 + third-party/td/td/tdutils/td/utils/NullLog.h | 19 + .../td/td/tdutils/td/utils/ObjectPool.h | 248 + third-party/td/td/tdutils/td/utils/Observer.h | 41 + .../td/td/tdutils/td/utils/OptionParser.cpp | 263 + .../td/td/tdutils/td/utils/OptionParser.h | 81 + .../tdutils/td/utils/OrderedEventsProcessor.h | 99 + third-party/td/td/tdutils/td/utils/Parser.h | 189 + .../td/td/tdutils/td/utils/PathView.cpp | 70 + third-party/td/td/tdutils/td/utils/PathView.h | 81 + third-party/td/td/tdutils/td/utils/Promise.h | 383 + third-party/td/td/tdutils/td/utils/Random.cpp | 203 + third-party/td/td/tdutils/td/utils/Random.h | 68 + .../td/td/tdutils/td/utils/ScopeGuard.h | 77 + third-party/td/td/tdutils/td/utils/SetNode.h | 129 + .../td/td/tdutils/td/utils/SharedObjectPool.h | 288 + .../td/td/tdutils/td/utils/SharedSlice.cpp | 17 + .../td/td/tdutils/td/utils/SharedSlice.h | 382 + .../td/td/tdutils/td/utils/Slice-decl.h | 212 + third-party/td/td/tdutils/td/utils/Slice.cpp | 34 + third-party/td/td/tdutils/td/utils/Slice.h | 323 + .../td/td/tdutils/td/utils/SliceBuilder.h | 57 + third-party/td/td/tdutils/td/utils/Span.h | 159 + third-party/td/td/tdutils/td/utils/SpinLock.h | 60 + .../td/td/tdutils/td/utils/StackAllocator.cpp | 80 + .../td/td/tdutils/td/utils/StackAllocator.h | 61 + third-party/td/td/tdutils/td/utils/Status.cpp | 96 + third-party/td/td/tdutils/td/utils/Status.h | 625 + .../td/td/tdutils/td/utils/StealingQueue.h | 125 + third-party/td/td/tdutils/td/utils/Storer.h | 88 + .../td/td/tdutils/td/utils/StorerBase.h | 25 + .../td/td/tdutils/td/utils/StringBuilder.cpp | 229 + .../td/td/tdutils/td/utils/StringBuilder.h | 203 + .../td/tdutils/td/utils/ThreadLocalStorage.h | 55 + .../td/tdutils/td/utils/ThreadSafeCounter.h | 132 + third-party/td/td/tdutils/td/utils/Time.cpp | 49 + third-party/td/td/tdutils/td/utils/Time.h | 106 + .../td/td/tdutils/td/utils/TimedStat.h | 97 + third-party/td/td/tdutils/td/utils/Timer.cpp | 72 + third-party/td/td/tdutils/td/utils/Timer.h | 50 + .../td/td/tdutils/td/utils/TlDowncastHelper.h | 29 + .../td/td/tdutils/td/utils/TlStorerToString.h | 152 + third-party/td/td/tdutils/td/utils/TsCerr.cpp | 64 + third-party/td/td/tdutils/td/utils/TsCerr.h | 33 + .../td/td/tdutils/td/utils/TsFileLog.cpp | 106 + .../td/td/tdutils/td/utils/TsFileLog.h | 23 + third-party/td/td/tdutils/td/utils/TsList.h | 214 + third-party/td/td/tdutils/td/utils/TsLog.cpp | 21 + third-party/td/td/tdutils/td/utils/TsLog.h | 55 + third-party/td/td/tdutils/td/utils/UInt.h | 92 + third-party/td/td/tdutils/td/utils/Variant.h | 298 + .../td/td/tdutils/td/utils/VectorQueue.h | 94 + .../td/td/tdutils/td/utils/WaitFreeHashMap.h | 190 + .../td/td/tdutils/td/utils/WaitFreeHashSet.h | 142 + .../td/td/tdutils/td/utils/WaitFreeVector.h | 69 + .../td/td/tdutils/td/utils/algorithm.h | 304 + third-party/td/td/tdutils/td/utils/as.h | 81 + third-party/td/td/tdutils/td/utils/base64.cpp | 308 + third-party/td/td/tdutils/td/utils/base64.h | 35 + .../td/td/tdutils/td/utils/benchmark.h | 132 + third-party/td/td/tdutils/td/utils/bits.h | 310 + third-party/td/td/tdutils/td/utils/buffer.cpp | 201 + third-party/td/td/tdutils/td/utils/buffer.h | 836 + third-party/td/td/tdutils/td/utils/check.cpp | 23 + third-party/td/td/tdutils/td/utils/check.h | 34 + third-party/td/td/tdutils/td/utils/common.h | 127 + .../td/td/tdutils/td/utils/config.h.in | 8 + third-party/td/td/tdutils/td/utils/crypto.cpp | 1378 + third-party/td/td/tdutils/td/utils/crypto.h | 184 + third-party/td/td/tdutils/td/utils/emoji.cpp | 234 + third-party/td/td/tdutils/td/utils/emoji.h | 32 + .../td/td/tdutils/td/utils/filesystem.cpp | 191 + .../td/td/tdutils/td/utils/filesystem.h | 35 + .../td/td/tdutils/td/utils/find_boundary.cpp | 51 + .../td/td/tdutils/td/utils/find_boundary.h | 17 + .../td/td/tdutils/td/utils/fixed_vector.h | 79 + third-party/td/td/tdutils/td/utils/format.h | 303 + .../td/td/tdutils/td/utils/int_types.h | 45 + third-party/td/td/tdutils/td/utils/invoke.h | 210 + .../td/td/tdutils/td/utils/logging.cpp | 296 + third-party/td/td/tdutils/td/utils/logging.h | 255 + third-party/td/td/tdutils/td/utils/misc.cpp | 274 + third-party/td/td/tdutils/td/utils/misc.h | 354 + third-party/td/td/tdutils/td/utils/optional.h | 129 + .../td/td/tdutils/td/utils/overloaded.h | 39 + .../td/td/tdutils/td/utils/port/Clocks.cpp | 98 + .../td/td/tdutils/td/utils/port/Clocks.h | 19 + .../td/td/tdutils/td/utils/port/CxCli.h | 162 + .../td/td/tdutils/td/utils/port/EventFd.h | 33 + .../td/td/tdutils/td/utils/port/EventFdBase.h | 32 + .../td/td/tdutils/td/utils/port/FileFd.cpp | 698 + .../td/td/tdutils/td/utils/port/FileFd.h | 80 + .../td/td/tdutils/td/utils/port/FromApp.h | 100 + .../td/td/tdutils/td/utils/port/IPAddress.cpp | 666 + .../td/td/tdutils/td/utils/port/IPAddress.h | 97 + .../td/td/tdutils/td/utils/port/IoSlice.h | 42 + .../tdutils/td/utils/port/MemoryMapping.cpp | 109 + .../td/tdutils/td/utils/port/MemoryMapping.h | 52 + .../td/td/tdutils/td/utils/port/Mutex.h | 30 + .../td/td/tdutils/td/utils/port/Poll.h | 35 + .../td/td/tdutils/td/utils/port/PollBase.h | 28 + .../td/td/tdutils/td/utils/port/PollFlags.cpp | 71 + .../td/td/tdutils/td/utils/port/PollFlags.h | 122 + .../td/td/tdutils/td/utils/port/RwMutex.h | 148 + .../tdutils/td/utils/port/ServerSocketFd.cpp | 380 + .../td/tdutils/td/utils/port/ServerSocketFd.h | 57 + .../td/td/tdutils/td/utils/port/SocketFd.cpp | 728 + .../td/td/tdutils/td/utils/port/SocketFd.h | 73 + .../td/td/tdutils/td/utils/port/Stat.cpp | 416 + .../td/td/tdutils/td/utils/port/Stat.h | 56 + .../td/tdutils/td/utils/port/StdStreams.cpp | 251 + .../td/td/tdutils/td/utils/port/StdStreams.h | 49 + .../td/tdutils/td/utils/port/UdpSocketFd.cpp | 833 + .../td/td/tdutils/td/utils/port/UdpSocketFd.h | 90 + .../td/td/tdutils/td/utils/port/config.h | 59 + .../td/tdutils/td/utils/port/detail/Epoll.cpp | 126 + .../td/tdutils/td/utils/port/detail/Epoll.h | 59 + .../td/utils/port/detail/EventFdBsd.cpp | 110 + .../tdutils/td/utils/port/detail/EventFdBsd.h | 49 + .../td/utils/port/detail/EventFdLinux.cpp | 134 + .../td/utils/port/detail/EventFdLinux.h | 51 + .../td/utils/port/detail/EventFdWindows.cpp | 68 + .../td/utils/port/detail/EventFdWindows.h | 48 + .../td/tdutils/td/utils/port/detail/Iocp.cpp | 110 + .../td/td/tdutils/td/utils/port/detail/Iocp.h | 71 + .../tdutils/td/utils/port/detail/KQueue.cpp | 183 + .../td/tdutils/td/utils/port/detail/KQueue.h | 72 + .../tdutils/td/utils/port/detail/NativeFd.cpp | 302 + .../tdutils/td/utils/port/detail/NativeFd.h | 73 + .../td/tdutils/td/utils/port/detail/Poll.cpp | 104 + .../td/td/tdutils/td/utils/port/detail/Poll.h | 56 + .../tdutils/td/utils/port/detail/PollableFd.h | 230 + .../tdutils/td/utils/port/detail/Select.cpp | 120 + .../td/tdutils/td/utils/port/detail/Select.h | 64 + .../td/utils/port/detail/ThreadIdGuard.cpp | 56 + .../td/utils/port/detail/ThreadIdGuard.h | 26 + .../td/utils/port/detail/ThreadPthread.cpp | 217 + .../td/utils/port/detail/ThreadPthread.h | 113 + .../tdutils/td/utils/port/detail/ThreadStl.h | 153 + .../td/utils/port/detail/WineventPoll.cpp | 43 + .../td/utils/port/detail/WineventPoll.h | 50 + .../tdutils/td/utils/port/detail/skip_eintr.h | 63 + .../td/td/tdutils/td/utils/port/path.cpp | 666 + .../td/td/tdutils/td/utils/port/path.h | 72 + .../td/td/tdutils/td/utils/port/platform.cpp | 25 + .../td/td/tdutils/td/utils/port/platform.h | 121 + .../td/td/tdutils/td/utils/port/rlimit.cpp | 97 + .../td/td/tdutils/td/utils/port/rlimit.h | 20 + .../td/td/tdutils/td/utils/port/signals.cpp | 344 + .../td/td/tdutils/td/utils/port/signals.h | 36 + .../td/td/tdutils/td/utils/port/sleep.cpp | 48 + .../td/td/tdutils/td/utils/port/sleep.h | 15 + .../td/tdutils/td/utils/port/stacktrace.cpp | 139 + .../td/td/tdutils/td/utils/port/stacktrace.h | 23 + .../td/td/tdutils/td/utils/port/thread.h | 31 + .../td/tdutils/td/utils/port/thread_local.cpp | 41 + .../td/tdutils/td/utils/port/thread_local.h | 65 + .../td/td/tdutils/td/utils/port/uname.cpp | 291 + .../td/td/tdutils/td/utils/port/uname.h | 15 + .../td/td/tdutils/td/utils/port/user.cpp | 57 + .../td/td/tdutils/td/utils/port/user.h | 16 + .../tdutils/td/utils/port/wstring_convert.cpp | 114 + .../tdutils/td/utils/port/wstring_convert.h | 31 + third-party/td/td/tdutils/td/utils/queue.h | 472 + .../td/td/tdutils/td/utils/simple_tests.h | 164 + third-party/td/td/tdutils/td/utils/tests.cpp | 279 + third-party/td/td/tdutils/td/utils/tests.h | 220 + .../td/td/tdutils/td/utils/tl_helpers.h | 329 + .../td/td/tdutils/td/utils/tl_parsers.cpp | 78 + .../td/td/tdutils/td/utils/tl_parsers.h | 243 + .../td/td/tdutils/td/utils/tl_storers.h | 160 + .../td/td/tdutils/td/utils/translit.cpp | 115 + third-party/td/td/tdutils/td/utils/translit.h | 16 + .../td/td/tdutils/td/utils/type_traits.h | 46 + third-party/td/td/tdutils/td/utils/uint128.h | 293 + .../td/td/tdutils/td/utils/unicode.cpp | 1361 + third-party/td/td/tdutils/td/utils/unicode.h | 33 + .../td/td/tdutils/td/utils/unique_ptr.h | 122 + .../td/td/tdutils/td/utils/unique_value_ptr.h | 93 + third-party/td/td/tdutils/td/utils/utf8.cpp | 196 + third-party/td/td/tdutils/td/utils/utf8.h | 118 + .../td/td/tdutils/test/ChainScheduler.cpp | 244 + .../td/td/tdutils/test/ConcurrentHashMap.cpp | 250 + third-party/td/td/tdutils/test/Enumerator.cpp | 45 + .../test/EpochBasedMemoryReclamation.cpp | 68 + third-party/td/td/tdutils/test/HashSet.cpp | 452 + .../td/td/tdutils/test/HazardPointers.cpp | 60 + third-party/td/td/tdutils/test/HttpUrl.cpp | 143 + third-party/td/td/tdutils/test/List.cpp | 169 + third-party/td/td/tdutils/test/MpmcQueue.cpp | 207 + third-party/td/td/tdutils/test/MpmcWaiter.cpp | 142 + .../td/td/tdutils/test/MpscLinkQueue.cpp | 115 + .../td/td/tdutils/test/OptionParser.cpp | 82 + .../tdutils/test/OrderedEventsProcessor.cpp | 36 + .../td/td/tdutils/test/SharedObjectPool.cpp | 105 + .../td/td/tdutils/test/SharedSlice.cpp | 91 + .../td/td/tdutils/test/StealingQueue.cpp | 180 + .../td/td/tdutils/test/WaitFreeHashMap.cpp | 95 + .../td/td/tdutils/test/WaitFreeHashSet.cpp | 73 + .../td/td/tdutils/test/WaitFreeVector.cpp | 69 + third-party/td/td/tdutils/test/bitmask.cpp | 248 + third-party/td/td/tdutils/test/buffer.cpp | 56 + third-party/td/td/tdutils/test/crypto.cpp | 471 + third-party/td/td/tdutils/test/emoji.cpp | 148 + third-party/td/td/tdutils/test/filesystem.cpp | 47 + third-party/td/td/tdutils/test/gzip.cpp | 247 + .../td/td/tdutils/test/hashset_benchmark.cpp | 649 + third-party/td/td/tdutils/test/heap.cpp | 178 + third-party/td/td/tdutils/test/json.cpp | 300 + third-party/td/td/tdutils/test/log.cpp | 187 + third-party/td/td/tdutils/test/misc.cpp | 1417 + third-party/td/td/tdutils/test/port.cpp | 326 + third-party/td/td/tdutils/test/pq.cpp | 162 + third-party/td/td/tdutils/test/variant.cpp | 72 + third-party/td/td/test/CMakeLists.txt | 74 + third-party/td/td/test/country_info.cpp | 102 + third-party/td/td/test/crypto.cpp | 304 + third-party/td/td/test/data.cpp | 503 + third-party/td/td/test/data.h | 24 + third-party/td/td/test/db.cpp | 809 + third-party/td/td/test/fuzz_url.cpp | 33 + third-party/td/td/test/http.cpp | 565 + third-party/td/td/test/link.cpp | 1463 + third-party/td/td/test/main.cpp | 66 + third-party/td/td/test/message_entities.cpp | 2030 + third-party/td/td/test/mtproto.cpp | 742 + third-party/td/td/test/online.cpp | 632 + third-party/td/td/test/poll.cpp | 58 + third-party/td/td/test/query_merger.cpp | 99 + third-party/td/td/test/secret.cpp | 1025 + third-party/td/td/test/secure_storage.cpp | 74 + third-party/td/td/test/set_with_position.cpp | 263 + third-party/td/td/test/string_cleaning.cpp | 119 + third-party/td/td/test/tdclient.cpp | 1192 + third-party/td/td/test/tqueue.cpp | 260 + third-party/td/td/update_version.sh | 56 + 1585 files changed, 712275 insertions(+), 1047 deletions(-) create mode 100644 third-party/td/BUILD create mode 100644 third-party/td/TdBinding/Public/TdBinding/TdBinding.h create mode 100644 third-party/td/TdBinding/Sources/TdBinding.mm create mode 100755 third-party/td/build-td-bazel.sh create mode 100644 third-party/td/td/.clang-format create mode 100644 third-party/td/td/.gitattributes create mode 100644 third-party/td/td/.gitignore create mode 100644 third-party/td/td/CHANGELOG.md create mode 100644 third-party/td/td/CMake/AddCXXCompilerFlag.cmake create mode 100644 third-party/td/td/CMake/FindAtomics.cmake create mode 100644 third-party/td/td/CMake/FindReadline.cmake create mode 100644 third-party/td/td/CMake/GeneratePkgConfig.cmake create mode 100644 third-party/td/td/CMake/GetGitRevisionDescription.cmake create mode 100644 third-party/td/td/CMake/GetGitRevisionDescription.cmake.in create mode 100644 third-party/td/td/CMake/PreventInSourceBuild.cmake create mode 100644 third-party/td/td/CMake/TdSetUpCompiler.cmake create mode 100644 third-party/td/td/CMake/iOS.cmake create mode 100644 third-party/td/td/CMake/illumos.cmake create mode 100644 third-party/td/td/CMakeLists.txt create mode 100644 third-party/td/td/Doxyfile create mode 100644 third-party/td/td/LICENSE_1_0.txt create mode 100644 third-party/td/td/README.md create mode 100644 third-party/td/td/SplitSource.php create mode 100644 third-party/td/td/TdConfig.cmake create mode 100644 third-party/td/td/benchmark/CMakeLists.txt create mode 100644 third-party/td/td/benchmark/bench_actor.cpp create mode 100644 third-party/td/td/benchmark/bench_crypto.cpp create mode 100644 third-party/td/td/benchmark/bench_db.cpp create mode 100644 third-party/td/td/benchmark/bench_empty.cpp create mode 100644 third-party/td/td/benchmark/bench_handshake.cpp create mode 100644 third-party/td/td/benchmark/bench_http.cpp create mode 100644 third-party/td/td/benchmark/bench_http_reader.cpp create mode 100644 third-party/td/td/benchmark/bench_http_server.cpp create mode 100644 third-party/td/td/benchmark/bench_http_server_cheat.cpp create mode 100644 third-party/td/td/benchmark/bench_http_server_fast.cpp create mode 100644 third-party/td/td/benchmark/bench_log.cpp create mode 100644 third-party/td/td/benchmark/bench_misc.cpp create mode 100644 third-party/td/td/benchmark/bench_queue.cpp create mode 100644 third-party/td/td/benchmark/bench_tddb.cpp create mode 100644 third-party/td/td/benchmark/check_proxy.cpp create mode 100644 third-party/td/td/benchmark/check_tls.cpp create mode 100644 third-party/td/td/benchmark/hashmap_build.cpp create mode 100644 third-party/td/td/benchmark/hashset_memory.cpp create mode 100644 third-party/td/td/benchmark/rmdir.cpp create mode 100644 third-party/td/td/benchmark/wget.cpp create mode 100644 third-party/td/td/build.html create mode 100644 third-party/td/td/example/README.md create mode 100644 third-party/td/td/example/android/.gitignore create mode 100644 third-party/td/td/example/android/AddIntDef.php create mode 100644 third-party/td/td/example/android/CMakeLists.txt create mode 100644 third-party/td/td/example/android/Dockerfile create mode 100644 third-party/td/td/example/android/README.md create mode 100755 third-party/td/td/example/android/build-openssl.sh create mode 100755 third-party/td/td/example/android/build-tdlib.sh create mode 100755 third-party/td/td/example/android/check-environment.sh create mode 100755 third-party/td/td/example/android/fetch-sdk.sh create mode 100644 third-party/td/td/example/cpp/.gitignore create mode 100644 third-party/td/td/example/cpp/CMakeLists.txt create mode 100644 third-party/td/td/example/cpp/README.md create mode 100644 third-party/td/td/example/cpp/td_example.cpp create mode 100644 third-party/td/td/example/cpp/tdjson_example.cpp create mode 100644 third-party/td/td/example/csharp/.gitignore create mode 100644 third-party/td/td/example/csharp/README.md create mode 100644 third-party/td/td/example/csharp/TdExample.cs create mode 100644 third-party/td/td/example/csharp/TdExample.csproj create mode 100644 third-party/td/td/example/csharp/TdExample.sln create mode 100644 third-party/td/td/example/ios/Python-Apple-support.patch create mode 100644 third-party/td/td/example/ios/README.md create mode 100755 third-party/td/td/example/ios/build-openssl.sh create mode 100755 third-party/td/td/example/ios/build.sh create mode 100644 third-party/td/td/example/java/.gitignore create mode 100644 third-party/td/td/example/java/CMakeLists.txt create mode 100644 third-party/td/td/example/java/README.md create mode 100644 third-party/td/td/example/java/org/drinkless/tdlib/Client.java create mode 100644 third-party/td/td/example/java/org/drinkless/tdlib/JsonClient.java create mode 100644 third-party/td/td/example/java/org/drinkless/tdlib/example/Example.java create mode 100644 third-party/td/td/example/java/org/drinkless/tdlib/example/JsonExample.java create mode 100644 third-party/td/td/example/java/td_jni.cpp create mode 100644 third-party/td/td/example/python/.gitignore create mode 100644 third-party/td/td/example/python/README.md create mode 100644 third-party/td/td/example/python/tdjson_example.py create mode 100644 third-party/td/td/example/swift/.gitignore create mode 100644 third-party/td/td/example/swift/README.md create mode 100644 third-party/td/td/example/swift/src/main.swift create mode 100644 third-party/td/td/example/swift/src/td-Bridging-Header.h create mode 100644 third-party/td/td/example/uwp/LICENSE_1_0.txt create mode 100644 third-party/td/td/example/uwp/README.md create mode 100644 third-party/td/td/example/uwp/SDKManifest.xml create mode 100644 third-party/td/td/example/uwp/Telegram.Td.UWP.nuspec create mode 100644 third-party/td/td/example/uwp/Telegram.Td.UWP.targets create mode 100644 third-party/td/td/example/uwp/[Content_Types].xml create mode 100644 third-party/td/td/example/uwp/app/.gitignore create mode 100644 third-party/td/td/example/uwp/app/App.xaml create mode 100644 third-party/td/td/example/uwp/app/App.xaml.cs create mode 100644 third-party/td/td/example/uwp/app/ApplicationInsights.config create mode 100644 third-party/td/td/example/uwp/app/Assets/LockScreenLogo.scale-200.png create mode 100644 third-party/td/td/example/uwp/app/Assets/SplashScreen.scale-200.png create mode 100644 third-party/td/td/example/uwp/app/Assets/Square150x150Logo.scale-200.png create mode 100644 third-party/td/td/example/uwp/app/Assets/Square44x44Logo.scale-200.png create mode 100644 third-party/td/td/example/uwp/app/Assets/Square44x44Logo.targetsize-24_altform-unplated.png create mode 100644 third-party/td/td/example/uwp/app/Assets/StoreLogo.png create mode 100644 third-party/td/td/example/uwp/app/Assets/Wide310x150Logo.scale-200.png create mode 100644 third-party/td/td/example/uwp/app/MainPage.xaml create mode 100644 third-party/td/td/example/uwp/app/MainPage.xaml.cs create mode 100644 third-party/td/td/example/uwp/app/Package.appxmanifest create mode 100644 third-party/td/td/example/uwp/app/Properties/AssemblyInfo.cs create mode 100644 third-party/td/td/example/uwp/app/Properties/Default.rd.xml create mode 100644 third-party/td/td/example/uwp/app/TdApp.csproj create mode 100644 third-party/td/td/example/uwp/app/TdApp.sln create mode 100644 third-party/td/td/example/uwp/app/TdApp_TemporaryKey.pfx create mode 100644 third-party/td/td/example/uwp/app/project.json create mode 100644 third-party/td/td/example/uwp/build.ps1 create mode 100644 third-party/td/td/example/uwp/extension.vsixmanifest create mode 100644 third-party/td/td/example/web/.gitignore create mode 100644 third-party/td/td/example/web/README.md create mode 100755 third-party/td/td/example/web/build-openssl.sh create mode 100755 third-party/td/td/example/web/build-tdlib.sh create mode 100755 third-party/td/td/example/web/build-tdweb.sh create mode 100755 third-party/td/td/example/web/copy-tdlib.sh create mode 100644 third-party/td/td/example/web/tdweb/README.md create mode 100644 third-party/td/td/example/web/tdweb/package-lock.json create mode 100644 third-party/td/td/example/web/tdweb/package.json create mode 100644 third-party/td/td/example/web/tdweb/src/index.js create mode 100644 third-party/td/td/example/web/tdweb/src/logger.js create mode 100644 third-party/td/td/example/web/tdweb/src/wasm-utils.js create mode 100644 third-party/td/td/example/web/tdweb/src/worker.js create mode 100644 third-party/td/td/example/web/tdweb/webpack.config.js create mode 100644 third-party/td/td/format.ps1 create mode 100755 third-party/td/td/format.sh create mode 100644 third-party/td/td/memprof/memprof.cpp create mode 100644 third-party/td/td/memprof/memprof.h create mode 100644 third-party/td/td/memprof/memprof_stat.cpp create mode 100644 third-party/td/td/memprof/memprof_stat.h create mode 100644 third-party/td/td/post.js create mode 100644 third-party/td/td/sqlite/CMakeLists.txt create mode 100644 third-party/td/td/sqlite/sqlite/LICENSE create mode 100644 third-party/td/td/sqlite/sqlite/sqlite3.c create mode 100644 third-party/td/td/sqlite/sqlite/sqlite3.h create mode 100644 third-party/td/td/sqlite/sqlite/sqlite3ext.h create mode 100644 third-party/td/td/sqlite/sqlite/sqlite3session.h create mode 100644 third-party/td/td/src.ps1 create mode 100755 third-party/td/td/src.sh create mode 100644 third-party/td/td/td/generate/CMakeLists.txt create mode 100644 third-party/td/td/td/generate/DotnetTlDocumentationGenerator.php create mode 100644 third-party/td/td/td/generate/DoxygenTlDocumentationGenerator.php create mode 100644 third-party/td/td/td/generate/JavadocTlDocumentationGenerator.php create mode 100644 third-party/td/td/td/generate/TlDocumentationGenerator.php create mode 100644 third-party/td/td/td/generate/generate_c.cpp create mode 100644 third-party/td/td/td/generate/generate_common.cpp create mode 100644 third-party/td/td/td/generate/generate_dotnet.cpp create mode 100644 third-party/td/td/td/generate/generate_java.cpp create mode 100644 third-party/td/td/td/generate/generate_json.cpp create mode 100644 third-party/td/td/td/generate/generate_mtproto.cpp create mode 100644 third-party/td/td/td/generate/remove_documentation.cpp create mode 100644 third-party/td/td/td/generate/scheme/e2e_api.tl create mode 100644 third-party/td/td/td/generate/scheme/mtproto_api.tl create mode 100644 third-party/td/td/td/generate/scheme/secret_api.tl create mode 100644 third-party/td/td/td/generate/scheme/td_api.tl create mode 100644 third-party/td/td/td/generate/scheme/telegram_api.tl create mode 100644 third-party/td/td/td/generate/tl-parser/CMakeLists.txt create mode 100644 third-party/td/td/td/generate/tl-parser/LICENSE create mode 100644 third-party/td/td/td/generate/tl-parser/crc32.c create mode 100644 third-party/td/td/td/generate/tl-parser/crc32.h create mode 100644 third-party/td/td/td/generate/tl-parser/portable_endian.h create mode 100644 third-party/td/td/td/generate/tl-parser/tl-parser-tree.h create mode 100644 third-party/td/td/td/generate/tl-parser/tl-parser.c create mode 100644 third-party/td/td/td/generate/tl-parser/tl-parser.h create mode 100644 third-party/td/td/td/generate/tl-parser/tl-tl.h create mode 100644 third-party/td/td/td/generate/tl-parser/tlc.c create mode 100644 third-party/td/td/td/generate/tl-parser/wgetopt.c create mode 100644 third-party/td/td/td/generate/tl-parser/wgetopt.h create mode 100644 third-party/td/td/td/generate/tl_json_converter.cpp create mode 100644 third-party/td/td/td/generate/tl_json_converter.h create mode 100644 third-party/td/td/td/generate/tl_writer_c.h create mode 100644 third-party/td/td/td/generate/tl_writer_cpp.cpp create mode 100644 third-party/td/td/td/generate/tl_writer_cpp.h create mode 100644 third-party/td/td/td/generate/tl_writer_dotnet.h create mode 100644 third-party/td/td/td/generate/tl_writer_h.cpp create mode 100644 third-party/td/td/td/generate/tl_writer_h.h create mode 100644 third-party/td/td/td/generate/tl_writer_hpp.cpp create mode 100644 third-party/td/td/td/generate/tl_writer_hpp.h create mode 100644 third-party/td/td/td/generate/tl_writer_java.cpp create mode 100644 third-party/td/td/td/generate/tl_writer_java.h create mode 100644 third-party/td/td/td/generate/tl_writer_jni_cpp.cpp create mode 100644 third-party/td/td/td/generate/tl_writer_jni_cpp.h create mode 100644 third-party/td/td/td/generate/tl_writer_jni_h.cpp create mode 100644 third-party/td/td/td/generate/tl_writer_jni_h.h create mode 100644 third-party/td/td/td/generate/tl_writer_td.cpp create mode 100644 third-party/td/td/td/generate/tl_writer_td.h create mode 100644 third-party/td/td/td/mtproto/AuthData.cpp create mode 100644 third-party/td/td/td/mtproto/AuthData.h create mode 100644 third-party/td/td/td/mtproto/AuthKey.h create mode 100644 third-party/td/td/td/mtproto/ConnectionManager.cpp create mode 100644 third-party/td/td/td/mtproto/ConnectionManager.h create mode 100644 third-party/td/td/td/mtproto/CryptoStorer.h create mode 100644 third-party/td/td/td/mtproto/DhCallback.h create mode 100644 third-party/td/td/td/mtproto/DhHandshake.cpp create mode 100644 third-party/td/td/td/mtproto/DhHandshake.h create mode 100644 third-party/td/td/td/mtproto/Handshake.cpp create mode 100644 third-party/td/td/td/mtproto/Handshake.h create mode 100644 third-party/td/td/td/mtproto/HandshakeActor.cpp create mode 100644 third-party/td/td/td/mtproto/HandshakeActor.h create mode 100644 third-party/td/td/td/mtproto/HandshakeConnection.h create mode 100644 third-party/td/td/td/mtproto/HttpTransport.cpp create mode 100644 third-party/td/td/td/mtproto/HttpTransport.h create mode 100644 third-party/td/td/td/mtproto/IStreamTransport.cpp create mode 100644 third-party/td/td/td/mtproto/IStreamTransport.h create mode 100644 third-party/td/td/td/mtproto/KDF.cpp create mode 100644 third-party/td/td/td/mtproto/KDF.h create mode 100644 third-party/td/td/td/mtproto/MessageId.h create mode 100644 third-party/td/td/td/mtproto/MtprotoQuery.h create mode 100644 third-party/td/td/td/mtproto/NoCryptoStorer.h create mode 100644 third-party/td/td/td/mtproto/PacketInfo.h create mode 100644 third-party/td/td/td/mtproto/PacketStorer.h create mode 100644 third-party/td/td/td/mtproto/Ping.cpp create mode 100644 third-party/td/td/td/mtproto/Ping.h create mode 100644 third-party/td/td/td/mtproto/PingConnection.cpp create mode 100644 third-party/td/td/td/mtproto/PingConnection.h create mode 100644 third-party/td/td/td/mtproto/ProxySecret.cpp create mode 100644 third-party/td/td/td/mtproto/ProxySecret.h create mode 100644 third-party/td/td/td/mtproto/RSA.cpp create mode 100644 third-party/td/td/td/mtproto/RSA.h create mode 100644 third-party/td/td/td/mtproto/RawConnection.cpp create mode 100644 third-party/td/td/td/mtproto/RawConnection.h create mode 100644 third-party/td/td/td/mtproto/SessionConnection.cpp create mode 100644 third-party/td/td/td/mtproto/SessionConnection.h create mode 100644 third-party/td/td/td/mtproto/TcpTransport.cpp create mode 100644 third-party/td/td/td/mtproto/TcpTransport.h create mode 100644 third-party/td/td/td/mtproto/TlsInit.cpp create mode 100644 third-party/td/td/td/mtproto/TlsInit.h create mode 100644 third-party/td/td/td/mtproto/TlsReaderByteFlow.cpp create mode 100644 third-party/td/td/td/mtproto/TlsReaderByteFlow.h create mode 100644 third-party/td/td/td/mtproto/Transport.cpp create mode 100644 third-party/td/td/td/mtproto/Transport.h create mode 100644 third-party/td/td/td/mtproto/TransportType.h create mode 100644 third-party/td/td/td/mtproto/utils.cpp create mode 100644 third-party/td/td/td/mtproto/utils.h create mode 100644 third-party/td/td/td/telegram/AccentColorId.h create mode 100644 third-party/td/td/td/telegram/AccessRights.h create mode 100644 third-party/td/td/td/telegram/AccountManager.cpp create mode 100644 third-party/td/td/td/telegram/AccountManager.h create mode 100644 third-party/td/td/td/telegram/AffectedHistory.h create mode 100644 third-party/td/td/td/telegram/AffiliateType.cpp create mode 100644 third-party/td/td/td/telegram/AffiliateType.h create mode 100644 third-party/td/td/td/telegram/AlarmManager.cpp create mode 100644 third-party/td/td/td/telegram/AlarmManager.h create mode 100644 third-party/td/td/td/telegram/AnimationsManager.cpp create mode 100644 third-party/td/td/td/telegram/AnimationsManager.h create mode 100644 third-party/td/td/td/telegram/AnimationsManager.hpp create mode 100644 third-party/td/td/td/telegram/Application.cpp create mode 100644 third-party/td/td/td/telegram/Application.h create mode 100644 third-party/td/td/td/telegram/AttachMenuManager.cpp create mode 100644 third-party/td/td/td/telegram/AttachMenuManager.h create mode 100644 third-party/td/td/td/telegram/AudiosManager.cpp create mode 100644 third-party/td/td/td/telegram/AudiosManager.h create mode 100644 third-party/td/td/td/telegram/AudiosManager.hpp create mode 100644 third-party/td/td/td/telegram/AuthManager.cpp create mode 100644 third-party/td/td/td/telegram/AuthManager.h create mode 100644 third-party/td/td/td/telegram/AuthManager.hpp create mode 100644 third-party/td/td/td/telegram/AutoDownloadSettings.cpp create mode 100644 third-party/td/td/td/telegram/AutoDownloadSettings.h create mode 100644 third-party/td/td/td/telegram/AutosaveManager.cpp create mode 100644 third-party/td/td/td/telegram/AutosaveManager.h create mode 100644 third-party/td/td/td/telegram/BackgroundId.h create mode 100644 third-party/td/td/td/telegram/BackgroundInfo.cpp create mode 100644 third-party/td/td/td/telegram/BackgroundInfo.h create mode 100644 third-party/td/td/td/telegram/BackgroundInfo.hpp create mode 100644 third-party/td/td/td/telegram/BackgroundManager.cpp create mode 100644 third-party/td/td/td/telegram/BackgroundManager.h create mode 100644 third-party/td/td/td/telegram/BackgroundType.cpp create mode 100644 third-party/td/td/td/telegram/BackgroundType.h create mode 100644 third-party/td/td/td/telegram/BackgroundType.hpp create mode 100644 third-party/td/td/td/telegram/BaseTheme.cpp create mode 100644 third-party/td/td/td/telegram/BaseTheme.h create mode 100644 third-party/td/td/td/telegram/Birthdate.cpp create mode 100644 third-party/td/td/td/telegram/Birthdate.h create mode 100644 third-party/td/td/td/telegram/Birthdate.hpp create mode 100644 third-party/td/td/td/telegram/BlockListId.h create mode 100644 third-party/td/td/td/telegram/BoostManager.cpp create mode 100644 third-party/td/td/td/telegram/BoostManager.h create mode 100644 third-party/td/td/td/telegram/BotCommand.cpp create mode 100644 third-party/td/td/td/telegram/BotCommand.h create mode 100644 third-party/td/td/td/telegram/BotCommandScope.cpp create mode 100644 third-party/td/td/td/telegram/BotCommandScope.h create mode 100644 third-party/td/td/td/telegram/BotInfoManager.cpp create mode 100644 third-party/td/td/td/telegram/BotInfoManager.h create mode 100644 third-party/td/td/td/telegram/BotMenuButton.cpp create mode 100644 third-party/td/td/td/telegram/BotMenuButton.h create mode 100644 third-party/td/td/td/telegram/BotQueries.cpp create mode 100644 third-party/td/td/td/telegram/BotQueries.h create mode 100644 third-party/td/td/td/telegram/BotRecommendationManager.cpp create mode 100644 third-party/td/td/td/telegram/BotRecommendationManager.h create mode 100644 third-party/td/td/td/telegram/BotVerification.cpp create mode 100644 third-party/td/td/td/telegram/BotVerification.h create mode 100644 third-party/td/td/td/telegram/BotVerification.hpp create mode 100644 third-party/td/td/td/telegram/BotVerifierSettings.cpp create mode 100644 third-party/td/td/td/telegram/BotVerifierSettings.h create mode 100644 third-party/td/td/td/telegram/BotVerifierSettings.hpp create mode 100644 third-party/td/td/td/telegram/BusinessAwayMessage.cpp create mode 100644 third-party/td/td/td/telegram/BusinessAwayMessage.h create mode 100644 third-party/td/td/td/telegram/BusinessAwayMessage.hpp create mode 100644 third-party/td/td/td/telegram/BusinessAwayMessageSchedule.cpp create mode 100644 third-party/td/td/td/telegram/BusinessAwayMessageSchedule.h create mode 100644 third-party/td/td/td/telegram/BusinessAwayMessageSchedule.hpp create mode 100644 third-party/td/td/td/telegram/BusinessBotManageBar.cpp create mode 100644 third-party/td/td/td/telegram/BusinessBotManageBar.h create mode 100644 third-party/td/td/td/telegram/BusinessChatLink.cpp create mode 100644 third-party/td/td/td/telegram/BusinessChatLink.h create mode 100644 third-party/td/td/td/telegram/BusinessConnectedBot.cpp create mode 100644 third-party/td/td/td/telegram/BusinessConnectedBot.h create mode 100644 third-party/td/td/td/telegram/BusinessConnectedBot.hpp create mode 100644 third-party/td/td/td/telegram/BusinessConnectionId.h create mode 100644 third-party/td/td/td/telegram/BusinessConnectionManager.cpp create mode 100644 third-party/td/td/td/telegram/BusinessConnectionManager.h create mode 100644 third-party/td/td/td/telegram/BusinessGreetingMessage.cpp create mode 100644 third-party/td/td/td/telegram/BusinessGreetingMessage.h create mode 100644 third-party/td/td/td/telegram/BusinessGreetingMessage.hpp create mode 100644 third-party/td/td/td/telegram/BusinessInfo.cpp create mode 100644 third-party/td/td/td/telegram/BusinessInfo.h create mode 100644 third-party/td/td/td/telegram/BusinessInfo.hpp create mode 100644 third-party/td/td/td/telegram/BusinessIntro.cpp create mode 100644 third-party/td/td/td/telegram/BusinessIntro.h create mode 100644 third-party/td/td/td/telegram/BusinessIntro.hpp create mode 100644 third-party/td/td/td/telegram/BusinessManager.cpp create mode 100644 third-party/td/td/td/telegram/BusinessManager.h create mode 100644 third-party/td/td/td/telegram/BusinessRecipients.cpp create mode 100644 third-party/td/td/td/telegram/BusinessRecipients.h create mode 100644 third-party/td/td/td/telegram/BusinessRecipients.hpp create mode 100644 third-party/td/td/td/telegram/BusinessWorkHours.cpp create mode 100644 third-party/td/td/td/telegram/BusinessWorkHours.h create mode 100644 third-party/td/td/td/telegram/BusinessWorkHours.hpp create mode 100644 third-party/td/td/td/telegram/CallActor.cpp create mode 100644 third-party/td/td/td/telegram/CallActor.h create mode 100644 third-party/td/td/td/telegram/CallDiscardReason.cpp create mode 100644 third-party/td/td/td/telegram/CallDiscardReason.h create mode 100644 third-party/td/td/td/telegram/CallId.h create mode 100644 third-party/td/td/td/telegram/CallManager.cpp create mode 100644 third-party/td/td/td/telegram/CallManager.h create mode 100644 third-party/td/td/td/telegram/CallbackQueriesManager.cpp create mode 100644 third-party/td/td/td/telegram/CallbackQueriesManager.h create mode 100644 third-party/td/td/td/telegram/ChainId.h create mode 100644 third-party/td/td/td/telegram/ChannelId.h create mode 100644 third-party/td/td/td/telegram/ChannelParticipantFilter.cpp create mode 100644 third-party/td/td/td/telegram/ChannelParticipantFilter.h create mode 100644 third-party/td/td/td/telegram/ChannelRecommendationManager.cpp create mode 100644 third-party/td/td/td/telegram/ChannelRecommendationManager.h create mode 100644 third-party/td/td/td/telegram/ChannelType.h create mode 100644 third-party/td/td/td/telegram/ChatId.h create mode 100644 third-party/td/td/td/telegram/ChatManager.cpp create mode 100644 third-party/td/td/td/telegram/ChatManager.h create mode 100644 third-party/td/td/td/telegram/ChatReactions.cpp create mode 100644 third-party/td/td/td/telegram/ChatReactions.h create mode 100644 third-party/td/td/td/telegram/ChatReactions.hpp create mode 100644 third-party/td/td/td/telegram/Client.cpp create mode 100644 third-party/td/td/td/telegram/Client.h create mode 100644 third-party/td/td/td/telegram/ClientActor.cpp create mode 100644 third-party/td/td/td/telegram/ClientActor.h create mode 100644 third-party/td/td/td/telegram/ClientDotNet.cpp create mode 100644 third-party/td/td/td/telegram/ClientJson.cpp create mode 100644 third-party/td/td/td/telegram/ClientJson.h create mode 100644 third-party/td/td/td/telegram/CommonDialogManager.cpp create mode 100644 third-party/td/td/td/telegram/CommonDialogManager.h create mode 100644 third-party/td/td/td/telegram/ConfigManager.cpp create mode 100644 third-party/td/td/td/telegram/ConfigManager.h create mode 100644 third-party/td/td/td/telegram/ConnectionState.cpp create mode 100644 third-party/td/td/td/telegram/ConnectionState.h create mode 100644 third-party/td/td/td/telegram/ConnectionStateManager.cpp create mode 100644 third-party/td/td/td/telegram/ConnectionStateManager.h create mode 100644 third-party/td/td/td/telegram/Contact.cpp create mode 100644 third-party/td/td/td/telegram/Contact.h create mode 100644 third-party/td/td/td/telegram/CountryInfoManager.cpp create mode 100644 third-party/td/td/td/telegram/CountryInfoManager.h create mode 100644 third-party/td/td/td/telegram/CustomEmojiId.h create mode 100644 third-party/td/td/td/telegram/DelayDispatcher.cpp create mode 100644 third-party/td/td/td/telegram/DelayDispatcher.h create mode 100644 third-party/td/td/td/telegram/Dependencies.cpp create mode 100644 third-party/td/td/td/telegram/Dependencies.h create mode 100644 third-party/td/td/td/telegram/DeviceTokenManager.cpp create mode 100644 third-party/td/td/td/telegram/DeviceTokenManager.h create mode 100644 third-party/td/td/td/telegram/DhCache.cpp create mode 100644 third-party/td/td/td/telegram/DhCache.h create mode 100644 third-party/td/td/td/telegram/DhConfig.h create mode 100644 third-party/td/td/td/telegram/DialogAction.cpp create mode 100644 third-party/td/td/td/telegram/DialogAction.h create mode 100644 third-party/td/td/td/telegram/DialogActionBar.cpp create mode 100644 third-party/td/td/td/telegram/DialogActionBar.h create mode 100644 third-party/td/td/td/telegram/DialogActionManager.cpp create mode 100644 third-party/td/td/td/telegram/DialogActionManager.h create mode 100644 third-party/td/td/td/telegram/DialogAdministrator.cpp create mode 100644 third-party/td/td/td/telegram/DialogAdministrator.h create mode 100644 third-party/td/td/td/telegram/DialogBoostLinkInfo.h create mode 100644 third-party/td/td/td/telegram/DialogDate.h create mode 100644 third-party/td/td/td/telegram/DialogDb.cpp create mode 100644 third-party/td/td/td/telegram/DialogDb.h create mode 100644 third-party/td/td/td/telegram/DialogEventLog.cpp create mode 100644 third-party/td/td/td/telegram/DialogEventLog.h create mode 100644 third-party/td/td/td/telegram/DialogFilter.cpp create mode 100644 third-party/td/td/td/telegram/DialogFilter.h create mode 100644 third-party/td/td/td/telegram/DialogFilter.hpp create mode 100644 third-party/td/td/td/telegram/DialogFilterDialogInfo.h create mode 100644 third-party/td/td/td/telegram/DialogFilterId.h create mode 100644 third-party/td/td/td/telegram/DialogFilterInviteLink.cpp create mode 100644 third-party/td/td/td/telegram/DialogFilterInviteLink.h create mode 100644 third-party/td/td/td/telegram/DialogFilterManager.cpp create mode 100644 third-party/td/td/td/telegram/DialogFilterManager.h create mode 100644 third-party/td/td/td/telegram/DialogId.cpp create mode 100644 third-party/td/td/td/telegram/DialogId.h create mode 100644 third-party/td/td/td/telegram/DialogInviteLink.cpp create mode 100644 third-party/td/td/td/telegram/DialogInviteLink.h create mode 100644 third-party/td/td/td/telegram/DialogInviteLink.hpp create mode 100644 third-party/td/td/td/telegram/DialogInviteLinkManager.cpp create mode 100644 third-party/td/td/td/telegram/DialogInviteLinkManager.h create mode 100644 third-party/td/td/td/telegram/DialogListId.h create mode 100644 third-party/td/td/td/telegram/DialogLocation.cpp create mode 100644 third-party/td/td/td/telegram/DialogLocation.h create mode 100644 third-party/td/td/td/telegram/DialogManager.cpp create mode 100644 third-party/td/td/td/telegram/DialogManager.h create mode 100644 third-party/td/td/td/telegram/DialogNotificationSettings.cpp create mode 100644 third-party/td/td/td/telegram/DialogNotificationSettings.h create mode 100644 third-party/td/td/td/telegram/DialogNotificationSettings.hpp create mode 100644 third-party/td/td/td/telegram/DialogParticipant.cpp create mode 100644 third-party/td/td/td/telegram/DialogParticipant.h create mode 100644 third-party/td/td/td/telegram/DialogParticipantFilter.cpp create mode 100644 third-party/td/td/td/telegram/DialogParticipantFilter.h create mode 100644 third-party/td/td/td/telegram/DialogParticipantManager.cpp create mode 100644 third-party/td/td/td/telegram/DialogParticipantManager.h create mode 100644 third-party/td/td/td/telegram/DialogSource.cpp create mode 100644 third-party/td/td/td/telegram/DialogSource.h create mode 100644 third-party/td/td/td/telegram/Dimensions.cpp create mode 100644 third-party/td/td/td/telegram/Dimensions.h create mode 100644 third-party/td/td/td/telegram/Dimensions.hpp create mode 100644 third-party/td/td/td/telegram/Document.cpp create mode 100644 third-party/td/td/td/telegram/Document.h create mode 100644 third-party/td/td/td/telegram/Document.hpp create mode 100644 third-party/td/td/td/telegram/DocumentsManager.cpp create mode 100644 third-party/td/td/td/telegram/DocumentsManager.h create mode 100644 third-party/td/td/td/telegram/DocumentsManager.hpp create mode 100644 third-party/td/td/td/telegram/DownloadManager.cpp create mode 100644 third-party/td/td/td/telegram/DownloadManager.h create mode 100644 third-party/td/td/td/telegram/DownloadManagerCallback.cpp create mode 100644 third-party/td/td/td/telegram/DownloadManagerCallback.h create mode 100644 third-party/td/td/td/telegram/DraftMessage.cpp create mode 100644 third-party/td/td/td/telegram/DraftMessage.h create mode 100644 third-party/td/td/td/telegram/DraftMessage.hpp create mode 100644 third-party/td/td/td/telegram/EmailVerification.cpp create mode 100644 third-party/td/td/td/telegram/EmailVerification.h create mode 100644 third-party/td/td/td/telegram/EmojiGroup.cpp create mode 100644 third-party/td/td/td/telegram/EmojiGroup.h create mode 100644 third-party/td/td/td/telegram/EmojiGroup.hpp create mode 100644 third-party/td/td/td/telegram/EmojiGroupType.cpp create mode 100644 third-party/td/td/td/telegram/EmojiGroupType.h create mode 100644 third-party/td/td/td/telegram/EmojiStatus.cpp create mode 100644 third-party/td/td/td/telegram/EmojiStatus.h create mode 100644 third-party/td/td/td/telegram/EncryptedFile.h create mode 100644 third-party/td/td/td/telegram/FactCheck.cpp create mode 100644 third-party/td/td/td/telegram/FactCheck.h create mode 100644 third-party/td/td/td/telegram/FactCheck.hpp create mode 100644 third-party/td/td/td/telegram/FileReferenceManager.cpp create mode 100644 third-party/td/td/td/telegram/FileReferenceManager.h create mode 100644 third-party/td/td/td/telegram/FileReferenceManager.hpp create mode 100644 third-party/td/td/td/telegram/FolderId.h create mode 100644 third-party/td/td/td/telegram/ForumTopic.cpp create mode 100644 third-party/td/td/td/telegram/ForumTopic.h create mode 100644 third-party/td/td/td/telegram/ForumTopic.hpp create mode 100644 third-party/td/td/td/telegram/ForumTopicEditedData.cpp create mode 100644 third-party/td/td/td/telegram/ForumTopicEditedData.h create mode 100644 third-party/td/td/td/telegram/ForumTopicEditedData.hpp create mode 100644 third-party/td/td/td/telegram/ForumTopicIcon.cpp create mode 100644 third-party/td/td/td/telegram/ForumTopicIcon.h create mode 100644 third-party/td/td/td/telegram/ForumTopicIcon.hpp create mode 100644 third-party/td/td/td/telegram/ForumTopicInfo.cpp create mode 100644 third-party/td/td/td/telegram/ForumTopicInfo.h create mode 100644 third-party/td/td/td/telegram/ForumTopicInfo.hpp create mode 100644 third-party/td/td/td/telegram/ForumTopicManager.cpp create mode 100644 third-party/td/td/td/telegram/ForumTopicManager.h create mode 100644 third-party/td/td/td/telegram/Game.cpp create mode 100644 third-party/td/td/td/telegram/Game.h create mode 100644 third-party/td/td/td/telegram/Game.hpp create mode 100644 third-party/td/td/td/telegram/GameManager.cpp create mode 100644 third-party/td/td/td/telegram/GameManager.h create mode 100644 third-party/td/td/td/telegram/GitCommitHash.cpp.in create mode 100644 third-party/td/td/td/telegram/GitCommitHash.h create mode 100644 third-party/td/td/td/telegram/GiveawayParameters.cpp create mode 100644 third-party/td/td/td/telegram/GiveawayParameters.h create mode 100644 third-party/td/td/td/telegram/GiveawayParameters.hpp create mode 100644 third-party/td/td/td/telegram/Global.cpp create mode 100644 third-party/td/td/td/telegram/Global.h create mode 100644 third-party/td/td/td/telegram/GlobalPrivacySettings.cpp create mode 100644 third-party/td/td/td/telegram/GlobalPrivacySettings.h create mode 100644 third-party/td/td/td/telegram/GroupCallId.h create mode 100644 third-party/td/td/td/telegram/GroupCallManager.cpp create mode 100644 third-party/td/td/td/telegram/GroupCallManager.h create mode 100644 third-party/td/td/td/telegram/GroupCallParticipant.cpp create mode 100644 third-party/td/td/td/telegram/GroupCallParticipant.h create mode 100644 third-party/td/td/td/telegram/GroupCallParticipantOrder.cpp create mode 100644 third-party/td/td/td/telegram/GroupCallParticipantOrder.h create mode 100644 third-party/td/td/td/telegram/GroupCallVideoPayload.cpp create mode 100644 third-party/td/td/td/telegram/GroupCallVideoPayload.h create mode 100644 third-party/td/td/td/telegram/HashtagHints.cpp create mode 100644 third-party/td/td/td/telegram/HashtagHints.h create mode 100644 third-party/td/td/td/telegram/InlineMessageManager.cpp create mode 100644 third-party/td/td/td/telegram/InlineMessageManager.h create mode 100644 third-party/td/td/td/telegram/InlineQueriesManager.cpp create mode 100644 third-party/td/td/td/telegram/InlineQueriesManager.h create mode 100644 third-party/td/td/td/telegram/InputBusinessChatLink.cpp create mode 100644 third-party/td/td/td/telegram/InputBusinessChatLink.h create mode 100644 third-party/td/td/td/telegram/InputDialogId.cpp create mode 100644 third-party/td/td/td/telegram/InputDialogId.h create mode 100644 third-party/td/td/td/telegram/InputGroupCallId.cpp create mode 100644 third-party/td/td/td/telegram/InputGroupCallId.h create mode 100644 third-party/td/td/td/telegram/InputInvoice.cpp create mode 100644 third-party/td/td/td/telegram/InputInvoice.h create mode 100644 third-party/td/td/td/telegram/InputInvoice.hpp create mode 100644 third-party/td/td/td/telegram/InputMessageText.cpp create mode 100644 third-party/td/td/td/telegram/InputMessageText.h create mode 100644 third-party/td/td/td/telegram/InputMessageText.hpp create mode 100644 third-party/td/td/td/telegram/JsonValue.cpp create mode 100644 third-party/td/td/td/telegram/JsonValue.h create mode 100644 third-party/td/td/td/telegram/LabeledPricePart.h create mode 100644 third-party/td/td/td/telegram/LanguagePackManager.cpp create mode 100644 third-party/td/td/td/telegram/LanguagePackManager.h create mode 100644 third-party/td/td/td/telegram/LinkManager.cpp create mode 100644 third-party/td/td/td/telegram/LinkManager.h create mode 100644 third-party/td/td/td/telegram/Location.cpp create mode 100644 third-party/td/td/td/telegram/Location.h create mode 100644 third-party/td/td/td/telegram/Log.cpp create mode 100644 third-party/td/td/td/telegram/Log.h create mode 100644 third-party/td/td/td/telegram/LogDotNet.cpp create mode 100644 third-party/td/td/td/telegram/Logging.cpp create mode 100644 third-party/td/td/td/telegram/Logging.h create mode 100644 third-party/td/td/td/telegram/MediaArea.cpp create mode 100644 third-party/td/td/td/telegram/MediaArea.h create mode 100644 third-party/td/td/td/telegram/MediaArea.hpp create mode 100644 third-party/td/td/td/telegram/MediaAreaCoordinates.cpp create mode 100644 third-party/td/td/td/telegram/MediaAreaCoordinates.h create mode 100644 third-party/td/td/td/telegram/MediaAreaCoordinates.hpp create mode 100644 third-party/td/td/td/telegram/MessageContent.cpp create mode 100644 third-party/td/td/td/telegram/MessageContent.h create mode 100644 third-party/td/td/td/telegram/MessageContentType.cpp create mode 100644 third-party/td/td/td/telegram/MessageContentType.h create mode 100644 third-party/td/td/td/telegram/MessageCopyOptions.h create mode 100644 third-party/td/td/td/telegram/MessageDb.cpp create mode 100644 third-party/td/td/td/telegram/MessageDb.h create mode 100644 third-party/td/td/td/telegram/MessageEffectId.h create mode 100644 third-party/td/td/td/telegram/MessageEntity.cpp create mode 100644 third-party/td/td/td/telegram/MessageEntity.h create mode 100644 third-party/td/td/td/telegram/MessageEntity.hpp create mode 100644 third-party/td/td/td/telegram/MessageExtendedMedia.cpp create mode 100644 third-party/td/td/td/telegram/MessageExtendedMedia.h create mode 100644 third-party/td/td/td/telegram/MessageExtendedMedia.hpp create mode 100644 third-party/td/td/td/telegram/MessageForwardInfo.cpp create mode 100644 third-party/td/td/td/telegram/MessageForwardInfo.h create mode 100644 third-party/td/td/td/telegram/MessageForwardInfo.hpp create mode 100644 third-party/td/td/td/telegram/MessageFullId.h create mode 100644 third-party/td/td/td/telegram/MessageId.cpp create mode 100644 third-party/td/td/td/telegram/MessageId.h create mode 100644 third-party/td/td/td/telegram/MessageImportManager.cpp create mode 100644 third-party/td/td/td/telegram/MessageImportManager.h create mode 100644 third-party/td/td/td/telegram/MessageInputReplyTo.cpp create mode 100644 third-party/td/td/td/telegram/MessageInputReplyTo.h create mode 100644 third-party/td/td/td/telegram/MessageInputReplyTo.hpp create mode 100644 third-party/td/td/td/telegram/MessageLinkInfo.h create mode 100644 third-party/td/td/td/telegram/MessageOrigin.cpp create mode 100644 third-party/td/td/td/telegram/MessageOrigin.h create mode 100644 third-party/td/td/td/telegram/MessageOrigin.hpp create mode 100644 third-party/td/td/td/telegram/MessageQueryManager.cpp create mode 100644 third-party/td/td/td/telegram/MessageQueryManager.h create mode 100644 third-party/td/td/td/telegram/MessageQuote.cpp create mode 100644 third-party/td/td/td/telegram/MessageQuote.h create mode 100644 third-party/td/td/td/telegram/MessageQuote.hpp create mode 100644 third-party/td/td/td/telegram/MessageReaction.cpp create mode 100644 third-party/td/td/td/telegram/MessageReaction.h create mode 100644 third-party/td/td/td/telegram/MessageReaction.hpp create mode 100644 third-party/td/td/td/telegram/MessageReactor.cpp create mode 100644 third-party/td/td/td/telegram/MessageReactor.h create mode 100644 third-party/td/td/td/telegram/MessageReactor.hpp create mode 100644 third-party/td/td/td/telegram/MessageReplyHeader.cpp create mode 100644 third-party/td/td/td/telegram/MessageReplyHeader.h create mode 100644 third-party/td/td/td/telegram/MessageReplyInfo.cpp create mode 100644 third-party/td/td/td/telegram/MessageReplyInfo.h create mode 100644 third-party/td/td/td/telegram/MessageReplyInfo.hpp create mode 100644 third-party/td/td/td/telegram/MessageSearchFilter.cpp create mode 100644 third-party/td/td/td/telegram/MessageSearchFilter.h create mode 100644 third-party/td/td/td/telegram/MessageSearchOffset.cpp create mode 100644 third-party/td/td/td/telegram/MessageSearchOffset.h create mode 100644 third-party/td/td/td/telegram/MessageSelfDestructType.cpp create mode 100644 third-party/td/td/td/telegram/MessageSelfDestructType.h create mode 100644 third-party/td/td/td/telegram/MessageSender.cpp create mode 100644 third-party/td/td/td/telegram/MessageSender.h create mode 100644 third-party/td/td/td/telegram/MessageSource.cpp create mode 100644 third-party/td/td/td/telegram/MessageSource.h create mode 100644 third-party/td/td/td/telegram/MessageThreadDb.cpp create mode 100644 third-party/td/td/td/telegram/MessageThreadDb.h create mode 100644 third-party/td/td/td/telegram/MessageThreadInfo.h create mode 100644 third-party/td/td/td/telegram/MessageTtl.cpp create mode 100644 third-party/td/td/td/telegram/MessageTtl.h create mode 100644 third-party/td/td/td/telegram/MessageViewer.cpp create mode 100644 third-party/td/td/td/telegram/MessageViewer.h create mode 100644 third-party/td/td/td/telegram/MessagesInfo.cpp create mode 100644 third-party/td/td/td/telegram/MessagesInfo.h create mode 100644 third-party/td/td/td/telegram/MessagesManager.cpp create mode 100644 third-party/td/td/td/telegram/MessagesManager.h create mode 100644 third-party/td/td/td/telegram/MinChannel.h create mode 100644 third-party/td/td/td/telegram/MinChannel.hpp create mode 100644 third-party/td/td/td/telegram/MissingInvitee.cpp create mode 100644 third-party/td/td/td/telegram/MissingInvitee.h create mode 100644 third-party/td/td/td/telegram/NewPasswordState.cpp create mode 100644 third-party/td/td/td/telegram/NewPasswordState.h create mode 100644 third-party/td/td/td/telegram/Notification.h create mode 100644 third-party/td/td/td/telegram/NotificationGroupFromDatabase.h create mode 100644 third-party/td/td/td/telegram/NotificationGroupId.h create mode 100644 third-party/td/td/td/telegram/NotificationGroupInfo.cpp create mode 100644 third-party/td/td/td/telegram/NotificationGroupInfo.h create mode 100644 third-party/td/td/td/telegram/NotificationGroupInfo.hpp create mode 100644 third-party/td/td/td/telegram/NotificationGroupKey.h create mode 100644 third-party/td/td/td/telegram/NotificationGroupType.cpp create mode 100644 third-party/td/td/td/telegram/NotificationGroupType.h create mode 100644 third-party/td/td/td/telegram/NotificationId.h create mode 100644 third-party/td/td/td/telegram/NotificationManager.cpp create mode 100644 third-party/td/td/td/telegram/NotificationManager.h create mode 100644 third-party/td/td/td/telegram/NotificationObjectFullId.h create mode 100644 third-party/td/td/td/telegram/NotificationObjectId.h create mode 100644 third-party/td/td/td/telegram/NotificationSettingsManager.cpp create mode 100644 third-party/td/td/td/telegram/NotificationSettingsManager.h create mode 100644 third-party/td/td/td/telegram/NotificationSettingsScope.cpp create mode 100644 third-party/td/td/td/telegram/NotificationSettingsScope.h create mode 100644 third-party/td/td/td/telegram/NotificationSound.cpp create mode 100644 third-party/td/td/td/telegram/NotificationSound.h create mode 100644 third-party/td/td/td/telegram/NotificationSoundType.h create mode 100644 third-party/td/td/td/telegram/NotificationType.cpp create mode 100644 third-party/td/td/td/telegram/NotificationType.h create mode 100644 third-party/td/td/td/telegram/OnlineManager.cpp create mode 100644 third-party/td/td/td/telegram/OnlineManager.h create mode 100644 third-party/td/td/td/telegram/OptionManager.cpp create mode 100644 third-party/td/td/td/telegram/OptionManager.h create mode 100644 third-party/td/td/td/telegram/OrderInfo.cpp create mode 100644 third-party/td/td/td/telegram/OrderInfo.h create mode 100644 third-party/td/td/td/telegram/OrderInfo.hpp create mode 100644 third-party/td/td/td/telegram/OrderedMessage.cpp create mode 100644 third-party/td/td/td/telegram/OrderedMessage.h create mode 100644 third-party/td/td/td/telegram/Outline.cpp create mode 100644 third-party/td/td/td/telegram/Outline.h create mode 100644 third-party/td/td/td/telegram/PaidReactionType.cpp create mode 100644 third-party/td/td/td/telegram/PaidReactionType.h create mode 100644 third-party/td/td/td/telegram/PaidReactionType.hpp create mode 100644 third-party/td/td/td/telegram/PasswordManager.cpp create mode 100644 third-party/td/td/td/telegram/PasswordManager.h create mode 100644 third-party/td/td/td/telegram/Payments.cpp create mode 100644 third-party/td/td/td/telegram/Payments.h create mode 100644 third-party/td/td/td/telegram/PeerColor.cpp create mode 100644 third-party/td/td/td/telegram/PeerColor.h create mode 100644 third-party/td/td/td/telegram/PeopleNearbyManager.cpp create mode 100644 third-party/td/td/td/telegram/PeopleNearbyManager.h create mode 100644 third-party/td/td/td/telegram/PhoneNumberManager.cpp create mode 100644 third-party/td/td/td/telegram/PhoneNumberManager.h create mode 100644 third-party/td/td/td/telegram/Photo.cpp create mode 100644 third-party/td/td/td/telegram/Photo.h create mode 100644 third-party/td/td/td/telegram/Photo.hpp create mode 100644 third-party/td/td/td/telegram/PhotoFormat.h create mode 100644 third-party/td/td/td/telegram/PhotoSize.cpp create mode 100644 third-party/td/td/td/telegram/PhotoSize.h create mode 100644 third-party/td/td/td/telegram/PhotoSize.hpp create mode 100644 third-party/td/td/td/telegram/PhotoSizeSource.cpp create mode 100644 third-party/td/td/td/telegram/PhotoSizeSource.h create mode 100644 third-party/td/td/td/telegram/PhotoSizeSource.hpp create mode 100644 third-party/td/td/td/telegram/PhotoSizeType.h create mode 100644 third-party/td/td/td/telegram/PhotoSizeType.hpp create mode 100644 third-party/td/td/td/telegram/PollId.h create mode 100644 third-party/td/td/td/telegram/PollId.hpp create mode 100644 third-party/td/td/td/telegram/PollManager.cpp create mode 100644 third-party/td/td/td/telegram/PollManager.h create mode 100644 third-party/td/td/td/telegram/PollManager.hpp create mode 100644 third-party/td/td/td/telegram/Premium.cpp create mode 100644 third-party/td/td/td/telegram/Premium.h create mode 100644 third-party/td/td/td/telegram/PremiumGiftOption.cpp create mode 100644 third-party/td/td/td/telegram/PremiumGiftOption.h create mode 100644 third-party/td/td/td/telegram/PremiumGiftOption.hpp create mode 100644 third-party/td/td/td/telegram/PrivacyManager.cpp create mode 100644 third-party/td/td/td/telegram/PrivacyManager.h create mode 100644 third-party/td/td/td/telegram/PromoDataManager.cpp create mode 100644 third-party/td/td/td/telegram/PromoDataManager.h create mode 100644 third-party/td/td/td/telegram/PtsManager.h create mode 100644 third-party/td/td/td/telegram/PublicDialogType.h create mode 100644 third-party/td/td/td/telegram/QueryCombiner.cpp create mode 100644 third-party/td/td/td/telegram/QueryCombiner.h create mode 100644 third-party/td/td/td/telegram/QueryMerger.cpp create mode 100644 third-party/td/td/td/telegram/QueryMerger.h create mode 100644 third-party/td/td/td/telegram/QuickReplyManager.cpp create mode 100644 third-party/td/td/td/telegram/QuickReplyManager.h create mode 100644 third-party/td/td/td/telegram/QuickReplyMessageFullId.h create mode 100644 third-party/td/td/td/telegram/QuickReplyShortcutId.h create mode 100644 third-party/td/td/td/telegram/ReactionListType.cpp create mode 100644 third-party/td/td/td/telegram/ReactionListType.h create mode 100644 third-party/td/td/td/telegram/ReactionManager.cpp create mode 100644 third-party/td/td/td/telegram/ReactionManager.h create mode 100644 third-party/td/td/td/telegram/ReactionManager.hpp create mode 100644 third-party/td/td/td/telegram/ReactionNotificationSettings.cpp create mode 100644 third-party/td/td/td/telegram/ReactionNotificationSettings.h create mode 100644 third-party/td/td/td/telegram/ReactionNotificationSettings.hpp create mode 100644 third-party/td/td/td/telegram/ReactionNotificationsFrom.cpp create mode 100644 third-party/td/td/td/telegram/ReactionNotificationsFrom.h create mode 100644 third-party/td/td/td/telegram/ReactionNotificationsFrom.hpp create mode 100644 third-party/td/td/td/telegram/ReactionType.cpp create mode 100644 third-party/td/td/td/telegram/ReactionType.h create mode 100644 third-party/td/td/td/telegram/ReactionType.hpp create mode 100644 third-party/td/td/td/telegram/ReactionUnavailabilityReason.h create mode 100644 third-party/td/td/td/telegram/RecentDialogList.cpp create mode 100644 third-party/td/td/td/telegram/RecentDialogList.h create mode 100644 third-party/td/td/td/telegram/ReferralProgramInfo.cpp create mode 100644 third-party/td/td/td/telegram/ReferralProgramInfo.h create mode 100644 third-party/td/td/td/telegram/ReferralProgramInfo.hpp create mode 100644 third-party/td/td/td/telegram/ReferralProgramManager.cpp create mode 100644 third-party/td/td/td/telegram/ReferralProgramManager.h create mode 100644 third-party/td/td/td/telegram/ReferralProgramParameters.cpp create mode 100644 third-party/td/td/td/telegram/ReferralProgramParameters.h create mode 100644 third-party/td/td/td/telegram/ReferralProgramParameters.hpp create mode 100644 third-party/td/td/td/telegram/ReferralProgramSortOrder.cpp create mode 100644 third-party/td/td/td/telegram/ReferralProgramSortOrder.h create mode 100644 third-party/td/td/td/telegram/RepliedMessageInfo.cpp create mode 100644 third-party/td/td/td/telegram/RepliedMessageInfo.h create mode 100644 third-party/td/td/td/telegram/RepliedMessageInfo.hpp create mode 100644 third-party/td/td/td/telegram/ReplyMarkup.cpp create mode 100644 third-party/td/td/td/telegram/ReplyMarkup.h create mode 100644 third-party/td/td/td/telegram/ReplyMarkup.hpp create mode 100644 third-party/td/td/td/telegram/ReportReason.cpp create mode 100644 third-party/td/td/td/telegram/ReportReason.h create mode 100644 third-party/td/td/td/telegram/RequestActor.h create mode 100644 third-party/td/td/td/telegram/RequestedDialogType.cpp create mode 100644 third-party/td/td/td/telegram/RequestedDialogType.h create mode 100644 third-party/td/td/td/telegram/RequestedDialogType.hpp create mode 100644 third-party/td/td/td/telegram/Requests.cpp create mode 100644 third-party/td/td/td/telegram/Requests.h create mode 100644 third-party/td/td/td/telegram/RestrictionReason.cpp create mode 100644 third-party/td/td/td/telegram/RestrictionReason.h create mode 100644 third-party/td/td/td/telegram/SavedMessagesManager.cpp create mode 100644 third-party/td/td/td/telegram/SavedMessagesManager.h create mode 100644 third-party/td/td/td/telegram/SavedMessagesTopicId.cpp create mode 100644 third-party/td/td/td/telegram/SavedMessagesTopicId.h create mode 100644 third-party/td/td/td/telegram/ScheduledServerMessageId.h create mode 100644 third-party/td/td/td/telegram/ScopeNotificationSettings.cpp create mode 100644 third-party/td/td/td/telegram/ScopeNotificationSettings.h create mode 100644 third-party/td/td/td/telegram/ScopeNotificationSettings.hpp create mode 100644 third-party/td/td/td/telegram/SecretChatActor.cpp create mode 100644 third-party/td/td/td/telegram/SecretChatActor.h create mode 100644 third-party/td/td/td/telegram/SecretChatDb.cpp create mode 100644 third-party/td/td/td/telegram/SecretChatDb.h create mode 100644 third-party/td/td/td/telegram/SecretChatId.h create mode 100644 third-party/td/td/td/telegram/SecretChatLayer.h create mode 100644 third-party/td/td/td/telegram/SecretChatsManager.cpp create mode 100644 third-party/td/td/td/telegram/SecretChatsManager.h create mode 100644 third-party/td/td/td/telegram/SecretInputMedia.cpp create mode 100644 third-party/td/td/td/telegram/SecretInputMedia.h create mode 100644 third-party/td/td/td/telegram/SecureManager.cpp create mode 100644 third-party/td/td/td/telegram/SecureManager.h create mode 100644 third-party/td/td/td/telegram/SecureStorage.cpp create mode 100644 third-party/td/td/td/telegram/SecureStorage.h create mode 100644 third-party/td/td/td/telegram/SecureValue.cpp create mode 100644 third-party/td/td/td/telegram/SecureValue.h create mode 100644 third-party/td/td/td/telegram/SecureValue.hpp create mode 100644 third-party/td/td/td/telegram/SendCodeHelper.cpp create mode 100644 third-party/td/td/td/telegram/SendCodeHelper.h create mode 100644 third-party/td/td/td/telegram/SendCodeHelper.hpp create mode 100644 third-party/td/td/td/telegram/SentEmailCode.cpp create mode 100644 third-party/td/td/td/telegram/SentEmailCode.h create mode 100644 third-party/td/td/td/telegram/SequenceDispatcher.cpp create mode 100644 third-party/td/td/td/telegram/SequenceDispatcher.h create mode 100644 third-party/td/td/td/telegram/ServerMessageId.h create mode 100644 third-party/td/td/td/telegram/SetWithPosition.h create mode 100644 third-party/td/td/td/telegram/SharedDialog.cpp create mode 100644 third-party/td/td/td/telegram/SharedDialog.h create mode 100644 third-party/td/td/td/telegram/SharedDialog.hpp create mode 100644 third-party/td/td/td/telegram/SpecialStickerSetType.cpp create mode 100644 third-party/td/td/td/telegram/SpecialStickerSetType.h create mode 100644 third-party/td/td/td/telegram/SponsoredMessageManager.cpp create mode 100644 third-party/td/td/td/telegram/SponsoredMessageManager.h create mode 100644 third-party/td/td/td/telegram/StarAmount.cpp create mode 100644 third-party/td/td/td/telegram/StarAmount.h create mode 100644 third-party/td/td/td/telegram/StarAmount.hpp create mode 100644 third-party/td/td/td/telegram/StarGift.cpp create mode 100644 third-party/td/td/td/telegram/StarGift.h create mode 100644 third-party/td/td/td/telegram/StarGift.hpp create mode 100644 third-party/td/td/td/telegram/StarGiftAttribute.cpp create mode 100644 third-party/td/td/td/telegram/StarGiftAttribute.h create mode 100644 third-party/td/td/td/telegram/StarGiftAttribute.hpp create mode 100644 third-party/td/td/td/telegram/StarGiftId.cpp create mode 100644 third-party/td/td/td/telegram/StarGiftId.h create mode 100644 third-party/td/td/td/telegram/StarGiftId.hpp create mode 100644 third-party/td/td/td/telegram/StarGiftManager.cpp create mode 100644 third-party/td/td/td/telegram/StarGiftManager.h create mode 100644 third-party/td/td/td/telegram/StarManager.cpp create mode 100644 third-party/td/td/td/telegram/StarManager.h create mode 100644 third-party/td/td/td/telegram/StarSubscription.cpp create mode 100644 third-party/td/td/td/telegram/StarSubscription.h create mode 100644 third-party/td/td/td/telegram/StarSubscriptionPricing.cpp create mode 100644 third-party/td/td/td/telegram/StarSubscriptionPricing.h create mode 100644 third-party/td/td/td/telegram/StarSubscriptionPricing.hpp create mode 100644 third-party/td/td/td/telegram/StateManager.cpp create mode 100644 third-party/td/td/td/telegram/StateManager.h create mode 100644 third-party/td/td/td/telegram/StatisticsManager.cpp create mode 100644 third-party/td/td/td/telegram/StatisticsManager.h create mode 100644 third-party/td/td/td/telegram/StickerFormat.cpp create mode 100644 third-party/td/td/td/telegram/StickerFormat.h create mode 100644 third-party/td/td/td/telegram/StickerListType.cpp create mode 100644 third-party/td/td/td/telegram/StickerListType.h create mode 100644 third-party/td/td/td/telegram/StickerMaskPosition.cpp create mode 100644 third-party/td/td/td/telegram/StickerMaskPosition.h create mode 100644 third-party/td/td/td/telegram/StickerMaskPosition.hpp create mode 100644 third-party/td/td/td/telegram/StickerPhotoSize.cpp create mode 100644 third-party/td/td/td/telegram/StickerPhotoSize.h create mode 100644 third-party/td/td/td/telegram/StickerPhotoSize.hpp create mode 100644 third-party/td/td/td/telegram/StickerSetId.cpp create mode 100644 third-party/td/td/td/telegram/StickerSetId.h create mode 100644 third-party/td/td/td/telegram/StickerType.cpp create mode 100644 third-party/td/td/td/telegram/StickerType.h create mode 100644 third-party/td/td/td/telegram/StickersManager.cpp create mode 100644 third-party/td/td/td/telegram/StickersManager.h create mode 100644 third-party/td/td/td/telegram/StickersManager.hpp create mode 100644 third-party/td/td/td/telegram/StorageManager.cpp create mode 100644 third-party/td/td/td/telegram/StorageManager.h create mode 100644 third-party/td/td/td/telegram/StoryContent.cpp create mode 100644 third-party/td/td/td/telegram/StoryContent.h create mode 100644 third-party/td/td/td/telegram/StoryContentType.cpp create mode 100644 third-party/td/td/td/telegram/StoryContentType.h create mode 100644 third-party/td/td/td/telegram/StoryDb.cpp create mode 100644 third-party/td/td/td/telegram/StoryDb.h create mode 100644 third-party/td/td/td/telegram/StoryForwardInfo.cpp create mode 100644 third-party/td/td/td/telegram/StoryForwardInfo.h create mode 100644 third-party/td/td/td/telegram/StoryForwardInfo.hpp create mode 100644 third-party/td/td/td/telegram/StoryFullId.h create mode 100644 third-party/td/td/td/telegram/StoryId.h create mode 100644 third-party/td/td/td/telegram/StoryInteractionInfo.cpp create mode 100644 third-party/td/td/td/telegram/StoryInteractionInfo.h create mode 100644 third-party/td/td/td/telegram/StoryInteractionInfo.hpp create mode 100644 third-party/td/td/td/telegram/StoryListId.h create mode 100644 third-party/td/td/td/telegram/StoryManager.cpp create mode 100644 third-party/td/td/td/telegram/StoryManager.h create mode 100644 third-party/td/td/td/telegram/StoryNotificationSettings.h create mode 100644 third-party/td/td/td/telegram/StoryStealthMode.cpp create mode 100644 third-party/td/td/td/telegram/StoryStealthMode.h create mode 100644 third-party/td/td/td/telegram/StoryStealthMode.hpp create mode 100644 third-party/td/td/td/telegram/StoryViewer.cpp create mode 100644 third-party/td/td/td/telegram/StoryViewer.h create mode 100644 third-party/td/td/td/telegram/SuggestedAction.cpp create mode 100644 third-party/td/td/td/telegram/SuggestedAction.h create mode 100644 third-party/td/td/td/telegram/SuggestedAction.hpp create mode 100644 third-party/td/td/td/telegram/SuggestedActionManager.cpp create mode 100644 third-party/td/td/td/telegram/SuggestedActionManager.h create mode 100644 third-party/td/td/td/telegram/Support.cpp create mode 100644 third-party/td/td/td/telegram/Support.h create mode 100644 third-party/td/td/td/telegram/SynchronousRequests.cpp create mode 100644 third-party/td/td/td/telegram/SynchronousRequests.h create mode 100644 third-party/td/td/td/telegram/TargetDialogTypes.cpp create mode 100644 third-party/td/td/td/telegram/TargetDialogTypes.h create mode 100644 third-party/td/td/td/telegram/Td.cpp create mode 100644 third-party/td/td/td/telegram/Td.h create mode 100644 third-party/td/td/td/telegram/TdCallback.h create mode 100644 third-party/td/td/td/telegram/TdDb.cpp create mode 100644 third-party/td/td/td/telegram/TdDb.h create mode 100644 third-party/td/td/td/telegram/TermsOfService.cpp create mode 100644 third-party/td/td/td/telegram/TermsOfService.h create mode 100644 third-party/td/td/td/telegram/TermsOfService.hpp create mode 100644 third-party/td/td/td/telegram/TermsOfServiceManager.cpp create mode 100644 third-party/td/td/td/telegram/TermsOfServiceManager.h create mode 100644 third-party/td/td/td/telegram/ThemeManager.cpp create mode 100644 third-party/td/td/td/telegram/ThemeManager.h create mode 100644 third-party/td/td/td/telegram/ThemeSettings.cpp create mode 100644 third-party/td/td/td/telegram/ThemeSettings.h create mode 100644 third-party/td/td/td/telegram/ThemeSettings.hpp create mode 100644 third-party/td/td/td/telegram/TimeZoneManager.cpp create mode 100644 third-party/td/td/td/telegram/TimeZoneManager.h create mode 100644 third-party/td/td/td/telegram/TopDialogCategory.cpp create mode 100644 third-party/td/td/td/telegram/TopDialogCategory.h create mode 100644 third-party/td/td/td/telegram/TopDialogManager.cpp create mode 100644 third-party/td/td/td/telegram/TopDialogManager.h create mode 100644 third-party/td/td/td/telegram/TranscriptionInfo.cpp create mode 100644 third-party/td/td/td/telegram/TranscriptionInfo.h create mode 100644 third-party/td/td/td/telegram/TranscriptionInfo.hpp create mode 100644 third-party/td/td/td/telegram/TranscriptionManager.cpp create mode 100644 third-party/td/td/td/telegram/TranscriptionManager.h create mode 100644 third-party/td/td/td/telegram/TranslationManager.cpp create mode 100644 third-party/td/td/td/telegram/TranslationManager.h create mode 100644 third-party/td/td/td/telegram/UniqueId.h create mode 100644 third-party/td/td/td/telegram/UpdatesManager.cpp create mode 100644 third-party/td/td/td/telegram/UpdatesManager.h create mode 100644 third-party/td/td/td/telegram/UserId.h create mode 100644 third-party/td/td/td/telegram/UserManager.cpp create mode 100644 third-party/td/td/td/telegram/UserManager.h create mode 100644 third-party/td/td/td/telegram/UserPrivacySetting.cpp create mode 100644 third-party/td/td/td/telegram/UserPrivacySetting.h create mode 100644 third-party/td/td/td/telegram/UserPrivacySettingRule.cpp create mode 100644 third-party/td/td/td/telegram/UserPrivacySettingRule.h create mode 100644 third-party/td/td/td/telegram/UserStarGift.cpp create mode 100644 third-party/td/td/td/telegram/UserStarGift.h create mode 100644 third-party/td/td/td/telegram/Usernames.cpp create mode 100644 third-party/td/td/td/telegram/Usernames.h create mode 100644 third-party/td/td/td/telegram/Venue.cpp create mode 100644 third-party/td/td/td/telegram/Venue.h create mode 100644 third-party/td/td/td/telegram/VerificationStatus.cpp create mode 100644 third-party/td/td/td/telegram/VerificationStatus.h create mode 100644 third-party/td/td/td/telegram/Version.h create mode 100644 third-party/td/td/td/telegram/VideoNotesManager.cpp create mode 100644 third-party/td/td/td/telegram/VideoNotesManager.h create mode 100644 third-party/td/td/td/telegram/VideoNotesManager.hpp create mode 100644 third-party/td/td/td/telegram/VideosManager.cpp create mode 100644 third-party/td/td/td/telegram/VideosManager.h create mode 100644 third-party/td/td/td/telegram/VideosManager.hpp create mode 100644 third-party/td/td/td/telegram/VoiceNotesManager.cpp create mode 100644 third-party/td/td/td/telegram/VoiceNotesManager.h create mode 100644 third-party/td/td/td/telegram/VoiceNotesManager.hpp create mode 100644 third-party/td/td/td/telegram/WebApp.cpp create mode 100644 third-party/td/td/td/telegram/WebApp.h create mode 100644 third-party/td/td/td/telegram/WebApp.hpp create mode 100644 third-party/td/td/td/telegram/WebAppManager.cpp create mode 100644 third-party/td/td/td/telegram/WebAppManager.h create mode 100644 third-party/td/td/td/telegram/WebAppOpenParameters.cpp create mode 100644 third-party/td/td/td/telegram/WebAppOpenParameters.h create mode 100644 third-party/td/td/td/telegram/WebPageBlock.cpp create mode 100644 third-party/td/td/td/telegram/WebPageBlock.h create mode 100644 third-party/td/td/td/telegram/WebPageId.h create mode 100644 third-party/td/td/td/telegram/WebPagesManager.cpp create mode 100644 third-party/td/td/td/telegram/WebPagesManager.h create mode 100644 third-party/td/td/td/telegram/cli.cpp create mode 100644 third-party/td/td/td/telegram/files/FileBitmask.cpp create mode 100644 third-party/td/td/td/telegram/files/FileBitmask.h create mode 100644 third-party/td/td/td/telegram/files/FileData.h create mode 100644 third-party/td/td/td/telegram/files/FileData.hpp create mode 100644 third-party/td/td/td/telegram/files/FileDb.cpp create mode 100644 third-party/td/td/td/telegram/files/FileDb.h create mode 100644 third-party/td/td/td/telegram/files/FileDbId.h create mode 100644 third-party/td/td/td/telegram/files/FileDownloadManager.cpp create mode 100644 third-party/td/td/td/telegram/files/FileDownloadManager.h create mode 100644 third-party/td/td/td/telegram/files/FileDownloader.cpp create mode 100644 third-party/td/td/td/telegram/files/FileDownloader.h create mode 100644 third-party/td/td/td/telegram/files/FileEncryptionKey.cpp create mode 100644 third-party/td/td/td/telegram/files/FileEncryptionKey.h create mode 100644 third-party/td/td/td/telegram/files/FileFromBytes.cpp create mode 100644 third-party/td/td/td/telegram/files/FileFromBytes.h create mode 100644 third-party/td/td/td/telegram/files/FileGcParameters.cpp create mode 100644 third-party/td/td/td/telegram/files/FileGcParameters.h create mode 100644 third-party/td/td/td/telegram/files/FileGcWorker.cpp create mode 100644 third-party/td/td/td/telegram/files/FileGcWorker.h create mode 100644 third-party/td/td/td/telegram/files/FileGenerateManager.cpp create mode 100644 third-party/td/td/td/telegram/files/FileGenerateManager.h create mode 100644 third-party/td/td/td/telegram/files/FileHashUploader.cpp create mode 100644 third-party/td/td/td/telegram/files/FileHashUploader.h create mode 100644 third-party/td/td/td/telegram/files/FileId.h create mode 100644 third-party/td/td/td/telegram/files/FileId.hpp create mode 100644 third-party/td/td/td/telegram/files/FileLoadManager.cpp create mode 100644 third-party/td/td/td/telegram/files/FileLoadManager.h create mode 100644 third-party/td/td/td/telegram/files/FileLoaderActor.h create mode 100644 third-party/td/td/td/telegram/files/FileLoaderUtils.cpp create mode 100644 third-party/td/td/td/telegram/files/FileLoaderUtils.h create mode 100644 third-party/td/td/td/telegram/files/FileLocation.h create mode 100644 third-party/td/td/td/telegram/files/FileLocation.hpp create mode 100644 third-party/td/td/td/telegram/files/FileManager.cpp create mode 100644 third-party/td/td/td/telegram/files/FileManager.h create mode 100644 third-party/td/td/td/telegram/files/FileManager.hpp create mode 100644 third-party/td/td/td/telegram/files/FileSourceId.h create mode 100644 third-party/td/td/td/telegram/files/FileSourceId.hpp create mode 100644 third-party/td/td/td/telegram/files/FileStats.cpp create mode 100644 third-party/td/td/td/telegram/files/FileStats.h create mode 100644 third-party/td/td/td/telegram/files/FileStatsWorker.cpp create mode 100644 third-party/td/td/td/telegram/files/FileStatsWorker.h create mode 100644 third-party/td/td/td/telegram/files/FileType.cpp create mode 100644 third-party/td/td/td/telegram/files/FileType.h create mode 100644 third-party/td/td/td/telegram/files/FileUploadId.h create mode 100644 third-party/td/td/td/telegram/files/FileUploadManager.cpp create mode 100644 third-party/td/td/td/telegram/files/FileUploadManager.h create mode 100644 third-party/td/td/td/telegram/files/FileUploader.cpp create mode 100644 third-party/td/td/td/telegram/files/FileUploader.h create mode 100644 third-party/td/td/td/telegram/files/PartsManager.cpp create mode 100644 third-party/td/td/td/telegram/files/PartsManager.h create mode 100644 third-party/td/td/td/telegram/files/ResourceManager.cpp create mode 100644 third-party/td/td/td/telegram/files/ResourceManager.h create mode 100644 third-party/td/td/td/telegram/files/ResourceState.cpp create mode 100644 third-party/td/td/td/telegram/files/ResourceState.h create mode 100644 third-party/td/td/td/telegram/logevent/LogEvent.h create mode 100644 third-party/td/td/td/telegram/logevent/LogEventHelper.cpp create mode 100644 third-party/td/td/td/telegram/logevent/LogEventHelper.h create mode 100644 third-party/td/td/td/telegram/logevent/SecretChatEvent.h create mode 100644 third-party/td/td/td/telegram/misc.cpp create mode 100644 third-party/td/td/td/telegram/misc.h create mode 100644 third-party/td/td/td/telegram/net/AuthDataShared.cpp create mode 100644 third-party/td/td/td/telegram/net/AuthDataShared.h create mode 100644 third-party/td/td/td/telegram/net/AuthKeyState.h create mode 100644 third-party/td/td/td/telegram/net/ConnectionCreator.cpp create mode 100644 third-party/td/td/td/telegram/net/ConnectionCreator.h create mode 100644 third-party/td/td/td/telegram/net/DcAuthManager.cpp create mode 100644 third-party/td/td/td/telegram/net/DcAuthManager.h create mode 100644 third-party/td/td/td/telegram/net/DcId.h create mode 100644 third-party/td/td/td/telegram/net/DcOptions.h create mode 100644 third-party/td/td/td/telegram/net/DcOptionsSet.cpp create mode 100644 third-party/td/td/td/telegram/net/DcOptionsSet.h create mode 100644 third-party/td/td/td/telegram/net/MtprotoHeader.cpp create mode 100644 third-party/td/td/td/telegram/net/MtprotoHeader.h create mode 100644 third-party/td/td/td/telegram/net/NetActor.cpp create mode 100644 third-party/td/td/td/telegram/net/NetActor.h create mode 100644 third-party/td/td/td/telegram/net/NetQuery.cpp create mode 100644 third-party/td/td/td/telegram/net/NetQuery.h create mode 100644 third-party/td/td/td/telegram/net/NetQueryCounter.h create mode 100644 third-party/td/td/td/telegram/net/NetQueryCreator.cpp create mode 100644 third-party/td/td/td/telegram/net/NetQueryCreator.h create mode 100644 third-party/td/td/td/telegram/net/NetQueryDelayer.cpp create mode 100644 third-party/td/td/td/telegram/net/NetQueryDelayer.h create mode 100644 third-party/td/td/td/telegram/net/NetQueryDispatcher.cpp create mode 100644 third-party/td/td/td/telegram/net/NetQueryDispatcher.h create mode 100644 third-party/td/td/td/telegram/net/NetQueryStats.cpp create mode 100644 third-party/td/td/td/telegram/net/NetQueryStats.h create mode 100644 third-party/td/td/td/telegram/net/NetQueryVerifier.cpp create mode 100644 third-party/td/td/td/telegram/net/NetQueryVerifier.h create mode 100644 third-party/td/td/td/telegram/net/NetStatsManager.cpp create mode 100644 third-party/td/td/td/telegram/net/NetStatsManager.h create mode 100644 third-party/td/td/td/telegram/net/NetType.h create mode 100644 third-party/td/td/td/telegram/net/Proxy.cpp create mode 100644 third-party/td/td/td/telegram/net/Proxy.h create mode 100644 third-party/td/td/td/telegram/net/PublicRsaKeySharedCdn.cpp create mode 100644 third-party/td/td/td/telegram/net/PublicRsaKeySharedCdn.h create mode 100644 third-party/td/td/td/telegram/net/PublicRsaKeySharedMain.cpp create mode 100644 third-party/td/td/td/telegram/net/PublicRsaKeySharedMain.h create mode 100644 third-party/td/td/td/telegram/net/PublicRsaKeyWatchdog.cpp create mode 100644 third-party/td/td/td/telegram/net/PublicRsaKeyWatchdog.h create mode 100644 third-party/td/td/td/telegram/net/Session.cpp create mode 100644 third-party/td/td/td/telegram/net/Session.h create mode 100644 third-party/td/td/td/telegram/net/SessionMultiProxy.cpp create mode 100644 third-party/td/td/td/telegram/net/SessionMultiProxy.h create mode 100644 third-party/td/td/td/telegram/net/SessionProxy.cpp create mode 100644 third-party/td/td/td/telegram/net/SessionProxy.h create mode 100644 third-party/td/td/td/telegram/net/TempAuthKeyWatchdog.h create mode 100644 third-party/td/td/td/telegram/td_c_client.cpp create mode 100644 third-party/td/td/td/telegram/td_c_client.h create mode 100644 third-party/td/td/td/telegram/td_emscripten.cpp create mode 100644 third-party/td/td/td/telegram/td_json_client.cpp create mode 100644 third-party/td/td/td/telegram/td_json_client.h create mode 100644 third-party/td/td/td/telegram/td_log.cpp create mode 100644 third-party/td/td/td/telegram/td_log.h create mode 100644 third-party/td/td/td/tl/TlObject.h create mode 100644 third-party/td/td/td/tl/tl_dotnet_object.h create mode 100644 third-party/td/td/td/tl/tl_jni_object.cpp create mode 100644 third-party/td/td/td/tl/tl_jni_object.h create mode 100644 third-party/td/td/td/tl/tl_json.h create mode 100644 third-party/td/td/td/tl/tl_object_parse.h create mode 100644 third-party/td/td/td/tl/tl_object_store.h create mode 100644 third-party/td/td/tdactor/CMakeLists.txt create mode 100644 third-party/td/td/tdactor/example/example.cpp create mode 100644 third-party/td/td/tdactor/td/actor/ConcurrentScheduler.cpp create mode 100644 third-party/td/td/tdactor/td/actor/ConcurrentScheduler.h create mode 100644 third-party/td/td/tdactor/td/actor/MultiPromise.cpp create mode 100644 third-party/td/td/tdactor/td/actor/MultiPromise.h create mode 100644 third-party/td/td/tdactor/td/actor/MultiTimeout.cpp create mode 100644 third-party/td/td/tdactor/td/actor/MultiTimeout.h create mode 100644 third-party/td/td/tdactor/td/actor/PromiseFuture.h create mode 100644 third-party/td/td/tdactor/td/actor/SchedulerLocalStorage.h create mode 100644 third-party/td/td/tdactor/td/actor/SignalSlot.h create mode 100644 third-party/td/td/tdactor/td/actor/SleepActor.h create mode 100644 third-party/td/td/tdactor/td/actor/Timeout.h create mode 100644 third-party/td/td/tdactor/td/actor/actor.h create mode 100644 third-party/td/td/tdactor/td/actor/impl/Actor-decl.h create mode 100644 third-party/td/td/tdactor/td/actor/impl/Actor.h create mode 100644 third-party/td/td/tdactor/td/actor/impl/ActorId-decl.h create mode 100644 third-party/td/td/tdactor/td/actor/impl/ActorId.h create mode 100644 third-party/td/td/tdactor/td/actor/impl/ActorInfo-decl.h create mode 100644 third-party/td/td/tdactor/td/actor/impl/ActorInfo.h create mode 100644 third-party/td/td/tdactor/td/actor/impl/Event.h create mode 100644 third-party/td/td/tdactor/td/actor/impl/EventFull-decl.h create mode 100644 third-party/td/td/tdactor/td/actor/impl/EventFull.h create mode 100644 third-party/td/td/tdactor/td/actor/impl/Scheduler-decl.h create mode 100644 third-party/td/td/tdactor/td/actor/impl/Scheduler.cpp create mode 100644 third-party/td/td/tdactor/td/actor/impl/Scheduler.h create mode 100644 third-party/td/td/tdactor/test/actors_bugs.cpp create mode 100644 third-party/td/td/tdactor/test/actors_main.cpp create mode 100644 third-party/td/td/tdactor/test/actors_simple.cpp create mode 100644 third-party/td/td/tdactor/test/actors_workers.cpp create mode 100644 third-party/td/td/tdclientjson_export_list create mode 100644 third-party/td/td/tddb/CMakeLists.txt create mode 100644 third-party/td/td/tddb/td/db/BinlogKeyValue.h create mode 100644 third-party/td/td/tddb/td/db/DbKey.h create mode 100644 third-party/td/td/tddb/td/db/KeyValueSyncInterface.h create mode 100644 third-party/td/td/tddb/td/db/SeqKeyValue.h create mode 100644 third-party/td/td/tddb/td/db/SqliteConnectionSafe.cpp create mode 100644 third-party/td/td/tddb/td/db/SqliteConnectionSafe.h create mode 100644 third-party/td/td/tddb/td/db/SqliteDb.cpp create mode 100644 third-party/td/td/tddb/td/db/SqliteDb.h create mode 100644 third-party/td/td/tddb/td/db/SqliteKeyValue.cpp create mode 100644 third-party/td/td/tddb/td/db/SqliteKeyValue.h create mode 100644 third-party/td/td/tddb/td/db/SqliteKeyValueAsync.cpp create mode 100644 third-party/td/td/tddb/td/db/SqliteKeyValueAsync.h create mode 100644 third-party/td/td/tddb/td/db/SqliteKeyValueSafe.h create mode 100644 third-party/td/td/tddb/td/db/SqliteStatement.cpp create mode 100644 third-party/td/td/tddb/td/db/SqliteStatement.h create mode 100644 third-party/td/td/tddb/td/db/TQueue.cpp create mode 100644 third-party/td/td/tddb/td/db/TQueue.h create mode 100644 third-party/td/td/tddb/td/db/TsSeqKeyValue.h create mode 100644 third-party/td/td/tddb/td/db/binlog/Binlog.cpp create mode 100644 third-party/td/td/tddb/td/db/binlog/Binlog.h create mode 100644 third-party/td/td/tddb/td/db/binlog/BinlogEvent.cpp create mode 100644 third-party/td/td/tddb/td/db/binlog/BinlogEvent.h create mode 100644 third-party/td/td/tddb/td/db/binlog/BinlogHelper.h create mode 100644 third-party/td/td/tddb/td/db/binlog/BinlogInterface.h create mode 100644 third-party/td/td/tddb/td/db/binlog/ConcurrentBinlog.cpp create mode 100644 third-party/td/td/tddb/td/db/binlog/ConcurrentBinlog.h create mode 100644 third-party/td/td/tddb/td/db/binlog/binlog_dump.cpp create mode 100644 third-party/td/td/tddb/td/db/binlog/detail/BinlogEventsBuffer.cpp create mode 100644 third-party/td/td/tddb/td/db/binlog/detail/BinlogEventsBuffer.h create mode 100644 third-party/td/td/tddb/td/db/binlog/detail/BinlogEventsProcessor.cpp create mode 100644 third-party/td/td/tddb/td/db/binlog/detail/BinlogEventsProcessor.h create mode 100644 third-party/td/td/tddb/td/db/detail/RawSqliteDb.cpp create mode 100644 third-party/td/td/tddb/td/db/detail/RawSqliteDb.h create mode 100644 third-party/td/td/tde2e/CMakeLists.txt create mode 100644 third-party/td/td/tde2e/td/e2e/BitString.cpp create mode 100644 third-party/td/td/tde2e/td/e2e/BitString.h create mode 100644 third-party/td/td/tde2e/td/e2e/Blockchain.cpp create mode 100644 third-party/td/td/tde2e/td/e2e/Blockchain.h create mode 100644 third-party/td/td/tde2e/td/e2e/Blockchain.md create mode 100644 third-party/td/td/tde2e/td/e2e/Call.cpp create mode 100644 third-party/td/td/tde2e/td/e2e/Call.h create mode 100644 third-party/td/td/tde2e/td/e2e/CheckSharedSecret.cpp create mode 100644 third-party/td/td/tde2e/td/e2e/CheckSharedSecret.h create mode 100644 third-party/td/td/tde2e/td/e2e/Container.h create mode 100644 third-party/td/td/tde2e/td/e2e/DecryptedKey.cpp create mode 100644 third-party/td/td/tde2e/td/e2e/DecryptedKey.h create mode 100644 third-party/td/td/tde2e/td/e2e/EncryptedKey.cpp create mode 100644 third-party/td/td/tde2e/td/e2e/EncryptedKey.h create mode 100644 third-party/td/td/tde2e/td/e2e/EncryptedStorage.cpp create mode 100644 third-party/td/td/tde2e/td/e2e/EncryptedStorage.h create mode 100644 third-party/td/td/tde2e/td/e2e/Encryption.md create mode 100644 third-party/td/td/tde2e/td/e2e/Keys.cpp create mode 100644 third-party/td/td/tde2e/td/e2e/Keys.h create mode 100644 third-party/td/td/tde2e/td/e2e/MessageEncryption.cpp create mode 100644 third-party/td/td/tde2e/td/e2e/MessageEncryption.h create mode 100644 third-party/td/td/tde2e/td/e2e/Mnemonic.cpp create mode 100644 third-party/td/td/tde2e/td/e2e/Mnemonic.h create mode 100644 third-party/td/td/tde2e/td/e2e/QRHandshake.cpp create mode 100644 third-party/td/td/tde2e/td/e2e/QRHandshake.h create mode 100644 third-party/td/td/tde2e/td/e2e/TestBlockchain.cpp create mode 100644 third-party/td/td/tde2e/td/e2e/TestBlockchain.h create mode 100644 third-party/td/td/tde2e/td/e2e/Trie.cpp create mode 100644 third-party/td/td/tde2e/td/e2e/Trie.h create mode 100644 third-party/td/td/tde2e/td/e2e/bip39.cpp create mode 100644 third-party/td/td/tde2e/td/e2e/bip39.h create mode 100644 third-party/td/td/tde2e/td/e2e/e2e_api.cpp create mode 100644 third-party/td/td/tde2e/td/e2e/e2e_api.h create mode 100644 third-party/td/td/tde2e/td/e2e/e2e_errors.h create mode 100644 third-party/td/td/tde2e/td/e2e/utils.h create mode 100644 third-party/td/td/tde2e/test/blockchain.cpp create mode 100644 third-party/td/td/tde2e/test/e2e.cpp create mode 100644 third-party/td/td/tdnet/CMakeLists.txt create mode 100644 third-party/td/td/tdnet/td/net/DarwinHttp.h create mode 100644 third-party/td/td/tdnet/td/net/DarwinHttp.mm create mode 100644 third-party/td/td/tdnet/td/net/GetHostByNameActor.cpp create mode 100644 third-party/td/td/tdnet/td/net/GetHostByNameActor.h create mode 100644 third-party/td/td/tdnet/td/net/HttpChunkedByteFlow.cpp create mode 100644 third-party/td/td/tdnet/td/net/HttpChunkedByteFlow.h create mode 100644 third-party/td/td/tdnet/td/net/HttpConnectionBase.cpp create mode 100644 third-party/td/td/tdnet/td/net/HttpConnectionBase.h create mode 100644 third-party/td/td/tdnet/td/net/HttpContentLengthByteFlow.cpp create mode 100644 third-party/td/td/tdnet/td/net/HttpContentLengthByteFlow.h create mode 100644 third-party/td/td/tdnet/td/net/HttpFile.cpp create mode 100644 third-party/td/td/tdnet/td/net/HttpFile.h create mode 100644 third-party/td/td/tdnet/td/net/HttpHeaderCreator.h create mode 100644 third-party/td/td/tdnet/td/net/HttpInboundConnection.cpp create mode 100644 third-party/td/td/tdnet/td/net/HttpInboundConnection.h create mode 100644 third-party/td/td/tdnet/td/net/HttpOutboundConnection.cpp create mode 100644 third-party/td/td/tdnet/td/net/HttpOutboundConnection.h create mode 100644 third-party/td/td/tdnet/td/net/HttpProxy.cpp create mode 100644 third-party/td/td/tdnet/td/net/HttpProxy.h create mode 100644 third-party/td/td/tdnet/td/net/HttpQuery.cpp create mode 100644 third-party/td/td/tdnet/td/net/HttpQuery.h create mode 100644 third-party/td/td/tdnet/td/net/HttpReader.cpp create mode 100644 third-party/td/td/tdnet/td/net/HttpReader.h create mode 100644 third-party/td/td/tdnet/td/net/NetStats.h create mode 100644 third-party/td/td/tdnet/td/net/Socks5.cpp create mode 100644 third-party/td/td/tdnet/td/net/Socks5.h create mode 100644 third-party/td/td/tdnet/td/net/SslCtx.cpp create mode 100644 third-party/td/td/tdnet/td/net/SslCtx.h create mode 100644 third-party/td/td/tdnet/td/net/SslStream.cpp create mode 100644 third-party/td/td/tdnet/td/net/SslStream.h create mode 100644 third-party/td/td/tdnet/td/net/TcpListener.cpp create mode 100644 third-party/td/td/tdnet/td/net/TcpListener.h create mode 100644 third-party/td/td/tdnet/td/net/TransparentProxy.cpp create mode 100644 third-party/td/td/tdnet/td/net/TransparentProxy.h create mode 100644 third-party/td/td/tdnet/td/net/Wget.cpp create mode 100644 third-party/td/td/tdnet/td/net/Wget.h create mode 100644 third-party/td/td/tdtl/CMakeLists.txt create mode 100644 third-party/td/td/tdtl/td/tl/tl_config.cpp create mode 100644 third-party/td/td/tdtl/td/tl/tl_config.h create mode 100644 third-party/td/td/tdtl/td/tl/tl_core.cpp create mode 100644 third-party/td/td/tdtl/td/tl/tl_core.h create mode 100644 third-party/td/td/tdtl/td/tl/tl_file_outputer.cpp create mode 100644 third-party/td/td/tdtl/td/tl/tl_file_outputer.h create mode 100644 third-party/td/td/tdtl/td/tl/tl_file_utils.cpp create mode 100644 third-party/td/td/tdtl/td/tl/tl_file_utils.h create mode 100644 third-party/td/td/tdtl/td/tl/tl_generate.cpp create mode 100644 third-party/td/td/tdtl/td/tl/tl_generate.h create mode 100644 third-party/td/td/tdtl/td/tl/tl_outputer.cpp create mode 100644 third-party/td/td/tdtl/td/tl/tl_outputer.h create mode 100644 third-party/td/td/tdtl/td/tl/tl_simple.h create mode 100644 third-party/td/td/tdtl/td/tl/tl_simple_parser.h create mode 100644 third-party/td/td/tdtl/td/tl/tl_string_outputer.cpp create mode 100644 third-party/td/td/tdtl/td/tl/tl_string_outputer.h create mode 100644 third-party/td/td/tdtl/td/tl/tl_writer.cpp create mode 100644 third-party/td/td/tdtl/td/tl/tl_writer.h create mode 100644 third-party/td/td/tdutils/CMakeLists.txt create mode 100644 third-party/td/td/tdutils/generate/CMakeLists.txt create mode 100644 third-party/td/td/tdutils/generate/generate_mime_types_gperf.cpp create mode 100644 third-party/td/td/tdutils/generate/mime_types.txt create mode 100644 third-party/td/td/tdutils/td/utils/AesCtrByteFlow.h create mode 100644 third-party/td/td/tdutils/td/utils/AsyncFileLog.cpp create mode 100644 third-party/td/td/tdutils/td/utils/AsyncFileLog.h create mode 100644 third-party/td/td/tdutils/td/utils/AtomicRead.h create mode 100644 third-party/td/td/tdutils/td/utils/BigNum.cpp create mode 100644 third-party/td/td/tdutils/td/utils/BigNum.h create mode 100644 third-party/td/td/tdutils/td/utils/BufferedFd.h create mode 100644 third-party/td/td/tdutils/td/utils/BufferedReader.h create mode 100644 third-party/td/td/tdutils/td/utils/BufferedUdp.cpp create mode 100644 third-party/td/td/tdutils/td/utils/BufferedUdp.h create mode 100644 third-party/td/td/tdutils/td/utils/ByteFlow.h create mode 100644 third-party/td/td/tdutils/td/utils/CancellationToken.h create mode 100644 third-party/td/td/tdutils/td/utils/ChainScheduler.h create mode 100644 third-party/td/td/tdutils/td/utils/ChangesProcessor.h create mode 100644 third-party/td/td/tdutils/td/utils/Closure.h create mode 100644 third-party/td/td/tdutils/td/utils/CombinedLog.h create mode 100644 third-party/td/td/tdutils/td/utils/ConcurrentHashTable.h create mode 100644 third-party/td/td/tdutils/td/utils/Container.h create mode 100644 third-party/td/td/tdutils/td/utils/Context.h create mode 100644 third-party/td/td/tdutils/td/utils/DecTree.h create mode 100644 third-party/td/td/tdutils/td/utils/Destructor.h create mode 100644 third-party/td/td/tdutils/td/utils/Ed25519.cpp create mode 100644 third-party/td/td/tdutils/td/utils/Ed25519.h create mode 100644 third-party/td/td/tdutils/td/utils/Enumerator.h create mode 100644 third-party/td/td/tdutils/td/utils/EpochBasedMemoryReclamation.h create mode 100644 third-party/td/td/tdutils/td/utils/ExitGuard.cpp create mode 100644 third-party/td/td/tdutils/td/utils/ExitGuard.h create mode 100644 third-party/td/td/tdutils/td/utils/FileLog.cpp create mode 100644 third-party/td/td/tdutils/td/utils/FileLog.h create mode 100644 third-party/td/td/tdutils/td/utils/FlatHashMap.h create mode 100644 third-party/td/td/tdutils/td/utils/FlatHashMapChunks.h create mode 100644 third-party/td/td/tdutils/td/utils/FlatHashSet.h create mode 100644 third-party/td/td/tdutils/td/utils/FlatHashTable.cpp create mode 100644 third-party/td/td/tdutils/td/utils/FlatHashTable.h create mode 100644 third-party/td/td/tdutils/td/utils/FloodControlFast.h create mode 100644 third-party/td/td/tdutils/td/utils/FloodControlGlobal.cpp create mode 100644 third-party/td/td/tdutils/td/utils/FloodControlGlobal.h create mode 100644 third-party/td/td/tdutils/td/utils/FloodControlStrict.h create mode 100644 third-party/td/td/tdutils/td/utils/Gzip.cpp create mode 100644 third-party/td/td/tdutils/td/utils/Gzip.h create mode 100644 third-party/td/td/tdutils/td/utils/GzipByteFlow.cpp create mode 100644 third-party/td/td/tdutils/td/utils/GzipByteFlow.h create mode 100644 third-party/td/td/tdutils/td/utils/Hash.h create mode 100644 third-party/td/td/tdutils/td/utils/HashMap.h create mode 100644 third-party/td/td/tdutils/td/utils/HashSet.h create mode 100644 third-party/td/td/tdutils/td/utils/HashTableUtils.h create mode 100644 third-party/td/td/tdutils/td/utils/HazardPointers.h create mode 100644 third-party/td/td/tdutils/td/utils/Heap.h create mode 100644 third-party/td/td/tdutils/td/utils/Hints.cpp create mode 100644 third-party/td/td/tdutils/td/utils/Hints.h create mode 100644 third-party/td/td/tdutils/td/utils/HttpDate.cpp create mode 100644 third-party/td/td/tdutils/td/utils/HttpDate.h create mode 100644 third-party/td/td/tdutils/td/utils/HttpUrl.cpp create mode 100644 third-party/td/td/tdutils/td/utils/HttpUrl.h create mode 100644 third-party/td/td/tdutils/td/utils/JsonBuilder.cpp create mode 100644 third-party/td/td/tdutils/td/utils/JsonBuilder.h create mode 100644 third-party/td/td/tdutils/td/utils/List.h create mode 100644 third-party/td/td/tdutils/td/utils/MapNode.h create mode 100644 third-party/td/td/tdutils/td/utils/MemoryLog.h create mode 100644 third-party/td/td/tdutils/td/utils/MimeType.cpp create mode 100644 third-party/td/td/tdutils/td/utils/MimeType.h create mode 100644 third-party/td/td/tdutils/td/utils/MovableValue.h create mode 100644 third-party/td/td/tdutils/td/utils/MpmcQueue.cpp create mode 100644 third-party/td/td/tdutils/td/utils/MpmcQueue.h create mode 100644 third-party/td/td/tdutils/td/utils/MpmcWaiter.h create mode 100644 third-party/td/td/tdutils/td/utils/MpscLinkQueue.h create mode 100644 third-party/td/td/tdutils/td/utils/MpscPollableQueue.h create mode 100644 third-party/td/td/tdutils/td/utils/Named.h create mode 100644 third-party/td/td/tdutils/td/utils/NullLog.h create mode 100644 third-party/td/td/tdutils/td/utils/ObjectPool.h create mode 100644 third-party/td/td/tdutils/td/utils/Observer.h create mode 100644 third-party/td/td/tdutils/td/utils/OptionParser.cpp create mode 100644 third-party/td/td/tdutils/td/utils/OptionParser.h create mode 100644 third-party/td/td/tdutils/td/utils/OrderedEventsProcessor.h create mode 100644 third-party/td/td/tdutils/td/utils/Parser.h create mode 100644 third-party/td/td/tdutils/td/utils/PathView.cpp create mode 100644 third-party/td/td/tdutils/td/utils/PathView.h create mode 100644 third-party/td/td/tdutils/td/utils/Promise.h create mode 100644 third-party/td/td/tdutils/td/utils/Random.cpp create mode 100644 third-party/td/td/tdutils/td/utils/Random.h create mode 100644 third-party/td/td/tdutils/td/utils/ScopeGuard.h create mode 100644 third-party/td/td/tdutils/td/utils/SetNode.h create mode 100644 third-party/td/td/tdutils/td/utils/SharedObjectPool.h create mode 100644 third-party/td/td/tdutils/td/utils/SharedSlice.cpp create mode 100644 third-party/td/td/tdutils/td/utils/SharedSlice.h create mode 100644 third-party/td/td/tdutils/td/utils/Slice-decl.h create mode 100644 third-party/td/td/tdutils/td/utils/Slice.cpp create mode 100644 third-party/td/td/tdutils/td/utils/Slice.h create mode 100644 third-party/td/td/tdutils/td/utils/SliceBuilder.h create mode 100644 third-party/td/td/tdutils/td/utils/Span.h create mode 100644 third-party/td/td/tdutils/td/utils/SpinLock.h create mode 100644 third-party/td/td/tdutils/td/utils/StackAllocator.cpp create mode 100644 third-party/td/td/tdutils/td/utils/StackAllocator.h create mode 100644 third-party/td/td/tdutils/td/utils/Status.cpp create mode 100644 third-party/td/td/tdutils/td/utils/Status.h create mode 100644 third-party/td/td/tdutils/td/utils/StealingQueue.h create mode 100644 third-party/td/td/tdutils/td/utils/Storer.h create mode 100644 third-party/td/td/tdutils/td/utils/StorerBase.h create mode 100644 third-party/td/td/tdutils/td/utils/StringBuilder.cpp create mode 100644 third-party/td/td/tdutils/td/utils/StringBuilder.h create mode 100644 third-party/td/td/tdutils/td/utils/ThreadLocalStorage.h create mode 100644 third-party/td/td/tdutils/td/utils/ThreadSafeCounter.h create mode 100644 third-party/td/td/tdutils/td/utils/Time.cpp create mode 100644 third-party/td/td/tdutils/td/utils/Time.h create mode 100644 third-party/td/td/tdutils/td/utils/TimedStat.h create mode 100644 third-party/td/td/tdutils/td/utils/Timer.cpp create mode 100644 third-party/td/td/tdutils/td/utils/Timer.h create mode 100644 third-party/td/td/tdutils/td/utils/TlDowncastHelper.h create mode 100644 third-party/td/td/tdutils/td/utils/TlStorerToString.h create mode 100644 third-party/td/td/tdutils/td/utils/TsCerr.cpp create mode 100644 third-party/td/td/tdutils/td/utils/TsCerr.h create mode 100644 third-party/td/td/tdutils/td/utils/TsFileLog.cpp create mode 100644 third-party/td/td/tdutils/td/utils/TsFileLog.h create mode 100644 third-party/td/td/tdutils/td/utils/TsList.h create mode 100644 third-party/td/td/tdutils/td/utils/TsLog.cpp create mode 100644 third-party/td/td/tdutils/td/utils/TsLog.h create mode 100644 third-party/td/td/tdutils/td/utils/UInt.h create mode 100644 third-party/td/td/tdutils/td/utils/Variant.h create mode 100644 third-party/td/td/tdutils/td/utils/VectorQueue.h create mode 100644 third-party/td/td/tdutils/td/utils/WaitFreeHashMap.h create mode 100644 third-party/td/td/tdutils/td/utils/WaitFreeHashSet.h create mode 100644 third-party/td/td/tdutils/td/utils/WaitFreeVector.h create mode 100644 third-party/td/td/tdutils/td/utils/algorithm.h create mode 100644 third-party/td/td/tdutils/td/utils/as.h create mode 100644 third-party/td/td/tdutils/td/utils/base64.cpp create mode 100644 third-party/td/td/tdutils/td/utils/base64.h create mode 100644 third-party/td/td/tdutils/td/utils/benchmark.h create mode 100644 third-party/td/td/tdutils/td/utils/bits.h create mode 100644 third-party/td/td/tdutils/td/utils/buffer.cpp create mode 100644 third-party/td/td/tdutils/td/utils/buffer.h create mode 100644 third-party/td/td/tdutils/td/utils/check.cpp create mode 100644 third-party/td/td/tdutils/td/utils/check.h create mode 100644 third-party/td/td/tdutils/td/utils/common.h create mode 100644 third-party/td/td/tdutils/td/utils/config.h.in create mode 100644 third-party/td/td/tdutils/td/utils/crypto.cpp create mode 100644 third-party/td/td/tdutils/td/utils/crypto.h create mode 100644 third-party/td/td/tdutils/td/utils/emoji.cpp create mode 100644 third-party/td/td/tdutils/td/utils/emoji.h create mode 100644 third-party/td/td/tdutils/td/utils/filesystem.cpp create mode 100644 third-party/td/td/tdutils/td/utils/filesystem.h create mode 100644 third-party/td/td/tdutils/td/utils/find_boundary.cpp create mode 100644 third-party/td/td/tdutils/td/utils/find_boundary.h create mode 100644 third-party/td/td/tdutils/td/utils/fixed_vector.h create mode 100644 third-party/td/td/tdutils/td/utils/format.h create mode 100644 third-party/td/td/tdutils/td/utils/int_types.h create mode 100644 third-party/td/td/tdutils/td/utils/invoke.h create mode 100644 third-party/td/td/tdutils/td/utils/logging.cpp create mode 100644 third-party/td/td/tdutils/td/utils/logging.h create mode 100644 third-party/td/td/tdutils/td/utils/misc.cpp create mode 100644 third-party/td/td/tdutils/td/utils/misc.h create mode 100644 third-party/td/td/tdutils/td/utils/optional.h create mode 100644 third-party/td/td/tdutils/td/utils/overloaded.h create mode 100644 third-party/td/td/tdutils/td/utils/port/Clocks.cpp create mode 100644 third-party/td/td/tdutils/td/utils/port/Clocks.h create mode 100644 third-party/td/td/tdutils/td/utils/port/CxCli.h create mode 100644 third-party/td/td/tdutils/td/utils/port/EventFd.h create mode 100644 third-party/td/td/tdutils/td/utils/port/EventFdBase.h create mode 100644 third-party/td/td/tdutils/td/utils/port/FileFd.cpp create mode 100644 third-party/td/td/tdutils/td/utils/port/FileFd.h create mode 100644 third-party/td/td/tdutils/td/utils/port/FromApp.h create mode 100644 third-party/td/td/tdutils/td/utils/port/IPAddress.cpp create mode 100644 third-party/td/td/tdutils/td/utils/port/IPAddress.h create mode 100644 third-party/td/td/tdutils/td/utils/port/IoSlice.h create mode 100644 third-party/td/td/tdutils/td/utils/port/MemoryMapping.cpp create mode 100644 third-party/td/td/tdutils/td/utils/port/MemoryMapping.h create mode 100644 third-party/td/td/tdutils/td/utils/port/Mutex.h create mode 100644 third-party/td/td/tdutils/td/utils/port/Poll.h create mode 100644 third-party/td/td/tdutils/td/utils/port/PollBase.h create mode 100644 third-party/td/td/tdutils/td/utils/port/PollFlags.cpp create mode 100644 third-party/td/td/tdutils/td/utils/port/PollFlags.h create mode 100644 third-party/td/td/tdutils/td/utils/port/RwMutex.h create mode 100644 third-party/td/td/tdutils/td/utils/port/ServerSocketFd.cpp create mode 100644 third-party/td/td/tdutils/td/utils/port/ServerSocketFd.h create mode 100644 third-party/td/td/tdutils/td/utils/port/SocketFd.cpp create mode 100644 third-party/td/td/tdutils/td/utils/port/SocketFd.h create mode 100644 third-party/td/td/tdutils/td/utils/port/Stat.cpp create mode 100644 third-party/td/td/tdutils/td/utils/port/Stat.h create mode 100644 third-party/td/td/tdutils/td/utils/port/StdStreams.cpp create mode 100644 third-party/td/td/tdutils/td/utils/port/StdStreams.h create mode 100644 third-party/td/td/tdutils/td/utils/port/UdpSocketFd.cpp create mode 100644 third-party/td/td/tdutils/td/utils/port/UdpSocketFd.h create mode 100644 third-party/td/td/tdutils/td/utils/port/config.h create mode 100644 third-party/td/td/tdutils/td/utils/port/detail/Epoll.cpp create mode 100644 third-party/td/td/tdutils/td/utils/port/detail/Epoll.h create mode 100644 third-party/td/td/tdutils/td/utils/port/detail/EventFdBsd.cpp create mode 100644 third-party/td/td/tdutils/td/utils/port/detail/EventFdBsd.h create mode 100644 third-party/td/td/tdutils/td/utils/port/detail/EventFdLinux.cpp create mode 100644 third-party/td/td/tdutils/td/utils/port/detail/EventFdLinux.h create mode 100644 third-party/td/td/tdutils/td/utils/port/detail/EventFdWindows.cpp create mode 100644 third-party/td/td/tdutils/td/utils/port/detail/EventFdWindows.h create mode 100644 third-party/td/td/tdutils/td/utils/port/detail/Iocp.cpp create mode 100644 third-party/td/td/tdutils/td/utils/port/detail/Iocp.h create mode 100644 third-party/td/td/tdutils/td/utils/port/detail/KQueue.cpp create mode 100644 third-party/td/td/tdutils/td/utils/port/detail/KQueue.h create mode 100644 third-party/td/td/tdutils/td/utils/port/detail/NativeFd.cpp create mode 100644 third-party/td/td/tdutils/td/utils/port/detail/NativeFd.h create mode 100644 third-party/td/td/tdutils/td/utils/port/detail/Poll.cpp create mode 100644 third-party/td/td/tdutils/td/utils/port/detail/Poll.h create mode 100644 third-party/td/td/tdutils/td/utils/port/detail/PollableFd.h create mode 100644 third-party/td/td/tdutils/td/utils/port/detail/Select.cpp create mode 100644 third-party/td/td/tdutils/td/utils/port/detail/Select.h create mode 100644 third-party/td/td/tdutils/td/utils/port/detail/ThreadIdGuard.cpp create mode 100644 third-party/td/td/tdutils/td/utils/port/detail/ThreadIdGuard.h create mode 100644 third-party/td/td/tdutils/td/utils/port/detail/ThreadPthread.cpp create mode 100644 third-party/td/td/tdutils/td/utils/port/detail/ThreadPthread.h create mode 100644 third-party/td/td/tdutils/td/utils/port/detail/ThreadStl.h create mode 100644 third-party/td/td/tdutils/td/utils/port/detail/WineventPoll.cpp create mode 100644 third-party/td/td/tdutils/td/utils/port/detail/WineventPoll.h create mode 100644 third-party/td/td/tdutils/td/utils/port/detail/skip_eintr.h create mode 100644 third-party/td/td/tdutils/td/utils/port/path.cpp create mode 100644 third-party/td/td/tdutils/td/utils/port/path.h create mode 100644 third-party/td/td/tdutils/td/utils/port/platform.cpp create mode 100644 third-party/td/td/tdutils/td/utils/port/platform.h create mode 100644 third-party/td/td/tdutils/td/utils/port/rlimit.cpp create mode 100644 third-party/td/td/tdutils/td/utils/port/rlimit.h create mode 100644 third-party/td/td/tdutils/td/utils/port/signals.cpp create mode 100644 third-party/td/td/tdutils/td/utils/port/signals.h create mode 100644 third-party/td/td/tdutils/td/utils/port/sleep.cpp create mode 100644 third-party/td/td/tdutils/td/utils/port/sleep.h create mode 100644 third-party/td/td/tdutils/td/utils/port/stacktrace.cpp create mode 100644 third-party/td/td/tdutils/td/utils/port/stacktrace.h create mode 100644 third-party/td/td/tdutils/td/utils/port/thread.h create mode 100644 third-party/td/td/tdutils/td/utils/port/thread_local.cpp create mode 100644 third-party/td/td/tdutils/td/utils/port/thread_local.h create mode 100644 third-party/td/td/tdutils/td/utils/port/uname.cpp create mode 100644 third-party/td/td/tdutils/td/utils/port/uname.h create mode 100644 third-party/td/td/tdutils/td/utils/port/user.cpp create mode 100644 third-party/td/td/tdutils/td/utils/port/user.h create mode 100644 third-party/td/td/tdutils/td/utils/port/wstring_convert.cpp create mode 100644 third-party/td/td/tdutils/td/utils/port/wstring_convert.h create mode 100644 third-party/td/td/tdutils/td/utils/queue.h create mode 100644 third-party/td/td/tdutils/td/utils/simple_tests.h create mode 100644 third-party/td/td/tdutils/td/utils/tests.cpp create mode 100644 third-party/td/td/tdutils/td/utils/tests.h create mode 100644 third-party/td/td/tdutils/td/utils/tl_helpers.h create mode 100644 third-party/td/td/tdutils/td/utils/tl_parsers.cpp create mode 100644 third-party/td/td/tdutils/td/utils/tl_parsers.h create mode 100644 third-party/td/td/tdutils/td/utils/tl_storers.h create mode 100644 third-party/td/td/tdutils/td/utils/translit.cpp create mode 100644 third-party/td/td/tdutils/td/utils/translit.h create mode 100644 third-party/td/td/tdutils/td/utils/type_traits.h create mode 100644 third-party/td/td/tdutils/td/utils/uint128.h create mode 100644 third-party/td/td/tdutils/td/utils/unicode.cpp create mode 100644 third-party/td/td/tdutils/td/utils/unicode.h create mode 100644 third-party/td/td/tdutils/td/utils/unique_ptr.h create mode 100644 third-party/td/td/tdutils/td/utils/unique_value_ptr.h create mode 100644 third-party/td/td/tdutils/td/utils/utf8.cpp create mode 100644 third-party/td/td/tdutils/td/utils/utf8.h create mode 100644 third-party/td/td/tdutils/test/ChainScheduler.cpp create mode 100644 third-party/td/td/tdutils/test/ConcurrentHashMap.cpp create mode 100644 third-party/td/td/tdutils/test/Enumerator.cpp create mode 100644 third-party/td/td/tdutils/test/EpochBasedMemoryReclamation.cpp create mode 100644 third-party/td/td/tdutils/test/HashSet.cpp create mode 100644 third-party/td/td/tdutils/test/HazardPointers.cpp create mode 100644 third-party/td/td/tdutils/test/HttpUrl.cpp create mode 100644 third-party/td/td/tdutils/test/List.cpp create mode 100644 third-party/td/td/tdutils/test/MpmcQueue.cpp create mode 100644 third-party/td/td/tdutils/test/MpmcWaiter.cpp create mode 100644 third-party/td/td/tdutils/test/MpscLinkQueue.cpp create mode 100644 third-party/td/td/tdutils/test/OptionParser.cpp create mode 100644 third-party/td/td/tdutils/test/OrderedEventsProcessor.cpp create mode 100644 third-party/td/td/tdutils/test/SharedObjectPool.cpp create mode 100644 third-party/td/td/tdutils/test/SharedSlice.cpp create mode 100644 third-party/td/td/tdutils/test/StealingQueue.cpp create mode 100644 third-party/td/td/tdutils/test/WaitFreeHashMap.cpp create mode 100644 third-party/td/td/tdutils/test/WaitFreeHashSet.cpp create mode 100644 third-party/td/td/tdutils/test/WaitFreeVector.cpp create mode 100644 third-party/td/td/tdutils/test/bitmask.cpp create mode 100644 third-party/td/td/tdutils/test/buffer.cpp create mode 100644 third-party/td/td/tdutils/test/crypto.cpp create mode 100644 third-party/td/td/tdutils/test/emoji.cpp create mode 100644 third-party/td/td/tdutils/test/filesystem.cpp create mode 100644 third-party/td/td/tdutils/test/gzip.cpp create mode 100644 third-party/td/td/tdutils/test/hashset_benchmark.cpp create mode 100644 third-party/td/td/tdutils/test/heap.cpp create mode 100644 third-party/td/td/tdutils/test/json.cpp create mode 100644 third-party/td/td/tdutils/test/log.cpp create mode 100644 third-party/td/td/tdutils/test/misc.cpp create mode 100644 third-party/td/td/tdutils/test/port.cpp create mode 100644 third-party/td/td/tdutils/test/pq.cpp create mode 100644 third-party/td/td/tdutils/test/variant.cpp create mode 100644 third-party/td/td/test/CMakeLists.txt create mode 100644 third-party/td/td/test/country_info.cpp create mode 100644 third-party/td/td/test/crypto.cpp create mode 100644 third-party/td/td/test/data.cpp create mode 100644 third-party/td/td/test/data.h create mode 100644 third-party/td/td/test/db.cpp create mode 100644 third-party/td/td/test/fuzz_url.cpp create mode 100644 third-party/td/td/test/http.cpp create mode 100644 third-party/td/td/test/link.cpp create mode 100644 third-party/td/td/test/main.cpp create mode 100644 third-party/td/td/test/message_entities.cpp create mode 100644 third-party/td/td/test/mtproto.cpp create mode 100644 third-party/td/td/test/online.cpp create mode 100644 third-party/td/td/test/poll.cpp create mode 100644 third-party/td/td/test/query_merger.cpp create mode 100644 third-party/td/td/test/secret.cpp create mode 100644 third-party/td/td/test/secure_storage.cpp create mode 100644 third-party/td/td/test/set_with_position.cpp create mode 100644 third-party/td/td/test/string_cleaning.cpp create mode 100644 third-party/td/td/test/tdclient.cpp create mode 100644 third-party/td/td/test/tqueue.cpp create mode 100755 third-party/td/td/update_version.sh diff --git a/Telegram/BroadcastUpload/BroadcastUploadExtension.swift b/Telegram/BroadcastUpload/BroadcastUploadExtension.swift index 684b766b84..c2df7cd928 100644 --- a/Telegram/BroadcastUpload/BroadcastUploadExtension.swift +++ b/Telegram/BroadcastUpload/BroadcastUploadExtension.swift @@ -166,11 +166,11 @@ private final class EmbeddedBroadcastUploadImpl: BroadcastUploadImpl { preferX264: false, logPath: "", onMutedSpeechActivityDetected: { _ in }, - encryptionKey: nil, isConference: false, audioIsActiveByDefault: true, isStream: false, - sharedAudioDevice: nil + sharedAudioDevice: nil, + encryptionContext: nil ) self.callContext = callContext self.joinPayloadDisposable = (callContext.joinPayload diff --git a/Telegram/NotificationService/BUILD b/Telegram/NotificationService/BUILD index d49222329e..6327b76b92 100644 --- a/Telegram/NotificationService/BUILD +++ b/Telegram/NotificationService/BUILD @@ -23,7 +23,6 @@ swift_library( "//submodules/PersistentStringHash:PersistentStringHash", "//submodules/Utils/RangeSet", "//submodules/Media/ConvertOpusToAAC", - ], visibility = [ "//visibility:public", diff --git a/Telegram/NotificationService/Sources/NotificationService.swift b/Telegram/NotificationService/Sources/NotificationService.swift index 83b91db681..a3612b311f 100644 --- a/Telegram/NotificationService/Sources/NotificationService.swift +++ b/Telegram/NotificationService/Sources/NotificationService.swift @@ -925,8 +925,14 @@ private final class NotificationServiceHandler { var peer: EnginePeer? var localContactId: String? } + + struct ConferenceCallData { + var id: Int64 + var updates: String + } var callData: CallData? + var conferenceCallData: ConferenceCallData? if let messageIdString = payloadJson["msg_id"] as? String { messageId = Int32(messageIdString) @@ -953,7 +959,24 @@ private final class NotificationServiceHandler { } } - if let callIdString = payloadJson["call_id"] as? String, let callAccessHashString = payloadJson["call_ah"] as? String, let peerId = peerId, let updates = payloadJson["updates"] as? String { + if let locKey = payloadJson["loc-key"] as? String, (locKey == "CONF_CALL_REQUEST" || locKey == "CONF_CALL_MISSED"), let callIdString = payloadJson["call_id"] as? String { + if let callId = Int64(callIdString) { + + if let updates = payloadJson["updates"] as? String { + var updateString = updates + updateString = updateString.replacingOccurrences(of: "-", with: "+") + updateString = updateString.replacingOccurrences(of: "_", with: "/") + while updateString.count % 4 != 0 { + updateString.append("=") + } + if let updateData = Data(base64Encoded: updateString) { + if let callUpdate = AccountStateManager.extractIncomingCallUpdate(data: updateData) { + let _ = callUpdate + } + } + } + } + } else if let callIdString = payloadJson["call_id"] as? String, let callAccessHashString = payloadJson["call_ah"] as? String, let peerId = peerId, let updates = payloadJson["updates"] as? String { if let callId = Int64(callIdString), let callAccessHash = Int64(callAccessHashString) { var peer: EnginePeer? diff --git a/submodules/AccountContext/Sources/AccountContext.swift b/submodules/AccountContext/Sources/AccountContext.swift index 97754b71aa..f74c0c5ab4 100644 --- a/submodules/AccountContext/Sources/AccountContext.swift +++ b/submodules/AccountContext/Sources/AccountContext.swift @@ -955,11 +955,17 @@ public enum JoinSubjectScreenMode { } public final class GroupCall { + public let id: Int64 + public let accessHash: Int64 + public let slug: String public let inviter: EnginePeer? public let members: [EnginePeer] public let totalMemberCount: Int - public init(inviter: EnginePeer?, members: [EnginePeer], totalMemberCount: Int) { + public init(id: Int64, accessHash: Int64, slug: String, inviter: EnginePeer?, members: [EnginePeer], totalMemberCount: Int) { + self.id = id + self.accessHash = accessHash + self.slug = slug self.inviter = inviter self.members = members self.totalMemberCount = totalMemberCount diff --git a/submodules/AccountContext/Sources/OpenChatMessage.swift b/submodules/AccountContext/Sources/OpenChatMessage.swift index ae43e03132..83c78a2f31 100644 --- a/submodules/AccountContext/Sources/OpenChatMessage.swift +++ b/submodules/AccountContext/Sources/OpenChatMessage.swift @@ -38,6 +38,7 @@ public final class OpenChatMessageParams { public let openUrl: (String) -> Void public let openPeer: (Peer, ChatControllerInteractionNavigateToPeer) -> Void public let callPeer: (PeerId, Bool) -> Void + public let openConferenceCall: (Message) -> Void public let enqueueMessage: (EnqueueMessage) -> Void public let sendSticker: ((FileMediaReference, UIView, CGRect) -> Bool)? public let sendEmoji: ((String, ChatTextInputTextCustomEmojiAttribute) -> Void)? @@ -70,6 +71,7 @@ public final class OpenChatMessageParams { openUrl: @escaping (String) -> Void, openPeer: @escaping (Peer, ChatControllerInteractionNavigateToPeer) -> Void, callPeer: @escaping (PeerId, Bool) -> Void, + openConferenceCall: @escaping (Message) -> Void, enqueueMessage: @escaping (EnqueueMessage) -> Void, sendSticker: ((FileMediaReference, UIView, CGRect) -> Bool)?, sendEmoji: ((String, ChatTextInputTextCustomEmojiAttribute) -> Void)?, @@ -100,6 +102,7 @@ public final class OpenChatMessageParams { self.openUrl = openUrl self.openPeer = openPeer self.callPeer = callPeer + self.openConferenceCall = openConferenceCall self.enqueueMessage = enqueueMessage self.sendSticker = sendSticker self.sendEmoji = sendEmoji diff --git a/submodules/AccountContext/Sources/PresentationCallManager.swift b/submodules/AccountContext/Sources/PresentationCallManager.swift index 4237e9bdcf..96e424ad00 100644 --- a/submodules/AccountContext/Sources/PresentationCallManager.swift +++ b/submodules/AccountContext/Sources/PresentationCallManager.swift @@ -422,6 +422,7 @@ public protocol PresentationGroupCall: AnyObject { var accountContext: AccountContext { get } var internalId: CallSessionInternalId { get } var peerId: EnginePeer.Id? { get } + var callId: Int64? { get } var hasVideo: Bool { get } var hasScreencast: Bool { get } @@ -431,7 +432,6 @@ public protocol PresentationGroupCall: AnyObject { var isStream: Bool { get } var isConference: Bool { get } var conferenceSource: CallSessionInternalId? { get } - var encryptionKeyValue: Data? { get } var audioOutputState: Signal<([AudioSessionOutput], AudioSessionOutput?), NoError> { get } @@ -447,6 +447,8 @@ public protocol PresentationGroupCall: AnyObject { var isMuted: Signal { get } var isNoiseSuppressionEnabled: Signal { get } + var e2eEncryptionKeyHash: Signal { get } + var memberEvents: Signal { get } var reconnectedAsEvents: Signal { get } @@ -548,6 +550,10 @@ public enum PresentationCurrentCall: Equatable { } } +public enum JoinConferenceCallMode { + case joining +} + public protocol PresentationCallManager: AnyObject { var currentCallSignal: Signal { get } var currentGroupCallSignal: Signal { get } @@ -557,4 +563,11 @@ public protocol PresentationCallManager: AnyObject { func requestCall(context: AccountContext, peerId: EnginePeer.Id, isVideo: Bool, endCurrentIfAny: Bool) -> RequestCallResult func joinGroupCall(context: AccountContext, peerId: EnginePeer.Id, invite: String?, requestJoinAsPeerId: ((@escaping (EnginePeer.Id?) -> Void) -> Void)?, initialCall: EngineGroupCallDescription, endCurrentIfAny: Bool) -> JoinGroupCallManagerResult func scheduleGroupCall(context: AccountContext, peerId: EnginePeer.Id, endCurrentIfAny: Bool, parentController: ViewController) -> RequestScheduleGroupCallResult + + func joinConferenceCall( + accountContext: AccountContext, + initialCall: EngineGroupCallDescription, + reference: InternalGroupCallReference, + mode: JoinConferenceCallMode + ) } diff --git a/submodules/BrowserUI/Sources/BrowserBookmarksScreen.swift b/submodules/BrowserUI/Sources/BrowserBookmarksScreen.swift index b5c225e0a1..98f9de65a5 100644 --- a/submodules/BrowserUI/Sources/BrowserBookmarksScreen.swift +++ b/submodules/BrowserUI/Sources/BrowserBookmarksScreen.swift @@ -99,6 +99,7 @@ public final class BrowserBookmarksScreen: ViewController { return nil }, presentGlobalOverlayController: { _, _ in }, callPeer: { _, _ in + }, openConferenceCall: { _ in }, longTap: { _, _ in }, openCheckoutOrReceipt: { _, _ in }, openSearch: { diff --git a/submodules/CallListUI/BUILD b/submodules/CallListUI/BUILD index 72112be5ed..20d6366802 100644 --- a/submodules/CallListUI/BUILD +++ b/submodules/CallListUI/BUILD @@ -33,6 +33,7 @@ swift_library( "//submodules/ItemListPeerActionItem", "//submodules/InviteLinksUI", "//submodules/UndoUI", + "//submodules/TelegramCallsUI", ], visibility = [ "//visibility:public", diff --git a/submodules/CallListUI/Sources/CallListController.swift b/submodules/CallListUI/Sources/CallListController.swift index e14df4f150..1ef59322df 100644 --- a/submodules/CallListUI/Sources/CallListController.swift +++ b/submodules/CallListUI/Sources/CallListController.swift @@ -15,6 +15,7 @@ import ContextUI import TelegramBaseController import InviteLinksUI import UndoUI +import TelegramCallsUI public enum CallListControllerMode { case tab @@ -206,25 +207,53 @@ public final class CallListController: TelegramBaseController { } private func createGroupCall() { - let controller = InviteLinkInviteController(context: self.context, updatedPresentationData: nil, mode: .groupCall(link: "https://t.me/call/+abbfbffll123", isRecentlyCreated: true), parentNavigationController: self.navigationController as? NavigationController, completed: { [weak self] result in + let _ = (self.context.engine.calls.createConferenceCall() + |> deliverOnMainQueue).startStandalone(next: { [weak self] call in guard let self else { return } - if let result { - switch result { - case .linkCopied: - //TODO:localize - let presentationData = self.context.sharedContext.currentPresentationData.with { $0 } - self.present(UndoOverlayController(presentationData: presentationData, content: .universal(animation: "anim_linkcopied", scale: 0.08, colors: ["info1.info1.stroke": UIColor.clear, "info2.info2.Fill": UIColor.clear], title: nil, text: "Call link copied.", customUndoText: "View Call", timeout: nil), elevatedLayout: false, animateInAsReplacement: false, action: { action in - if case .undo = action { - //TODO:release - } - return false - }), in: .window(.root)) + + let openCall: () -> Void = { [weak self] in + guard let self else { + return } + self.context.sharedContext.callManager?.joinConferenceCall( + accountContext: self.context, + initialCall: EngineGroupCallDescription( + id: call.callInfo.id, + accessHash: call.callInfo.accessHash, + title: call.callInfo.title, + scheduleTimestamp: nil, + subscribedToScheduled: false, + isStream: false + ), + reference: .id(id: call.callInfo.id, accessHash: call.callInfo.accessHash), + mode: .joining + ) } + + let controller = InviteLinkInviteController(context: self.context, updatedPresentationData: nil, mode: .groupCall(link: call.link, isRecentlyCreated: true), parentNavigationController: self.navigationController as? NavigationController, completed: { [weak self] result in + guard let self else { + return + } + if let result { + switch result { + case .linkCopied: + //TODO:localize + let presentationData = self.context.sharedContext.currentPresentationData.with { $0 } + self.present(UndoOverlayController(presentationData: presentationData, content: .universal(animation: "anim_linkcopied", scale: 0.08, colors: ["info1.info1.stroke": UIColor.clear, "info2.info2.Fill": UIColor.clear], title: nil, text: "Call link copied.", customUndoText: "View Call", timeout: nil), elevatedLayout: false, animateInAsReplacement: false, action: { action in + if case .undo = action { + openCall() + } + return false + }), in: .window(.root)) + case .openCall: + openCall() + } + } + }) + self.present(controller, in: .window(.root), with: nil) }) - self.present(controller, in: .window(.root), with: nil) } override public func loadDisplayNode() { diff --git a/submodules/ChatListUI/Sources/ChatContextMenus.swift b/submodules/ChatListUI/Sources/ChatContextMenus.swift index ad3346987d..e5cebaf1af 100644 --- a/submodules/ChatListUI/Sources/ChatContextMenus.swift +++ b/submodules/ChatListUI/Sources/ChatContextMenus.swift @@ -117,13 +117,6 @@ func chatContextMenuItems(context: AccountContext, peerId: PeerId, promoInfo: Ch switch search { case .recentPeers: break - /*items.append(.action(ContextMenuActionItem(text: strings.ChatList_Context_RemoveFromRecents, textColor: .destructive, icon: { theme in generateTintedImage(image: UIImage(bundleImageName: "Chat/Context Menu/Clear"), color: theme.contextMenu.destructiveColor) }, action: { _, f in - let _ = (context.engine.peers.removeRecentPeer(peerId: peerId) - |> deliverOnMainQueue).startStandalone(completed: { - f(.default) - }) - }))) - items.append(.separator)*/ case .recentSearch: items.append(.action(ContextMenuActionItem(text: strings.ChatList_Context_RemoveFromRecents, textColor: .destructive, icon: { theme in generateTintedImage(image: UIImage(bundleImageName: "Chat/Context Menu/Clear"), color: theme.contextMenu.destructiveColor) }, action: { _, f in let _ = (context.engine.peers.removeRecentlySearchedPeer(peerId: peerId) @@ -539,9 +532,30 @@ func chatContextMenuItems(context: AccountContext, peerId: PeerId, promoInfo: Ch } else if case let .search(search) = source { switch search { case .recentPeers, .search: + var addedSeparator = false + if case let .recentPeers(isTopPeer) = search { + if isTopPeer { + if !items.isEmpty { + if !addedSeparator { + items.append(.separator) + addedSeparator = true + } + } + items.append(.action(ContextMenuActionItem(text: strings.ChatList_Context_RemoveFromRecents, textColor: .destructive, icon: { theme in generateTintedImage(image: UIImage(bundleImageName: "Chat/Context Menu/Clear"), color: theme.contextMenu.destructiveColor) }, action: { _, f in + let _ = (context.engine.peers.removeRecentPeer(peerId: peerId) + |> deliverOnMainQueue).startStandalone(completed: { + f(.default) + }) + }))) + } + } + if peerGroup != nil { if !items.isEmpty { - items.append(.separator) + if !addedSeparator { + items.append(.separator) + addedSeparator = true + } } items.append(.action(ContextMenuActionItem(text: strings.ChatList_Context_Delete, textColor: .destructive, icon: { theme in generateTintedImage(image: UIImage(bundleImageName: "Chat/Context Menu/Delete"), color: theme.contextMenu.destructiveColor) }, action: { _, f in if let chatListController = chatListController { diff --git a/submodules/ChatListUI/Sources/ChatListSearchListPaneNode.swift b/submodules/ChatListUI/Sources/ChatListSearchListPaneNode.swift index 8ce513b4a2..96b92bf877 100644 --- a/submodules/ChatListUI/Sources/ChatListSearchListPaneNode.swift +++ b/submodules/ChatListUI/Sources/ChatListSearchListPaneNode.swift @@ -133,7 +133,7 @@ private enum ChatListRecentEntry: Comparable, Identifiable { peerSelected(peer, nil, false, .generic) }, peerContextAction: { peer, node, gesture, location in if let peerContextAction = peerContextAction { - peerContextAction(peer, .recentPeers, node, gesture, location) + peerContextAction(peer, .recentPeers(isTopPeer: true), node, gesture, location) } else { gesture?.cancel() } @@ -1409,7 +1409,7 @@ private struct ChatListSearchMessagesContext { } public enum ChatListSearchContextActionSource { - case recentPeers + case recentPeers(isTopPeer: Bool) case recentSearch case recentApps case popularApps @@ -3212,6 +3212,7 @@ final class ChatListSearchListPaneNode: ASDisplayNode, ChatListSearchPaneNode { interaction.openUrl(url) }, openPeer: { _, _ in }, callPeer: { _, _ in + }, openConferenceCall: { _ in }, enqueueMessage: { _ in }, sendSticker: nil, sendEmoji: nil, setupTemporaryHiddenMedia: { _, _, _ in }, chatAvatarHiddenMedia: { _, _ in }, gallerySource: .custom(messages: foundMessages |> map { message, a, b in return (message.map { $0._asMessage() }, a, b) @@ -3406,6 +3407,7 @@ final class ChatListSearchListPaneNode: ASDisplayNode, ChatListSearchPaneNode { interaction.openUrl(url) }, openPeer: { peer, navigation in }, callPeer: { _, _ in + }, openConferenceCall: { _ in }, enqueueMessage: { _ in }, sendSticker: nil, sendEmoji: nil, setupTemporaryHiddenMedia: { _, _, _ in }, chatAvatarHiddenMedia: { _, _ in }, playlistLocation: playlistLocation, gallerySource: gallerySource)) }, openMessageContextMenu: { [weak self] message, _, node, rect, gesture in diff --git a/submodules/ChatListUI/Sources/Node/ChatListItemStrings.swift b/submodules/ChatListUI/Sources/Node/ChatListItemStrings.swift index 0882e448cd..d989d3e693 100644 --- a/submodules/ChatListUI/Sources/Node/ChatListItemStrings.swift +++ b/submodules/ChatListUI/Sources/Node/ChatListItemStrings.swift @@ -298,6 +298,9 @@ public func chatListItemStrings(strings: PresentationStrings, nameDisplayOrder: messageText = invoice.title case let action as TelegramMediaAction: switch action.action { + case .conferenceCall: + //TODO:localize + messageText = "Group call" case let .phoneCall(_, discardReason, _, isVideo): hideAuthor = !isPeerGroup let incoming = message.flags.contains(.Incoming) diff --git a/submodules/InviteLinksUI/Sources/InviteLinkInviteController.swift b/submodules/InviteLinksUI/Sources/InviteLinkInviteController.swift index abd09c75b8..a93029cab4 100644 --- a/submodules/InviteLinksUI/Sources/InviteLinkInviteController.swift +++ b/submodules/InviteLinksUI/Sources/InviteLinkInviteController.swift @@ -162,6 +162,7 @@ public final class InviteLinkInviteController: ViewController { public enum CompletionResult { case linkCopied + case openCall } private var animatedIn = false diff --git a/submodules/InviteLinksUI/Sources/ItemListPermanentInviteLinkItem.swift b/submodules/InviteLinksUI/Sources/ItemListPermanentInviteLinkItem.swift index 26d2b819f7..6178e7cb6b 100644 --- a/submodules/InviteLinksUI/Sources/ItemListPermanentInviteLinkItem.swift +++ b/submodules/InviteLinksUI/Sources/ItemListPermanentInviteLinkItem.swift @@ -360,7 +360,7 @@ public class ItemListPermanentInviteLinkItemNode: ListViewItemNode, ItemListItem } ) //TODO:localize - let justCreatedCallTextAttributedString = parseMarkdownIntoAttributedString("Be the first to join the call and add people from there. [Open Call >]()", attributes: markdownAttributes).mutableCopy() as! NSMutableAttributedString + let justCreatedCallTextAttributedString = parseMarkdownIntoAttributedString("Be the first to join the call and add people from there. [Open Call >](open_call)", attributes: markdownAttributes).mutableCopy() as! NSMutableAttributedString if let range = justCreatedCallTextAttributedString.string.range(of: ">"), let chevronImage { justCreatedCallTextAttributedString.addAttribute(.attachment, value: chevronImage, range: NSRange(range, in: justCreatedCallTextAttributedString.string)) } @@ -575,6 +575,9 @@ public class ItemListPermanentInviteLinkItemNode: ListViewItemNode, ItemListItem if strongSelf.justCreatedCallTextNode !== justCreatedCallTextNode { strongSelf.justCreatedCallTextNode?.removeFromSupernode() strongSelf.justCreatedCallTextNode = justCreatedCallTextNode + + //justCreatedCallTextNode.highlig + strongSelf.addSubnode(justCreatedCallTextNode) } let justCreatedCallTextNodeFrame = CGRect(origin: CGPoint(x: floorToScreenPixels((params.width - justCreatedCallTextNodeLayout.0.size.width) / 2.0), y: shareButtonNode.frame.maxY + justCreatedCallTextSpacing), size: CGSize(width: justCreatedCallTextNodeLayout.0.size.width, height: justCreatedCallTextNodeLayout.0.size.height)) diff --git a/submodules/PeerInfoAvatarListNode/BUILD b/submodules/PeerInfoAvatarListNode/BUILD index 7ce9aba95e..64d85a6c6d 100644 --- a/submodules/PeerInfoAvatarListNode/BUILD +++ b/submodules/PeerInfoAvatarListNode/BUILD @@ -29,6 +29,7 @@ swift_library( "//submodules/ComponentFlow", "//submodules/Components/ComponentDisplayAdapters", "//submodules/TelegramUI/Components/Stories/StorySetIndicatorComponent", + "//submodules/Components/HierarchyTrackingLayer", ], visibility = [ "//visibility:public", diff --git a/submodules/PeerInfoAvatarListNode/Sources/PeerInfoAvatarListNode.swift b/submodules/PeerInfoAvatarListNode/Sources/PeerInfoAvatarListNode.swift index 34b97983cf..bb9b7a38b1 100644 --- a/submodules/PeerInfoAvatarListNode/Sources/PeerInfoAvatarListNode.swift +++ b/submodules/PeerInfoAvatarListNode/Sources/PeerInfoAvatarListNode.swift @@ -19,6 +19,7 @@ import AvatarVideoNode import ComponentFlow import ComponentDisplayAdapters import StorySetIndicatorComponent +import HierarchyTrackingLayer private class PeerInfoAvatarListLoadingStripNode: ASImageNode { private var currentInHierarchy = false @@ -224,6 +225,8 @@ public final class PeerInfoAvatarListItemNode: ASDisplayNode { private var progress: Signal? private var loadingProgressDisposable = MetaDisposable() private var hasProgress = false + + private let hierarchyTrackingLayer = HierarchyTrackingLayer() public let isReady = Promise() private var didSetReady: Bool = false @@ -312,6 +315,20 @@ public final class PeerInfoAvatarListItemNode: ASDisplayNode { }) } })) + + self.hierarchyTrackingLayer.isInHierarchyUpdated = { [weak self] value in + guard let self else { + return + } + if value { + self.setupVideoPlayback() + } else { + self.videoNode?.removeFromSupernode() + self.videoNode = nil + self.videoContent = nil + } + } + self.layer.addSublayer(self.hierarchyTrackingLayer) } deinit { @@ -364,6 +381,9 @@ public final class PeerInfoAvatarListItemNode: ASDisplayNode { guard let videoContent = self.videoContent, let isCentral = self.isCentral, isCentral, self.videoNode == nil else { return } + if !self.hierarchyTrackingLayer.isInHierarchy { + return + } let mediaManager = self.context.sharedContext.mediaManager let videoNode = UniversalVideoNode(context: self.context, postbox: self.context.account.postbox, audioSession: mediaManager.audioSession, manager: mediaManager.universalVideoManager, decoration: GalleryVideoDecoration(), content: videoContent, priority: .secondaryOverlay) diff --git a/submodules/SSignalKit/SwiftSignalKit/Source/Signal_Catch.swift b/submodules/SSignalKit/SwiftSignalKit/Source/Signal_Catch.swift index ef18ed3584..a97bdaf20e 100644 --- a/submodules/SSignalKit/SwiftSignalKit/Source/Signal_Catch.swift +++ b/submodules/SSignalKit/SwiftSignalKit/Source/Signal_Catch.swift @@ -219,3 +219,45 @@ public func restartIfError(_ signal: Signal) -> Signal { } } +public enum RestartOrMapErrorCondition { + case restart + case error(E) +} + +public func restartOrMapError(condition: @escaping (E) -> RestartOrMapErrorCondition) -> (Signal) -> Signal { + return { signal in + return Signal { subscriber in + let shouldRetry = Atomic(value: true) + let currentDisposable = MetaDisposable() + + let start = recursiveFunction { recurse in + let currentShouldRetry = shouldRetry.with { value in + return value + } + if currentShouldRetry { + let disposable = signal.start(next: { next in + subscriber.putNext(next) + }, error: { error in + switch condition(error) { + case .restart: + recurse() + case let .error(e2): + subscriber.putError(e2) + } + }, completed: { + let _ = shouldRetry.swap(false) + subscriber.putCompletion() + }) + currentDisposable.set(disposable) + } + } + + start() + + return ActionDisposable { + currentDisposable.dispose() + let _ = shouldRetry.swap(false) + } + } + } +} diff --git a/submodules/TelegramApi/Sources/Api0.swift b/submodules/TelegramApi/Sources/Api0.swift index f6a9bd1a6c..0a4b863d02 100644 --- a/submodules/TelegramApi/Sources/Api0.swift +++ b/submodules/TelegramApi/Sources/Api0.swift @@ -52,6 +52,7 @@ fileprivate let parsers: [Int32 : (BufferReader) -> Any?] = { dict[-1471112230] = { return $0.readInt32() } dict[570911930] = { return $0.readInt64() } dict[571523412] = { return $0.readDouble() } + dict[0x0929C32F] = { return parseInt256($0) } dict[-1255641564] = { return parseString($0) } dict[-1194283041] = { return Api.AccountDaysTTL.parse_accountDaysTTL($0) } dict[-653423106] = { return Api.AttachMenuBot.parse_attachMenuBot($0) } @@ -301,7 +302,7 @@ fileprivate let parsers: [Int32 : (BufferReader) -> Any?] = { dict[286776671] = { return Api.GeoPoint.parse_geoPointEmpty($0) } dict[-565420653] = { return Api.GeoPointAddress.parse_geoPointAddress($0) } dict[-29248689] = { return Api.GlobalPrivacySettings.parse_globalPrivacySettings($0) } - dict[-839330845] = { return Api.GroupCall.parse_groupCall($0) } + dict[-711498484] = { return Api.GroupCall.parse_groupCall($0) } dict[2004925620] = { return Api.GroupCall.parse_groupCallDiscarded($0) } dict[-341428482] = { return Api.GroupCallParticipant.parse_groupCallParticipant($0) } dict[1735736008] = { return Api.GroupCallParticipantVideo.parse_groupCallParticipantVideo($0) } @@ -381,6 +382,8 @@ fileprivate let parsers: [Int32 : (BufferReader) -> Any?] = { dict[1210199983] = { return Api.InputGeoPoint.parse_inputGeoPoint($0) } dict[-457104426] = { return Api.InputGeoPoint.parse_inputGeoPointEmpty($0) } dict[-659913713] = { return Api.InputGroupCall.parse_inputGroupCall($0) } + dict[-1945083841] = { return Api.InputGroupCall.parse_inputGroupCallInviteMessage($0) } + dict[-33127873] = { return Api.InputGroupCall.parse_inputGroupCallSlug($0) } dict[887591921] = { return Api.InputInvoice.parse_inputInvoiceChatInviteSubscription($0) } dict[-977967015] = { return Api.InputInvoice.parse_inputInvoiceMessage($0) } dict[-1734841331] = { return Api.InputInvoice.parse_inputInvoicePremiumGiftCode($0) } @@ -564,6 +567,7 @@ fileprivate let parsers: [Int32 : (BufferReader) -> Any?] = { dict[51520707] = { return Api.MessageAction.parse_messageActionChatJoinedByLink($0) } dict[-339958837] = { return Api.MessageAction.parse_messageActionChatJoinedByRequest($0) } dict[-519864430] = { return Api.MessageAction.parse_messageActionChatMigrateTo($0) } + dict[805187450] = { return Api.MessageAction.parse_messageActionConferenceCall($0) } dict[-202219658] = { return Api.MessageAction.parse_messageActionContactSignUp($0) } dict[-85549226] = { return Api.MessageAction.parse_messageActionCustomAction($0) } dict[-1230047312] = { return Api.MessageAction.parse_messageActionEmpty($0) } @@ -741,16 +745,16 @@ fileprivate let parsers: [Int32 : (BufferReader) -> Any?] = { dict[-1721619444] = { return Api.PeerNotifySettings.parse_peerNotifySettings($0) } dict[-193510921] = { return Api.PeerSettings.parse_peerSettings($0) } dict[-1707742823] = { return Api.PeerStories.parse_peerStories($0) } - dict[1000707084] = { return Api.PhoneCall.parse_phoneCall($0) } - dict[587035009] = { return Api.PhoneCall.parse_phoneCallAccepted($0) } - dict[-103656189] = { return Api.PhoneCall.parse_phoneCallDiscarded($0) } + dict[810769141] = { return Api.PhoneCall.parse_phoneCall($0) } + dict[912311057] = { return Api.PhoneCall.parse_phoneCallAccepted($0) } + dict[1355435489] = { return Api.PhoneCall.parse_phoneCallDiscarded($0) } dict[1399245077] = { return Api.PhoneCall.parse_phoneCallEmpty($0) } - dict[1161174115] = { return Api.PhoneCall.parse_phoneCallRequested($0) } - dict[-288085928] = { return Api.PhoneCall.parse_phoneCallWaiting($0) } - dict[-1344096199] = { return Api.PhoneCallDiscardReason.parse_phoneCallDiscardReasonAllowGroupCall($0) } + dict[347139340] = { return Api.PhoneCall.parse_phoneCallRequested($0) } + dict[-987599081] = { return Api.PhoneCall.parse_phoneCallWaiting($0) } dict[-84416311] = { return Api.PhoneCallDiscardReason.parse_phoneCallDiscardReasonBusy($0) } dict[-527056480] = { return Api.PhoneCallDiscardReason.parse_phoneCallDiscardReasonDisconnect($0) } dict[1471006352] = { return Api.PhoneCallDiscardReason.parse_phoneCallDiscardReasonHangup($0) } + dict[-1615072777] = { return Api.PhoneCallDiscardReason.parse_phoneCallDiscardReasonMigrateConferenceCall($0) } dict[-2048646399] = { return Api.PhoneCallDiscardReason.parse_phoneCallDiscardReasonMissed($0) } dict[-58224696] = { return Api.PhoneCallProtocol.parse_phoneCallProtocol($0) } dict[-1665063993] = { return Api.PhoneConnection.parse_phoneConnection($0) } @@ -1061,6 +1065,7 @@ fileprivate let parsers: [Int32 : (BufferReader) -> Any?] = { dict[422972864] = { return Api.Update.parse_updateFolderPeers($0) } dict[-2027964103] = { return Api.Update.parse_updateGeoLiveViewed($0) } dict[-1747565759] = { return Api.Update.parse_updateGroupCall($0) } + dict[-1535694705] = { return Api.Update.parse_updateGroupCallChainBlocks($0) } dict[192428418] = { return Api.Update.parse_updateGroupCallConnection($0) } dict[-219423922] = { return Api.Update.parse_updateGroupCallParticipants($0) } dict[1763610706] = { return Api.Update.parse_updateInlineBotCallbackQuery($0) } diff --git a/submodules/TelegramApi/Sources/Api10.swift b/submodules/TelegramApi/Sources/Api10.swift index cf09bd8bdc..4a461ad283 100644 --- a/submodules/TelegramApi/Sources/Api10.swift +++ b/submodules/TelegramApi/Sources/Api10.swift @@ -169,6 +169,8 @@ public extension Api { public extension Api { enum InputGroupCall: TypeConstructorDescription { case inputGroupCall(id: Int64, accessHash: Int64) + case inputGroupCallInviteMessage(msgId: Int32) + case inputGroupCallSlug(slug: String) public func serialize(_ buffer: Buffer, _ boxed: Swift.Bool) { switch self { @@ -179,6 +181,18 @@ public extension Api { serializeInt64(id, buffer: buffer, boxed: false) serializeInt64(accessHash, buffer: buffer, boxed: false) break + case .inputGroupCallInviteMessage(let msgId): + if boxed { + buffer.appendInt32(-1945083841) + } + serializeInt32(msgId, buffer: buffer, boxed: false) + break + case .inputGroupCallSlug(let slug): + if boxed { + buffer.appendInt32(-33127873) + } + serializeString(slug, buffer: buffer, boxed: false) + break } } @@ -186,6 +200,10 @@ public extension Api { switch self { case .inputGroupCall(let id, let accessHash): return ("inputGroupCall", [("id", id as Any), ("accessHash", accessHash as Any)]) + case .inputGroupCallInviteMessage(let msgId): + return ("inputGroupCallInviteMessage", [("msgId", msgId as Any)]) + case .inputGroupCallSlug(let slug): + return ("inputGroupCallSlug", [("slug", slug as Any)]) } } @@ -203,6 +221,28 @@ public extension Api { return nil } } + public static func parse_inputGroupCallInviteMessage(_ reader: BufferReader) -> InputGroupCall? { + var _1: Int32? + _1 = reader.readInt32() + let _c1 = _1 != nil + if _c1 { + return Api.InputGroupCall.inputGroupCallInviteMessage(msgId: _1!) + } + else { + return nil + } + } + public static func parse_inputGroupCallSlug(_ reader: BufferReader) -> InputGroupCall? { + var _1: String? + _1 = parseString(reader) + let _c1 = _1 != nil + if _c1 { + return Api.InputGroupCall.inputGroupCallSlug(slug: _1!) + } + else { + return nil + } + } } } diff --git a/submodules/TelegramApi/Sources/Api15.swift b/submodules/TelegramApi/Sources/Api15.swift index 63df242808..4827256474 100644 --- a/submodules/TelegramApi/Sources/Api15.swift +++ b/submodules/TelegramApi/Sources/Api15.swift @@ -349,6 +349,7 @@ public extension Api { case messageActionChatJoinedByLink(inviterId: Int64) case messageActionChatJoinedByRequest case messageActionChatMigrateTo(channelId: Int64) + case messageActionConferenceCall(flags: Int32, callId: Int64, duration: Int32?, otherParticipants: [Api.Peer]?) case messageActionContactSignUp case messageActionCustomAction(message: String) case messageActionEmpty @@ -479,6 +480,19 @@ public extension Api { } serializeInt64(channelId, buffer: buffer, boxed: false) break + case .messageActionConferenceCall(let flags, let callId, let duration, let otherParticipants): + if boxed { + buffer.appendInt32(805187450) + } + serializeInt32(flags, buffer: buffer, boxed: false) + serializeInt64(callId, buffer: buffer, boxed: false) + if Int(flags) & Int(1 << 2) != 0 {serializeInt32(duration!, buffer: buffer, boxed: false)} + if Int(flags) & Int(1 << 3) != 0 {buffer.appendInt32(481674261) + buffer.appendInt32(Int32(otherParticipants!.count)) + for item in otherParticipants! { + item.serialize(buffer, true) + }} + break case .messageActionContactSignUp: if boxed { buffer.appendInt32(-202219658) @@ -834,6 +848,8 @@ public extension Api { return ("messageActionChatJoinedByRequest", []) case .messageActionChatMigrateTo(let channelId): return ("messageActionChatMigrateTo", [("channelId", channelId as Any)]) + case .messageActionConferenceCall(let flags, let callId, let duration, let otherParticipants): + return ("messageActionConferenceCall", [("flags", flags as Any), ("callId", callId as Any), ("duration", duration as Any), ("otherParticipants", otherParticipants as Any)]) case .messageActionContactSignUp: return ("messageActionContactSignUp", []) case .messageActionCustomAction(let message): @@ -1058,6 +1074,28 @@ public extension Api { return nil } } + public static func parse_messageActionConferenceCall(_ reader: BufferReader) -> MessageAction? { + var _1: Int32? + _1 = reader.readInt32() + var _2: Int64? + _2 = reader.readInt64() + var _3: Int32? + if Int(_1!) & Int(1 << 2) != 0 {_3 = reader.readInt32() } + var _4: [Api.Peer]? + if Int(_1!) & Int(1 << 3) != 0 {if let _ = reader.readInt32() { + _4 = Api.parseVector(reader, elementSignature: 0, elementType: Api.Peer.self) + } } + let _c1 = _1 != nil + let _c2 = _2 != nil + let _c3 = (Int(_1!) & Int(1 << 2) == 0) || _3 != nil + let _c4 = (Int(_1!) & Int(1 << 3) == 0) || _4 != nil + if _c1 && _c2 && _c3 && _c4 { + return Api.MessageAction.messageActionConferenceCall(flags: _1!, callId: _2!, duration: _3, otherParticipants: _4) + } + else { + return nil + } + } public static func parse_messageActionContactSignUp(_ reader: BufferReader) -> MessageAction? { return Api.MessageAction.messageActionContactSignUp } diff --git a/submodules/TelegramApi/Sources/Api19.swift b/submodules/TelegramApi/Sources/Api19.swift index ec1b5de44c..ae28f75139 100644 --- a/submodules/TelegramApi/Sources/Api19.swift +++ b/submodules/TelegramApi/Sources/Api19.swift @@ -1092,18 +1092,18 @@ public extension Api { } public extension Api { enum PhoneCall: TypeConstructorDescription { - case phoneCall(flags: Int32, id: Int64, accessHash: Int64, date: Int32, adminId: Int64, participantId: Int64, gAOrB: Buffer, keyFingerprint: Int64, protocol: Api.PhoneCallProtocol, connections: [Api.PhoneConnection], startDate: Int32, customParameters: Api.DataJSON?, conferenceCall: Api.InputGroupCall?) - case phoneCallAccepted(flags: Int32, id: Int64, accessHash: Int64, date: Int32, adminId: Int64, participantId: Int64, gB: Buffer, protocol: Api.PhoneCallProtocol, conferenceCall: Api.InputGroupCall?) - case phoneCallDiscarded(flags: Int32, id: Int64, reason: Api.PhoneCallDiscardReason?, duration: Int32?, conferenceCall: Api.InputGroupCall?) + case phoneCall(flags: Int32, id: Int64, accessHash: Int64, date: Int32, adminId: Int64, participantId: Int64, gAOrB: Buffer, keyFingerprint: Int64, protocol: Api.PhoneCallProtocol, connections: [Api.PhoneConnection], startDate: Int32, customParameters: Api.DataJSON?) + case phoneCallAccepted(flags: Int32, id: Int64, accessHash: Int64, date: Int32, adminId: Int64, participantId: Int64, gB: Buffer, protocol: Api.PhoneCallProtocol) + case phoneCallDiscarded(flags: Int32, id: Int64, reason: Api.PhoneCallDiscardReason?, duration: Int32?) case phoneCallEmpty(id: Int64) - case phoneCallRequested(flags: Int32, id: Int64, accessHash: Int64, date: Int32, adminId: Int64, participantId: Int64, gAHash: Buffer, protocol: Api.PhoneCallProtocol, conferenceCall: Api.InputGroupCall?) - case phoneCallWaiting(flags: Int32, id: Int64, accessHash: Int64, date: Int32, adminId: Int64, participantId: Int64, protocol: Api.PhoneCallProtocol, receiveDate: Int32?, conferenceCall: Api.InputGroupCall?) + case phoneCallRequested(flags: Int32, id: Int64, accessHash: Int64, date: Int32, adminId: Int64, participantId: Int64, gAHash: Buffer, protocol: Api.PhoneCallProtocol) + case phoneCallWaiting(flags: Int32, id: Int64, accessHash: Int64, date: Int32, adminId: Int64, participantId: Int64, protocol: Api.PhoneCallProtocol, receiveDate: Int32?) public func serialize(_ buffer: Buffer, _ boxed: Swift.Bool) { switch self { - case .phoneCall(let flags, let id, let accessHash, let date, let adminId, let participantId, let gAOrB, let keyFingerprint, let `protocol`, let connections, let startDate, let customParameters, let conferenceCall): + case .phoneCall(let flags, let id, let accessHash, let date, let adminId, let participantId, let gAOrB, let keyFingerprint, let `protocol`, let connections, let startDate, let customParameters): if boxed { - buffer.appendInt32(1000707084) + buffer.appendInt32(810769141) } serializeInt32(flags, buffer: buffer, boxed: false) serializeInt64(id, buffer: buffer, boxed: false) @@ -1121,11 +1121,10 @@ public extension Api { } serializeInt32(startDate, buffer: buffer, boxed: false) if Int(flags) & Int(1 << 7) != 0 {customParameters!.serialize(buffer, true)} - if Int(flags) & Int(1 << 8) != 0 {conferenceCall!.serialize(buffer, true)} break - case .phoneCallAccepted(let flags, let id, let accessHash, let date, let adminId, let participantId, let gB, let `protocol`, let conferenceCall): + case .phoneCallAccepted(let flags, let id, let accessHash, let date, let adminId, let participantId, let gB, let `protocol`): if boxed { - buffer.appendInt32(587035009) + buffer.appendInt32(912311057) } serializeInt32(flags, buffer: buffer, boxed: false) serializeInt64(id, buffer: buffer, boxed: false) @@ -1135,17 +1134,15 @@ public extension Api { serializeInt64(participantId, buffer: buffer, boxed: false) serializeBytes(gB, buffer: buffer, boxed: false) `protocol`.serialize(buffer, true) - if Int(flags) & Int(1 << 8) != 0 {conferenceCall!.serialize(buffer, true)} break - case .phoneCallDiscarded(let flags, let id, let reason, let duration, let conferenceCall): + case .phoneCallDiscarded(let flags, let id, let reason, let duration): if boxed { - buffer.appendInt32(-103656189) + buffer.appendInt32(1355435489) } serializeInt32(flags, buffer: buffer, boxed: false) serializeInt64(id, buffer: buffer, boxed: false) if Int(flags) & Int(1 << 0) != 0 {reason!.serialize(buffer, true)} if Int(flags) & Int(1 << 1) != 0 {serializeInt32(duration!, buffer: buffer, boxed: false)} - if Int(flags) & Int(1 << 8) != 0 {conferenceCall!.serialize(buffer, true)} break case .phoneCallEmpty(let id): if boxed { @@ -1153,9 +1150,9 @@ public extension Api { } serializeInt64(id, buffer: buffer, boxed: false) break - case .phoneCallRequested(let flags, let id, let accessHash, let date, let adminId, let participantId, let gAHash, let `protocol`, let conferenceCall): + case .phoneCallRequested(let flags, let id, let accessHash, let date, let adminId, let participantId, let gAHash, let `protocol`): if boxed { - buffer.appendInt32(1161174115) + buffer.appendInt32(347139340) } serializeInt32(flags, buffer: buffer, boxed: false) serializeInt64(id, buffer: buffer, boxed: false) @@ -1165,11 +1162,10 @@ public extension Api { serializeInt64(participantId, buffer: buffer, boxed: false) serializeBytes(gAHash, buffer: buffer, boxed: false) `protocol`.serialize(buffer, true) - if Int(flags) & Int(1 << 8) != 0 {conferenceCall!.serialize(buffer, true)} break - case .phoneCallWaiting(let flags, let id, let accessHash, let date, let adminId, let participantId, let `protocol`, let receiveDate, let conferenceCall): + case .phoneCallWaiting(let flags, let id, let accessHash, let date, let adminId, let participantId, let `protocol`, let receiveDate): if boxed { - buffer.appendInt32(-288085928) + buffer.appendInt32(-987599081) } serializeInt32(flags, buffer: buffer, boxed: false) serializeInt64(id, buffer: buffer, boxed: false) @@ -1179,25 +1175,24 @@ public extension Api { serializeInt64(participantId, buffer: buffer, boxed: false) `protocol`.serialize(buffer, true) if Int(flags) & Int(1 << 0) != 0 {serializeInt32(receiveDate!, buffer: buffer, boxed: false)} - if Int(flags) & Int(1 << 8) != 0 {conferenceCall!.serialize(buffer, true)} break } } public func descriptionFields() -> (String, [(String, Any)]) { switch self { - case .phoneCall(let flags, let id, let accessHash, let date, let adminId, let participantId, let gAOrB, let keyFingerprint, let `protocol`, let connections, let startDate, let customParameters, let conferenceCall): - return ("phoneCall", [("flags", flags as Any), ("id", id as Any), ("accessHash", accessHash as Any), ("date", date as Any), ("adminId", adminId as Any), ("participantId", participantId as Any), ("gAOrB", gAOrB as Any), ("keyFingerprint", keyFingerprint as Any), ("`protocol`", `protocol` as Any), ("connections", connections as Any), ("startDate", startDate as Any), ("customParameters", customParameters as Any), ("conferenceCall", conferenceCall as Any)]) - case .phoneCallAccepted(let flags, let id, let accessHash, let date, let adminId, let participantId, let gB, let `protocol`, let conferenceCall): - return ("phoneCallAccepted", [("flags", flags as Any), ("id", id as Any), ("accessHash", accessHash as Any), ("date", date as Any), ("adminId", adminId as Any), ("participantId", participantId as Any), ("gB", gB as Any), ("`protocol`", `protocol` as Any), ("conferenceCall", conferenceCall as Any)]) - case .phoneCallDiscarded(let flags, let id, let reason, let duration, let conferenceCall): - return ("phoneCallDiscarded", [("flags", flags as Any), ("id", id as Any), ("reason", reason as Any), ("duration", duration as Any), ("conferenceCall", conferenceCall as Any)]) + case .phoneCall(let flags, let id, let accessHash, let date, let adminId, let participantId, let gAOrB, let keyFingerprint, let `protocol`, let connections, let startDate, let customParameters): + return ("phoneCall", [("flags", flags as Any), ("id", id as Any), ("accessHash", accessHash as Any), ("date", date as Any), ("adminId", adminId as Any), ("participantId", participantId as Any), ("gAOrB", gAOrB as Any), ("keyFingerprint", keyFingerprint as Any), ("`protocol`", `protocol` as Any), ("connections", connections as Any), ("startDate", startDate as Any), ("customParameters", customParameters as Any)]) + case .phoneCallAccepted(let flags, let id, let accessHash, let date, let adminId, let participantId, let gB, let `protocol`): + return ("phoneCallAccepted", [("flags", flags as Any), ("id", id as Any), ("accessHash", accessHash as Any), ("date", date as Any), ("adminId", adminId as Any), ("participantId", participantId as Any), ("gB", gB as Any), ("`protocol`", `protocol` as Any)]) + case .phoneCallDiscarded(let flags, let id, let reason, let duration): + return ("phoneCallDiscarded", [("flags", flags as Any), ("id", id as Any), ("reason", reason as Any), ("duration", duration as Any)]) case .phoneCallEmpty(let id): return ("phoneCallEmpty", [("id", id as Any)]) - case .phoneCallRequested(let flags, let id, let accessHash, let date, let adminId, let participantId, let gAHash, let `protocol`, let conferenceCall): - return ("phoneCallRequested", [("flags", flags as Any), ("id", id as Any), ("accessHash", accessHash as Any), ("date", date as Any), ("adminId", adminId as Any), ("participantId", participantId as Any), ("gAHash", gAHash as Any), ("`protocol`", `protocol` as Any), ("conferenceCall", conferenceCall as Any)]) - case .phoneCallWaiting(let flags, let id, let accessHash, let date, let adminId, let participantId, let `protocol`, let receiveDate, let conferenceCall): - return ("phoneCallWaiting", [("flags", flags as Any), ("id", id as Any), ("accessHash", accessHash as Any), ("date", date as Any), ("adminId", adminId as Any), ("participantId", participantId as Any), ("`protocol`", `protocol` as Any), ("receiveDate", receiveDate as Any), ("conferenceCall", conferenceCall as Any)]) + case .phoneCallRequested(let flags, let id, let accessHash, let date, let adminId, let participantId, let gAHash, let `protocol`): + return ("phoneCallRequested", [("flags", flags as Any), ("id", id as Any), ("accessHash", accessHash as Any), ("date", date as Any), ("adminId", adminId as Any), ("participantId", participantId as Any), ("gAHash", gAHash as Any), ("`protocol`", `protocol` as Any)]) + case .phoneCallWaiting(let flags, let id, let accessHash, let date, let adminId, let participantId, let `protocol`, let receiveDate): + return ("phoneCallWaiting", [("flags", flags as Any), ("id", id as Any), ("accessHash", accessHash as Any), ("date", date as Any), ("adminId", adminId as Any), ("participantId", participantId as Any), ("`protocol`", `protocol` as Any), ("receiveDate", receiveDate as Any)]) } } @@ -1232,10 +1227,6 @@ public extension Api { if Int(_1!) & Int(1 << 7) != 0 {if let signature = reader.readInt32() { _12 = Api.parse(reader, signature: signature) as? Api.DataJSON } } - var _13: Api.InputGroupCall? - if Int(_1!) & Int(1 << 8) != 0 {if let signature = reader.readInt32() { - _13 = Api.parse(reader, signature: signature) as? Api.InputGroupCall - } } let _c1 = _1 != nil let _c2 = _2 != nil let _c3 = _3 != nil @@ -1248,9 +1239,8 @@ public extension Api { let _c10 = _10 != nil let _c11 = _11 != nil let _c12 = (Int(_1!) & Int(1 << 7) == 0) || _12 != nil - let _c13 = (Int(_1!) & Int(1 << 8) == 0) || _13 != nil - if _c1 && _c2 && _c3 && _c4 && _c5 && _c6 && _c7 && _c8 && _c9 && _c10 && _c11 && _c12 && _c13 { - return Api.PhoneCall.phoneCall(flags: _1!, id: _2!, accessHash: _3!, date: _4!, adminId: _5!, participantId: _6!, gAOrB: _7!, keyFingerprint: _8!, protocol: _9!, connections: _10!, startDate: _11!, customParameters: _12, conferenceCall: _13) + if _c1 && _c2 && _c3 && _c4 && _c5 && _c6 && _c7 && _c8 && _c9 && _c10 && _c11 && _c12 { + return Api.PhoneCall.phoneCall(flags: _1!, id: _2!, accessHash: _3!, date: _4!, adminId: _5!, participantId: _6!, gAOrB: _7!, keyFingerprint: _8!, protocol: _9!, connections: _10!, startDate: _11!, customParameters: _12) } else { return nil @@ -1275,10 +1265,6 @@ public extension Api { if let signature = reader.readInt32() { _8 = Api.parse(reader, signature: signature) as? Api.PhoneCallProtocol } - var _9: Api.InputGroupCall? - if Int(_1!) & Int(1 << 8) != 0 {if let signature = reader.readInt32() { - _9 = Api.parse(reader, signature: signature) as? Api.InputGroupCall - } } let _c1 = _1 != nil let _c2 = _2 != nil let _c3 = _3 != nil @@ -1287,9 +1273,8 @@ public extension Api { let _c6 = _6 != nil let _c7 = _7 != nil let _c8 = _8 != nil - let _c9 = (Int(_1!) & Int(1 << 8) == 0) || _9 != nil - if _c1 && _c2 && _c3 && _c4 && _c5 && _c6 && _c7 && _c8 && _c9 { - return Api.PhoneCall.phoneCallAccepted(flags: _1!, id: _2!, accessHash: _3!, date: _4!, adminId: _5!, participantId: _6!, gB: _7!, protocol: _8!, conferenceCall: _9) + if _c1 && _c2 && _c3 && _c4 && _c5 && _c6 && _c7 && _c8 { + return Api.PhoneCall.phoneCallAccepted(flags: _1!, id: _2!, accessHash: _3!, date: _4!, adminId: _5!, participantId: _6!, gB: _7!, protocol: _8!) } else { return nil @@ -1306,17 +1291,12 @@ public extension Api { } } var _4: Int32? if Int(_1!) & Int(1 << 1) != 0 {_4 = reader.readInt32() } - var _5: Api.InputGroupCall? - if Int(_1!) & Int(1 << 8) != 0 {if let signature = reader.readInt32() { - _5 = Api.parse(reader, signature: signature) as? Api.InputGroupCall - } } let _c1 = _1 != nil let _c2 = _2 != nil let _c3 = (Int(_1!) & Int(1 << 0) == 0) || _3 != nil let _c4 = (Int(_1!) & Int(1 << 1) == 0) || _4 != nil - let _c5 = (Int(_1!) & Int(1 << 8) == 0) || _5 != nil - if _c1 && _c2 && _c3 && _c4 && _c5 { - return Api.PhoneCall.phoneCallDiscarded(flags: _1!, id: _2!, reason: _3, duration: _4, conferenceCall: _5) + if _c1 && _c2 && _c3 && _c4 { + return Api.PhoneCall.phoneCallDiscarded(flags: _1!, id: _2!, reason: _3, duration: _4) } else { return nil @@ -1352,10 +1332,6 @@ public extension Api { if let signature = reader.readInt32() { _8 = Api.parse(reader, signature: signature) as? Api.PhoneCallProtocol } - var _9: Api.InputGroupCall? - if Int(_1!) & Int(1 << 8) != 0 {if let signature = reader.readInt32() { - _9 = Api.parse(reader, signature: signature) as? Api.InputGroupCall - } } let _c1 = _1 != nil let _c2 = _2 != nil let _c3 = _3 != nil @@ -1364,9 +1340,8 @@ public extension Api { let _c6 = _6 != nil let _c7 = _7 != nil let _c8 = _8 != nil - let _c9 = (Int(_1!) & Int(1 << 8) == 0) || _9 != nil - if _c1 && _c2 && _c3 && _c4 && _c5 && _c6 && _c7 && _c8 && _c9 { - return Api.PhoneCall.phoneCallRequested(flags: _1!, id: _2!, accessHash: _3!, date: _4!, adminId: _5!, participantId: _6!, gAHash: _7!, protocol: _8!, conferenceCall: _9) + if _c1 && _c2 && _c3 && _c4 && _c5 && _c6 && _c7 && _c8 { + return Api.PhoneCall.phoneCallRequested(flags: _1!, id: _2!, accessHash: _3!, date: _4!, adminId: _5!, participantId: _6!, gAHash: _7!, protocol: _8!) } else { return nil @@ -1391,10 +1366,6 @@ public extension Api { } var _8: Int32? if Int(_1!) & Int(1 << 0) != 0 {_8 = reader.readInt32() } - var _9: Api.InputGroupCall? - if Int(_1!) & Int(1 << 8) != 0 {if let signature = reader.readInt32() { - _9 = Api.parse(reader, signature: signature) as? Api.InputGroupCall - } } let _c1 = _1 != nil let _c2 = _2 != nil let _c3 = _3 != nil @@ -1403,9 +1374,8 @@ public extension Api { let _c6 = _6 != nil let _c7 = _7 != nil let _c8 = (Int(_1!) & Int(1 << 0) == 0) || _8 != nil - let _c9 = (Int(_1!) & Int(1 << 8) == 0) || _9 != nil - if _c1 && _c2 && _c3 && _c4 && _c5 && _c6 && _c7 && _c8 && _c9 { - return Api.PhoneCall.phoneCallWaiting(flags: _1!, id: _2!, accessHash: _3!, date: _4!, adminId: _5!, participantId: _6!, protocol: _7!, receiveDate: _8, conferenceCall: _9) + if _c1 && _c2 && _c3 && _c4 && _c5 && _c6 && _c7 && _c8 { + return Api.PhoneCall.phoneCallWaiting(flags: _1!, id: _2!, accessHash: _3!, date: _4!, adminId: _5!, participantId: _6!, protocol: _7!, receiveDate: _8) } else { return nil diff --git a/submodules/TelegramApi/Sources/Api20.swift b/submodules/TelegramApi/Sources/Api20.swift index 9909f91d70..906318b8be 100644 --- a/submodules/TelegramApi/Sources/Api20.swift +++ b/submodules/TelegramApi/Sources/Api20.swift @@ -1,19 +1,13 @@ public extension Api { enum PhoneCallDiscardReason: TypeConstructorDescription { - case phoneCallDiscardReasonAllowGroupCall(encryptedKey: Buffer) case phoneCallDiscardReasonBusy case phoneCallDiscardReasonDisconnect case phoneCallDiscardReasonHangup + case phoneCallDiscardReasonMigrateConferenceCall(slug: String) case phoneCallDiscardReasonMissed public func serialize(_ buffer: Buffer, _ boxed: Swift.Bool) { switch self { - case .phoneCallDiscardReasonAllowGroupCall(let encryptedKey): - if boxed { - buffer.appendInt32(-1344096199) - } - serializeBytes(encryptedKey, buffer: buffer, boxed: false) - break case .phoneCallDiscardReasonBusy: if boxed { buffer.appendInt32(-84416311) @@ -31,6 +25,12 @@ public extension Api { buffer.appendInt32(1471006352) } + break + case .phoneCallDiscardReasonMigrateConferenceCall(let slug): + if boxed { + buffer.appendInt32(-1615072777) + } + serializeString(slug, buffer: buffer, boxed: false) break case .phoneCallDiscardReasonMissed: if boxed { @@ -43,30 +43,19 @@ public extension Api { public func descriptionFields() -> (String, [(String, Any)]) { switch self { - case .phoneCallDiscardReasonAllowGroupCall(let encryptedKey): - return ("phoneCallDiscardReasonAllowGroupCall", [("encryptedKey", encryptedKey as Any)]) case .phoneCallDiscardReasonBusy: return ("phoneCallDiscardReasonBusy", []) case .phoneCallDiscardReasonDisconnect: return ("phoneCallDiscardReasonDisconnect", []) case .phoneCallDiscardReasonHangup: return ("phoneCallDiscardReasonHangup", []) + case .phoneCallDiscardReasonMigrateConferenceCall(let slug): + return ("phoneCallDiscardReasonMigrateConferenceCall", [("slug", slug as Any)]) case .phoneCallDiscardReasonMissed: return ("phoneCallDiscardReasonMissed", []) } } - public static func parse_phoneCallDiscardReasonAllowGroupCall(_ reader: BufferReader) -> PhoneCallDiscardReason? { - var _1: Buffer? - _1 = parseBytes(reader) - let _c1 = _1 != nil - if _c1 { - return Api.PhoneCallDiscardReason.phoneCallDiscardReasonAllowGroupCall(encryptedKey: _1!) - } - else { - return nil - } - } public static func parse_phoneCallDiscardReasonBusy(_ reader: BufferReader) -> PhoneCallDiscardReason? { return Api.PhoneCallDiscardReason.phoneCallDiscardReasonBusy } @@ -76,6 +65,17 @@ public extension Api { public static func parse_phoneCallDiscardReasonHangup(_ reader: BufferReader) -> PhoneCallDiscardReason? { return Api.PhoneCallDiscardReason.phoneCallDiscardReasonHangup } + public static func parse_phoneCallDiscardReasonMigrateConferenceCall(_ reader: BufferReader) -> PhoneCallDiscardReason? { + var _1: String? + _1 = parseString(reader) + let _c1 = _1 != nil + if _c1 { + return Api.PhoneCallDiscardReason.phoneCallDiscardReasonMigrateConferenceCall(slug: _1!) + } + else { + return nil + } + } public static func parse_phoneCallDiscardReasonMissed(_ reader: BufferReader) -> PhoneCallDiscardReason? { return Api.PhoneCallDiscardReason.phoneCallDiscardReasonMissed } diff --git a/submodules/TelegramApi/Sources/Api26.swift b/submodules/TelegramApi/Sources/Api26.swift index 3947b37442..1fde48eb12 100644 --- a/submodules/TelegramApi/Sources/Api26.swift +++ b/submodules/TelegramApi/Sources/Api26.swift @@ -1048,6 +1048,7 @@ public extension Api { case updateFolderPeers(folderPeers: [Api.FolderPeer], pts: Int32, ptsCount: Int32) case updateGeoLiveViewed(peer: Api.Peer, msgId: Int32) case updateGroupCall(flags: Int32, chatId: Int64?, call: Api.GroupCall) + case updateGroupCallChainBlocks(call: Api.InputGroupCall, subChainId: Int32, blocks: [Buffer], nextOffset: Int32) case updateGroupCallConnection(flags: Int32, params: Api.DataJSON) case updateGroupCallParticipants(call: Api.InputGroupCall, participants: [Api.GroupCallParticipant], version: Int32) case updateInlineBotCallbackQuery(flags: Int32, queryId: Int64, userId: Int64, msgId: Api.InputBotInlineMessageID, chatInstance: Int64, data: Buffer?, gameShortName: String?) @@ -1738,6 +1739,19 @@ public extension Api { if Int(flags) & Int(1 << 0) != 0 {serializeInt64(chatId!, buffer: buffer, boxed: false)} call.serialize(buffer, true) break + case .updateGroupCallChainBlocks(let call, let subChainId, let blocks, let nextOffset): + if boxed { + buffer.appendInt32(-1535694705) + } + call.serialize(buffer, true) + serializeInt32(subChainId, buffer: buffer, boxed: false) + buffer.appendInt32(481674261) + buffer.appendInt32(Int32(blocks.count)) + for item in blocks { + serializeBytes(item, buffer: buffer, boxed: false) + } + serializeInt32(nextOffset, buffer: buffer, boxed: false) + break case .updateGroupCallConnection(let flags, let params): if boxed { buffer.appendInt32(192428418) @@ -2499,6 +2513,8 @@ public extension Api { return ("updateGeoLiveViewed", [("peer", peer as Any), ("msgId", msgId as Any)]) case .updateGroupCall(let flags, let chatId, let call): return ("updateGroupCall", [("flags", flags as Any), ("chatId", chatId as Any), ("call", call as Any)]) + case .updateGroupCallChainBlocks(let call, let subChainId, let blocks, let nextOffset): + return ("updateGroupCallChainBlocks", [("call", call as Any), ("subChainId", subChainId as Any), ("blocks", blocks as Any), ("nextOffset", nextOffset as Any)]) case .updateGroupCallConnection(let flags, let params): return ("updateGroupCallConnection", [("flags", flags as Any), ("params", params as Any)]) case .updateGroupCallParticipants(let call, let participants, let version): @@ -3939,6 +3955,30 @@ public extension Api { return nil } } + public static func parse_updateGroupCallChainBlocks(_ reader: BufferReader) -> Update? { + var _1: Api.InputGroupCall? + if let signature = reader.readInt32() { + _1 = Api.parse(reader, signature: signature) as? Api.InputGroupCall + } + var _2: Int32? + _2 = reader.readInt32() + var _3: [Buffer]? + if let _ = reader.readInt32() { + _3 = Api.parseVector(reader, elementSignature: -1255641564, elementType: Buffer.self) + } + var _4: Int32? + _4 = reader.readInt32() + let _c1 = _1 != nil + let _c2 = _2 != nil + let _c3 = _3 != nil + let _c4 = _4 != nil + if _c1 && _c2 && _c3 && _c4 { + return Api.Update.updateGroupCallChainBlocks(call: _1!, subChainId: _2!, blocks: _3!, nextOffset: _4!) + } + else { + return nil + } + } public static func parse_updateGroupCallConnection(_ reader: BufferReader) -> Update? { var _1: Int32? _1 = reader.readInt32() diff --git a/submodules/TelegramApi/Sources/Api38.swift b/submodules/TelegramApi/Sources/Api38.swift index dcba940f91..7a8709077d 100644 --- a/submodules/TelegramApi/Sources/Api38.swift +++ b/submodules/TelegramApi/Sources/Api38.swift @@ -9855,16 +9855,15 @@ public extension Api.functions.phone { } } public extension Api.functions.phone { - static func createConferenceCall(peer: Api.InputPhoneCall, keyFingerprint: Int64) -> (FunctionDescription, Buffer, DeserializeFunctionResponse) { + static func createConferenceCall(randomId: Int32) -> (FunctionDescription, Buffer, DeserializeFunctionResponse) { let buffer = Buffer() - buffer.appendInt32(-540472917) - peer.serialize(buffer, true) - serializeInt64(keyFingerprint, buffer: buffer, boxed: false) - return (FunctionDescription(name: "phone.createConferenceCall", parameters: [("peer", String(describing: peer)), ("keyFingerprint", String(describing: keyFingerprint))]), buffer, DeserializeFunctionResponse { (buffer: Buffer) -> Api.phone.PhoneCall? in + buffer.appendInt32(-70320410) + serializeInt32(randomId, buffer: buffer, boxed: false) + return (FunctionDescription(name: "phone.createConferenceCall", parameters: [("randomId", String(describing: randomId))]), buffer, DeserializeFunctionResponse { (buffer: Buffer) -> Api.phone.GroupCall? in let reader = BufferReader(buffer) - var result: Api.phone.PhoneCall? + var result: Api.phone.GroupCall? if let signature = reader.readInt32() { - result = Api.parse(reader, signature: signature) as? Api.phone.PhoneCall + result = Api.parse(reader, signature: signature) as? Api.phone.GroupCall } return result }) @@ -9889,6 +9888,42 @@ public extension Api.functions.phone { }) } } +public extension Api.functions.phone { + static func declineConferenceCallInvite(msgId: Int32) -> (FunctionDescription, Buffer, DeserializeFunctionResponse) { + let buffer = Buffer() + buffer.appendInt32(1011325297) + serializeInt32(msgId, buffer: buffer, boxed: false) + return (FunctionDescription(name: "phone.declineConferenceCallInvite", parameters: [("msgId", String(describing: msgId))]), buffer, DeserializeFunctionResponse { (buffer: Buffer) -> Api.Updates? in + let reader = BufferReader(buffer) + var result: Api.Updates? + if let signature = reader.readInt32() { + result = Api.parse(reader, signature: signature) as? Api.Updates + } + return result + }) + } +} +public extension Api.functions.phone { + static func deleteConferenceCallParticipants(call: Api.InputGroupCall, ids: [Api.InputPeer], block: Buffer) -> (FunctionDescription, Buffer, DeserializeFunctionResponse) { + let buffer = Buffer() + buffer.appendInt32(585451463) + call.serialize(buffer, true) + buffer.appendInt32(481674261) + buffer.appendInt32(Int32(ids.count)) + for item in ids { + item.serialize(buffer, true) + } + serializeBytes(block, buffer: buffer, boxed: false) + return (FunctionDescription(name: "phone.deleteConferenceCallParticipants", parameters: [("call", String(describing: call)), ("ids", String(describing: ids)), ("block", String(describing: block))]), buffer, DeserializeFunctionResponse { (buffer: Buffer) -> Api.Updates? in + let reader = BufferReader(buffer) + var result: Api.Updates? + if let signature = reader.readInt32() { + result = Api.parse(reader, signature: signature) as? Api.Updates + } + return result + }) + } +} public extension Api.functions.phone { static func discardCall(flags: Int32, peer: Api.InputPhoneCall, duration: Int32, reason: Api.PhoneCallDiscardReason, connectionId: Int64) -> (FunctionDescription, Buffer, DeserializeFunctionResponse) { let buffer = Buffer() @@ -10009,6 +10044,24 @@ public extension Api.functions.phone { }) } } +public extension Api.functions.phone { + static func getGroupCallChainBlocks(call: Api.InputGroupCall, subChainId: Int32, offset: Int32, limit: Int32) -> (FunctionDescription, Buffer, DeserializeFunctionResponse) { + let buffer = Buffer() + buffer.appendInt32(-291534682) + call.serialize(buffer, true) + serializeInt32(subChainId, buffer: buffer, boxed: false) + serializeInt32(offset, buffer: buffer, boxed: false) + serializeInt32(limit, buffer: buffer, boxed: false) + return (FunctionDescription(name: "phone.getGroupCallChainBlocks", parameters: [("call", String(describing: call)), ("subChainId", String(describing: subChainId)), ("offset", String(describing: offset)), ("limit", String(describing: limit))]), buffer, DeserializeFunctionResponse { (buffer: Buffer) -> Api.Updates? in + let reader = BufferReader(buffer) + var result: Api.Updates? + if let signature = reader.readInt32() { + result = Api.parse(reader, signature: signature) as? Api.Updates + } + return result + }) + } +} public extension Api.functions.phone { static func getGroupCallJoinAs(peer: Api.InputPeer) -> (FunctionDescription, Buffer, DeserializeFunctionResponse) { let buffer = Buffer() @@ -10082,6 +10135,22 @@ public extension Api.functions.phone { }) } } +public extension Api.functions.phone { + static func inviteConferenceCallParticipant(call: Api.InputGroupCall, userId: Api.InputUser) -> (FunctionDescription, Buffer, DeserializeFunctionResponse) { + let buffer = Buffer() + buffer.appendInt32(1050474478) + call.serialize(buffer, true) + userId.serialize(buffer, true) + return (FunctionDescription(name: "phone.inviteConferenceCallParticipant", parameters: [("call", String(describing: call)), ("userId", String(describing: userId))]), buffer, DeserializeFunctionResponse { (buffer: Buffer) -> Api.Updates? in + let reader = BufferReader(buffer) + var result: Api.Updates? + if let signature = reader.readInt32() { + result = Api.parse(reader, signature: signature) as? Api.Updates + } + return result + }) + } +} public extension Api.functions.phone { static func inviteToGroupCall(call: Api.InputGroupCall, users: [Api.InputUser]) -> (FunctionDescription, Buffer, DeserializeFunctionResponse) { let buffer = Buffer() @@ -10103,16 +10172,18 @@ public extension Api.functions.phone { } } public extension Api.functions.phone { - static func joinGroupCall(flags: Int32, call: Api.InputGroupCall, joinAs: Api.InputPeer, inviteHash: String?, keyFingerprint: Int64?, params: Api.DataJSON) -> (FunctionDescription, Buffer, DeserializeFunctionResponse) { + static func joinGroupCall(flags: Int32, call: Api.InputGroupCall, joinAs: Api.InputPeer, inviteHash: String?, publicKey: Int256?, block: Buffer?, inviteMsgId: Int32?, params: Api.DataJSON) -> (FunctionDescription, Buffer, DeserializeFunctionResponse) { let buffer = Buffer() - buffer.appendInt32(-702669325) + buffer.appendInt32(-624854114) serializeInt32(flags, buffer: buffer, boxed: false) call.serialize(buffer, true) joinAs.serialize(buffer, true) if Int(flags) & Int(1 << 1) != 0 {serializeString(inviteHash!, buffer: buffer, boxed: false)} - if Int(flags) & Int(1 << 3) != 0 {serializeInt64(keyFingerprint!, buffer: buffer, boxed: false)} + if Int(flags) & Int(1 << 3) != 0 {serializeInt256(publicKey!, buffer: buffer, boxed: false)} + if Int(flags) & Int(1 << 3) != 0 {serializeBytes(block!, buffer: buffer, boxed: false)} + if Int(flags) & Int(1 << 4) != 0 {serializeInt32(inviteMsgId!, buffer: buffer, boxed: false)} params.serialize(buffer, true) - return (FunctionDescription(name: "phone.joinGroupCall", parameters: [("flags", String(describing: flags)), ("call", String(describing: call)), ("joinAs", String(describing: joinAs)), ("inviteHash", String(describing: inviteHash)), ("keyFingerprint", String(describing: keyFingerprint)), ("params", String(describing: params))]), buffer, DeserializeFunctionResponse { (buffer: Buffer) -> Api.Updates? in + return (FunctionDescription(name: "phone.joinGroupCall", parameters: [("flags", String(describing: flags)), ("call", String(describing: call)), ("joinAs", String(describing: joinAs)), ("inviteHash", String(describing: inviteHash)), ("publicKey", String(describing: publicKey)), ("block", String(describing: block)), ("inviteMsgId", String(describing: inviteMsgId)), ("params", String(describing: params))]), buffer, DeserializeFunctionResponse { (buffer: Buffer) -> Api.Updates? in let reader = BufferReader(buffer) var result: Api.Updates? if let signature = reader.readInt32() { @@ -10185,16 +10256,15 @@ public extension Api.functions.phone { } } public extension Api.functions.phone { - static func requestCall(flags: Int32, userId: Api.InputUser, conferenceCall: Api.InputGroupCall?, randomId: Int32, gAHash: Buffer, `protocol`: Api.PhoneCallProtocol) -> (FunctionDescription, Buffer, DeserializeFunctionResponse) { + static func requestCall(flags: Int32, userId: Api.InputUser, randomId: Int32, gAHash: Buffer, `protocol`: Api.PhoneCallProtocol) -> (FunctionDescription, Buffer, DeserializeFunctionResponse) { let buffer = Buffer() - buffer.appendInt32(-1497079796) + buffer.appendInt32(1124046573) serializeInt32(flags, buffer: buffer, boxed: false) userId.serialize(buffer, true) - if Int(flags) & Int(1 << 1) != 0 {conferenceCall!.serialize(buffer, true)} serializeInt32(randomId, buffer: buffer, boxed: false) serializeBytes(gAHash, buffer: buffer, boxed: false) `protocol`.serialize(buffer, true) - return (FunctionDescription(name: "phone.requestCall", parameters: [("flags", String(describing: flags)), ("userId", String(describing: userId)), ("conferenceCall", String(describing: conferenceCall)), ("randomId", String(describing: randomId)), ("gAHash", String(describing: gAHash)), ("`protocol`", String(describing: `protocol`))]), buffer, DeserializeFunctionResponse { (buffer: Buffer) -> Api.phone.PhoneCall? in + return (FunctionDescription(name: "phone.requestCall", parameters: [("flags", String(describing: flags)), ("userId", String(describing: userId)), ("randomId", String(describing: randomId)), ("gAHash", String(describing: gAHash)), ("`protocol`", String(describing: `protocol`))]), buffer, DeserializeFunctionResponse { (buffer: Buffer) -> Api.phone.PhoneCall? in let reader = BufferReader(buffer) var result: Api.phone.PhoneCall? if let signature = reader.readInt32() { @@ -10252,6 +10322,22 @@ public extension Api.functions.phone { }) } } +public extension Api.functions.phone { + static func sendConferenceCallBroadcast(call: Api.InputGroupCall, block: Buffer) -> (FunctionDescription, Buffer, DeserializeFunctionResponse) { + let buffer = Buffer() + buffer.appendInt32(-965732096) + call.serialize(buffer, true) + serializeBytes(block, buffer: buffer, boxed: false) + return (FunctionDescription(name: "phone.sendConferenceCallBroadcast", parameters: [("call", String(describing: call)), ("block", String(describing: block))]), buffer, DeserializeFunctionResponse { (buffer: Buffer) -> Api.Updates? in + let reader = BufferReader(buffer) + var result: Api.Updates? + if let signature = reader.readInt32() { + result = Api.parse(reader, signature: signature) as? Api.Updates + } + return result + }) + } +} public extension Api.functions.phone { static func sendSignalingData(peer: Api.InputPhoneCall, data: Buffer) -> (FunctionDescription, Buffer, DeserializeFunctionResponse) { let buffer = Buffer() diff --git a/submodules/TelegramApi/Sources/Api7.swift b/submodules/TelegramApi/Sources/Api7.swift index 7bc3feafee..00980aa1ce 100644 --- a/submodules/TelegramApi/Sources/Api7.swift +++ b/submodules/TelegramApi/Sources/Api7.swift @@ -992,14 +992,14 @@ public extension Api { } public extension Api { enum GroupCall: TypeConstructorDescription { - case groupCall(flags: Int32, id: Int64, accessHash: Int64, participantsCount: Int32, title: String?, streamDcId: Int32?, recordStartDate: Int32?, scheduleDate: Int32?, unmutedVideoCount: Int32?, unmutedVideoLimit: Int32, version: Int32, conferenceFromCall: Int64?) + case groupCall(flags: Int32, id: Int64, accessHash: Int64, participantsCount: Int32, title: String?, streamDcId: Int32?, recordStartDate: Int32?, scheduleDate: Int32?, unmutedVideoCount: Int32?, unmutedVideoLimit: Int32, version: Int32) case groupCallDiscarded(id: Int64, accessHash: Int64, duration: Int32) public func serialize(_ buffer: Buffer, _ boxed: Swift.Bool) { switch self { - case .groupCall(let flags, let id, let accessHash, let participantsCount, let title, let streamDcId, let recordStartDate, let scheduleDate, let unmutedVideoCount, let unmutedVideoLimit, let version, let conferenceFromCall): + case .groupCall(let flags, let id, let accessHash, let participantsCount, let title, let streamDcId, let recordStartDate, let scheduleDate, let unmutedVideoCount, let unmutedVideoLimit, let version): if boxed { - buffer.appendInt32(-839330845) + buffer.appendInt32(-711498484) } serializeInt32(flags, buffer: buffer, boxed: false) serializeInt64(id, buffer: buffer, boxed: false) @@ -1012,7 +1012,6 @@ public extension Api { if Int(flags) & Int(1 << 10) != 0 {serializeInt32(unmutedVideoCount!, buffer: buffer, boxed: false)} serializeInt32(unmutedVideoLimit, buffer: buffer, boxed: false) serializeInt32(version, buffer: buffer, boxed: false) - if Int(flags) & Int(1 << 14) != 0 {serializeInt64(conferenceFromCall!, buffer: buffer, boxed: false)} break case .groupCallDiscarded(let id, let accessHash, let duration): if boxed { @@ -1027,8 +1026,8 @@ public extension Api { public func descriptionFields() -> (String, [(String, Any)]) { switch self { - case .groupCall(let flags, let id, let accessHash, let participantsCount, let title, let streamDcId, let recordStartDate, let scheduleDate, let unmutedVideoCount, let unmutedVideoLimit, let version, let conferenceFromCall): - return ("groupCall", [("flags", flags as Any), ("id", id as Any), ("accessHash", accessHash as Any), ("participantsCount", participantsCount as Any), ("title", title as Any), ("streamDcId", streamDcId as Any), ("recordStartDate", recordStartDate as Any), ("scheduleDate", scheduleDate as Any), ("unmutedVideoCount", unmutedVideoCount as Any), ("unmutedVideoLimit", unmutedVideoLimit as Any), ("version", version as Any), ("conferenceFromCall", conferenceFromCall as Any)]) + case .groupCall(let flags, let id, let accessHash, let participantsCount, let title, let streamDcId, let recordStartDate, let scheduleDate, let unmutedVideoCount, let unmutedVideoLimit, let version): + return ("groupCall", [("flags", flags as Any), ("id", id as Any), ("accessHash", accessHash as Any), ("participantsCount", participantsCount as Any), ("title", title as Any), ("streamDcId", streamDcId as Any), ("recordStartDate", recordStartDate as Any), ("scheduleDate", scheduleDate as Any), ("unmutedVideoCount", unmutedVideoCount as Any), ("unmutedVideoLimit", unmutedVideoLimit as Any), ("version", version as Any)]) case .groupCallDiscarded(let id, let accessHash, let duration): return ("groupCallDiscarded", [("id", id as Any), ("accessHash", accessHash as Any), ("duration", duration as Any)]) } @@ -1057,8 +1056,6 @@ public extension Api { _10 = reader.readInt32() var _11: Int32? _11 = reader.readInt32() - var _12: Int64? - if Int(_1!) & Int(1 << 14) != 0 {_12 = reader.readInt64() } let _c1 = _1 != nil let _c2 = _2 != nil let _c3 = _3 != nil @@ -1070,9 +1067,8 @@ public extension Api { let _c9 = (Int(_1!) & Int(1 << 10) == 0) || _9 != nil let _c10 = _10 != nil let _c11 = _11 != nil - let _c12 = (Int(_1!) & Int(1 << 14) == 0) || _12 != nil - if _c1 && _c2 && _c3 && _c4 && _c5 && _c6 && _c7 && _c8 && _c9 && _c10 && _c11 && _c12 { - return Api.GroupCall.groupCall(flags: _1!, id: _2!, accessHash: _3!, participantsCount: _4!, title: _5, streamDcId: _6, recordStartDate: _7, scheduleDate: _8, unmutedVideoCount: _9, unmutedVideoLimit: _10!, version: _11!, conferenceFromCall: _12) + if _c1 && _c2 && _c3 && _c4 && _c5 && _c6 && _c7 && _c8 && _c9 && _c10 && _c11 { + return Api.GroupCall.groupCall(flags: _1!, id: _2!, accessHash: _3!, participantsCount: _4!, title: _5, streamDcId: _6, recordStartDate: _7, scheduleDate: _8, unmutedVideoCount: _9, unmutedVideoLimit: _10!, version: _11!) } else { return nil diff --git a/submodules/TelegramApi/Sources/Buffer.swift b/submodules/TelegramApi/Sources/Buffer.swift index c7ef6a992c..4a58e1f7bf 100644 --- a/submodules/TelegramApi/Sources/Buffer.swift +++ b/submodules/TelegramApi/Sources/Buffer.swift @@ -3,13 +3,48 @@ import Foundation public struct Int128 { public var _0: Int64 public var _1: Int64 + + public init(_0: Int64, _1: Int64) { + self._0 = _0 + self._1 = _1 + } } -public struct Int256 { +public struct Int256: Equatable, CustomStringConvertible { public var _0: Int64 public var _1: Int64 public var _2: Int64 public var _3: Int64 + + public init(_0: Int64, _1: Int64, _2: Int64, _3: Int64) { + self._0 = _0 + self._1 = _1 + self._2 = _2 + self._3 = _3 + } + + public var description: String { + var data = Data(count: 32) + data.withUnsafeMutableBytes { buffer in + if let baseAddress = buffer.baseAddress { + let int64Buffer = baseAddress.assumingMemoryBound(to: Int64.self) + int64Buffer[0] = self._0 + int64Buffer[1] = self._1 + int64Buffer[2] = self._2 + int64Buffer[3] = self._3 + } + } + + let hexString = NSMutableString() + data.withUnsafeBytes { rawBytes -> Void in + let bytes = rawBytes.baseAddress!.assumingMemoryBound(to: UInt8.self) + for i in 0 ..< data.count { + hexString.appendFormat("%02x", UInt(bytes.advanced(by: i).pointee)) + } + } + + return hexString as String + } } func serializeInt32(_ value: Int32, buffer: Buffer, boxed: Bool) { diff --git a/submodules/TelegramBaseController/Sources/TelegramBaseController.swift b/submodules/TelegramBaseController/Sources/TelegramBaseController.swift index 7b78d3afb6..943489259b 100644 --- a/submodules/TelegramBaseController/Sources/TelegramBaseController.swift +++ b/submodules/TelegramBaseController/Sources/TelegramBaseController.swift @@ -39,6 +39,7 @@ private func presentLiveLocationController(context: AccountContext, peerId: Peer }, openUrl: { _ in }, openPeer: { peer, navigation in }, callPeer: { _, _ in + }, openConferenceCall: { _ in }, enqueueMessage: { message in let _ = enqueueMessages(account: context.account, peerId: peerId, messages: [message]).start() }, sendSticker: nil, sendEmoji: nil, setupTemporaryHiddenMedia: { _, _, _ in @@ -469,7 +470,7 @@ open class TelegramBaseController: ViewController, KeyShortcutResponder { return } if groupCallPanelData.info.scheduleTimestamp != nil && !groupCallPanelData.info.subscribedToScheduled { - let _ = self.context.engine.calls.toggleScheduledGroupCallSubscription(peerId: groupCallPanelData.peerId, callId: groupCallPanelData.info.id, accessHash: groupCallPanelData.info.accessHash, subscribe: true).startStandalone() + let _ = self.context.engine.calls.toggleScheduledGroupCallSubscription(peerId: groupCallPanelData.peerId, reference: .id(id: groupCallPanelData.info.id, accessHash: groupCallPanelData.info.accessHash), subscribe: true).startStandalone() let controller = UndoOverlayController( presentationData: presentationData, diff --git a/submodules/TelegramCallsUI/BUILD b/submodules/TelegramCallsUI/BUILD index bd6281c776..e3c6c1fe19 100644 --- a/submodules/TelegramCallsUI/BUILD +++ b/submodules/TelegramCallsUI/BUILD @@ -120,6 +120,7 @@ swift_library( "//submodules/DirectMediaImageCache", "//submodules/FastBlur", "//submodules/InviteLinksUI", + "//third-party/td:TdBinding", ], visibility = [ "//visibility:public", diff --git a/submodules/TelegramCallsUI/Sources/PresentationCall.swift b/submodules/TelegramCallsUI/Sources/PresentationCall.swift index 2aa536fca2..d00ece5286 100644 --- a/submodules/TelegramCallsUI/Sources/PresentationCall.swift +++ b/submodules/TelegramCallsUI/Sources/PresentationCall.swift @@ -233,7 +233,7 @@ public final class PresentationCallImpl: PresentationCall { public let internalId: CallSessionInternalId public let peerId: EnginePeer.Id public let isOutgoing: Bool - private let isIncomingConference: Bool + private let incomingConferenceSource: EngineMessage.Id? public var isVideo: Bool public var isVideoPossible: Bool private let enableStunMarking: Bool @@ -354,6 +354,7 @@ public final class PresentationCallImpl: PresentationCall { private var conferenceCallDisposable: Disposable? private var upgradedToConferenceCompletions = Bag<(PresentationGroupCall) -> Void>() + private var isAcceptingIncomingConference: Bool = false private var waitForConferenceCallReadyDisposable: Disposable? private let conferenceStatePromise = ValuePromise(nil) public private(set) var conferenceStateValue: PresentationCallConferenceState? { @@ -386,7 +387,7 @@ public final class PresentationCallImpl: PresentationCall { internalId: CallSessionInternalId, peerId: EnginePeer.Id, isOutgoing: Bool, - isIncomingConference: Bool, + incomingConferenceSource: EngineMessage.Id?, peer: EnginePeer?, proxyServer: ProxyServerSettings?, auxiliaryServers: [CallAuxiliaryServer], @@ -421,7 +422,7 @@ public final class PresentationCallImpl: PresentationCall { self.internalId = internalId self.peerId = peerId self.isOutgoing = isOutgoing - self.isIncomingConference = isIncomingConference + self.incomingConferenceSource = incomingConferenceSource self.isVideo = initialState?.type == .video self.isVideoPossible = isVideoPossible self.enableStunMarking = enableStunMarking @@ -729,12 +730,15 @@ public final class PresentationCallImpl: PresentationCall { var wasTerminated = false if let previous = previous { switch previous.state { - case .active: - wasActive = true - case .terminated, .dropping: + case .active: + wasActive = true + case let .terminated(_, reason, _): + if case .ended(.switchedToConference) = reason { + } else { wasTerminated = true - default: - break + } + default: + break } } @@ -858,22 +862,23 @@ public final class PresentationCallImpl: PresentationCall { self.callWasActive = true presentationState = PresentationCallState(state: .connecting(nil), videoState: mappedVideoState, remoteVideoState: mappedRemoteVideoState, remoteAudioState: mappedRemoteAudioState, remoteBatteryLevel: mappedRemoteBatteryLevel) case let .dropping(reason): - presentationState = PresentationCallState(state: .terminating(reason), videoState: mappedVideoState, remoteVideoState: .inactive, remoteAudioState: mappedRemoteAudioState, remoteBatteryLevel: mappedRemoteBatteryLevel) + if case .ended(.switchedToConference) = reason { + } else { + presentationState = PresentationCallState(state: .terminating(reason), videoState: mappedVideoState, remoteVideoState: .inactive, remoteAudioState: mappedRemoteAudioState, remoteBatteryLevel: mappedRemoteBatteryLevel) + } case let .terminated(id, reason, options): presentationState = PresentationCallState(state: .terminated(id, reason, self.callWasActive && (options.contains(.reportRating) || self.shouldPresentCallRating)), videoState: mappedVideoState, remoteVideoState: .inactive, remoteAudioState: mappedRemoteAudioState, remoteBatteryLevel: mappedRemoteBatteryLevel) - case let .requesting(ringing, _): + case let .requesting(ringing): presentationState = PresentationCallState(state: .requesting(ringing), videoState: mappedVideoState, remoteVideoState: mappedRemoteVideoState, remoteAudioState: mappedRemoteAudioState, remoteBatteryLevel: mappedRemoteBatteryLevel) - case let .active(_, _, keyVisualHash, _, _, _, _, _, _, _), let .switchedToConference(_, keyVisualHash, _): + case .active(_, _, _, _, _, _, _, _), .switchedToConference: self.callWasActive = true var isConference = false - if case let .active(_, _, _, _, _, _, _, _, conferenceCall, _) = sessionState.state { - isConference = conferenceCall != nil - } else if case .switchedToConference = sessionState.state { + if case .switchedToConference = sessionState.state { isConference = true } - if let callContextState = callContextState, !isConference { + if let callContextState = callContextState, !isConference, case let .active(_, _, keyVisualHash, _, _, _, _, _) = sessionState.state { switch callContextState.state { case .initializing: presentationState = PresentationCallState(state: .connecting(keyVisualHash), videoState: mappedVideoState, remoteVideoState: mappedRemoteVideoState, remoteAudioState: mappedRemoteAudioState, remoteBatteryLevel: mappedRemoteBatteryLevel) @@ -899,151 +904,178 @@ public final class PresentationCallImpl: PresentationCall { } presentationState = PresentationCallState(state: .reconnecting(timestamp, reception, keyVisualHash), videoState: mappedVideoState, remoteVideoState: mappedRemoteVideoState, remoteAudioState: mappedRemoteAudioState, remoteBatteryLevel: mappedRemoteBatteryLevel) } - } else if !isConference { + } else if !isConference, case let .active(_, _, keyVisualHash, _, _, _, _, _) = sessionState.state { presentationState = PresentationCallState(state: .connecting(keyVisualHash), videoState: mappedVideoState, remoteVideoState: mappedRemoteVideoState, remoteAudioState: mappedRemoteAudioState, remoteBatteryLevel: mappedRemoteBatteryLevel) } } - var conferenceCallData: (key: Data, keyVisualHash: Data, conferenceCall: GroupCallReference)? - var conferenceFromCallId: CallId? - switch sessionState.state { - case let .active(id, key, keyVisualHash, _, _, _, _, _, conferenceCall, isIncomingConference): - if let conferenceCall, !isIncomingConference { - conferenceFromCallId = id - conferenceCallData = (key, keyVisualHash, conferenceCall) + var conferenceCallData: InternalGroupCallReference? + if let incomingConferenceSource = self.incomingConferenceSource { + if self.isAcceptingIncomingConference { + conferenceCallData = .message(id: incomingConferenceSource) + } + } else { + switch sessionState.state { + case let .switchedToConference(slug): + conferenceCallData = .link(slug: slug) + default: + break } - case let .switchedToConference(key, keyVisualHash, conferenceCall): - conferenceCallData = (key, keyVisualHash, conferenceCall) - default: - break } - if let (key, _, conferenceCall) = conferenceCallData { + if let conferenceCallData { if self.conferenceCallDisposable == nil { - self.conferenceCallDisposable = EmptyDisposable - - #if DEBUG - print("Switching to conference call with encryption key: \(key.base64EncodedString())") - #endif - - let conferenceCall = PresentationGroupCallImpl( - accountContext: self.context, - audioSession: self.audioSession, - callKitIntegration: self.callKitIntegration, - getDeviceAccessData: self.getDeviceAccessData, - initialCall: EngineGroupCallDescription( - id: conferenceCall.id, - accessHash: conferenceCall.accessHash, - title: nil, - scheduleTimestamp: nil, - subscribedToScheduled: false, - isStream: false - ), - internalId: CallSessionInternalId(), - peerId: nil, - isChannel: false, - invite: nil, - joinAsPeerId: nil, - isStream: false, - encryptionKey: (key, 1), - conferenceFromCallId: conferenceFromCallId, - conferenceSourceId: self.internalId, - isConference: true, - sharedAudioContext: self.sharedAudioContext - ) - self.conferenceCallImpl = conferenceCall - conferenceCall.upgradedConferenceCall = self - - conferenceCall.setConferenceInvitedPeers(self.pendingInviteToConferencePeerIds) - for peerId in self.pendingInviteToConferencePeerIds { - let _ = conferenceCall.invitePeer(peerId) - } - - conferenceCall.setIsMuted(action: self.isMutedValue ? .muted(isPushToTalkActive: false) : .unmuted) - if let videoCapturer = self.videoCapturer { - conferenceCall.requestVideo(capturer: videoCapturer) - } - - let waitForLocalVideo = self.videoCapturer != nil - - let waitForRemotePeerId: EnginePeer.Id? = self.peerId - var waitForRemoteVideo: EnginePeer.Id? - if let callContextState = self.callContextState { - switch callContextState.remoteVideoState { - case .active, .paused: - waitForRemoteVideo = self.peerId - case .inactive: - break - } - } - - self.conferenceStateValue = .preparing - - self.waitForConferenceCallReadyDisposable?.dispose() - self.waitForConferenceCallReadyDisposable = (combineLatest(queue: .mainQueue(), - conferenceCall.state, - conferenceCall.members - ) - |> filter { state, members in - if state.networkState != .connected { - return false - } - if let waitForRemotePeerId { - var found = false - if let members { - for participant in members.participants { - if participant.peer.id == waitForRemotePeerId { - found = true - break - } - } - } - if !found { - return false - } - } - if waitForLocalVideo { - if let members { - for participant in members.participants { - if participant.peer.id == state.myPeerId { - if participant.videoDescription == nil { - return false - } - } - } - } - } - if let waitForRemoteVideo { - if let members { - for participant in members.participants { - if participant.peer.id == waitForRemoteVideo { - if participant.videoDescription == nil { - return false - } - } - } - } - } - return true - } - |> map { _, _ -> Void in - return Void() - } - |> take(1) - |> timeout(10.0, queue: .mainQueue(), alternate: .single(Void()))).start(next: { [weak self] _ in + let conferenceCallSignal = self.context.engine.calls.getCurrentGroupCall(reference: conferenceCallData) + self.conferenceCallDisposable = (conferenceCallSignal + |> deliverOnMainQueue).startStrict(next: { [weak self] groupCall in guard let self else { return } - - self.ongoingContextStateDisposable?.dispose() - - self.conferenceStateValue = .ready - - let upgradedToConferenceCompletions = self.upgradedToConferenceCompletions.copyItems() - self.upgradedToConferenceCompletions.removeAll() - for f in upgradedToConferenceCompletions { - f(conferenceCall) + let keyPair: TelegramKeyPair? = TelegramE2EEncryptionProviderImpl.shared.generateKeyPair() + guard let keyPair, let groupCall else { + self.updateSessionState(sessionState: CallSession( + id: self.internalId, + stableId: nil, + isOutgoing: false, + type: .audio, + state: .terminated(id: nil, reason: .error(.generic), options: CallTerminationOptions()), + isVideoPossible: true + ), + callContextState: nil, reception: nil, audioSessionControl: self.audioSessionControl) + return } + + let conferenceCall = PresentationGroupCallImpl( + accountContext: self.context, + audioSession: self.audioSession, + callKitIntegration: self.callKitIntegration, + getDeviceAccessData: self.getDeviceAccessData, + initialCall: (EngineGroupCallDescription( + id: groupCall.info.id, + accessHash: groupCall.info.accessHash, + title: nil, + scheduleTimestamp: nil, + subscribedToScheduled: false, + isStream: false + ), conferenceCallData), + internalId: CallSessionInternalId(), + peerId: nil, + isChannel: false, + invite: nil, + joinAsPeerId: nil, + isStream: false, + keyPair: keyPair, + conferenceSourceId: self.internalId, + isConference: true, + sharedAudioContext: self.sharedAudioContext + ) + self.conferenceCallImpl = conferenceCall + conferenceCall.upgradedConferenceCall = self + + conferenceCall.setConferenceInvitedPeers(self.pendingInviteToConferencePeerIds) + for peerId in self.pendingInviteToConferencePeerIds { + let _ = conferenceCall.invitePeer(peerId) + } + + conferenceCall.setIsMuted(action: self.isMutedValue ? .muted(isPushToTalkActive: false) : .unmuted) + if let videoCapturer = self.videoCapturer { + conferenceCall.requestVideo(capturer: videoCapturer) + } + + let waitForLocalVideo = self.videoCapturer != nil + + let waitForRemotePeerId: EnginePeer.Id? = self.peerId + var waitForRemoteVideo: EnginePeer.Id? + if let callContextState = self.callContextState { + switch callContextState.remoteVideoState { + case .active, .paused: + waitForRemoteVideo = self.peerId + case .inactive: + break + } + } + + self.conferenceStateValue = .preparing + + self.waitForConferenceCallReadyDisposable?.dispose() + self.waitForConferenceCallReadyDisposable = (combineLatest(queue: .mainQueue(), + conferenceCall.state, + conferenceCall.members + ) + |> filter { state, members in + if state.networkState != .connected { + return false + } + if let waitForRemotePeerId { + var found = false + if let members { + for participant in members.participants { + if participant.peer.id == waitForRemotePeerId { + found = true + break + } + } + } + if !found { + return false + } + } + if waitForLocalVideo { + if let members { + for participant in members.participants { + if participant.peer.id == state.myPeerId { + if participant.videoDescription == nil { + return false + } + } + } + } + } + if let waitForRemoteVideo { + if let members { + for participant in members.participants { + if participant.peer.id == waitForRemoteVideo { + if participant.videoDescription == nil { + return false + } + } + } + } + } + return true + } + |> map { _, _ -> Void in + return Void() + } + |> take(1) + |> timeout(10.0, queue: .mainQueue(), alternate: .single(Void()))).start(next: { [weak self] _ in + guard let self else { + return + } + + self.ongoingContextStateDisposable?.dispose() + + self.conferenceStateValue = .ready + + let upgradedToConferenceCompletions = self.upgradedToConferenceCompletions.copyItems() + self.upgradedToConferenceCompletions.removeAll() + for f in upgradedToConferenceCompletions { + f(conferenceCall) + } + }) + }, error: { [weak self] _ in + guard let self else { + return + } + self.updateSessionState(sessionState: CallSession( + id: self.internalId, + stableId: nil, + isOutgoing: false, + type: .audio, + state: .terminated(id: nil, reason: .error(.generic), options: CallTerminationOptions()), + isVideoPossible: true + ), + callContextState: nil, reception: nil, audioSessionControl: self.audioSessionControl) }) } } @@ -1053,7 +1085,7 @@ public final class PresentationCallImpl: PresentationCall { if let _ = audioSessionControl { self.audioSessionShouldBeActive.set(true) } - case let .active(id, key, _, connections, maxLayer, version, customParameters, allowsP2P, _, _): + case let .active(id, key, _, connections, maxLayer, version, customParameters, allowsP2P): self.audioSessionShouldBeActive.set(true) if conferenceCallData != nil { @@ -1150,8 +1182,13 @@ public final class PresentationCallImpl: PresentationCall { var terminating = false if case .terminated = sessionState.state { terminating = true - } else if case .dropping = sessionState.state { - terminating = true + } else if case let .dropping(reason) = sessionState.state { + switch reason { + case .ended(.switchedToConference): + break + default: + terminating = true + } } if terminating, !wasTerminated { @@ -1180,9 +1217,7 @@ public final class PresentationCallImpl: PresentationCall { } var isConference = false - if case let .active(_, _, _, _, _, _, _, _, conferenceCall, _) = sessionState.state { - isConference = conferenceCall != nil - } else if case .switchedToConference = sessionState.state { + if case .switchedToConference = sessionState.state { isConference = true } if self.conferenceCallImpl != nil { @@ -1191,7 +1226,7 @@ public final class PresentationCallImpl: PresentationCall { if self.conferenceStateValue != nil { isConference = true } - if self.isIncomingConference { + if self.incomingConferenceSource != nil { isConference = true } @@ -1219,39 +1254,39 @@ public final class PresentationCallImpl: PresentationCall { } } else if let previous = previous { switch previous.state { - case .accepting, .active, .dropping, .requesting: - switch state.state { - case .connecting: - if case .requesting = previous.state { - tone = .ringing - } else { - if !self.isVideo { - tone = .connecting - } + case .accepting, .active, .dropping, .requesting: + switch state.state { + case .connecting: + if case .requesting = previous.state { + tone = .ringing + } else { + if !self.isVideo { + tone = .connecting + } + } + case .requesting(true): + tone = .ringing + case let .terminated(_, reason, _): + if let reason = reason { + switch reason { + case let .ended(type): + switch type { + case .busy: + tone = .busy + case .hungUp, .missed: + tone = .ended + case .switchedToConference: + tone = nil } - case .requesting(true): - tone = .ringing - case let .terminated(_, reason, _): - if let reason = reason { - switch reason { - case let .ended(type): - switch type { - case .busy: - tone = .busy - case .hungUp, .missed: - tone = .ended - case .switchedToConference: - tone = nil - } - case .error: - tone = .failed - } - } - default: - break + case .error: + tone = .failed + } } default: break + } + default: + break } } if tone != self.currentTone { @@ -1303,11 +1338,22 @@ public final class PresentationCallImpl: PresentationCall { return } if value { - if strongSelf.isIncomingConference { + if strongSelf.incomingConferenceSource != nil { strongSelf.conferenceStateValue = .preparing + strongSelf.isAcceptingIncomingConference = true + strongSelf.updateSessionState(sessionState: CallSession( + id: strongSelf.internalId, + stableId: nil, + isOutgoing: false, + type: .audio, + state: .ringing, + isVideoPossible: true + ), + callContextState: nil, reception: nil, audioSessionControl: strongSelf.audioSessionControl) + } else { + strongSelf.callSessionManager.accept(internalId: strongSelf.internalId) } - strongSelf.callSessionManager.accept(internalId: strongSelf.internalId) if !fromCallKitAction { strongSelf.callKitIntegration?.answerCall(uuid: strongSelf.internalId) } @@ -1316,11 +1362,22 @@ public final class PresentationCallImpl: PresentationCall { } }) } else { - if strongSelf.isIncomingConference { + if strongSelf.incomingConferenceSource != nil { strongSelf.conferenceStateValue = .preparing + strongSelf.isAcceptingIncomingConference = true + strongSelf.updateSessionState(sessionState: CallSession( + id: strongSelf.internalId, + stableId: nil, + isOutgoing: false, + type: .audio, + state: .ringing, + isVideoPossible: true + ), + callContextState: nil, reception: nil, audioSessionControl: strongSelf.audioSessionControl) + } else { + strongSelf.callSessionManager.accept(internalId: strongSelf.internalId) } - strongSelf.callSessionManager.accept(internalId: strongSelf.internalId) if !fromCallKitAction { strongSelf.callKitIntegration?.answerCall(uuid: strongSelf.internalId) } @@ -1336,6 +1393,7 @@ public final class PresentationCallImpl: PresentationCall { return .single(true) } let debugLogValue = Promise() + self.callSessionManager.drop(internalId: self.internalId, reason: .hangUp, debugLog: debugLogValue.get()) self.ongoingContext?.stop(debugLogValue: debugLogValue) diff --git a/submodules/TelegramCallsUI/Sources/PresentationCallManager.swift b/submodules/TelegramCallsUI/Sources/PresentationCallManager.swift index ca6722a9d1..31031d7e22 100644 --- a/submodules/TelegramCallsUI/Sources/PresentationCallManager.swift +++ b/submodules/TelegramCallsUI/Sources/PresentationCallManager.swift @@ -348,7 +348,7 @@ public final class PresentationCallManagerImpl: PresentationCallManager { internalId: firstState.2.id, peerId: firstState.2.peerId, isOutgoing: false, - isIncomingConference: firstState.2.isIncomingConference, + incomingConferenceSource: firstState.2.conferenceSource, peer: EnginePeer(firstState.1), proxyServer: strongSelf.proxyServer, auxiliaryServers: [], @@ -571,7 +571,7 @@ public final class PresentationCallManagerImpl: PresentationCallManager { |> mapToSignal { areVideoCallsAvailable -> Signal in let isVideoPossible: Bool = areVideoCallsAvailable - return context.account.callSessionManager.request(peerId: peerId, isVideo: isVideo, enableVideo: isVideoPossible, conferenceCall: nil, internalId: internalId) + return context.account.callSessionManager.request(peerId: peerId, isVideo: isVideo, enableVideo: isVideoPossible, internalId: internalId) } return (combineLatest(queue: .mainQueue(), @@ -616,7 +616,7 @@ public final class PresentationCallManagerImpl: PresentationCallManager { internalId: internalId, peerId: peerId, isOutgoing: true, - isIncomingConference: false, + incomingConferenceSource: nil, peer: nil, proxyServer: strongSelf.proxyServer, auxiliaryServers: [], @@ -847,8 +847,7 @@ public final class PresentationCallManagerImpl: PresentationCallManager { invite: nil, joinAsPeerId: nil, isStream: false, - encryptionKey: nil, - conferenceFromCallId: nil, + keyPair: nil, conferenceSourceId: nil, isConference: false, sharedAudioContext: nil @@ -1067,19 +1066,53 @@ public final class PresentationCallManagerImpl: PresentationCallManager { audioSession: self.audioSession, callKitIntegration: nil, getDeviceAccessData: self.getDeviceAccessData, - initialCall: initialCall, + initialCall: (initialCall, .id(id: initialCall.id, accessHash: initialCall.accessHash)), internalId: internalId, peerId: peerId, isChannel: isChannel, invite: invite, joinAsPeerId: joinAsPeerId, isStream: initialCall.isStream ?? false, - encryptionKey: nil, - conferenceFromCallId: nil, + keyPair: nil, conferenceSourceId: nil, isConference: false, sharedAudioContext: nil ) self.updateCurrentGroupCall(.group(call)) } + + public func joinConferenceCall( + accountContext: AccountContext, + initialCall: EngineGroupCallDescription, + reference: InternalGroupCallReference, + mode: JoinConferenceCallMode + ) { + let keyPair: TelegramKeyPair + switch mode { + case .joining: + guard let keyPairValue = TelegramE2EEncryptionProviderImpl.shared.generateKeyPair() else { + return + } + keyPair = keyPairValue + } + + let call = PresentationGroupCallImpl( + accountContext: accountContext, + audioSession: self.audioSession, + callKitIntegration: nil, + getDeviceAccessData: self.getDeviceAccessData, + initialCall: (initialCall, reference), + internalId: CallSessionInternalId(), + peerId: nil, + isChannel: false, + invite: nil, + joinAsPeerId: nil, + isStream: false, + keyPair: keyPair, + conferenceSourceId: nil, + isConference: true, + sharedAudioContext: nil + ) + self.updateCurrentGroupCall(.group(call)) + } } diff --git a/submodules/TelegramCallsUI/Sources/PresentationGroupCall.swift b/submodules/TelegramCallsUI/Sources/PresentationGroupCall.swift index 4a410b9657..b417c23c5b 100644 --- a/submodules/TelegramCallsUI/Sources/PresentationGroupCall.swift +++ b/submodules/TelegramCallsUI/Sources/PresentationGroupCall.swift @@ -17,6 +17,7 @@ import DeviceProximity import UndoUI import TemporaryCachedPeerDataManager import CallsEmoji +import TdBinding private extension GroupCallParticipantsContext.Participant { var allSsrcs: Set { @@ -94,7 +95,7 @@ public final class AccountGroupCallContextImpl: AccountGroupCallContext { public init(account: Account, engine: TelegramEngine, peerId: PeerId?, isChannel: Bool, call: EngineGroupCallDescription) { self.panelDataPromise.set(.single(nil)) - let state = engine.calls.getGroupCallParticipants(callId: call.id, accessHash: call.accessHash, offset: "", ssrcs: [], limit: 100, sortAscending: nil) + let state = engine.calls.getGroupCallParticipants(reference: .id(id: call.id, accessHash: call.accessHash), offset: "", ssrcs: [], limit: 100, sortAscending: nil) |> map(Optional.init) |> `catch` { _ -> Signal in return .single(nil) @@ -118,7 +119,7 @@ public final class AccountGroupCallContextImpl: AccountGroupCallContext { peerId: peerId, myPeerId: account.peerId, id: call.id, - accessHash: call.accessHash, + reference: .id(id: call.id, accessHash: call.accessHash), state: state, previousServiceState: nil ) @@ -147,7 +148,21 @@ public final class AccountGroupCallContextImpl: AccountGroupCallContext { return GroupCallPanelData( peerId: peerId, isChannel: isChannel, - info: GroupCallInfo(id: call.id, accessHash: call.accessHash, participantCount: state.totalCount, streamDcId: nil, title: state.title, scheduleTimestamp: state.scheduleTimestamp, subscribedToScheduled: state.subscribedToScheduled, recordingStartTimestamp: nil, sortAscending: state.sortAscending, defaultParticipantsAreMuted: state.defaultParticipantsAreMuted, isVideoEnabled: state.isVideoEnabled, unmutedVideoLimit: state.unmutedVideoLimit, isStream: state.isStream, upgradedPrivateCallId: state.upgradedPrivateCallId), + info: GroupCallInfo( + id: call.id, + accessHash: call.accessHash, + participantCount: state.totalCount, + streamDcId: nil, + title: state.title, + scheduleTimestamp: state.scheduleTimestamp, + subscribedToScheduled: state.subscribedToScheduled, + recordingStartTimestamp: nil, + sortAscending: state.sortAscending, + defaultParticipantsAreMuted: state.defaultParticipantsAreMuted, + isVideoEnabled: state.isVideoEnabled, + unmutedVideoLimit: state.unmutedVideoLimit, + isStream: state.isStream + ), topParticipants: topParticipants, participantCount: state.totalCount, activeSpeakers: activeSpeakers, @@ -537,11 +552,11 @@ private final class ScreencastInProcessIPCContext: ScreencastIPCContext { preferX264: false, logPath: "", onMutedSpeechActivityDetected: { _ in }, - encryptionKey: nil, isConference: self.isConference, audioIsActiveByDefault: true, isStream: false, - sharedAudioDevice: nil + sharedAudioDevice: nil, + encryptionContext: nil ) ) self.screencastCallContext = screencastCallContext @@ -613,10 +628,12 @@ private final class PendingConferenceInvitationContext { private var didNotifyEnded: Bool = false - init(callSessionManager: CallSessionManager, groupCall: GroupCallReference, encryptionKey: Data, peerId: PeerId, onStateUpdated: @escaping (State) -> Void, onEnded: @escaping (Bool) -> Void) { + init(callSessionManager: CallSessionManager, groupCall: GroupCallReference, peerId: PeerId, onStateUpdated: @escaping (State) -> Void, onEnded: @escaping (Bool) -> Void) { self.callSessionManager = callSessionManager - self.requestDisposable = (callSessionManager.request(peerId: peerId, isVideo: false, enableVideo: true, conferenceCall: (groupCall, encryptionKey)) + preconditionFailure() + + /*self.requestDisposable = (callSessionManager.request(peerId: peerId, isVideo: false, enableVideo: true, conferenceCall: (groupCall, encryptionKey)) |> deliverOnMainQueue).startStrict(next: { [weak self] internalId in guard let self else { return @@ -642,7 +659,7 @@ private final class PendingConferenceInvitationContext { break } }) - }) + })*/ } deinit { @@ -786,7 +803,7 @@ public final class PresentationGroupCallImpl: PresentationGroupCall { private let getDeviceAccessData: () -> (presentationData: PresentationData, present: (ViewController, Any?) -> Void, openSettings: () -> Void) - private(set) var initialCall: EngineGroupCallDescription? + private(set) var initialCall: (description: EngineGroupCallDescription, reference: InternalGroupCallReference)? public let internalId: CallSessionInternalId public let peerId: EnginePeer.Id? private let isChannel: Bool @@ -795,10 +812,28 @@ public final class PresentationGroupCallImpl: PresentationGroupCall { private var ignorePreviousJoinAsPeerId: (PeerId, UInt32)? private var reconnectingAsPeer: EnginePeer? + public private(set) var callId: Int64? + public private(set) var hasVideo: Bool public private(set) var hasScreencast: Bool private let isVideoEnabled: Bool + private let keyPair: TelegramKeyPair? + + private final class E2ECallState { + var call: TdCall? + var pendingIncomingBroadcastBlocks: [Data] = [] + } + private let e2eCall = Atomic(value: E2ECallState()) + + private var e2ePoll0Offset: Int? + private var e2ePoll0Timer: Foundation.Timer? + private var e2ePoll0Disposable: Disposable? + + private var e2ePoll1Offset: Int? + private var e2ePoll1Timer: Foundation.Timer? + private var e2ePoll1Disposable: Disposable? + private var temporaryJoinTimestamp: Int32 private var temporaryActivityTimestamp: Double? private var temporaryActivityRank: Int? @@ -864,6 +899,11 @@ public final class PresentationGroupCallImpl: PresentationGroupCall { return self.isNoiseSuppressionEnabledPromise.get() } private let isNoiseSuppressionEnabledDisposable = MetaDisposable() + + private let e2eEncryptionKeyHashValue = ValuePromise(nil) + public var e2eEncryptionKeyHash: Signal { + return self.e2eEncryptionKeyHashValue.get() + } private var isVideoMuted: Bool = false private let isVideoMutedDisposable = MetaDisposable() @@ -1053,18 +1093,9 @@ public final class PresentationGroupCallImpl: PresentationGroupCall { private var screencastStateDisposable: Disposable? public let isStream: Bool - private let encryptionKey: (key: Data, fingerprint: Int64)? private let sharedAudioContext: SharedCallAudioContext? - private let conferenceFromCallId: CallId? public let isConference: Bool - public var encryptionKeyValue: Data? { - if let key = self.encryptionKey?.key { - return dataForEmojiRawKey(key) - } else { - return nil - } - } private let conferenceSourceId: CallSessionInternalId? public var conferenceSource: CallSessionInternalId? { @@ -1085,15 +1116,14 @@ public final class PresentationGroupCallImpl: PresentationGroupCall { audioSession: ManagedAudioSession, callKitIntegration: CallKitIntegration?, getDeviceAccessData: @escaping () -> (presentationData: PresentationData, present: (ViewController, Any?) -> Void, openSettings: () -> Void), - initialCall: EngineGroupCallDescription?, + initialCall: (description: EngineGroupCallDescription, reference: InternalGroupCallReference)?, internalId: CallSessionInternalId, peerId: EnginePeer.Id?, isChannel: Bool, invite: String?, joinAsPeerId: EnginePeer.Id?, isStream: Bool, - encryptionKey: (key: Data, fingerprint: Int64)?, - conferenceFromCallId: CallId?, + keyPair: TelegramKeyPair?, conferenceSourceId: CallSessionInternalId?, isConference: Bool, sharedAudioContext: SharedCallAudioContext? @@ -1105,15 +1135,17 @@ public final class PresentationGroupCallImpl: PresentationGroupCall { self.getDeviceAccessData = getDeviceAccessData self.initialCall = initialCall + self.callId = initialCall?.description.id + self.internalId = internalId self.peerId = peerId self.isChannel = isChannel self.invite = invite self.joinAsPeerId = joinAsPeerId ?? accountContext.account.peerId self.schedulePending = initialCall == nil - self.isScheduled = initialCall == nil || initialCall?.scheduleTimestamp != nil + self.isScheduled = initialCall == nil || initialCall?.description.scheduleTimestamp != nil - self.stateValue = PresentationGroupCallState.initialValue(myPeerId: self.joinAsPeerId, title: initialCall?.title, scheduleTimestamp: initialCall?.scheduleTimestamp, subscribedToScheduled: initialCall?.subscribedToScheduled ?? false) + self.stateValue = PresentationGroupCallState.initialValue(myPeerId: self.joinAsPeerId, title: initialCall?.description.title, scheduleTimestamp: initialCall?.description.scheduleTimestamp, subscribedToScheduled: initialCall?.description.subscribedToScheduled ?? false) self.statePromise = ValuePromise(self.stateValue) self.temporaryJoinTimestamp = Int32(CFAbsoluteTimeGetCurrent() + NSTimeIntervalSince1970) @@ -1122,10 +1154,9 @@ public final class PresentationGroupCallImpl: PresentationGroupCall { self.hasVideo = false self.hasScreencast = false self.isStream = isStream - self.conferenceFromCallId = conferenceFromCallId self.conferenceSourceId = conferenceSourceId self.isConference = isConference - self.encryptionKey = encryptionKey + self.keyPair = keyPair var sharedAudioContext = sharedAudioContext if sharedAudioContext == nil { @@ -1283,14 +1314,47 @@ public final class PresentationGroupCallImpl: PresentationGroupCall { } } } - } else if case .joined = participantUpdate.participationStatusChange { - } else if let ssrc = participantUpdate.ssrc, self.ssrcMapping[ssrc] == nil { } } case let .call(isTerminated, _, _, _, _, _, _): if isTerminated { self.markAsCanBeRemoved() } + case let .conferenceChainBlocks(subChainId, blocks, nextOffset): + if let _ = self.keyPair { + var processBlock = true + let updateBaseOffset = nextOffset - blocks.count + if subChainId == 0 { + if let e2ePoll0Offset = self.e2ePoll0Offset { + if e2ePoll0Offset == updateBaseOffset { + self.e2ePoll0Offset = nextOffset + } else if e2ePoll0Offset < updateBaseOffset { + self.e2ePoll(subChainId: subChainId) + } else { + processBlock = false + } + } else { + processBlock = false + } + } else if subChainId == 1 { + if let e2ePoll1Offset = self.e2ePoll1Offset { + if e2ePoll1Offset == updateBaseOffset { + self.e2ePoll1Offset = nextOffset + } else if e2ePoll1Offset < updateBaseOffset { + self.e2ePoll(subChainId: subChainId) + } else { + processBlock = false + } + } else { + processBlock = false + } + } else { + processBlock = false + } + if processBlock { + self.addE2EBlocks(blocks: blocks, subChainId: subChainId) + } + } } } } @@ -1321,7 +1385,7 @@ public final class PresentationGroupCallImpl: PresentationGroupCall { }) if let initialCall = initialCall, let peerId, let temporaryParticipantsContext = (self.accountContext.cachedGroupCallContexts as? AccountGroupCallContextCacheImpl)?.impl.syncWith({ impl in - impl.get(account: accountContext.account, engine: accountContext.engine, peerId: peerId, isChannel: isChannel, call: EngineGroupCallDescription(id: initialCall.id, accessHash: initialCall.accessHash, title: initialCall.title, scheduleTimestamp: initialCall.scheduleTimestamp, subscribedToScheduled: initialCall.subscribedToScheduled, isStream: initialCall.isStream)) + impl.get(account: accountContext.account, engine: accountContext.engine, peerId: peerId, isChannel: isChannel, call: EngineGroupCallDescription(id: initialCall.description.id, accessHash: initialCall.description.accessHash, title: initialCall.description.title, scheduleTimestamp: initialCall.description.scheduleTimestamp, subscribedToScheduled: initialCall.description.subscribedToScheduled, isStream: initialCall.description.isStream)) }) { self.switchToTemporaryParticipantsContext(sourceContext: temporaryParticipantsContext.context.participantsContext, oldMyPeerId: self.joinAsPeerId) } else { @@ -1447,6 +1511,10 @@ public final class PresentationGroupCallImpl: PresentationGroupCall { self.peerUpdatesSubscription?.dispose() self.screencastStateDisposable?.dispose() self.pendingDisconnedUpgradedConferenceCallTimer?.invalidate() + self.e2ePoll0Timer?.invalidate() + self.e2ePoll0Disposable?.dispose() + self.e2ePoll1Timer?.invalidate() + self.e2ePoll1Disposable?.dispose() } private func switchToTemporaryParticipantsContext(sourceContext: GroupCallParticipantsContext?, oldMyPeerId: PeerId) { @@ -1471,7 +1539,7 @@ public final class PresentationGroupCallImpl: PresentationGroupCall { } if let sourceContext = sourceContext, let initialState = sourceContext.immediateState { - let temporaryParticipantsContext = self.accountContext.engine.calls.groupCall(peerId: self.peerId, myPeerId: myPeerId, id: sourceContext.id, accessHash: sourceContext.accessHash, state: initialState, previousServiceState: sourceContext.serviceState) + let temporaryParticipantsContext = self.accountContext.engine.calls.groupCall(peerId: self.peerId, myPeerId: myPeerId, id: sourceContext.id, reference: sourceContext.reference, state: initialState, previousServiceState: sourceContext.serviceState) self.temporaryParticipantsContext = temporaryParticipantsContext self.participantsContextStateDisposable.set((combineLatest(queue: .mainQueue(), myPeerData, @@ -1702,7 +1770,7 @@ public final class PresentationGroupCallImpl: PresentationGroupCall { peerId: self.peerId, myPeerId: self.joinAsPeerId, id: callInfo.id, - accessHash: callInfo.accessHash, + reference: .id(id: callInfo.id, accessHash: callInfo.accessHash), state: GroupCallParticipantsContext.State( participants: [], nextParticipantsFetchOffset: nil, @@ -1718,7 +1786,6 @@ public final class PresentationGroupCallImpl: PresentationGroupCall { isVideoEnabled: callInfo.isVideoEnabled, unmutedVideoLimit: callInfo.unmutedVideoLimit, isStream: callInfo.isStream, - upgradedPrivateCallId: callInfo.upgradedPrivateCallId, version: 0 ), previousServiceState: nil @@ -1817,7 +1884,21 @@ public final class PresentationGroupCallImpl: PresentationGroupCall { self.stateValue.subscribedToScheduled = state.subscribedToScheduled self.stateValue.scheduleTimestamp = self.isScheduledStarted ? nil : state.scheduleTimestamp if state.scheduleTimestamp == nil && !self.isScheduledStarted { - self.updateSessionState(internalState: .active(GroupCallInfo(id: callInfo.id, accessHash: callInfo.accessHash, participantCount: state.totalCount, streamDcId: callInfo.streamDcId, title: state.title, scheduleTimestamp: nil, subscribedToScheduled: false, recordingStartTimestamp: nil, sortAscending: true, defaultParticipantsAreMuted: callInfo.defaultParticipantsAreMuted ?? state.defaultParticipantsAreMuted, isVideoEnabled: callInfo.isVideoEnabled, unmutedVideoLimit: callInfo.unmutedVideoLimit, isStream: callInfo.isStream, upgradedPrivateCallId: callInfo.upgradedPrivateCallId)), audioSessionControl: self.audioSessionControl) + self.updateSessionState(internalState: .active(GroupCallInfo( + id: callInfo.id, + accessHash: callInfo.accessHash, + participantCount: state.totalCount, + streamDcId: callInfo.streamDcId, + title: state.title, + scheduleTimestamp: nil, + subscribedToScheduled: false, + recordingStartTimestamp: nil, + sortAscending: true, + defaultParticipantsAreMuted: callInfo.defaultParticipantsAreMuted ?? state.defaultParticipantsAreMuted, + isVideoEnabled: callInfo.isVideoEnabled, + unmutedVideoLimit: callInfo.unmutedVideoLimit, + isStream: callInfo.isStream + )), audioSessionControl: self.audioSessionControl) } else { self.summaryInfoState.set(.single(SummaryInfoState(info: GroupCallInfo( id: callInfo.id, @@ -1832,8 +1913,7 @@ public final class PresentationGroupCallImpl: PresentationGroupCall { defaultParticipantsAreMuted: state.defaultParticipantsAreMuted, isVideoEnabled: state.isVideoEnabled, unmutedVideoLimit: state.unmutedVideoLimit, - isStream: callInfo.isStream, - upgradedPrivateCallId: callInfo.upgradedPrivateCallId + isStream: callInfo.isStream )))) self.summaryParticipantsState.set(.single(SummaryParticipantsState( @@ -1929,9 +2009,6 @@ public final class PresentationGroupCallImpl: PresentationGroupCall { outgoingAudioBitrateKbit = Int32(value) } - var encryptionKey: Data? - encryptionKey = self.encryptionKey?.key - let contextAudioSessionActive: Signal if self.sharedAudioContext != nil { contextAudioSessionActive = .single(true) @@ -1943,6 +2020,26 @@ public final class PresentationGroupCallImpl: PresentationGroupCall { if self.isConference && self.conferenceSourceId != nil { audioIsActiveByDefault = false } + + var encryptionContext: OngoingGroupCallEncryptionContext? + if self.isConference { + class OngoingGroupCallEncryptionContextImpl: OngoingGroupCallEncryptionContext { + private let e2eCall: Atomic + + init(e2eCall: Atomic) { + self.e2eCall = e2eCall + } + + func encrypt(message: Data) -> Data? { + return self.e2eCall.with({ $0.call?.encrypt(message) }) + } + + func decrypt(message: Data) -> Data? { + return self.e2eCall.with({ $0.call?.decrypt(message) }) + } + } + encryptionContext = OngoingGroupCallEncryptionContextImpl(e2eCall: self.e2eCall) + } genericCallContext = .call(OngoingGroupCallContext(audioSessionActive: contextAudioSessionActive, video: self.videoCapturer, requestMediaChannelDescriptions: { [weak self] ssrcs, completion in let disposable = MetaDisposable() @@ -1969,7 +2066,7 @@ public final class PresentationGroupCallImpl: PresentationGroupCall { } self.onMutedSpeechActivityDetected?(value) } - }, encryptionKey: encryptionKey, isConference: self.isConference, audioIsActiveByDefault: audioIsActiveByDefault, isStream: self.isStream, sharedAudioDevice: self.sharedAudioContext?.audioDevice)) + }, isConference: self.isConference, audioIsActiveByDefault: audioIsActiveByDefault, isStream: self.isStream, sharedAudioDevice: self.sharedAudioContext?.audioDevice, encryptionContext: encryptionContext)) } self.genericCallContext = genericCallContext @@ -2084,18 +2181,51 @@ public final class PresentationGroupCallImpl: PresentationGroupCall { } else { peerAdminIds = .single([]) } + + var generateE2EData: ((Data?) -> JoinGroupCallE2E?)? + if let keyPair = self.keyPair { + if let mappedKeyPair = TdKeyPair(keyId: keyPair.id, publicKey: keyPair.publicKey.data) { + let userId = self.joinAsPeerId.id._internalGetInt64Value() + generateE2EData = { block -> JoinGroupCallE2E? in + if let block { + guard let resultBlock = tdGenerateSelfAddBlock(mappedKeyPair, userId, block) else { + return nil + } + return JoinGroupCallE2E( + publicKey: keyPair.publicKey, + block: resultBlock + ) + } else { + guard let resultBlock = tdGenerateZeroBlock(mappedKeyPair, userId) else { + return nil + } + return JoinGroupCallE2E( + publicKey: keyPair.publicKey, + block: resultBlock + ) + } + } + } + } + + let reference: InternalGroupCallReference + if let initialCall = self.initialCall { + reference = initialCall.reference + } else { + reference = .id(id: callInfo.id, accessHash: callInfo.accessHash) + } self.currentLocalSsrc = ssrc self.requestDisposable.set((self.accountContext.engine.calls.joinGroupCall( peerId: self.peerId, joinAs: self.joinAsPeerId, callId: callInfo.id, - accessHash: callInfo.accessHash, + reference: reference, preferMuted: true, joinPayload: joinPayload, peerAdminIds: peerAdminIds, inviteHash: self.invite, - keyFingerprint: self.encryptionKey?.fingerprint + generateE2E: generateE2EData ) |> deliverOnMainQueue).start(next: { [weak self] joinCallResult in guard let self else { @@ -2153,6 +2283,9 @@ public final class PresentationGroupCallImpl: PresentationGroupCall { } self.updateSessionState(internalState: .established(info: joinCallResult.callInfo, connectionMode: joinCallResult.connectionMode, clientParams: clientParams, localSsrc: ssrc, initialState: joinCallResult.state), audioSessionControl: self.audioSessionControl) + + self.e2ePoll(subChainId: 0) + self.e2ePoll(subChainId: 1) }, error: { [weak self] error in guard let self else { return @@ -2394,11 +2527,18 @@ public final class PresentationGroupCallImpl: PresentationGroupCall { serviceState = participantsContext.serviceState } + let reference: InternalGroupCallReference + if let initialCall = self.initialCall { + reference = initialCall.reference + } else { + reference = .id(id: callInfo.id, accessHash: callInfo.accessHash) + } + let participantsContext = self.accountContext.engine.calls.groupCall( peerId: self.peerId, myPeerId: self.joinAsPeerId, id: callInfo.id, - accessHash: callInfo.accessHash, + reference: reference, state: initialState, previousServiceState: serviceState ) @@ -2701,8 +2841,7 @@ public final class PresentationGroupCallImpl: PresentationGroupCall { defaultParticipantsAreMuted: state.defaultParticipantsAreMuted, isVideoEnabled: state.isVideoEnabled, unmutedVideoLimit: state.unmutedVideoLimit, - isStream: callInfo.isStream, - upgradedPrivateCallId: callInfo.upgradedPrivateCallId + isStream: callInfo.isStream )))) self.summaryParticipantsState.set(.single(SummaryParticipantsState( @@ -2759,6 +2898,117 @@ public final class PresentationGroupCallImpl: PresentationGroupCall { } } + private func addE2EBlocks(blocks: [Data], subChainId: Int) { + guard let initialCall = self.initialCall, let keyPair = self.keyPair else { + return + } + let (outBlocks, outEmoji) = self.e2eCall.with({ callState -> ([Data], Data) in + if let call = callState.call { + for block in blocks { + if subChainId == 0 { + call.applyBlock(block) + } else if subChainId == 1 { + call.applyBroadcastBlock(block) + } + } + return (call.takeOutgoingBroadcastBlocks(), call.emojiState()) + } else { + if subChainId == 0 { + guard let block = blocks.last else { + return ([], Data()) + } + guard let keyPair = TdKeyPair(keyId: keyPair.id, publicKey: keyPair.publicKey.data) else { + return ([], Data()) + } + guard let call = TdCall.make(with: keyPair, latestBlock: block) else { + return ([], Data()) + } + callState.call = call + for block in callState.pendingIncomingBroadcastBlocks { + call.applyBroadcastBlock(block) + } + callState.pendingIncomingBroadcastBlocks.removeAll() + return (call.takeOutgoingBroadcastBlocks(), call.emojiState()) + } else if subChainId == 1 { + callState.pendingIncomingBroadcastBlocks.append(contentsOf: blocks) + return ([], Data()) + } else { + return ([], Data()) + } + } + }) + self.e2eEncryptionKeyHashValue.set(outEmoji.isEmpty ? nil : outEmoji) + + //TODO:release queue + for outBlock in outBlocks { + let _ = self.accountContext.engine.calls.sendConferenceCallBroadcast(callId: initialCall.description.id, accessHash: initialCall.description.accessHash, block: outBlock).startStandalone() + } + } + + private func e2ePoll(subChainId: Int) { + guard let initialCall = self.initialCall else { + return + } + + let offset: Int? + if subChainId == 0 { + offset = self.e2ePoll0Offset + self.e2ePoll0Disposable?.dispose() + } else if subChainId == 1 { + offset = self.e2ePoll1Offset + self.e2ePoll1Disposable?.dispose() + } else { + return + } + + let disposable = (self.accountContext.engine.calls.pollConferenceCallBlockchain(reference: initialCall.reference, subChainId: subChainId, offset: offset ?? 0, limit: 10) + |> deliverOnMainQueue).startStrict(next: { [weak self] result in + guard let self else { + return + } + + var delayPoll = true + if let result { + if subChainId == 0 { + if self.e2ePoll0Offset != result.nextOffset { + self.e2ePoll0Offset = result.nextOffset + delayPoll = false + } + } else if subChainId == 1 { + if self.e2ePoll1Offset != result.nextOffset { + self.e2ePoll1Offset = result.nextOffset + delayPoll = false + } + } + self.addE2EBlocks(blocks: result.blocks, subChainId: subChainId) + } + + if subChainId == 0 { + self.e2ePoll0Timer?.invalidate() + self.e2ePoll0Timer = Foundation.Timer.scheduledTimer(withTimeInterval: delayPoll ? 1.0 : 0.0, repeats: false, block: { [weak self] _ in + guard let self else { + return + } + self.e2ePoll(subChainId: 0) + }) + } else if subChainId == 1 { + self.e2ePoll1Timer?.invalidate() + self.e2ePoll1Timer = Foundation.Timer.scheduledTimer(withTimeInterval: delayPoll ? 1.0 : 0.0, repeats: false, block: { [weak self] _ in + guard let self else { + return + } + self.e2ePoll(subChainId: 1) + }) + } + }) + + if subChainId == 0 { + self.e2ePoll0Disposable = disposable + } else if subChainId == 1 { + self.e2ePoll1Disposable = disposable + } + } + private func activateIncomingAudioIfNeeded() { if let genericCallContext = self.genericCallContext, case let .call(groupCall) = genericCallContext { groupCall.activateIncomingAudio() @@ -2807,7 +3057,7 @@ public final class PresentationGroupCallImpl: PresentationGroupCall { } if !remainingSsrcs.isEmpty, let callInfo = self.internalState.callInfo { - return (self.accountContext.engine.calls.getGroupCallParticipants(callId: callInfo.id, accessHash: callInfo.accessHash, offset: "", ssrcs: Array(remainingSsrcs), limit: 100, sortAscending: callInfo.sortAscending) + return (self.accountContext.engine.calls.getGroupCallParticipants(reference: .id(id: callInfo.id, accessHash: callInfo.accessHash), offset: "", ssrcs: Array(remainingSsrcs), limit: 100, sortAscending: callInfo.sortAscending) |> deliverOnMainQueue).start(next: { state in extractMediaChannelDescriptions(remainingSsrcs: &remainingSsrcs, participants: state.participants, into: &result) @@ -2913,7 +3163,7 @@ public final class PresentationGroupCallImpl: PresentationGroupCall { } self.markedAsCanBeRemoved = true - self.genericCallContext?.stop(account: self.account, reportCallId: self.conferenceFromCallId, debugLog: self.debugLog) + self.genericCallContext?.stop(account: self.account, reportCallId: nil, debugLog: self.debugLog) self.screencastIPCContext?.disableScreencast(account: self.account) self._canBeRemoved.set(.single(true)) @@ -3615,7 +3865,7 @@ public final class PresentationGroupCallImpl: PresentationGroupCall { let context = self.accountContext let currentCall: Signal if let initialCall = self.initialCall { - currentCall = context.engine.calls.getCurrentGroupCall(callId: initialCall.id, accessHash: initialCall.accessHash) + currentCall = context.engine.calls.getCurrentGroupCall(reference: initialCall.reference) |> mapError { _ -> CallError in return .generic } @@ -3623,7 +3873,7 @@ public final class PresentationGroupCallImpl: PresentationGroupCall { return summary?.info } } else if case let .active(callInfo) = self.internalState { - currentCall = context.engine.calls.getCurrentGroupCall(callId: callInfo.id, accessHash: callInfo.accessHash) + currentCall = context.engine.calls.getCurrentGroupCall(reference: .id(id: callInfo.id, accessHash: callInfo.accessHash)) |> mapError { _ -> CallError in return .generic } @@ -3662,7 +3912,17 @@ public final class PresentationGroupCallImpl: PresentationGroupCall { } if let value = value { - self.initialCall = EngineGroupCallDescription(id: value.id, accessHash: value.accessHash, title: value.title, scheduleTimestamp: nil, subscribedToScheduled: false, isStream: value.isStream) + var reference: InternalGroupCallReference = .id(id: value.id, accessHash: value.accessHash) + if let current = self.initialCall { + switch current.reference { + case .message, .link: + reference = current.reference + default: + break + } + } + self.initialCall = (EngineGroupCallDescription(id: value.id, accessHash: value.accessHash, title: value.title, scheduleTimestamp: nil, subscribedToScheduled: false, isStream: value.isStream), reference) + self.callId = value.id self.updateSessionState(internalState: .active(value), audioSessionControl: self.audioSessionControl) } else { @@ -3673,7 +3933,14 @@ public final class PresentationGroupCallImpl: PresentationGroupCall { public func invitePeer(_ peerId: PeerId) -> Bool { if self.isConference { - guard let initialCall = self.initialCall, let encryptionKey = self.encryptionKey else { + guard let initialCall = self.initialCall else { + return false + } + + //TODO:release + let _ = self.accountContext.engine.calls.inviteConferenceCallParticipant(callId: initialCall.description.id, accessHash: initialCall.description.accessHash, peerId: peerId).start() + return false + /*guard let initialCall = self.initialCall else { return false } if conferenceInvitationContexts[peerId] != nil { @@ -3685,7 +3952,6 @@ public final class PresentationGroupCallImpl: PresentationGroupCall { let invitationContext = PendingConferenceInvitationContext( callSessionManager: self.accountContext.account.callSessionManager, groupCall: GroupCallReference(id: initialCall.id, accessHash: initialCall.accessHash), - encryptionKey: encryptionKey.key, peerId: peerId, onStateUpdated: { state in onStateUpdated?(state) @@ -3733,7 +3999,7 @@ public final class PresentationGroupCallImpl: PresentationGroupCall { } } - return false + return false*/ } else { guard let callInfo = self.internalState.callInfo, !self.invitedPeersValue.contains(where: { $0.id == peerId }) else { return false @@ -3750,9 +4016,10 @@ public final class PresentationGroupCallImpl: PresentationGroupCall { } func setConferenceInvitedPeers(_ peerIds: [PeerId]) { - self.invitedPeersValue = peerIds.map { + //TODO:release + /*self.invitedPeersValue = peerIds.map { PresentationGroupCallInvitedPeer(id: $0, state: .requesting) - } + }*/ } public func removedPeer(_ peerId: PeerId) { @@ -3771,6 +4038,8 @@ public final class PresentationGroupCallImpl: PresentationGroupCall { public var inviteLinks: Signal { let engine = self.accountContext.engine + let initialCall = self.initialCall + let isConference = self.isConference return self.state |> map { state -> PeerId in @@ -3787,8 +4056,15 @@ public final class PresentationGroupCallImpl: PresentationGroupCall { } } |> mapToSignal { state in - if let callInfo = state.callInfo { - return engine.calls.groupCallInviteLinks(callId: callInfo.id, accessHash: callInfo.accessHash) + if let callInfo = state.callInfo { + let reference: InternalGroupCallReference + if let initialCall = initialCall { + reference = initialCall.reference + } else { + reference = .id(id: callInfo.id, accessHash: callInfo.accessHash) + } + + return engine.calls.groupCallInviteLinks(reference: reference, isConference: isConference) } else { return .complete() } @@ -3975,3 +4251,24 @@ private final class InProcessScreencastContext: ScreencastContext { self.context.setJoinResponse(payload: clientParams) } } + +public final class TelegramE2EEncryptionProviderImpl: TelegramE2EEncryptionProvider { + public static let shared = TelegramE2EEncryptionProviderImpl() + + public func generateKeyPair() -> TelegramKeyPair? { + guard let keyPair = TdKeyPair.generate() else { + return nil + } + guard let publicKey = TelegramPublicKey(data: keyPair.publicKey) else { + return nil + } + return TelegramKeyPair(id: keyPair.keyId, publicKey: publicKey) + } + + public func generateCallZeroBlock(keyPair: TelegramKeyPair, userId: Int64) -> Data? { + guard let keyPair = TdKeyPair(keyId: keyPair.id, publicKey: keyPair.publicKey.data) else { + return nil + } + return tdGenerateZeroBlock(keyPair, userId) + } +} diff --git a/submodules/TelegramCallsUI/Sources/VideoChatScreen.swift b/submodules/TelegramCallsUI/Sources/VideoChatScreen.swift index 05151e90e8..d31b49c950 100644 --- a/submodules/TelegramCallsUI/Sources/VideoChatScreen.swift +++ b/submodules/TelegramCallsUI/Sources/VideoChatScreen.swift @@ -24,6 +24,7 @@ import TelegramAudio import LegacyComponents import TooltipUI import BlurredBackgroundComponent +import CallsEmoji extension VideoChatCall { var myAudioLevelAndSpeaking: Signal<(Float, Bool), NoError> { @@ -262,6 +263,9 @@ final class VideoChatScreenComponent: Component { var speakingParticipantPeers: [EnginePeer] = [] var visibleParticipants: Set = Set() + var encryptionKeyEmoji: [String]? + var encryptionKeyEmojiDisposable: Disposable? + let isPresentedValue = ValuePromise(false, ignoreRepeated: true) var applicationStateDisposable: Disposable? @@ -313,6 +317,7 @@ final class VideoChatScreenComponent: Component { self.updateAvatarDisposable.dispose() self.inviteDisposable.dispose() self.conferenceCallStateDisposable?.dispose() + self.encryptionKeyEmojiDisposable?.dispose() } func animateIn() { @@ -647,9 +652,6 @@ final class VideoChatScreenComponent: Component { guard case let .group(groupCall) = self.currentCall else { return } - guard let peerId = groupCall.peerId else { - return - } let formatSendTitle: (String) -> String = { string in var string = string @@ -663,36 +665,89 @@ final class VideoChatScreenComponent: Component { return string } - let _ = (groupCall.accountContext.account.postbox.loadedPeerWithId(peerId) - |> deliverOnMainQueue).start(next: { [weak self] peer in - guard let self, let environment = self.environment, case let .group(groupCall) = self.currentCall else { - return - } - guard let peer = self.peer else { - return - } - guard let callState = self.callState else { - return - } - var inviteLinks = inviteLinks - - if case let .channel(peer) = peer, case .group = peer.info, !peer.flags.contains(.isGigagroup), !(peer.addressName ?? "").isEmpty, let defaultParticipantMuteState = callState.defaultParticipantMuteState { - let isMuted = defaultParticipantMuteState == .muted - - if !isMuted { - inviteLinks = GroupCallInviteLinks(listenerLink: inviteLinks.listenerLink, speakerLink: nil) + if let peerId = groupCall.peerId { + let _ = (groupCall.accountContext.account.postbox.loadedPeerWithId(peerId) + |> deliverOnMainQueue).start(next: { [weak self] peer in + guard let self, let environment = self.environment, case let .group(groupCall) = self.currentCall else { + return } + guard let peer = self.peer else { + return + } + guard let callState = self.callState else { + return + } + var inviteLinks = inviteLinks + + if case let .channel(peer) = peer, case .group = peer.info, !peer.flags.contains(.isGigagroup), !(peer.addressName ?? "").isEmpty, let defaultParticipantMuteState = callState.defaultParticipantMuteState { + let isMuted = defaultParticipantMuteState == .muted + + if !isMuted { + inviteLinks = GroupCallInviteLinks(listenerLink: inviteLinks.listenerLink, speakerLink: nil) + } + } + + var segmentedValues: [ShareControllerSegmentedValue]? + if let speakerLink = inviteLinks.speakerLink { + segmentedValues = [ShareControllerSegmentedValue(title: environment.strings.VoiceChat_InviteLink_Speaker, subject: .url(speakerLink), actionTitle: environment.strings.VoiceChat_InviteLink_CopySpeakerLink, formatSendTitle: { count in + return formatSendTitle(environment.strings.VoiceChat_InviteLink_InviteSpeakers(Int32(count))) + }), ShareControllerSegmentedValue(title: environment.strings.VoiceChat_InviteLink_Listener, subject: .url(inviteLinks.listenerLink), actionTitle: environment.strings.VoiceChat_InviteLink_CopyListenerLink, formatSendTitle: { count in + return formatSendTitle(environment.strings.VoiceChat_InviteLink_InviteListeners(Int32(count))) + })] + } + let shareController = ShareController(context: groupCall.accountContext, subject: .url(inviteLinks.listenerLink), segmentedValues: segmentedValues, forceTheme: environment.theme, forcedActionTitle: environment.strings.VoiceChat_CopyInviteLink) + shareController.completed = { [weak self] peerIds in + guard let self, case let .group(groupCall) = self.currentCall else { + return + } + let _ = (groupCall.accountContext.engine.data.get( + EngineDataList( + peerIds.map(TelegramEngine.EngineData.Item.Peer.Peer.init) + ) + ) + |> deliverOnMainQueue).start(next: { [weak self] peerList in + guard let self, let environment = self.environment, case let .group(groupCall) = self.currentCall else { + return + } + + let peers = peerList.compactMap { $0 } + let presentationData = groupCall.accountContext.sharedContext.currentPresentationData.with({ $0 }).withUpdated(theme: environment.theme) + + let text: String + var isSavedMessages = false + if peers.count == 1, let peer = peers.first { + isSavedMessages = peer.id == groupCall.accountContext.account.peerId + let peerName = peer.id == groupCall.accountContext.account.peerId ? presentationData.strings.DialogList_SavedMessages : peer.displayTitle(strings: presentationData.strings, displayOrder: presentationData.nameDisplayOrder) + text = presentationData.strings.VoiceChat_ForwardTooltip_Chat(peerName).string + } else if peers.count == 2, let firstPeer = peers.first, let secondPeer = peers.last { + let firstPeerName = firstPeer.id == groupCall.accountContext.account.peerId ? presentationData.strings.DialogList_SavedMessages : firstPeer.displayTitle(strings: presentationData.strings, displayOrder: presentationData.nameDisplayOrder) + let secondPeerName = secondPeer.id == groupCall.accountContext.account.peerId ? presentationData.strings.DialogList_SavedMessages : secondPeer.displayTitle(strings: presentationData.strings, displayOrder: presentationData.nameDisplayOrder) + text = presentationData.strings.VoiceChat_ForwardTooltip_TwoChats(firstPeerName, secondPeerName).string + } else if let peer = peers.first { + let peerName = peer.displayTitle(strings: presentationData.strings, displayOrder: presentationData.nameDisplayOrder) + text = presentationData.strings.VoiceChat_ForwardTooltip_ManyChats(peerName, "\(peers.count - 1)").string + } else { + text = "" + } + + environment.controller()?.present(UndoOverlayController(presentationData: presentationData, content: .forward(savedMessages: isSavedMessages, text: text), elevatedLayout: false, animateInAsReplacement: true, action: { _ in return false }), in: .current) + }) + } + shareController.actionCompleted = { [weak self] in + guard let self, let environment = self.environment, case let .group(groupCall) = self.currentCall else { + return + } + let presentationData = groupCall.accountContext.sharedContext.currentPresentationData.with({ $0 }).withUpdated(theme: environment.theme) + environment.controller()?.present(UndoOverlayController(presentationData: presentationData, content: .linkCopied(title: nil, text: presentationData.strings.VoiceChat_InviteLinkCopiedText), elevatedLayout: false, animateInAsReplacement: false, action: { _ in return false }), in: .window(.root)) + } + environment.controller()?.present(shareController, in: .window(.root)) + }) + } else if groupCall.isConference { + guard let environment = self.environment else { + return } - var segmentedValues: [ShareControllerSegmentedValue]? - if let speakerLink = inviteLinks.speakerLink { - segmentedValues = [ShareControllerSegmentedValue(title: environment.strings.VoiceChat_InviteLink_Speaker, subject: .url(speakerLink), actionTitle: environment.strings.VoiceChat_InviteLink_CopySpeakerLink, formatSendTitle: { count in - return formatSendTitle(environment.strings.VoiceChat_InviteLink_InviteSpeakers(Int32(count))) - }), ShareControllerSegmentedValue(title: environment.strings.VoiceChat_InviteLink_Listener, subject: .url(inviteLinks.listenerLink), actionTitle: environment.strings.VoiceChat_InviteLink_CopyListenerLink, formatSendTitle: { count in - return formatSendTitle(environment.strings.VoiceChat_InviteLink_InviteListeners(Int32(count))) - })] - } - let shareController = ShareController(context: groupCall.accountContext, subject: .url(inviteLinks.listenerLink), segmentedValues: segmentedValues, forceTheme: environment.theme, forcedActionTitle: environment.strings.VoiceChat_CopyInviteLink) + let shareController = ShareController(context: groupCall.accountContext, subject: .url(inviteLinks.listenerLink), forceTheme: environment.theme, forcedActionTitle: environment.strings.VoiceChat_CopyInviteLink) shareController.completed = { [weak self] peerIds in guard let self, case let .group(groupCall) = self.currentCall else { return @@ -738,7 +793,7 @@ final class VideoChatScreenComponent: Component { environment.controller()?.present(UndoOverlayController(presentationData: presentationData, content: .linkCopied(title: nil, text: presentationData.strings.VoiceChat_InviteLinkCopiedText), elevatedLayout: false, animateInAsReplacement: false, action: { _ in return false }), in: .window(.root)) } environment.controller()?.present(shareController, in: .window(.root)) - }) + } } private func onCameraPressed() { @@ -1325,6 +1380,28 @@ final class VideoChatScreenComponent: Component { } }) + self.encryptionKeyEmojiDisposable?.dispose() + self.encryptionKeyEmojiDisposable = (groupCall.e2eEncryptionKeyHash + |> deliverOnMainQueue).startStrict(next: { [weak self] e2eEncryptionKeyHash in + guard let self else { + return + } + var encryptionKeyEmoji: [String]? + if let e2eEncryptionKeyHash, e2eEncryptionKeyHash.count >= 32 { + if let value = stringForEmojiHashOfData(e2eEncryptionKeyHash.prefix(32), 4) { + if !value.isEmpty { + encryptionKeyEmoji = value + } + } + } + if self.encryptionKeyEmoji != encryptionKeyEmoji { + self.encryptionKeyEmoji = encryptionKeyEmoji + if !self.isUpdating { + self.state?.updated(transition: .spring(duration: 0.4)) + } + } + }) + self.conferenceCallStateDisposable?.dispose() self.conferenceCallStateDisposable = nil @@ -1961,7 +2038,7 @@ final class VideoChatScreenComponent: Component { } var encryptionKeyFrame: CGRect? - if component.initialCall.accountContext.sharedContext.immediateExperimentalUISettings.conferenceDebug { + if let encryptionKeyEmoji = self.encryptionKeyEmoji { navigationHeight -= 2.0 let encryptionKey: ComponentView var encryptionKeyTransition = transition @@ -1978,7 +2055,7 @@ final class VideoChatScreenComponent: Component { component: AnyComponent(VideoChatEncryptionKeyComponent( theme: environment.theme, strings: environment.strings, - emoji: ["👌", "🧡", "🌹", "🤷"], + emoji: encryptionKeyEmoji, isExpanded: self.isEncryptionKeyExpanded, tapAction: { [weak self] in guard let self else { @@ -2283,10 +2360,17 @@ final class VideoChatScreenComponent: Component { } if let encryptionKeyView = self.encryptionKey?.view, let encryptionKeyFrame { + var encryptionKeyTransition = transition if encryptionKeyView.superview == nil { + encryptionKeyTransition = encryptionKeyTransition.withAnimation(.none) self.containerView.addSubview(encryptionKeyView) + + ComponentTransition.immediate.setScale(view: encryptionKeyView, scale: 0.001) + encryptionKeyView.alpha = 0.0 } - transition.setFrame(view: encryptionKeyView, frame: encryptionKeyFrame) + encryptionKeyTransition.setPosition(view: encryptionKeyView, position: encryptionKeyFrame.center) + encryptionKeyTransition.setBounds(view: encryptionKeyView, bounds: CGRect(origin: CGPoint(), size: encryptionKeyFrame.size)) + transition.setScale(view: encryptionKeyView, scale: 1.0) alphaTransition.setAlpha(view: encryptionKeyView, alpha: self.isAnimatedOutFromPrivateCall ? 0.0 : 1.0) if self.isEncryptionKeyExpanded { diff --git a/submodules/TelegramCallsUI/Sources/VideoChatScreenInviteMembers.swift b/submodules/TelegramCallsUI/Sources/VideoChatScreenInviteMembers.swift index 7eed5568b4..422c2cbe5e 100644 --- a/submodules/TelegramCallsUI/Sources/VideoChatScreenInviteMembers.swift +++ b/submodules/TelegramCallsUI/Sources/VideoChatScreenInviteMembers.swift @@ -16,7 +16,7 @@ extension VideoChatScreenComponent.View { return } - if groupCall.accountContext.sharedContext.immediateExperimentalUISettings.conferenceDebug { + /*if groupCall.accountContext.sharedContext.immediateExperimentalUISettings.conferenceDebug { guard let navigationController = self.environment?.controller()?.navigationController as? NavigationController else { return } @@ -39,7 +39,7 @@ extension VideoChatScreenComponent.View { }) self.environment?.controller()?.present(controller, in: .window(.root), with: nil) return - } + }*/ if groupCall.isConference { var disablePeerIds: [EnginePeer.Id] = [] diff --git a/submodules/TelegramCallsUI/Sources/VideoChatScreenMoreMenu.swift b/submodules/TelegramCallsUI/Sources/VideoChatScreenMoreMenu.swift index 79b30fd0a8..ae40c74c4e 100644 --- a/submodules/TelegramCallsUI/Sources/VideoChatScreenMoreMenu.swift +++ b/submodules/TelegramCallsUI/Sources/VideoChatScreenMoreMenu.swift @@ -175,7 +175,7 @@ extension VideoChatScreenComponent.View { } } - if case let .group(groupCall) = currentCall, let encryptionKey = groupCall.encryptionKeyValue { + /*if case let .group(groupCall) = currentCall, let encryptionKey = groupCall.encryptionKeyValue { //TODO:localize let emojiKey = resolvedEmojiKey(data: encryptionKey) items.append(.action(ContextMenuActionItem(text: "Encryption Key", textLayout: .secondLineWithValue(emojiKey.joined(separator: "")), icon: { theme in @@ -202,7 +202,7 @@ extension VideoChatScreenComponent.View { environment.controller()?.present(alertController, in: .window(.root)) }))) items.append(.separator) - } + }*/ if let (availableOutputs, currentOutput) = self.audioOutputState, availableOutputs.count > 1 { var currentOutputTitle = "" diff --git a/submodules/TelegramCallsUI/Sources/VoiceChatJoinScreen.swift b/submodules/TelegramCallsUI/Sources/VoiceChatJoinScreen.swift index 586d5d3c08..403f403b07 100644 --- a/submodules/TelegramCallsUI/Sources/VoiceChatJoinScreen.swift +++ b/submodules/TelegramCallsUI/Sources/VoiceChatJoinScreen.swift @@ -77,7 +77,7 @@ public final class VoiceChatJoinScreen: ViewController { if let call = call { let peer = context.engine.data.get(TelegramEngine.EngineData.Item.Peer.Peer(id: peerId)) |> castError(GetCurrentGroupCallError.self) - return combineLatest(peer, context.engine.calls.getCurrentGroupCall(callId: call.id, accessHash: call.accessHash)) + return combineLatest(peer, context.engine.calls.getCurrentGroupCall(reference: .id(id: call.id, accessHash: call.accessHash))) |> map { peer, call -> (EnginePeer, GroupCallSummary)? in if let peer = peer, let call = call { return (peer, call) diff --git a/submodules/TelegramCore/Sources/Account/AccountIntermediateState.swift b/submodules/TelegramCore/Sources/Account/AccountIntermediateState.swift index 1b5e1de5ab..21d96b74db 100644 --- a/submodules/TelegramCore/Sources/Account/AccountIntermediateState.swift +++ b/submodules/TelegramCore/Sources/Account/AccountIntermediateState.swift @@ -116,6 +116,7 @@ enum AccountStateMutationOperation { case UpdateReadThread(threadMessageId: MessageId, readMaxId: Int32, isIncoming: Bool, mainChannelMessage: MessageId?) case UpdateGroupCallParticipants(id: Int64, accessHash: Int64, participants: [Api.GroupCallParticipant], version: Int32) case UpdateGroupCall(peerId: PeerId?, call: Api.GroupCall) + case UpdateGroupCallChainBlocks(id: Int64, accessHash: Int64, subChainId: Int32, blocks: [Data], nextOffset: Int32) case UpdateAutoremoveTimeout(peer: Api.Peer, value: CachedPeerAutoremoveTimeout.Value?) case UpdateAttachMenuBots case UpdateAudioTranscription(messageId: MessageId, id: Int64, isPending: Bool, text: String) @@ -403,6 +404,10 @@ struct AccountMutableState { self.addOperation(.UpdateGroupCall(peerId: peerId, call: call)) } + mutating func updateGroupCallChainBlocks(id: Int64, accessHash: Int64, subChainId: Int32, blocks: [Data], nextOffset: Int32) { + self.addOperation(.UpdateGroupCallChainBlocks(id: id, accessHash: accessHash, subChainId: subChainId, blocks: blocks, nextOffset: nextOffset)) + } + mutating func updateAutoremoveTimeout(peer: Api.Peer, value: CachedPeerAutoremoveTimeout.Value?) { self.addOperation(.UpdateAutoremoveTimeout(peer: peer, value: value)) } @@ -709,7 +714,7 @@ struct AccountMutableState { mutating func addOperation(_ operation: AccountStateMutationOperation) { switch operation { - case .DeleteMessages, .DeleteMessagesWithGlobalIds, .EditMessage, .UpdateMessagePoll, .UpdateMessageReactions, .UpdateMedia, .ReadOutbox, .ReadGroupFeedInbox, .MergePeerPresences, .UpdateSecretChat, .AddSecretMessages, .ReadSecretOutbox, .AddPeerInputActivity, .UpdateCachedPeerData, .UpdatePinnedItemIds, .UpdatePinnedSavedItemIds, .UpdatePinnedTopic, .UpdatePinnedTopicOrder, .ReadMessageContents, .UpdateMessageImpressionCount, .UpdateMessageForwardsCount, .UpdateInstalledStickerPacks, .UpdateRecentGifs, .UpdateChatInputState, .UpdateCall, .AddCallSignalingData, .UpdateLangPack, .UpdateMinAvailableMessage, .UpdatePeerChatUnreadMark, .UpdateIsContact, .UpdatePeerChatInclusion, .UpdatePeersNearby, .UpdateTheme, .UpdateWallpaper, .SyncChatListFilters, .UpdateChatListFilterOrder, .UpdateChatListFilter, .UpdateReadThread, .UpdateGroupCallParticipants, .UpdateGroupCall, .UpdateMessagesPinned, .UpdateAutoremoveTimeout, .UpdateAttachMenuBots, .UpdateAudioTranscription, .UpdateConfig, .UpdateExtendedMedia, .ResetForumTopic, .UpdateStory, .UpdateReadStories, .UpdateStoryStealthMode, .UpdateStorySentReaction, .UpdateNewAuthorization, .UpdateRevenueBalances, .UpdateStarsBalance, .UpdateStarsRevenueStatus, .UpdateStarsReactionsDefaultPrivacy, .ReportMessageDelivery: + case .DeleteMessages, .DeleteMessagesWithGlobalIds, .EditMessage, .UpdateMessagePoll, .UpdateMessageReactions, .UpdateMedia, .ReadOutbox, .ReadGroupFeedInbox, .MergePeerPresences, .UpdateSecretChat, .AddSecretMessages, .ReadSecretOutbox, .AddPeerInputActivity, .UpdateCachedPeerData, .UpdatePinnedItemIds, .UpdatePinnedSavedItemIds, .UpdatePinnedTopic, .UpdatePinnedTopicOrder, .ReadMessageContents, .UpdateMessageImpressionCount, .UpdateMessageForwardsCount, .UpdateInstalledStickerPacks, .UpdateRecentGifs, .UpdateChatInputState, .UpdateCall, .AddCallSignalingData, .UpdateLangPack, .UpdateMinAvailableMessage, .UpdatePeerChatUnreadMark, .UpdateIsContact, .UpdatePeerChatInclusion, .UpdatePeersNearby, .UpdateTheme, .UpdateWallpaper, .SyncChatListFilters, .UpdateChatListFilterOrder, .UpdateChatListFilter, .UpdateReadThread, .UpdateGroupCallParticipants, .UpdateGroupCall, .UpdateGroupCallChainBlocks, .UpdateMessagesPinned, .UpdateAutoremoveTimeout, .UpdateAttachMenuBots, .UpdateAudioTranscription, .UpdateConfig, .UpdateExtendedMedia, .ResetForumTopic, .UpdateStory, .UpdateReadStories, .UpdateStoryStealthMode, .UpdateStorySentReaction, .UpdateNewAuthorization, .UpdateRevenueBalances, .UpdateStarsBalance, .UpdateStarsRevenueStatus, .UpdateStarsReactionsDefaultPrivacy, .ReportMessageDelivery: break case let .AddMessages(messages, location): for message in messages { @@ -858,6 +863,7 @@ struct AccountReplayedFinalState { let updatedStarsRevenueStatus: [PeerId: StarsRevenueStats.Balances] let sentScheduledMessageIds: Set let reportMessageDelivery: Set + let addedConferenceInvitationMessagesIds: [MessageId] } struct AccountFinalStateEvents { @@ -889,12 +895,13 @@ struct AccountFinalStateEvents { let updatedStarsBalance: [PeerId: StarsAmount] let updatedStarsRevenueStatus: [PeerId: StarsRevenueStats.Balances] let reportMessageDelivery: Set + let addedConferenceInvitationMessagesIds: [MessageId] var isEmpty: Bool { - return self.addedIncomingMessageIds.isEmpty && self.addedReactionEvents.isEmpty && self.wasScheduledMessageIds.isEmpty && self.deletedMessageIds.isEmpty && self.sentScheduledMessageIds.isEmpty && self.updatedTypingActivities.isEmpty && self.updatedWebpages.isEmpty && self.updatedCalls.isEmpty && self.addedCallSignalingData.isEmpty && self.updatedGroupCallParticipants.isEmpty && self.storyUpdates.isEmpty && self.updatedPeersNearby?.isEmpty ?? true && self.isContactUpdates.isEmpty && self.displayAlerts.isEmpty && self.dismissBotWebViews.isEmpty && self.delayNotificatonsUntil == nil && self.updatedMaxMessageId == nil && self.updatedQts == nil && self.externallyUpdatedPeerId.isEmpty && !authorizationListUpdated && self.updatedIncomingThreadReadStates.isEmpty && self.updatedOutgoingThreadReadStates.isEmpty && !self.updateConfig && !self.isPremiumUpdated && self.updatedRevenueBalances.isEmpty && self.updatedStarsBalance.isEmpty && self.updatedStarsRevenueStatus.isEmpty && self.reportMessageDelivery.isEmpty + return self.addedIncomingMessageIds.isEmpty && self.addedReactionEvents.isEmpty && self.wasScheduledMessageIds.isEmpty && self.deletedMessageIds.isEmpty && self.sentScheduledMessageIds.isEmpty && self.updatedTypingActivities.isEmpty && self.updatedWebpages.isEmpty && self.updatedCalls.isEmpty && self.addedCallSignalingData.isEmpty && self.updatedGroupCallParticipants.isEmpty && self.storyUpdates.isEmpty && self.updatedPeersNearby?.isEmpty ?? true && self.isContactUpdates.isEmpty && self.displayAlerts.isEmpty && self.dismissBotWebViews.isEmpty && self.delayNotificatonsUntil == nil && self.updatedMaxMessageId == nil && self.updatedQts == nil && self.externallyUpdatedPeerId.isEmpty && !authorizationListUpdated && self.updatedIncomingThreadReadStates.isEmpty && self.updatedOutgoingThreadReadStates.isEmpty && !self.updateConfig && !self.isPremiumUpdated && self.updatedRevenueBalances.isEmpty && self.updatedStarsBalance.isEmpty && self.updatedStarsRevenueStatus.isEmpty && self.reportMessageDelivery.isEmpty && self.addedConferenceInvitationMessagesIds.isEmpty } - init(addedIncomingMessageIds: [MessageId] = [], addedReactionEvents: [(reactionAuthor: Peer, reaction: MessageReaction.Reaction, message: Message, timestamp: Int32)] = [], wasScheduledMessageIds: [MessageId] = [], deletedMessageIds: [DeletedMessageId] = [], updatedTypingActivities: [PeerActivitySpace: [PeerId: PeerInputActivity?]] = [:], updatedWebpages: [MediaId: TelegramMediaWebpage] = [:], updatedCalls: [Api.PhoneCall] = [], addedCallSignalingData: [(Int64, Data)] = [], updatedGroupCallParticipants: [(Int64, GroupCallParticipantsContext.Update)] = [], storyUpdates: [InternalStoryUpdate] = [], updatedPeersNearby: [PeerNearby]? = nil, isContactUpdates: [(PeerId, Bool)] = [], displayAlerts: [(text: String, isDropAuth: Bool)] = [], dismissBotWebViews: [Int64] = [], delayNotificatonsUntil: Int32? = nil, updatedMaxMessageId: Int32? = nil, updatedQts: Int32? = nil, externallyUpdatedPeerId: Set = Set(), authorizationListUpdated: Bool = false, updatedIncomingThreadReadStates: [MessageId: MessageId.Id] = [:], updatedOutgoingThreadReadStates: [MessageId: MessageId.Id] = [:], updateConfig: Bool = false, isPremiumUpdated: Bool = false, updatedRevenueBalances: [PeerId: RevenueStats.Balances] = [:], updatedStarsBalance: [PeerId: StarsAmount] = [:], updatedStarsRevenueStatus: [PeerId: StarsRevenueStats.Balances] = [:], sentScheduledMessageIds: Set = Set(), reportMessageDelivery: Set = Set()) { + init(addedIncomingMessageIds: [MessageId] = [], addedReactionEvents: [(reactionAuthor: Peer, reaction: MessageReaction.Reaction, message: Message, timestamp: Int32)] = [], wasScheduledMessageIds: [MessageId] = [], deletedMessageIds: [DeletedMessageId] = [], updatedTypingActivities: [PeerActivitySpace: [PeerId: PeerInputActivity?]] = [:], updatedWebpages: [MediaId: TelegramMediaWebpage] = [:], updatedCalls: [Api.PhoneCall] = [], addedCallSignalingData: [(Int64, Data)] = [], updatedGroupCallParticipants: [(Int64, GroupCallParticipantsContext.Update)] = [], storyUpdates: [InternalStoryUpdate] = [], updatedPeersNearby: [PeerNearby]? = nil, isContactUpdates: [(PeerId, Bool)] = [], displayAlerts: [(text: String, isDropAuth: Bool)] = [], dismissBotWebViews: [Int64] = [], delayNotificatonsUntil: Int32? = nil, updatedMaxMessageId: Int32? = nil, updatedQts: Int32? = nil, externallyUpdatedPeerId: Set = Set(), authorizationListUpdated: Bool = false, updatedIncomingThreadReadStates: [MessageId: MessageId.Id] = [:], updatedOutgoingThreadReadStates: [MessageId: MessageId.Id] = [:], updateConfig: Bool = false, isPremiumUpdated: Bool = false, updatedRevenueBalances: [PeerId: RevenueStats.Balances] = [:], updatedStarsBalance: [PeerId: StarsAmount] = [:], updatedStarsRevenueStatus: [PeerId: StarsRevenueStats.Balances] = [:], sentScheduledMessageIds: Set = Set(), reportMessageDelivery: Set = Set(), addedConferenceInvitationMessagesIds: [MessageId] = []) { self.addedIncomingMessageIds = addedIncomingMessageIds self.addedReactionEvents = addedReactionEvents self.wasScheduledMessageIds = wasScheduledMessageIds @@ -923,6 +930,7 @@ struct AccountFinalStateEvents { self.updatedStarsRevenueStatus = updatedStarsRevenueStatus self.sentScheduledMessageIds = sentScheduledMessageIds self.reportMessageDelivery = reportMessageDelivery + self.addedConferenceInvitationMessagesIds = addedConferenceInvitationMessagesIds } init(state: AccountReplayedFinalState) { @@ -954,6 +962,7 @@ struct AccountFinalStateEvents { self.updatedStarsRevenueStatus = state.updatedStarsRevenueStatus self.sentScheduledMessageIds = state.sentScheduledMessageIds self.reportMessageDelivery = state.reportMessageDelivery + self.addedConferenceInvitationMessagesIds = state.addedConferenceInvitationMessagesIds } func union(with other: AccountFinalStateEvents) -> AccountFinalStateEvents { @@ -988,7 +997,38 @@ struct AccountFinalStateEvents { var reportMessageDelivery = self.reportMessageDelivery reportMessageDelivery.formUnion(other.reportMessageDelivery) + + var addedConferenceInvitationMessagesIds = self.addedConferenceInvitationMessagesIds + addedConferenceInvitationMessagesIds.append(contentsOf: other.addedConferenceInvitationMessagesIds) - return AccountFinalStateEvents(addedIncomingMessageIds: self.addedIncomingMessageIds + other.addedIncomingMessageIds, addedReactionEvents: self.addedReactionEvents + other.addedReactionEvents, wasScheduledMessageIds: self.wasScheduledMessageIds + other.wasScheduledMessageIds, deletedMessageIds: self.deletedMessageIds + other.deletedMessageIds, updatedTypingActivities: self.updatedTypingActivities, updatedWebpages: self.updatedWebpages, updatedCalls: self.updatedCalls + other.updatedCalls, addedCallSignalingData: self.addedCallSignalingData + other.addedCallSignalingData, updatedGroupCallParticipants: self.updatedGroupCallParticipants + other.updatedGroupCallParticipants, storyUpdates: self.storyUpdates + other.storyUpdates, isContactUpdates: self.isContactUpdates + other.isContactUpdates, displayAlerts: self.displayAlerts + other.displayAlerts, dismissBotWebViews: self.dismissBotWebViews + other.dismissBotWebViews, delayNotificatonsUntil: delayNotificatonsUntil, updatedMaxMessageId: updatedMaxMessageId, updatedQts: updatedQts, externallyUpdatedPeerId: externallyUpdatedPeerId, authorizationListUpdated: authorizationListUpdated, updatedIncomingThreadReadStates: self.updatedIncomingThreadReadStates.merging(other.updatedIncomingThreadReadStates, uniquingKeysWith: { lhs, _ in lhs }), updateConfig: updateConfig, isPremiumUpdated: isPremiumUpdated, updatedRevenueBalances: self.updatedRevenueBalances.merging(other.updatedRevenueBalances, uniquingKeysWith: { lhs, _ in lhs }), updatedStarsBalance: self.updatedStarsBalance.merging(other.updatedStarsBalance, uniquingKeysWith: { lhs, _ in lhs }), updatedStarsRevenueStatus: self.updatedStarsRevenueStatus.merging(other.updatedStarsRevenueStatus, uniquingKeysWith: { lhs, _ in lhs }), sentScheduledMessageIds: sentScheduledMessageIds, reportMessageDelivery: reportMessageDelivery) + return AccountFinalStateEvents( + addedIncomingMessageIds: self.addedIncomingMessageIds + other.addedIncomingMessageIds, + addedReactionEvents: self.addedReactionEvents + other.addedReactionEvents, + wasScheduledMessageIds: self.wasScheduledMessageIds + other.wasScheduledMessageIds, + deletedMessageIds: self.deletedMessageIds + other.deletedMessageIds, + updatedTypingActivities: self.updatedTypingActivities, + updatedWebpages: self.updatedWebpages, + updatedCalls: self.updatedCalls + other.updatedCalls, + addedCallSignalingData: self.addedCallSignalingData + other.addedCallSignalingData, + updatedGroupCallParticipants: self.updatedGroupCallParticipants + other.updatedGroupCallParticipants, + storyUpdates: self.storyUpdates + other.storyUpdates, + isContactUpdates: self.isContactUpdates + other.isContactUpdates, + displayAlerts: self.displayAlerts + other.displayAlerts, + dismissBotWebViews: self.dismissBotWebViews + other.dismissBotWebViews, + delayNotificatonsUntil: delayNotificatonsUntil, + updatedMaxMessageId: updatedMaxMessageId, + updatedQts: updatedQts, + externallyUpdatedPeerId: externallyUpdatedPeerId, + authorizationListUpdated: authorizationListUpdated, + updatedIncomingThreadReadStates: self.updatedIncomingThreadReadStates.merging(other.updatedIncomingThreadReadStates,uniquingKeysWith: { lhs, _ in lhs }), + updateConfig: updateConfig, + isPremiumUpdated: isPremiumUpdated, + updatedRevenueBalances: self.updatedRevenueBalances.merging(other.updatedRevenueBalances, uniquingKeysWith: { lhs, _ in lhs }), + updatedStarsBalance: self.updatedStarsBalance.merging(other.updatedStarsBalance, uniquingKeysWith: { lhs, _ in lhs }), + updatedStarsRevenueStatus: self.updatedStarsRevenueStatus.merging(other.updatedStarsRevenueStatus, uniquingKeysWith: { lhs, _ in lhs }), + sentScheduledMessageIds: sentScheduledMessageIds, + reportMessageDelivery: reportMessageDelivery, + addedConferenceInvitationMessagesIds: addedConferenceInvitationMessagesIds + ) } } diff --git a/submodules/TelegramCore/Sources/ApiUtils/StoreMessage_Telegram.swift b/submodules/TelegramCore/Sources/ApiUtils/StoreMessage_Telegram.swift index d3fe483a2e..9feaa78847 100644 --- a/submodules/TelegramCore/Sources/ApiUtils/StoreMessage_Telegram.swift +++ b/submodules/TelegramCore/Sources/ApiUtils/StoreMessage_Telegram.swift @@ -262,6 +262,10 @@ func apiMessagePeerIds(_ message: Api.Message) -> [PeerId] { result.append(boostPeer.peerId) case let .messageActionPaymentRefunded(_, peer, _, _, _, _): result.append(peer.peerId) + case let .messageActionConferenceCall(_, _, _, otherParticipants): + if let otherParticipants { + result.append(contentsOf: otherParticipants.map(\.peerId)) + } } return result diff --git a/submodules/TelegramCore/Sources/ApiUtils/TelegramMediaAction.swift b/submodules/TelegramCore/Sources/ApiUtils/TelegramMediaAction.swift index 2dccae65da..304915e48d 100644 --- a/submodules/TelegramCore/Sources/ApiUtils/TelegramMediaAction.swift +++ b/submodules/TelegramCore/Sources/ApiUtils/TelegramMediaAction.swift @@ -80,6 +80,8 @@ func telegramMediaActionFromApiAction(_ action: Api.MessageAction) -> TelegramMe switch call { case let .inputGroupCall(id, accessHash): return TelegramMediaAction(action: .groupPhoneCall(callId: id, accessHash: accessHash, scheduleDate: nil, duration: duration)) + case .inputGroupCallSlug, .inputGroupCallInviteMessage: + return nil } case let .messageActionInviteToGroupCall(call, userIds): switch call { @@ -87,6 +89,8 @@ func telegramMediaActionFromApiAction(_ action: Api.MessageAction) -> TelegramMe return TelegramMediaAction(action: .inviteToGroupPhoneCall(callId: id, accessHash: accessHash, peerIds: userIds.map { userId in PeerId(namespace: Namespaces.Peer.CloudUser, id: PeerId.Id._internalFromInt64Value(userId)) })) + case .inputGroupCallSlug, .inputGroupCallInviteMessage: + return nil } case let .messageActionSetMessagesTTL(_, period, autoSettingFrom): return TelegramMediaAction(action: .messageAutoremoveTimeoutUpdated(period: period, autoSettingSource: autoSettingFrom.flatMap { PeerId(namespace: Namespaces.Peer.CloudUser, id: PeerId.Id._internalFromInt64Value($0)) })) @@ -94,6 +98,8 @@ func telegramMediaActionFromApiAction(_ action: Api.MessageAction) -> TelegramMe switch call { case let .inputGroupCall(id, accessHash): return TelegramMediaAction(action: .groupPhoneCall(callId: id, accessHash: accessHash, scheduleDate: scheduleDate, duration: nil)) + case .inputGroupCallSlug, .inputGroupCallInviteMessage: + return nil } case let .messageActionSetChatTheme(emoji): return TelegramMediaAction(action: .setChatTheme(emoji: emoji)) @@ -195,22 +201,28 @@ func telegramMediaActionFromApiAction(_ action: Api.MessageAction) -> TelegramMe return TelegramMediaAction(action: .paidMessagesRefunded(count: count, stars: stars)) case let .messageActionPaidMessagesPrice(stars): return TelegramMediaAction(action: .paidMessagesPriceEdited(stars: stars)) + case let .messageActionConferenceCall(_, callId, duration, otherParticipants): + return TelegramMediaAction(action: .conferenceCall( + callId: callId, + duration: duration, + otherParticipants: otherParticipants.flatMap({ return $0.map(\.peerId) }) ?? [] + )) } } extension PhoneCallDiscardReason { init(apiReason: Api.PhoneCallDiscardReason) { switch apiReason { - case .phoneCallDiscardReasonBusy: - self = .busy - case .phoneCallDiscardReasonDisconnect: - self = .disconnect - case .phoneCallDiscardReasonHangup: - self = .hangup - case .phoneCallDiscardReasonMissed: - self = .missed - case .phoneCallDiscardReasonAllowGroupCall: - self = .hangup + case .phoneCallDiscardReasonBusy: + self = .busy + case .phoneCallDiscardReasonDisconnect: + self = .disconnect + case .phoneCallDiscardReasonHangup: + self = .hangup + case .phoneCallDiscardReasonMissed: + self = .missed + case .phoneCallDiscardReasonMigrateConferenceCall: + self = .hangup } } } diff --git a/submodules/TelegramCore/Sources/State/AccountStateManagementUtils.swift b/submodules/TelegramCore/Sources/State/AccountStateManagementUtils.swift index cd4d1e7e3c..703ef970a2 100644 --- a/submodules/TelegramCore/Sources/State/AccountStateManagementUtils.swift +++ b/submodules/TelegramCore/Sources/State/AccountStateManagementUtils.swift @@ -1629,10 +1629,16 @@ private func finalStateWithUpdatesAndServerTime(accountPeerId: PeerId, postbox: switch call { case let .inputGroupCall(id, accessHash): updatedState.updateGroupCallParticipants(id: id, accessHash: accessHash, participants: participants, version: version) + case .inputGroupCallSlug, .inputGroupCallInviteMessage: + break } case let .updateGroupCall(_, channelId, call): updatedState.updateGroupCall(peerId: channelId.flatMap { PeerId(namespace: Namespaces.Peer.CloudChannel, id: PeerId.Id._internalFromInt64Value($0)) }, call: call) updatedState.updateGroupCall(peerId: channelId.flatMap { PeerId(namespace: Namespaces.Peer.CloudGroup, id: PeerId.Id._internalFromInt64Value($0)) }, call: call) + case let .updateGroupCallChainBlocks(call, subChainId, blocks, nextOffset): + if case let .inputGroupCall(id, accessHash) = call { + updatedState.updateGroupCallChainBlocks(id: id, accessHash: accessHash, subChainId: subChainId, blocks: blocks.map { $0.makeData() }, nextOffset: nextOffset) + } case let .updatePeerHistoryTTL(_, peer, ttl): updatedState.updateAutoremoveTimeout(peer: peer, value: CachedPeerAutoremoveTimeout.Value(ttl)) case let .updateLangPackTooLong(langCode): @@ -3322,7 +3328,7 @@ private func optimizedOperations(_ operations: [AccountStateMutationOperation]) var currentAddQuickReplyMessages: OptimizeAddMessagesState? for operation in operations { switch operation { - case .DeleteMessages, .DeleteMessagesWithGlobalIds, .EditMessage, .UpdateMessagePoll, .UpdateMessageReactions, .UpdateMedia, .MergeApiChats, .MergeApiUsers, .MergePeerPresences, .UpdatePeer, .ReadInbox, .ReadOutbox, .ReadGroupFeedInbox, .ResetReadState, .ResetIncomingReadState, .UpdatePeerChatUnreadMark, .ResetMessageTagSummary, .UpdateNotificationSettings, .UpdateGlobalNotificationSettings, .UpdateSecretChat, .AddSecretMessages, .ReadSecretOutbox, .AddPeerInputActivity, .UpdateCachedPeerData, .UpdatePinnedItemIds, .UpdatePinnedSavedItemIds, .UpdatePinnedTopic, .UpdatePinnedTopicOrder, .ReadMessageContents, .UpdateMessageImpressionCount, .UpdateMessageForwardsCount, .UpdateInstalledStickerPacks, .UpdateRecentGifs, .UpdateChatInputState, .UpdateCall, .AddCallSignalingData, .UpdateLangPack, .UpdateMinAvailableMessage, .UpdateIsContact, .UpdatePeerChatInclusion, .UpdatePeersNearby, .UpdateTheme, .SyncChatListFilters, .UpdateChatListFilter, .UpdateChatListFilterOrder, .UpdateReadThread, .UpdateMessagesPinned, .UpdateGroupCallParticipants, .UpdateGroupCall, .UpdateAutoremoveTimeout, .UpdateAttachMenuBots, .UpdateAudioTranscription, .UpdateConfig, .UpdateExtendedMedia, .ResetForumTopic, .UpdateStory, .UpdateReadStories, .UpdateStoryStealthMode, .UpdateStorySentReaction, .UpdateNewAuthorization, .UpdateWallpaper, .UpdateRevenueBalances, .UpdateStarsBalance, .UpdateStarsRevenueStatus, .UpdateStarsReactionsDefaultPrivacy, .ReportMessageDelivery: + case .DeleteMessages, .DeleteMessagesWithGlobalIds, .EditMessage, .UpdateMessagePoll, .UpdateMessageReactions, .UpdateMedia, .MergeApiChats, .MergeApiUsers, .MergePeerPresences, .UpdatePeer, .ReadInbox, .ReadOutbox, .ReadGroupFeedInbox, .ResetReadState, .ResetIncomingReadState, .UpdatePeerChatUnreadMark, .ResetMessageTagSummary, .UpdateNotificationSettings, .UpdateGlobalNotificationSettings, .UpdateSecretChat, .AddSecretMessages, .ReadSecretOutbox, .AddPeerInputActivity, .UpdateCachedPeerData, .UpdatePinnedItemIds, .UpdatePinnedSavedItemIds, .UpdatePinnedTopic, .UpdatePinnedTopicOrder, .ReadMessageContents, .UpdateMessageImpressionCount, .UpdateMessageForwardsCount, .UpdateInstalledStickerPacks, .UpdateRecentGifs, .UpdateChatInputState, .UpdateCall, .AddCallSignalingData, .UpdateLangPack, .UpdateMinAvailableMessage, .UpdateIsContact, .UpdatePeerChatInclusion, .UpdatePeersNearby, .UpdateTheme, .SyncChatListFilters, .UpdateChatListFilter, .UpdateChatListFilterOrder, .UpdateReadThread, .UpdateMessagesPinned, .UpdateGroupCallParticipants, .UpdateGroupCall, .UpdateGroupCallChainBlocks, .UpdateAutoremoveTimeout, .UpdateAttachMenuBots, .UpdateAudioTranscription, .UpdateConfig, .UpdateExtendedMedia, .ResetForumTopic, .UpdateStory, .UpdateReadStories, .UpdateStoryStealthMode, .UpdateStorySentReaction, .UpdateNewAuthorization, .UpdateWallpaper, .UpdateRevenueBalances, .UpdateStarsBalance, .UpdateStarsRevenueStatus, .UpdateStarsReactionsDefaultPrivacy, .ReportMessageDelivery: if let currentAddMessages = currentAddMessages, !currentAddMessages.messages.isEmpty { result.append(.AddMessages(currentAddMessages.messages, currentAddMessages.location)) } @@ -3505,6 +3511,8 @@ func replayFinalState( var readInboxCloudMessageIds: [PeerId: Int32] = [:] var addedOperationIncomingMessageIds: [MessageId] = [] + var addedConferenceInvitationMessagesIds: [MessageId] = [] + for operation in finalState.state.operations { switch operation { case let .AddMessages(messages, location): @@ -3526,6 +3534,10 @@ func replayFinalState( recordPeerActivityTimestamp(peerId: authorId, timestamp: message.timestamp, into: &peerActivityTimestamps) } } + + if id.namespace == Namespaces.Message.Cloud && id.peerId.namespace == Namespaces.Peer.CloudUser { + addedConferenceInvitationMessagesIds.append(id) + } } if message.flags.contains(.WasScheduled) { wasOperationScheduledMessageIds.append(id) @@ -4505,7 +4517,7 @@ func replayFinalState( } switch call { - case let .groupCall(flags, _, _, participantsCount, title, _, recordStartDate, scheduleDate, _, _, _, _): + case let .groupCall(flags, _, _, participantsCount, title, _, recordStartDate, scheduleDate, _, _, _): let isMuted = (flags & (1 << 1)) != 0 let canChange = (flags & (1 << 2)) != 0 let isVideoEnabled = (flags & (1 << 9)) != 0 @@ -4544,6 +4556,11 @@ func replayFinalState( }) } } + case let .UpdateGroupCallChainBlocks(id, _, subChainId, blocks, nextOffset): + updatedGroupCallParticipants.append(( + id, + .conferenceChainBlocks(subChainId: Int(subChainId), blocks: blocks, nextOffset: Int(nextOffset)) + )) case let .UpdateAutoremoveTimeout(peer, autoremoveValue): let peerId = peer.peerId transaction.updatePeerCachedData(peerIds: Set([peerId]), update: { _, current in @@ -5420,6 +5437,7 @@ func replayFinalState( updatedStarsBalance: updatedStarsBalance, updatedStarsRevenueStatus: updatedStarsRevenueStatus, sentScheduledMessageIds: finalState.state.sentScheduledMessageIds, - reportMessageDelivery: reportMessageDelivery + reportMessageDelivery: reportMessageDelivery, + addedConferenceInvitationMessagesIds: addedConferenceInvitationMessagesIds ) } diff --git a/submodules/TelegramCore/Sources/State/AccountStateManager.swift b/submodules/TelegramCore/Sources/State/AccountStateManager.swift index a32d851fd5..40612411db 100644 --- a/submodules/TelegramCore/Sources/State/AccountStateManager.swift +++ b/submodules/TelegramCore/Sources/State/AccountStateManager.swift @@ -1145,6 +1145,9 @@ public final class AccountStateManager { if !events.reportMessageDelivery.isEmpty { strongSelf.reportMessageDeliveryDisposable.add(_internal_reportMessageDelivery(postbox: strongSelf.postbox, network: strongSelf.network, messageIds: Array(events.reportMessageDelivery), fromPushNotification: false).start()) } + if !events.addedConferenceInvitationMessagesIds.isEmpty { + strongSelf.callSessionManager?.addConferenceInvitationMessages(ids: events.addedConferenceInvitationMessagesIds) + } if !events.isContactUpdates.isEmpty { strongSelf.addIsContactUpdates(events.isContactUpdates) } @@ -2203,7 +2206,7 @@ public final class AccountStateManager { switch update { case let .updatePhoneCall(phoneCall): switch phoneCall { - case let .phoneCallRequested(flags, id, accessHash, date, adminId, _, _, _, conferenceCall): + case let .phoneCallRequested(flags, id, accessHash, date, adminId, _, _, _): guard let peer = peers.first(where: { $0.id == PeerId(namespace: Namespaces.Peer.CloudUser, id: PeerId.Id._internalFromInt64Value(adminId)) }) else { return nil } @@ -2213,7 +2216,7 @@ public final class AccountStateManager { timestamp: date, peer: EnginePeer(peer), isVideo: (flags & (1 << 6)) != 0, - isConference: conferenceCall != nil + isConference: false ) default: break diff --git a/submodules/TelegramCore/Sources/State/CallSessionManager.swift b/submodules/TelegramCore/Sources/State/CallSessionManager.swift index 6f88c27a2d..a1dfc4658e 100644 --- a/submodules/TelegramCore/Sources/State/CallSessionManager.swift +++ b/submodules/TelegramCore/Sources/State/CallSessionManager.swift @@ -4,7 +4,6 @@ import MtProtoKit import SwiftSignalKit import TelegramApi - private let minLayer: Int32 = 65 public enum CallSessionError: Equatable { @@ -15,11 +14,11 @@ public enum CallSessionError: Equatable { case disconnected } -public enum CallSessionEndedType { +public enum CallSessionEndedType: Equatable { case hungUp case busy case missed - case switchedToConference + case switchedToConference(slug: String) } public enum CallSessionTerminationReason: Equatable { @@ -65,41 +64,47 @@ public struct GroupCallReference: Equatable { } extension GroupCallReference { - init(_ apiGroupCall: Api.InputGroupCall) { + init?(_ apiGroupCall: Api.InputGroupCall) { switch apiGroupCall { case let .inputGroupCall(id, accessHash): self.init(id: id, accessHash: accessHash) + case .inputGroupCallSlug, .inputGroupCallInviteMessage: + return nil } } + + var apiInputGroupCall: Api.InputGroupCall { + return .inputGroupCall(id: self.id, accessHash: self.accessHash) + } } enum CallSessionInternalState { - case ringing(id: Int64, accessHash: Int64, gAHash: Data, b: Data, versions: [String], conferenceCall: GroupCallReference?) - case accepting(id: Int64, accessHash: Int64, gAHash: Data, b: Data, conferenceCall: GroupCallReference?, disposable: Disposable) + case ringing(id: Int64, accessHash: Int64, gAHash: Data, b: Data, versions: [String]) + case accepting(id: Int64, accessHash: Int64, gAHash: Data, b: Data, disposable: Disposable) case awaitingConfirmation(id: Int64, accessHash: Int64, gAHash: Data, b: Data, config: SecretChatEncryptionConfig) - case requesting(a: Data, conferenceCall: GroupCallReference?, disposable: Disposable) - case requested(id: Int64, accessHash: Int64, a: Data, gA: Data, config: SecretChatEncryptionConfig, remoteConfirmationTimestamp: Int32?, conferenceCall: GroupCallReference?) - case confirming(id: Int64, accessHash: Int64, key: Data, keyId: Int64, keyVisualHash: Data, conferenceCall: GroupCallReference?, disposable: Disposable) - case active(id: Int64, accessHash: Int64, beginTimestamp: Int32, key: Data, keyId: Int64, keyVisualHash: Data, connections: CallSessionConnectionSet, maxLayer: Int32, version: String, customParameters: String?, allowsP2P: Bool, conferenceCall: GroupCallReference?, willSwitchToConference: Bool) - case switchedToConference(key: Data, keyVisualHash: Data, conferenceCall: GroupCallReference) + case requesting(a: Data, disposable: Disposable) + case requested(id: Int64, accessHash: Int64, a: Data, gA: Data, config: SecretChatEncryptionConfig, remoteConfirmationTimestamp: Int32?) + case confirming(id: Int64, accessHash: Int64, key: Data, keyId: Int64, keyVisualHash: Data, disposable: Disposable) + case active(id: Int64, accessHash: Int64, beginTimestamp: Int32, key: Data, keyId: Int64, keyVisualHash: Data, connections: CallSessionConnectionSet, maxLayer: Int32, version: String, customParameters: String?, allowsP2P: Bool) + case switchedToConference(slug: String) case dropping(reason: CallSessionTerminationReason, disposable: Disposable) case terminated(id: Int64?, accessHash: Int64?, reason: CallSessionTerminationReason, reportRating: Bool, sendDebugLogs: Bool) var stableId: Int64? { switch self { - case let .ringing(id, _, _, _, _, _): + case let .ringing(id, _, _, _, _): return id - case let .accepting(id, _, _, _, _, _): + case let .accepting(id, _, _, _, _): return id case let .awaitingConfirmation(id, _, _, _, _): return id case .requesting: return nil - case let .requested(id, _, _, _, _, _, _): + case let .requested(id, _, _, _, _, _): return id - case let .confirming(id, _, _, _, _, _, _): + case let .confirming(id, _, _, _, _, _): return id - case let .active(id, _, _, _, _, _, _, _, _, _, _, _, _): + case let .active(id, _, _, _, _, _, _, _, _, _, _): return id case .switchedToConference: return nil @@ -138,7 +143,8 @@ public struct CallSessionRingingState: Equatable { public let peerId: PeerId public let isVideo: Bool public let isVideoPossible: Bool - public let isIncomingConference: Bool + public let conferenceSource: MessageId? + public let otherParticipants: [EnginePeer] } public enum DropCallReason { @@ -166,9 +172,9 @@ public struct CallTerminationOptions: OptionSet { public enum CallSessionState { case ringing case accepting - case requesting(ringing: Bool, conferenceCall: GroupCallReference?) - case active(id: CallId, key: Data, keyVisualHash: Data, connections: CallSessionConnectionSet, maxLayer: Int32, version: String, customParameters: String?, allowsP2P: Bool, conferenceCall: GroupCallReference?, willSwitchToConference: Bool) - case switchedToConference(key: Data, keyVisualHash: Data, conferenceCall: GroupCallReference) + case requesting(ringing: Bool) + case active(id: CallId, key: Data, keyVisualHash: Data, connections: CallSessionConnectionSet, maxLayer: Int32, version: String, customParameters: String?, allowsP2P: Bool) + case switchedToConference(slug: String) case dropping(reason: CallSessionTerminationReason) case terminated(id: CallId?, reason: CallSessionTerminationReason, options: CallTerminationOptions) @@ -178,33 +184,37 @@ public enum CallSessionState { self = .ringing case .accepting, .awaitingConfirmation: self = .accepting - case let .requesting(_, conferenceCall, _): - self = .requesting(ringing: false, conferenceCall: conferenceCall) - case let .confirming(_, _, _, _, _, conferenceCall, _): - self = .requesting(ringing: true, conferenceCall: conferenceCall) - case let .requested(_, _, _, _, _, remoteConfirmationTimestamp, conferenceCall): - self = .requesting(ringing: remoteConfirmationTimestamp != nil, conferenceCall: conferenceCall) - case let .active(id, accessHash, _, key, _, keyVisualHash, connections, maxLayer, version, customParameters, allowsP2P, conferenceCall, willSwitchToConference): - self = .active(id: CallId(id: id, accessHash: accessHash), key: key, keyVisualHash: keyVisualHash, connections: connections, maxLayer: maxLayer, version: version, customParameters: customParameters, allowsP2P: allowsP2P, conferenceCall: conferenceCall, willSwitchToConference: willSwitchToConference) + case .requesting: + self = .requesting(ringing: false) + case .confirming: + self = .requesting(ringing: true) + case let .requested(_, _, _, _, _, remoteConfirmationTimestamp): + self = .requesting(ringing: remoteConfirmationTimestamp != nil) + case let .active(id, accessHash, _, key, _, keyVisualHash, connections, maxLayer, version, customParameters, allowsP2P): + self = .active(id: CallId(id: id, accessHash: accessHash), key: key, keyVisualHash: keyVisualHash, connections: connections, maxLayer: maxLayer, version: version, customParameters: customParameters, allowsP2P: allowsP2P) case let .dropping(reason, _): self = .dropping(reason: reason) case let .terminated(id, accessHash, reason, reportRating, sendDebugLogs): - var options = CallTerminationOptions() - if reportRating { - options.insert(.reportRating) - } - if sendDebugLogs { - options.insert(.sendDebugLogs) - } - let callId: CallId? - if let id = id, let accessHash = accessHash { - callId = CallId(id: id, accessHash: accessHash) + if case let .ended(endedReason) = reason, case let .switchedToConference(slug) = endedReason { + self = .switchedToConference(slug: slug) } else { - callId = nil + var options = CallTerminationOptions() + if reportRating { + options.insert(.reportRating) + } + if sendDebugLogs { + options.insert(.sendDebugLogs) + } + let callId: CallId? + if let id = id, let accessHash = accessHash { + callId = CallId(id: id, accessHash: accessHash) + } else { + callId = nil + } + self = .terminated(id: callId, reason: reason, options: options) } - self = .terminated(id: callId, reason: reason, options: options) - case let .switchedToConference(key, keyVisualHash, conferenceCall): - self = .switchedToConference(key: key, keyVisualHash: keyVisualHash, conferenceCall: conferenceCall) + case let .switchedToConference(slug): + self = .switchedToConference(slug: slug) } } } @@ -222,7 +232,7 @@ public struct CallSession { public let state: CallSessionState public let isVideoPossible: Bool - init( + public init( id: CallSessionInternalId, stableId: Int64?, isOutgoing: Bool, @@ -336,17 +346,15 @@ private func parseConnectionSet(primary: Api.PhoneConnection, alternative: [Api. private final class CallSessionContext { let peerId: PeerId let isOutgoing: Bool - let isIncomingConference: Bool var type: CallSession.CallType var isVideoPossible: Bool - let pendingConference: (conference: GroupCallReference, encryptionKey: Data)? var state: CallSessionInternalState let subscribers = Bag<(CallSession) -> Void>() var signalingReceiver: (([Data]) -> Void)? let signalingDisposables = DisposableSet() - var createConferenceCallDisposable: Disposable? let acknowledgeIncomingCallDisposable = MetaDisposable() + var createConferenceCallDisposable: Disposable? var isEmpty: Bool { if case .terminated = self.state { @@ -356,13 +364,11 @@ private final class CallSessionContext { } } - init(peerId: PeerId, isOutgoing: Bool, isIncomingConference: Bool, type: CallSession.CallType, isVideoPossible: Bool, pendingConference: (conference: GroupCallReference, encryptionKey: Data)?, state: CallSessionInternalState) { + init(peerId: PeerId, isOutgoing: Bool, type: CallSession.CallType, isVideoPossible: Bool, state: CallSessionInternalState) { self.peerId = peerId self.isOutgoing = isOutgoing - self.isIncomingConference = isIncomingConference self.type = type self.isVideoPossible = isVideoPossible - self.pendingConference = pendingConference self.state = state } @@ -373,6 +379,73 @@ private final class CallSessionContext { } } +private final class IncomingConferenceInvitationContext { + enum State: Equatable { + case pending + case ringing(callId: Int64, otherParticipants: [EnginePeer]) + case stopped + } + + private let queue: Queue + private var disposable: Disposable? + + let internalId: CallSessionInternalId + + private(set) var state: State = .pending + + init(queue: Queue, postbox: Postbox, messageId: MessageId, updated: @escaping () -> Void) { + self.queue = queue + + self.internalId = CallSessionInternalId() + + let key = PostboxViewKey.messages(Set([messageId])) + self.disposable = (postbox.combinedView(keys: [key]) + |> map { view -> Message? in + guard let view = view.views[key] as? MessagesView else { + return nil + } + return view.messages[messageId] + } + |> deliverOn(self.queue)).startStrict(next: { [weak self] message in + guard let self = self else { + return + } + let state: State + if let message = message { + var foundAction: TelegramMediaAction? + for media in message.media { + if let action = media as? TelegramMediaAction { + foundAction = action + break + } + } + + if let action = foundAction, case let .conferenceCall(callId, duration, otherParticipants) = action.action { + if duration != nil { + state = .stopped + } else { + state = .ringing(callId: callId, otherParticipants: otherParticipants.compactMap { id -> EnginePeer? in + return message.peers[id].flatMap(EnginePeer.init) + }) + } + } else { + state = .stopped + } + } else { + state = .stopped + } + if self.state != state { + self.state = state + updated() + } + }) + } + + deinit { + self.disposable?.dispose() + } +} + private func selectVersionOnAccept(localVersions: [CallSessionManagerImplementationVersion], remoteVersions: [String]) -> [String]? { let filteredVersions = localVersions.map({ $0.version }).filter(remoteVersions.contains) if filteredVersions.isEmpty { @@ -406,10 +479,13 @@ private final class CallSessionManagerContext { private var futureContextSubscribers: [CallSessionInternalId: Bag<(CallSession) -> Void>] = [:] private var contextIdByStableId: [CallSessionStableId: CallSessionInternalId] = [:] + private var incomingConferenceInvitationContexts: [MessageId: IncomingConferenceInvitationContext] = [:] + private var enqueuedSignalingData: [Int64: [Data]] = [:] private let disposables = DisposableSet() - + private let rejectConferenceInvitationDisposables = DisposableSet() + init(queue: Queue, postbox: Postbox, network: Network, accountPeerId: PeerId, maxLayer: Int32, versions: [CallSessionManagerImplementationVersion], addUpdates: @escaping (Api.Updates) -> Void) { self.queue = queue self.postbox = postbox @@ -423,6 +499,7 @@ private final class CallSessionManagerContext { deinit { assert(self.queue.isCurrent()) self.disposables.dispose() + self.rejectConferenceInvitationDisposables.dispose() } func updateVersions(versions: [CallSessionManagerImplementationVersion]) { @@ -556,7 +633,20 @@ private final class CallSessionManagerContext { peerId: context.peerId, isVideo: context.type == .video, isVideoPossible: context.isVideoPossible, - isIncomingConference: context.isIncomingConference + conferenceSource: nil, + otherParticipants: [] + )) + } + } + for (id, context) in self.incomingConferenceInvitationContexts { + if case let .ringing(_, otherParticipants) = context.state { + ringingContexts.append(CallSessionRingingState( + id: context.internalId, + peerId: id.peerId, + isVideo: false, + isVideoPossible: true, + conferenceSource: id, + otherParticipants: otherParticipants )) } } @@ -584,7 +674,7 @@ private final class CallSessionManagerContext { } } - private func addIncoming(peerId: PeerId, stableId: CallSessionStableId, accessHash: Int64, timestamp: Int32, gAHash: Data, versions: [String], isVideo: Bool, conferenceCall: GroupCallReference?) -> CallSessionInternalId? { + private func addIncoming(peerId: PeerId, stableId: CallSessionStableId, accessHash: Int64, timestamp: Int32, gAHash: Data, versions: [String], isVideo: Bool) -> CallSessionInternalId? { if self.contextIdByStableId[stableId] != nil { return nil } @@ -594,13 +684,10 @@ private final class CallSessionManagerContext { let b = Data(bytesNoCopy: bBytes, count: 256, deallocator: .free) if randomStatus == 0 { - var isVideoPossible = self.videoVersions().contains(where: { versions.contains($0) }) - //#if DEBUG - isVideoPossible = true - //#endif + let isVideoPossible = true let internalId = CallSessionManager.getStableIncomingUUID(stableId: stableId) - let context = CallSessionContext(peerId: peerId, isOutgoing: false, isIncomingConference: conferenceCall != nil, type: isVideo ? .video : .audio, isVideoPossible: isVideoPossible, pendingConference: nil, state: .ringing(id: stableId, accessHash: accessHash, gAHash: gAHash, b: b, versions: versions, conferenceCall: conferenceCall)) + let context = CallSessionContext(peerId: peerId, isOutgoing: false, type: isVideo ? .video : .audio, isVideoPossible: isVideoPossible, state: .ringing(id: stableId, accessHash: accessHash, gAHash: gAHash, b: b, versions: versions)) self.contexts[internalId] = context let queue = self.queue @@ -632,38 +719,62 @@ private final class CallSessionManagerContext { } func drop(internalId: CallSessionInternalId, reason: DropCallReason, debugLog: Signal) { + for (id, context) in self.incomingConferenceInvitationContexts { + if context.internalId == internalId { + self.incomingConferenceInvitationContexts.removeValue(forKey: id) + self.ringingStatesUpdated() + + let addUpdates = self.addUpdates + let rejectSignal = self.network.request(Api.functions.phone.declineConferenceCallInvite(msgId: id.id)) + |> map(Optional.init) + |> `catch` { _ -> Signal in + return .single(nil) + } + |> mapToSignal { updates -> Signal in + if let updates { + addUpdates(updates) + } + return .complete() + } + + self.rejectConferenceInvitationDisposables.add(rejectSignal.startStrict()) + + return + } + } + if let context = self.contexts[internalId] { var dropData: (CallSessionStableId, Int64, DropCallSessionReason)? var wasRinging = false let isVideo = context.type == .video switch context.state { - case let .ringing(id, accessHash, _, _, _, _): + case let .ringing(id, accessHash, _, _, _): wasRinging = true let internalReason: DropCallSessionReason switch reason { - case .busy: - internalReason = .busy - case .hangUp: - internalReason = .hangUp(0) - case .disconnect: - internalReason = .disconnect - case .missed: - internalReason = .missed + case .busy: + internalReason = .busy + case .hangUp: + internalReason = .hangUp(0) + case .disconnect: + internalReason = .disconnect + case .missed: + internalReason = .missed } dropData = (id, accessHash, internalReason) - case let .accepting(id, accessHash, _, _, _, disposable): + case let .accepting(id, accessHash, _, _, disposable): dropData = (id, accessHash, .abort) disposable.dispose() - case let .active(id, accessHash, beginTimestamp, _, _, _, _, _, _, _, _, _, _): + case let .active(id, accessHash, beginTimestamp, _, _, _, _, _, _, _, _): let duration = max(0, Int32(CFAbsoluteTimeGetCurrent()) - beginTimestamp) let internalReason: DropCallSessionReason switch reason { - case .busy, .hangUp: - internalReason = .hangUp(duration) - case .disconnect: - internalReason = .disconnect - case .missed: - internalReason = .missed + case .busy, .hangUp: + internalReason = .hangUp(duration) + case .disconnect: + internalReason = .disconnect + case .missed: + internalReason = .missed } dropData = (id, accessHash, internalReason) case .switchedToConference: @@ -672,21 +783,21 @@ private final class CallSessionManagerContext { break case let .awaitingConfirmation(id, accessHash, _, _, _): dropData = (id, accessHash, .abort) - case let .confirming(id, accessHash, _, _, _, _, disposable): + case let .confirming(id, accessHash, _, _, _, disposable): disposable.dispose() dropData = (id, accessHash, .abort) - case let .requested(id, accessHash, _, _, _, _, _): + case let .requested(id, accessHash, _, _, _, _): let internalReason: DropCallSessionReason switch reason { - case .busy, .hangUp: - internalReason = .missed - case .disconnect: - internalReason = .disconnect - case .missed: - internalReason = .missed + case .busy, .hangUp: + internalReason = .missed + case .disconnect: + internalReason = .disconnect + case .missed: + internalReason = .missed } dropData = (id, accessHash, internalReason) - case let .requesting(_, _, disposable): + case let .requesting(_, disposable): disposable.dispose() context.state = .terminated(id: nil, accessHash: nil, reason: .ended(.hungUp), reportRating: false, sendDebugLogs: false) self.contextUpdated(internalId: internalId) @@ -709,8 +820,8 @@ private final class CallSessionManagerContext { mappedReason = .ended(.hungUp) case .missed: mappedReason = .ended(.missed) - case .switchToConference: - mappedReason = .ended(.switchedToConference) + case let .switchToConference(slug): + mappedReason = .ended(.switchedToConference(slug: slug)) } context.state = .dropping(reason: mappedReason, disposable: (dropCallSession(network: self.network, addUpdates: self.addUpdates, stableId: id, accessHash: accessHash, isVideo: isVideo, reason: reason) |> deliverOn(self.queue)).start(next: { [weak self] reportRating, sendDebugLogs in @@ -751,12 +862,12 @@ private final class CallSessionManagerContext { } } - func dropToConference(internalId: CallSessionInternalId, encryptedGroupKey: Data) { + func dropToConference(internalId: CallSessionInternalId, slug: String) { if let context = self.contexts[internalId] { var dropData: (CallSessionStableId, Int64)? let isVideo = context.type == .video switch context.state { - case let .active(id, accessHash, _, _, _, _, _, _, _, _, _, _, _): + case let .active(id, accessHash, _, _, _, _, _, _, _, _, _): dropData = (id, accessHash) default: break @@ -764,11 +875,11 @@ private final class CallSessionManagerContext { if let (id, accessHash) = dropData { self.contextIdByStableId.removeValue(forKey: id) - context.state = .dropping(reason: .ended(.switchedToConference), disposable: (dropCallSession(network: self.network, addUpdates: self.addUpdates, stableId: id, accessHash: accessHash, isVideo: isVideo, reason: .switchToConference(encryptedGroupKey: encryptedGroupKey)) + context.state = .dropping(reason: .ended(.switchedToConference(slug: slug)), disposable: (dropCallSession(network: self.network, addUpdates: self.addUpdates, stableId: id, accessHash: accessHash, isVideo: isVideo, reason: .switchToConference(slug: slug)) |> deliverOn(self.queue)).start(next: { [weak self] reportRating, sendDebugLogs in if let strongSelf = self { if let context = strongSelf.contexts[internalId] { - context.state = .terminated(id: id, accessHash: accessHash, reason: .ended(.hungUp), reportRating: reportRating, sendDebugLogs: sendDebugLogs) + context.state = .switchedToConference(slug: slug) strongSelf.contextUpdated(internalId: internalId) if context.isEmpty { strongSelf.contexts.removeValue(forKey: internalId) @@ -793,9 +904,9 @@ private final class CallSessionManagerContext { func accept(internalId: CallSessionInternalId) { if let context = self.contexts[internalId] { switch context.state { - case let .ringing(id, accessHash, gAHash, b, _, conferenceCall): + case let .ringing(id, accessHash, gAHash, b, _): let acceptVersions = self.versions.map({ $0.version }) - context.state = .accepting(id: id, accessHash: accessHash, gAHash: gAHash, b: b, conferenceCall: conferenceCall, disposable: (acceptCallSession(accountPeerId: self.accountPeerId, postbox: self.postbox, network: self.network, stableId: id, accessHash: accessHash, b: b, maxLayer: self.maxLayer, versions: acceptVersions) |> deliverOn(self.queue)).start(next: { [weak self] result in + context.state = .accepting(id: id, accessHash: accessHash, gAHash: gAHash, b: b, disposable: (acceptCallSession(accountPeerId: self.accountPeerId, postbox: self.postbox, network: self.network, stableId: id, accessHash: accessHash, b: b, maxLayer: self.maxLayer, versions: acceptVersions) |> deliverOn(self.queue)).start(next: { [weak self] result in if let strongSelf = self, let context = strongSelf.contexts[internalId] { if case .accepting = context.state { switch result { @@ -806,9 +917,9 @@ private final class CallSessionManagerContext { case let .waiting(config): context.state = .awaitingConfirmation(id: id, accessHash: accessHash, gAHash: gAHash, b: b, config: config) strongSelf.contextUpdated(internalId: internalId) - case let .call(config, gA, timestamp, connections, maxLayer, version, customParameters, allowsP2P, conferenceCall): + case let .call(config, gA, timestamp, connections, maxLayer, version, customParameters, allowsP2P): if let (key, keyId, keyVisualHash) = strongSelf.makeSessionEncryptionKey(config: config, gAHash: gAHash, b: b, gA: gA) { - context.state = .active(id: id, accessHash: accessHash, beginTimestamp: timestamp, key: key, keyId: keyId, keyVisualHash: keyVisualHash, connections: connections, maxLayer: maxLayer, version: version, customParameters: customParameters, allowsP2P: allowsP2P, conferenceCall: conferenceCall, willSwitchToConference: context.isIncomingConference) + context.state = .active(id: id, accessHash: accessHash, beginTimestamp: timestamp, key: key, keyId: keyId, keyVisualHash: keyVisualHash, connections: connections, maxLayer: maxLayer, version: version, customParameters: customParameters, allowsP2P: allowsP2P) strongSelf.contextUpdated(internalId: internalId) } else { strongSelf.drop(internalId: internalId, reason: .disconnect, debugLog: .single(nil)) @@ -829,7 +940,7 @@ private final class CallSessionManagerContext { func sendSignalingData(internalId: CallSessionInternalId, data: Data) { if let context = self.contexts[internalId] { switch context.state { - case let .active(id, accessHash, _, _, _, _, _, _, _, _, _, _, _): + case let .active(id, accessHash, _, _, _, _, _, _, _, _, _): context.signalingDisposables.add(self.network.request(Api.functions.phone.sendSignalingData(peer: .inputPhoneCall(id: id, accessHash: accessHash), data: Buffer(data: data))).start()) default: break @@ -845,33 +956,29 @@ private final class CallSessionManagerContext { var idAndAccessHash: (id: Int64, accessHash: Int64)? switch context.state { - case let .active(id, accessHash, _, _, _, _, _, _, _, _, _, conferenceCall, _): - if conferenceCall != nil { - return - } + case let .active(id, accessHash, _, _, _, _, _, _, _, _, _): idAndAccessHash = (id, accessHash) default: break } - if let (id, accessHash) = idAndAccessHash { - context.createConferenceCallDisposable = (createConferenceCall(postbox: self.postbox, network: self.network, accountPeerId: self.accountPeerId, callId: CallId(id: id, accessHash: accessHash)) + if idAndAccessHash != nil { + context.createConferenceCallDisposable = (_internal_createConferenceCall( + postbox: self.postbox, + network: self.network, + accountPeerId: self.accountPeerId + ) |> deliverOn(self.queue)).startStrict(next: { [weak self] result in + guard let self else { + return + } + + self.dropToConference(internalId: internalId, slug: result.slug) + }, error: { [weak self] error in guard let self else { return } - guard let context = self.contexts[internalId] else { - return - } - if let result { - switch context.state { - case let .active(id, accessHash, beginTimestamp, key, keyId, keyVisualHash, connections, maxLayer, version, customParameters, allowsP2P, _, _): - context.state = .active(id: id, accessHash: accessHash, beginTimestamp: beginTimestamp, key: key, keyId: keyId, keyVisualHash: keyVisualHash, connections: connections, maxLayer: maxLayer, version: version, customParameters: customParameters, allowsP2P: allowsP2P, conferenceCall: result, willSwitchToConference: false) - self.contextUpdated(internalId: internalId) - default: - break - } - } + self.drop(internalId: internalId, reason: .disconnect, debugLog: .single(nil)) }) } } @@ -889,7 +996,7 @@ private final class CallSessionManagerContext { switch call { case .phoneCallEmpty: break - case let .phoneCallAccepted(_, id, _, _, _, _, gB, remoteProtocol, conferenceCall): + case let .phoneCallAccepted(_, id, _, _, _, _, gB, remoteProtocol): let remoteVersions: [String] switch remoteProtocol { case let .phoneCallProtocol(_, _, _, versions): @@ -903,7 +1010,7 @@ private final class CallSessionManagerContext { if let context = self.contexts[internalId] { switch context.state { - case let .requested(_, accessHash, a, gA, config, _, _): + case let .requested(_, accessHash, a, gA, config, _): let p = config.p.makeData() if !MTCheckIsSafeGAOrB(self.network.encryptionProvider, gA, p) { self.drop(internalId: internalId, reason: .disconnect, debugLog: .single(nil)) @@ -928,14 +1035,10 @@ private final class CallSessionManagerContext { let keyVisualHash = MTSha256(key + gA) - context.state = .confirming(id: id, accessHash: accessHash, key: key, keyId: keyId, keyVisualHash: keyVisualHash, conferenceCall: conferenceCall.flatMap(GroupCallReference.init), disposable: (confirmCallSession(network: self.network, stableId: id, accessHash: accessHash, gA: gA, keyFingerprint: keyId, maxLayer: self.maxLayer, versions: selectedVersions) |> deliverOnMainQueue).start(next: { [weak self] updatedCall in + context.state = .confirming(id: id, accessHash: accessHash, key: key, keyId: keyId, keyVisualHash: keyVisualHash, disposable: (confirmCallSession(network: self.network, stableId: id, accessHash: accessHash, gA: gA, keyFingerprint: keyId, maxLayer: self.maxLayer, versions: selectedVersions) |> deliverOnMainQueue).start(next: { [weak self] updatedCall in if let strongSelf = self, let context = strongSelf.contexts[internalId], case .confirming = context.state { if let updatedCall = updatedCall { strongSelf.updateSession(updatedCall, completion: { _ in }) - - if let pendingConference = context.pendingConference { - strongSelf.dropToConference(internalId: internalId, encryptedGroupKey: pendingConference.encryptionKey) - } } else { strongSelf.drop(internalId: internalId, reason: .disconnect, debugLog: .single(nil)) } @@ -949,8 +1052,7 @@ private final class CallSessionManagerContext { assertionFailure() } } - case let .phoneCallDiscarded(flags, id, reason, _, conferenceCall): - let _ = conferenceCall + case let .phoneCallDiscarded(flags, id, reason, _): let reportRating = (flags & (1 << 2)) != 0 let sendDebugLogs = (flags & (1 << 3)) != 0 if let internalId = self.contextIdByStableId[id] { @@ -963,47 +1065,39 @@ private final class CallSessionManagerContext { case .phoneCallDiscardReasonDisconnect: parsedReason = .error(.disconnected) case .phoneCallDiscardReasonHangup: - if context.pendingConference != nil { - parsedReason = .ended(.switchedToConference) - } else { - parsedReason = .ended(.hungUp) - } + parsedReason = .ended(.hungUp) case .phoneCallDiscardReasonMissed: parsedReason = .ended(.missed) - case .phoneCallDiscardReasonAllowGroupCall: - parsedReason = .ended(.switchedToConference) + case let .phoneCallDiscardReasonMigrateConferenceCall(slug): + parsedReason = .ended(.switchedToConference(slug: slug)) } } else { parsedReason = .ended(.hungUp) } switch context.state { - case let .accepting(id, accessHash, _, _, _, disposable): + case let .accepting(id, accessHash, _, _, disposable): disposable.dispose() context.state = .terminated(id: id, accessHash: accessHash, reason: parsedReason, reportRating: reportRating, sendDebugLogs: sendDebugLogs) self.contextUpdated(internalId: internalId) - case let .active(id, accessHash, _, _, _, _, _, _, _, _, _, conferenceCall, _): - if let conferenceCall, case let .phoneCallDiscardReasonAllowGroupCall(encryptedGroupKey) = reason { - context.state = .switchedToConference(key: encryptedGroupKey.makeData(), keyVisualHash: MTSha256(encryptedGroupKey.makeData()), conferenceCall: conferenceCall) - } else { - context.state = .terminated(id: id, accessHash: accessHash, reason: parsedReason, reportRating: reportRating, sendDebugLogs: sendDebugLogs) - } + case let .active(id, accessHash, _, _, _, _, _, _, _, _, _): + context.state = .terminated(id: id, accessHash: accessHash, reason: parsedReason, reportRating: reportRating, sendDebugLogs: sendDebugLogs) self.contextUpdated(internalId: internalId) case let .awaitingConfirmation(id, accessHash, _, _, _): context.state = .terminated(id: id, accessHash: accessHash, reason: parsedReason, reportRating: reportRating, sendDebugLogs: sendDebugLogs) self.contextUpdated(internalId: internalId) - case let .requested(id, accessHash, _, _, _, _, _): + case let .requested(id, accessHash, _, _, _, _): context.state = .terminated(id: id, accessHash: accessHash, reason: parsedReason, reportRating: reportRating, sendDebugLogs: sendDebugLogs) self.contextUpdated(internalId: internalId) - case let .confirming(id, accessHash, _, _, _, _, disposable): + case let .confirming(id, accessHash, _, _, _, disposable): disposable.dispose() context.state = .terminated(id: id, accessHash: accessHash, reason: parsedReason, reportRating: reportRating, sendDebugLogs: sendDebugLogs) self.contextUpdated(internalId: internalId) - case let .requesting(_, _, disposable): + case let .requesting(_, disposable): disposable.dispose() context.state = .terminated(id: nil, accessHash: nil, reason: parsedReason, reportRating: false, sendDebugLogs: false) self.contextUpdated(internalId: internalId) - case let .ringing(id, accessHash, _, _, _, _): + case let .ringing(id, accessHash, _, _, _): context.state = .terminated(id: id, accessHash: accessHash, reason: parsedReason, reportRating: reportRating, sendDebugLogs: sendDebugLogs) self.ringingStatesUpdated() self.contextUpdated(internalId: internalId) @@ -1014,15 +1108,15 @@ private final class CallSessionManagerContext { //assertionFailure() } } - case let .phoneCall(flags, id, _, _, _, _, gAOrB, keyFingerprint, callProtocol, connections, startDate, customParameters, conferenceCall): + case let .phoneCall(flags, id, _, _, _, _, gAOrB, keyFingerprint, callProtocol, connections, startDate, customParameters): let allowsP2P = (flags & (1 << 5)) != 0 if let internalId = self.contextIdByStableId[id] { if let context = self.contexts[internalId] { switch context.state { case .accepting, .dropping, .requesting, .ringing, .terminated, .requested, .switchedToConference: break - case let .active(id, accessHash, beginTimestamp, key, keyId, keyVisualHash, connections, maxLayer, version, customParameters, allowsP2P, _, _): - context.state = .active(id: id, accessHash: accessHash, beginTimestamp: beginTimestamp, key: key, keyId: keyId, keyVisualHash: keyVisualHash, connections: connections, maxLayer: maxLayer, version: version, customParameters: customParameters, allowsP2P: allowsP2P, conferenceCall: conferenceCall.flatMap(GroupCallReference.init), willSwitchToConference: context.isIncomingConference) + case let .active(id, accessHash, beginTimestamp, key, keyId, keyVisualHash, connections, maxLayer, version, customParameters, allowsP2P): + context.state = .active(id: id, accessHash: accessHash, beginTimestamp: beginTimestamp, key: key, keyId: keyId, keyVisualHash: keyVisualHash, connections: connections, maxLayer: maxLayer, version: version, customParameters: customParameters, allowsP2P: allowsP2P) self.contextUpdated(internalId: internalId) case let .awaitingConfirmation(_, accessHash, gAHash, b, config): if let (key, calculatedKeyId, keyVisualHash) = self.makeSessionEncryptionKey(config: config, gAHash: gAHash, b: b, gA: gAOrB.makeData()) { @@ -1041,7 +1135,7 @@ private final class CallSessionManagerContext { let isVideoPossible = self.videoVersions().contains(where: { versions.contains($0) }) context.isVideoPossible = isVideoPossible - context.state = .active(id: id, accessHash: accessHash, beginTimestamp: startDate, key: key, keyId: calculatedKeyId, keyVisualHash: keyVisualHash, connections: parseConnectionSet(primary: connections.first!, alternative: Array(connections[1...])), maxLayer: maxLayer, version: versions[0], customParameters: customParametersValue, allowsP2P: allowsP2P, conferenceCall: conferenceCall.flatMap(GroupCallReference.init), willSwitchToConference: context.isIncomingConference) + context.state = .active(id: id, accessHash: accessHash, beginTimestamp: startDate, key: key, keyId: calculatedKeyId, keyVisualHash: keyVisualHash, connections: parseConnectionSet(primary: connections.first!, alternative: Array(connections[1...])), maxLayer: maxLayer, version: versions[0], customParameters: customParametersValue, allowsP2P: allowsP2P) self.contextUpdated(internalId: internalId) } else { self.drop(internalId: internalId, reason: .disconnect, debugLog: .single(nil)) @@ -1053,7 +1147,7 @@ private final class CallSessionManagerContext { } else { self.drop(internalId: internalId, reason: .disconnect, debugLog: .single(nil)) } - case let .confirming(id, accessHash, key, keyId, keyVisualHash, _, _): + case let .confirming(id, accessHash, key, keyId, keyVisualHash, _): switch callProtocol { case let .phoneCallProtocol(_, _, maxLayer, versions): if !versions.isEmpty { @@ -1068,7 +1162,7 @@ private final class CallSessionManagerContext { let isVideoPossible = self.videoVersions().contains(where: { versions.contains($0) }) context.isVideoPossible = isVideoPossible - context.state = .active(id: id, accessHash: accessHash, beginTimestamp: startDate, key: key, keyId: keyId, keyVisualHash: keyVisualHash, connections: parseConnectionSet(primary: connections.first!, alternative: Array(connections[1...])), maxLayer: maxLayer, version: versions[0], customParameters: customParametersValue, allowsP2P: allowsP2P, conferenceCall: conferenceCall.flatMap(GroupCallReference.init), willSwitchToConference: context.isIncomingConference) + context.state = .active(id: id, accessHash: accessHash, beginTimestamp: startDate, key: key, keyId: keyId, keyVisualHash: keyVisualHash, connections: parseConnectionSet(primary: connections.first!, alternative: Array(connections[1...])), maxLayer: maxLayer, version: versions[0], customParameters: customParametersValue, allowsP2P: allowsP2P) self.contextUpdated(internalId: internalId) } else { self.drop(internalId: internalId, reason: .disconnect, debugLog: .single(nil)) @@ -1079,7 +1173,7 @@ private final class CallSessionManagerContext { assertionFailure() } } - case let .phoneCallRequested(flags, id, accessHash, date, adminId, _, gAHash, requestedProtocol, conferenceCall): + case let .phoneCallRequested(flags, id, accessHash, date, adminId, _, gAHash, requestedProtocol): let isVideo = (flags & (1 << 6)) != 0 let versions: [String] switch requestedProtocol { @@ -1087,7 +1181,7 @@ private final class CallSessionManagerContext { versions = libraryVersions } if self.contextIdByStableId[id] == nil { - let internalId = self.addIncoming(peerId: PeerId(namespace: Namespaces.Peer.CloudUser, id: PeerId.Id._internalFromInt64Value(adminId)), stableId: id, accessHash: accessHash, timestamp: date, gAHash: gAHash.makeData(), versions: versions, isVideo: isVideo, conferenceCall: conferenceCall.flatMap(GroupCallReference.init)) + let internalId = self.addIncoming(peerId: PeerId(namespace: Namespaces.Peer.CloudUser, id: PeerId.Id._internalFromInt64Value(adminId)), stableId: id, accessHash: accessHash, timestamp: date, gAHash: gAHash.makeData(), versions: versions, isVideo: isVideo) if let internalId = internalId { var resultRingingStateValue: CallSessionRingingState? for ringingState in self.ringingStatesValue() { @@ -1104,13 +1198,13 @@ private final class CallSessionManagerContext { } } } - case let .phoneCallWaiting(_, id, _, _, _, _, _, receiveDate, conferenceCall): + case let .phoneCallWaiting(_, id, _, _, _, _, _, receiveDate): if let internalId = self.contextIdByStableId[id] { if let context = self.contexts[internalId] { switch context.state { - case let .requested(id, accessHash, a, gA, config, remoteConfirmationTimestamp, _): + case let .requested(id, accessHash, a, gA, config, remoteConfirmationTimestamp): if let receiveDate = receiveDate, remoteConfirmationTimestamp == nil { - context.state = .requested(id: id, accessHash: accessHash, a: a, gA: gA, config: config, remoteConfirmationTimestamp: receiveDate, conferenceCall: conferenceCall.flatMap(GroupCallReference.init)) + context.state = .requested(id: id, accessHash: accessHash, a: a, gA: gA, config: config, remoteConfirmationTimestamp: receiveDate) self.contextUpdated(internalId: internalId) } default: @@ -1144,6 +1238,29 @@ private final class CallSessionManagerContext { } } } + + func addConferenceInvitationMessages(ids: [MessageId]) { + for id in ids { + if self.incomingConferenceInvitationContexts[id] == nil { + let context = IncomingConferenceInvitationContext(queue: self.queue, postbox: self.postbox, messageId: id, updated: { [weak self] in + guard let self else { + return + } + if let context = self.incomingConferenceInvitationContexts[id] { + switch context.state { + case .pending: + break + case .ringing: + self.ringingStatesUpdated() + case .stopped: + self.incomingConferenceInvitationContexts.removeValue(forKey: id) + } + } + }) + self.incomingConferenceInvitationContexts[id] = context + } + } + } private func makeSessionEncryptionKey(config: SecretChatEncryptionConfig, gAHash: Data, b: Data, gA: Data) -> (key: Data, keyId: Int64, keyVisualHash: Data)? { var key = MTExp(self.network.encryptionProvider, gA, b, config.p.makeData())! @@ -1173,17 +1290,17 @@ private final class CallSessionManagerContext { return (key, keyId, keyVisualHash) } - func request(peerId: PeerId, internalId: CallSessionInternalId, isVideo: Bool, enableVideo: Bool, conferenceCall: (conference: GroupCallReference, encryptionKey: Data)?) -> CallSessionInternalId? { + func request(peerId: PeerId, internalId: CallSessionInternalId, isVideo: Bool, enableVideo: Bool) -> CallSessionInternalId? { let aBytes = malloc(256)! let randomStatus = SecRandomCopyBytes(nil, 256, aBytes.assumingMemoryBound(to: UInt8.self)) let a = Data(bytesNoCopy: aBytes, count: 256, deallocator: .free) if randomStatus == 0 { - self.contexts[internalId] = CallSessionContext(peerId: peerId, isOutgoing: true, isIncomingConference: false, type: isVideo ? .video : .audio, isVideoPossible: enableVideo || isVideo, pendingConference: conferenceCall, state: .requesting(a: a, conferenceCall: conferenceCall?.conference, disposable: (requestCallSession(postbox: self.postbox, network: self.network, peerId: peerId, a: a, maxLayer: self.maxLayer, versions: self.filteredVersions(enableVideo: true), isVideo: isVideo, conferenceCall: conferenceCall?.conference) |> deliverOn(queue)).start(next: { [weak self] result in + self.contexts[internalId] = CallSessionContext(peerId: peerId, isOutgoing: true, type: isVideo ? .video : .audio, isVideoPossible: enableVideo || isVideo, state: .requesting(a: a, disposable: (requestCallSession(postbox: self.postbox, network: self.network, peerId: peerId, a: a, maxLayer: self.maxLayer, versions: self.filteredVersions(enableVideo: true), isVideo: isVideo) |> deliverOn(queue)).start(next: { [weak self] result in if let strongSelf = self, let context = strongSelf.contexts[internalId] { if case .requesting = context.state { switch result { case let .success(id, accessHash, config, gA, remoteConfirmationTimestamp): - context.state = .requested(id: id, accessHash: accessHash, a: a, gA: gA, config: config, remoteConfirmationTimestamp: remoteConfirmationTimestamp, conferenceCall: conferenceCall?.conference) + context.state = .requested(id: id, accessHash: accessHash, a: a, gA: gA, config: config, remoteConfirmationTimestamp: remoteConfirmationTimestamp) strongSelf.contextIdByStableId[id] = internalId strongSelf.contextUpdated(internalId: internalId) strongSelf.deliverCallSignalingData(id: id) @@ -1253,6 +1370,12 @@ public final class CallSessionManager { context.addCallSignalingData(id: id, data: data) } } + + func addConferenceInvitationMessages(ids: [MessageId]) { + self.withContext { context in + context.addConferenceInvitationMessages(ids: ids) + } + } public func drop(internalId: CallSessionInternalId, reason: DropCallReason, debugLog: Signal) { self.withContext { context in @@ -1278,12 +1401,12 @@ public final class CallSessionManager { } } - public func request(peerId: PeerId, isVideo: Bool, enableVideo: Bool, conferenceCall: (conference: GroupCallReference, encryptionKey: Data)?, internalId: CallSessionInternalId = CallSessionInternalId()) -> Signal { + public func request(peerId: PeerId, isVideo: Bool, enableVideo: Bool, internalId: CallSessionInternalId = CallSessionInternalId()) -> Signal { return Signal { [weak self] subscriber in let disposable = MetaDisposable() self?.withContext { context in - if let internalId = context.request(peerId: peerId, internalId: internalId, isVideo: isVideo, enableVideo: enableVideo, conferenceCall: conferenceCall) { + if let internalId = context.request(peerId: peerId, internalId: internalId, isVideo: isVideo, enableVideo: enableVideo) { subscriber.putNext(internalId) subscriber.putCompletion() } @@ -1354,7 +1477,7 @@ public final class CallSessionManager { private enum AcceptedCall { case waiting(config: SecretChatEncryptionConfig) - case call(config: SecretChatEncryptionConfig, gA: Data, timestamp: Int32, connections: CallSessionConnectionSet, maxLayer: Int32, version: String, customParameters: String?, allowsP2P: Bool, conferenceCall: GroupCallReference?) + case call(config: SecretChatEncryptionConfig, gA: Data, timestamp: Int32, connections: CallSessionConnectionSet, maxLayer: Int32, version: String, customParameters: String?, allowsP2P: Bool) } private enum AcceptCallResult { @@ -1394,7 +1517,7 @@ private func acceptCallSession(accountPeerId: PeerId, postbox: Postbox, network: return .failed case .phoneCallWaiting: return .success(.waiting(config: config)) - case let .phoneCall(flags, id, _, _, _, _, gAOrB, _, callProtocol, connections, startDate, customParameters, conferenceCall): + case let .phoneCall(flags, id, _, _, _, _, gAOrB, _, callProtocol, connections, startDate, customParameters): if id == stableId { switch callProtocol{ case let .phoneCallProtocol(_, _, maxLayer, versions): @@ -1407,7 +1530,7 @@ private func acceptCallSession(accountPeerId: PeerId, postbox: Postbox, network: customParametersValue = data } - return .success(.call(config: config, gA: gAOrB.makeData(), timestamp: startDate, connections: parseConnectionSet(primary: connections.first!, alternative: Array(connections[1...])), maxLayer: maxLayer, version: versions[0], customParameters: customParametersValue, allowsP2P: (flags & (1 << 5)) != 0, conferenceCall: conferenceCall.flatMap(GroupCallReference.init))) + return .success(.call(config: config, gA: gAOrB.makeData(), timestamp: startDate, connections: parseConnectionSet(primary: connections.first!, alternative: Array(connections[1...])), maxLayer: maxLayer, version: versions[0], customParameters: customParametersValue, allowsP2P: (flags & (1 << 5)) != 0)) } else { return .failed } @@ -1430,7 +1553,7 @@ private enum RequestCallSessionResult { case failed(CallSessionError) } -private func requestCallSession(postbox: Postbox, network: Network, peerId: PeerId, a: Data, maxLayer: Int32, versions: [String], isVideo: Bool, conferenceCall: GroupCallReference?) -> Signal { +private func requestCallSession(postbox: Postbox, network: Network, peerId: PeerId, a: Data, maxLayer: Int32, versions: [String], isVideo: Bool) -> Signal { return validatedEncryptionConfig(postbox: postbox, network: network) |> mapToSignal { config -> Signal in return postbox.transaction { transaction -> Signal in @@ -1450,18 +1573,15 @@ private func requestCallSession(postbox: Postbox, network: Network, peerId: Peer if isVideo { callFlags |= 1 << 0 } - if conferenceCall != nil { - callFlags |= 1 << 1 - } - return network.request(Api.functions.phone.requestCall(flags: callFlags, userId: inputUser, conferenceCall: conferenceCall.flatMap { Api.InputGroupCall.inputGroupCall(id: $0.id, accessHash: $0.accessHash) }, randomId: Int32(bitPattern: arc4random()), gAHash: Buffer(data: gAHash), protocol: .phoneCallProtocol(flags: (1 << 0) | (1 << 1), minLayer: minLayer, maxLayer: maxLayer, libraryVersions: versions))) + return network.request(Api.functions.phone.requestCall(flags: callFlags, userId: inputUser, randomId: Int32(bitPattern: arc4random()), gAHash: Buffer(data: gAHash), protocol: .phoneCallProtocol(flags: (1 << 0) | (1 << 1), minLayer: minLayer, maxLayer: maxLayer, libraryVersions: versions))) |> map { result -> RequestCallSessionResult in switch result { case let .phoneCall(phoneCall, _): switch phoneCall { - case let .phoneCallRequested(_, id, accessHash, _, _, _, _, _, _): + case let .phoneCallRequested(_, id, accessHash, _, _, _, _, _): return .success(id: id, accessHash: accessHash, config: config, gA: ga, remoteConfirmationTimestamp: nil) - case let .phoneCallWaiting(_, id, accessHash, _, _, _, _, receiveDate, _): + case let .phoneCallWaiting(_, id, accessHash, _, _, _, _, receiveDate): return .success(id: id, accessHash: accessHash, config: config, gA: ga, remoteConfirmationTimestamp: receiveDate) default: return .failed(.generic) @@ -1514,7 +1634,7 @@ private enum DropCallSessionReason { case busy case disconnect case missed - case switchToConference(encryptedGroupKey: Data) + case switchToConference(slug: String) } private func dropCallSession(network: Network, addUpdates: @escaping (Api.Updates) -> Void, stableId: CallSessionStableId, accessHash: Int64, isVideo: Bool, reason: DropCallSessionReason) -> Signal<(Bool, Bool), NoError> { @@ -1532,8 +1652,8 @@ private func dropCallSession(network: Network, addUpdates: @escaping (Api.Update mappedReason = .phoneCallDiscardReasonDisconnect case .missed: mappedReason = .phoneCallDiscardReasonMissed - case let .switchToConference(encryptedGroupKey): - mappedReason = .phoneCallDiscardReasonAllowGroupCall(encryptedKey: Buffer(data: encryptedGroupKey)) + case let .switchToConference(slug): + mappedReason = .phoneCallDiscardReasonMigrateConferenceCall(slug: slug) } var callFlags: Int32 = 0 @@ -1556,7 +1676,7 @@ private func dropCallSession(network: Network, addUpdates: @escaping (Api.Update switch update { case .updatePhoneCall(let phoneCall): switch phoneCall { - case let .phoneCallDiscarded(flags, _, _, _, _): + case let .phoneCallDiscarded(flags, _, _, _): reportRating = (flags & (1 << 2)) != 0 sendDebugLogs = (flags & (1 << 3)) != 0 default: @@ -1578,34 +1698,3 @@ private func dropCallSession(network: Network, addUpdates: @escaping (Api.Update } } -private func createConferenceCall(postbox: Postbox, network: Network, accountPeerId: PeerId, callId: CallId) -> Signal { - return network.request(Api.functions.phone.createConferenceCall(peer: .inputPhoneCall(id: callId.id, accessHash: callId.accessHash), keyFingerprint: 1)) - |> map(Optional.init) - |> `catch` { _ -> Signal in - return .single(nil) - } - |> mapToSignal { result -> Signal in - guard let result else { - return .single(nil) - } - return postbox.transaction { transaction -> GroupCallReference? in - switch result { - case let .phoneCall(phoneCall, users): - updatePeers(transaction: transaction, accountPeerId: accountPeerId, peers: AccumulatedPeers(users: users)) - - switch phoneCall { - case .phoneCallEmpty, .phoneCallRequested, .phoneCallAccepted, .phoneCallDiscarded: - return nil - case .phoneCallWaiting: - return nil - case let .phoneCall(_, _, _, _, _, _, _, _, _, _, _, _, conferenceCall): - if let conferenceCall { - return GroupCallReference(conferenceCall) - } else { - return nil - } - } - } - } - } -} diff --git a/submodules/TelegramCore/Sources/State/Serialization.swift b/submodules/TelegramCore/Sources/State/Serialization.swift index 6b226a1a5e..9a21f99bfc 100644 --- a/submodules/TelegramCore/Sources/State/Serialization.swift +++ b/submodules/TelegramCore/Sources/State/Serialization.swift @@ -210,7 +210,7 @@ public class BoxedMessage: NSObject { public class Serialization: NSObject, MTSerialization { public func currentLayer() -> UInt { - return 201 + return 202 } public func parseMessage(_ data: Data!) -> Any! { diff --git a/submodules/TelegramCore/Sources/SyncCore/SyncCore_TelegramMediaAction.swift b/submodules/TelegramCore/Sources/SyncCore/SyncCore_TelegramMediaAction.swift index 513375d750..5af6c51f2f 100644 --- a/submodules/TelegramCore/Sources/SyncCore/SyncCore_TelegramMediaAction.swift +++ b/submodules/TelegramCore/Sources/SyncCore/SyncCore_TelegramMediaAction.swift @@ -134,6 +134,7 @@ public enum TelegramMediaActionType: PostboxCoding, Equatable { case starGiftUnique(gift: StarGift, isUpgrade: Bool, isTransferred: Bool, savedToProfile: Bool, canExportDate: Int32?, transferStars: Int64?, isRefunded: Bool, peerId: EnginePeer.Id?, senderId: EnginePeer.Id?, savedId: Int64?) case paidMessagesRefunded(count: Int32, stars: Int64) case paidMessagesPriceEdited(stars: Int64) + case conferenceCall(callId: Int64, duration: Int32?, otherParticipants: [PeerId]) public init(decoder: PostboxDecoder) { let rawValue: Int32 = decoder.decodeInt32ForKey("_rawValue", orElse: 0) @@ -262,6 +263,8 @@ public enum TelegramMediaActionType: PostboxCoding, Equatable { self = .paidMessagesRefunded(count: decoder.decodeInt32ForKey("count", orElse: 0), stars: decoder.decodeInt64ForKey("stars", orElse: 0)) case 47: self = .paidMessagesPriceEdited(stars: decoder.decodeInt64ForKey("stars", orElse: 0)) + case 48: + self = .conferenceCall(callId: decoder.decodeInt64ForKey("cid", orElse: 0), duration: decoder.decodeOptionalInt32ForKey("dur"), otherParticipants: decoder.decodeInt64ArrayForKey("part").map(PeerId.init)) default: self = .unknown } @@ -639,6 +642,15 @@ public enum TelegramMediaActionType: PostboxCoding, Equatable { case let .paidMessagesPriceEdited(stars): encoder.encodeInt32(47, forKey: "_rawValue") encoder.encodeInt64(stars, forKey: "stars") + case let .conferenceCall(callId, duration, otherParticipants): + encoder.encodeInt32(48, forKey: "_rawValue") + encoder.encodeInt64(callId, forKey: "cid") + if let duration { + encoder.encodeInt32(duration, forKey: "dur") + } else { + encoder.encodeNil(forKey: "dur") + } + encoder.encodeInt64Array(otherParticipants.map({ $0.toInt64() }), forKey: "part") } } diff --git a/submodules/TelegramCore/Sources/TelegramEngine/Calls/GroupCalls.swift b/submodules/TelegramCore/Sources/TelegramEngine/Calls/GroupCalls.swift index 49ece56d73..d9cb5160fd 100644 --- a/submodules/TelegramCore/Sources/TelegramEngine/Calls/GroupCalls.swift +++ b/submodules/TelegramCore/Sources/TelegramEngine/Calls/GroupCalls.swift @@ -3,6 +3,85 @@ import SwiftSignalKit import TelegramApi import MtProtoKit +public final class TelegramKeyPair: Equatable { + public let id: Int64 + public let publicKey: TelegramPublicKey + + public init(id: Int64, publicKey: TelegramPublicKey) { + self.id = id + self.publicKey = publicKey + } + + public static func ==(lhs: TelegramKeyPair, rhs: TelegramKeyPair) -> Bool { + if lhs.id != rhs.id { + return false + } + if lhs.publicKey != rhs.publicKey { + return false + } + return true + } +} + +public final class TelegramPublicKey: Equatable { + let value: Int256 + + init(value: Int256) { + self.value = value + } + + public static func ==(lhs: TelegramPublicKey, rhs: TelegramPublicKey) -> Bool { + return lhs.value == rhs.value + } +} +public extension TelegramPublicKey { + convenience init?(data: Data) { + guard data.count == 32 else { + return nil + } + + var int256 = Int256( + _0: 0, + _1: 0, + _2: 0, + _3: 0 + ) + + data.withUnsafeBytes { buffer in + if let baseAddress = buffer.baseAddress { + let int64Buffer = baseAddress.assumingMemoryBound(to: Int64.self) + int256._0 = int64Buffer[0] + int256._1 = int64Buffer[1] + int256._2 = int64Buffer[2] + int256._3 = int64Buffer[3] + } + } + + self.init(value: int256) + + assert(self.data == data) + } + + var data: Data { + var data = Data(count: 32) + data.withUnsafeMutableBytes { buffer in + if let baseAddress = buffer.baseAddress { + let int64Buffer = baseAddress.assumingMemoryBound(to: Int64.self) + int64Buffer[0] = self.value._0 + int64Buffer[1] = self.value._1 + int64Buffer[2] = self.value._2 + int64Buffer[3] = self.value._3 + } + } + return data + } +} + +public protocol TelegramE2EEncryptionProvider: AnyObject { + func generateKeyPair() -> TelegramKeyPair? + func generateCallZeroBlock(keyPair: TelegramKeyPair, userId: Int64) -> Data? +} + public struct GroupCallInfo: Equatable { public var id: Int64 public var accessHash: Int64 @@ -17,7 +96,6 @@ public struct GroupCallInfo: Equatable { public var isVideoEnabled: Bool public var unmutedVideoLimit: Int public var isStream: Bool - public var upgradedPrivateCallId: Int64? public init( id: Int64, @@ -32,8 +110,7 @@ public struct GroupCallInfo: Equatable { defaultParticipantsAreMuted: GroupCallParticipantsContext.State.DefaultParticipantsAreMuted?, isVideoEnabled: Bool, unmutedVideoLimit: Int, - isStream: Bool, - upgradedPrivateCallId: Int64? + isStream: Bool ) { self.id = id self.accessHash = accessHash @@ -48,7 +125,6 @@ public struct GroupCallInfo: Equatable { self.isVideoEnabled = isVideoEnabled self.unmutedVideoLimit = unmutedVideoLimit self.isStream = isStream - self.upgradedPrivateCallId = upgradedPrivateCallId } } @@ -60,7 +136,7 @@ public struct GroupCallSummary: Equatable { extension GroupCallInfo { init?(_ call: Api.GroupCall) { switch call { - case let .groupCall(flags, id, accessHash, participantsCount, title, streamDcId, recordStartDate, scheduleDate, _, unmutedVideoLimit, _, conferenceFromCall): + case let .groupCall(flags, id, accessHash, participantsCount, title, streamDcId, recordStartDate, scheduleDate, _, unmutedVideoLimit, _): self.init( id: id, accessHash: accessHash, @@ -74,8 +150,7 @@ extension GroupCallInfo { defaultParticipantsAreMuted: GroupCallParticipantsContext.State.DefaultParticipantsAreMuted(isMuted: (flags & (1 << 1)) != 0, canChange: (flags & (1 << 2)) != 0), isVideoEnabled: (flags & (1 << 9)) != 0, unmutedVideoLimit: Int(unmutedVideoLimit), - isStream: (flags & (1 << 12)) != 0, - upgradedPrivateCallId: conferenceFromCall + isStream: (flags & (1 << 12)) != 0 ) case .groupCallDiscarded: return nil @@ -87,9 +162,43 @@ public enum GetCurrentGroupCallError { case generic } -func _internal_getCurrentGroupCall(account: Account, callId: Int64, accessHash: Int64, peerId: PeerId? = nil) -> Signal { +public enum InternalGroupCallReference: Equatable { + case id(id: Int64, accessHash: Int64) + case link(slug: String) + case message(id: MessageId) +} + +extension InternalGroupCallReference { + var apiInputGroupCall: Api.InputGroupCall { + switch self { + case let .id(id, accessHash): + return .inputGroupCall(id: id, accessHash: accessHash) + case let .link(slug): + return .inputGroupCallSlug(slug: slug) + case let .message(id): + return .inputGroupCallInviteMessage(msgId: id.id) + } + } +} + +func _internal_getCurrentGroupCall(account: Account, reference: InternalGroupCallReference, peerId: PeerId? = nil) -> Signal { let accountPeerId = account.peerId - return account.network.request(Api.functions.phone.getGroupCall(call: .inputGroupCall(id: callId, accessHash: accessHash), limit: 4)) + let inputCall: Api.InputGroupCall + switch reference { + case let .id(id, accessHash): + inputCall = .inputGroupCall(id: id, accessHash: accessHash) + case let .link(slug): + inputCall = .inputGroupCallSlug(slug: slug) + case let .message(id): + if id.peerId.namespace != Namespaces.Peer.CloudUser { + return .fail(.generic) + } + if id.namespace != Namespaces.Message.Cloud { + return .fail(.generic) + } + inputCall = .inputGroupCallInviteMessage(msgId: id.id) + } + return account.network.request(Api.functions.phone.getGroupCall(call: inputCall, limit: 4)) |> mapError { _ -> GetCurrentGroupCallError in return .generic } @@ -247,7 +356,7 @@ public enum ToggleScheduledGroupCallSubscriptionError { case generic } -func _internal_toggleScheduledGroupCallSubscription(account: Account, peerId: PeerId, callId: Int64, accessHash: Int64, subscribe: Bool) -> Signal { +func _internal_toggleScheduledGroupCallSubscription(account: Account, peerId: PeerId, reference: InternalGroupCallReference, subscribe: Bool) -> Signal { return account.postbox.transaction { transaction -> Void in transaction.updatePeerCachedData(peerIds: Set([peerId]), update: { _, cachedData -> CachedPeerData? in if let cachedData = cachedData as? CachedChannelData, let activeCall = cachedData.activeCall { @@ -261,7 +370,7 @@ func _internal_toggleScheduledGroupCallSubscription(account: Account, peerId: Pe } |> castError(ToggleScheduledGroupCallSubscriptionError.self) |> mapToSignal { _ -> Signal in - return account.network.request(Api.functions.phone.toggleGroupCallStartSubscription(call: .inputGroupCall(id: callId, accessHash: accessHash), subscribed: subscribe ? .boolTrue : .boolFalse)) + return account.network.request(Api.functions.phone.toggleGroupCallStartSubscription(call: reference.apiInputGroupCall, subscribed: subscribe ? .boolTrue : .boolFalse)) |> mapError { error -> ToggleScheduledGroupCallSubscriptionError in return .generic } @@ -342,24 +451,24 @@ public enum GetGroupCallParticipantsError { case generic } -func _internal_getGroupCallParticipants(account: Account, callId: Int64, accessHash: Int64, offset: String, ssrcs: [UInt32], limit: Int32, sortAscending: Bool?) -> Signal { +func _internal_getGroupCallParticipants(account: Account, reference: InternalGroupCallReference, offset: String, ssrcs: [UInt32], limit: Int32, sortAscending: Bool?) -> Signal { let accountPeerId = account.peerId - let sortAscendingValue: Signal<(Bool, Int32?, Bool, GroupCallParticipantsContext.State.DefaultParticipantsAreMuted?, Bool, Int, Bool, Int64?), GetGroupCallParticipantsError> + let sortAscendingValue: Signal<(Bool, Int32?, Bool, GroupCallParticipantsContext.State.DefaultParticipantsAreMuted?, Bool, Int, Bool), GetGroupCallParticipantsError> - sortAscendingValue = _internal_getCurrentGroupCall(account: account, callId: callId, accessHash: accessHash) + sortAscendingValue = _internal_getCurrentGroupCall(account: account, reference: reference) |> mapError { _ -> GetGroupCallParticipantsError in return .generic } - |> mapToSignal { result -> Signal<(Bool, Int32?, Bool, GroupCallParticipantsContext.State.DefaultParticipantsAreMuted?, Bool, Int, Bool, Int64?), GetGroupCallParticipantsError> in + |> mapToSignal { result -> Signal<(Bool, Int32?, Bool, GroupCallParticipantsContext.State.DefaultParticipantsAreMuted?, Bool, Int, Bool), GetGroupCallParticipantsError> in guard let result = result else { return .fail(.generic) } - return .single((sortAscending ?? result.info.sortAscending, result.info.scheduleTimestamp, result.info.subscribedToScheduled, result.info.defaultParticipantsAreMuted, result.info.isVideoEnabled, result.info.unmutedVideoLimit, result.info.isStream, result.info.upgradedPrivateCallId)) + return .single((sortAscending ?? result.info.sortAscending, result.info.scheduleTimestamp, result.info.subscribedToScheduled, result.info.defaultParticipantsAreMuted, result.info.isVideoEnabled, result.info.unmutedVideoLimit, result.info.isStream)) } return combineLatest( - account.network.request(Api.functions.phone.getGroupParticipants(call: .inputGroupCall(id: callId, accessHash: accessHash), ids: [], sources: ssrcs.map { Int32(bitPattern: $0) }, offset: offset, limit: limit)) + account.network.request(Api.functions.phone.getGroupParticipants(call: reference.apiInputGroupCall, ids: [], sources: ssrcs.map { Int32(bitPattern: $0) }, offset: offset, limit: limit)) |> mapError { _ -> GetGroupCallParticipantsError in return .generic }, @@ -372,7 +481,7 @@ func _internal_getGroupCallParticipants(account: Account, callId: Int64, accessH let version: Int32 let nextParticipantsFetchOffset: String? - let (sortAscendingValue, scheduleTimestamp, subscribedToScheduled, defaultParticipantsAreMuted, isVideoEnabled, unmutedVideoLimit, isStream, upgradedPrivateCallId) = sortAscendingAndScheduleTimestamp + let (sortAscendingValue, scheduleTimestamp, subscribedToScheduled, defaultParticipantsAreMuted, isVideoEnabled, unmutedVideoLimit, isStream) = sortAscendingAndScheduleTimestamp switch result { case let .groupParticipants(count, participants, nextOffset, chats, users, apiVersion): @@ -408,7 +517,6 @@ func _internal_getGroupCallParticipants(account: Account, callId: Int64, accessH isVideoEnabled: isVideoEnabled, unmutedVideoLimit: unmutedVideoLimit, isStream: isStream, - upgradedPrivateCallId: upgradedPrivateCallId, version: version ) } @@ -435,248 +543,365 @@ public struct JoinGroupCallResult { public var jsonParams: String } -func _internal_joinGroupCall(account: Account, peerId: PeerId?, joinAs: PeerId?, callId: Int64, accessHash: Int64, preferMuted: Bool, joinPayload: String, peerAdminIds: Signal<[PeerId], NoError>, inviteHash: String? = nil, keyFingerprint: Int64?) -> Signal { - return account.postbox.transaction { transaction -> Api.InputPeer? in - if let joinAs = joinAs { - return transaction.getPeer(joinAs).flatMap(apiInputPeer) - } else { - return .inputPeerSelf +public class JoinGroupCallE2E { + public let publicKey: TelegramPublicKey + public let block: Data + + public init(publicKey: TelegramPublicKey, block: Data) { + self.publicKey = publicKey + self.block = block + } +} + +func _internal_joinGroupCall(account: Account, peerId: PeerId?, joinAs: PeerId?, callId: Int64, reference: InternalGroupCallReference, preferMuted: Bool, joinPayload: String, peerAdminIds: Signal<[PeerId], NoError>, inviteHash: String? = nil, generateE2E: ((Data?) -> JoinGroupCallE2E?)?) -> Signal { + enum InternalJoinError { + case error(JoinGroupCallError) + case restart + } + + var e2eData: Signal = .single(nil) + if let generateE2E { + e2eData = _internal_pollConferenceCallBlockchain(network: account.network, reference: reference, subChainId: 0, offset: -1, limit: 1) + |> map { result -> JoinGroupCallE2E? in + guard let result else { + return nil + } + guard let block = result.blocks.last else { + return generateE2E(nil) + } + return generateE2E(block) } } - |> castError(JoinGroupCallError.self) - |> mapToSignal { inputJoinAs in - guard let inputJoinAs = inputJoinAs else { - return .fail(.generic) - } - - var flags: Int32 = 0 - if preferMuted { - flags |= (1 << 0) - } - flags |= (1 << 2) - if let _ = inviteHash { - flags |= (1 << 1) - } - if keyFingerprint != nil { - flags |= (1 << 3) - } - - let joinRequest = account.network.request(Api.functions.phone.joinGroupCall(flags: flags, call: .inputGroupCall(id: callId, accessHash: accessHash), joinAs: inputJoinAs, inviteHash: inviteHash, keyFingerprint: keyFingerprint, params: .dataJSON(data: joinPayload))) - |> `catch` { error -> Signal in - if error.errorDescription == "GROUPCALL_ANONYMOUS_FORBIDDEN" { - return .fail(.anonymousNotAllowed) - } else if error.errorDescription == "GROUPCALL_PARTICIPANTS_TOO_MUCH" { - return .fail(.tooManyParticipants) - } else if error.errorDescription == "JOIN_AS_PEER_INVALID" { - if let peerId { - let _ = (account.postbox.transaction { transaction -> Void in - transaction.updatePeerCachedData(peerIds: Set([peerId]), update: { _, current in - if let current = current as? CachedChannelData { - return current.withUpdatedCallJoinPeerId(nil) - } else if let current = current as? CachedGroupData { - return current.withUpdatedCallJoinPeerId(nil) - } else { - return current - } - }) - }).start() - } - - return .fail(.invalidJoinAsPeer) - } else if error.errorDescription == "GROUPCALL_INVALID" { - return account.postbox.transaction { transaction -> Signal in - if let peerId { - transaction.updatePeerCachedData(peerIds: Set([peerId]), update: { _, current in - if let current = current as? CachedGroupData { - if current.activeCall?.id == callId { - return current.withUpdatedActiveCall(nil) - } - } else if let current = current as? CachedChannelData { - if current.activeCall?.id == callId { - return current.withUpdatedActiveCall(nil) - } - } - return current - }) - } - - return .fail(.generic) - } - |> castError(JoinGroupCallError.self) - |> switchToLatest + + let signal: Signal = e2eData + |> castError(InternalJoinError.self) + |> mapToSignal { e2eData -> Signal in + return account.postbox.transaction { transaction -> Api.InputPeer? in + if let joinAs = joinAs { + return transaction.getPeer(joinAs).flatMap(apiInputPeer) } else { - return .fail(.generic) + return .inputPeerSelf } } - - let getParticipantsRequest = _internal_getGroupCallParticipants(account: account, callId: callId, accessHash: accessHash, offset: "", ssrcs: [], limit: 100, sortAscending: true) - |> mapError { _ -> JoinGroupCallError in - return .generic - } - - return combineLatest( - joinRequest, - getParticipantsRequest - ) - |> mapToSignal { updates, participantsState -> Signal in - let peer = account.postbox.transaction { transaction -> Peer? in - return peerId.flatMap(transaction.getPeer) + |> castError(InternalJoinError.self) + |> mapToSignal { inputJoinAs -> Signal in + guard let inputJoinAs = inputJoinAs else { + return .fail(.error(.generic)) + } + + var flags: Int32 = 0 + if preferMuted { + flags |= (1 << 0) + } + flags |= (1 << 2) + if let _ = inviteHash { + flags |= (1 << 1) + } + if e2eData != nil { + flags |= (1 << 3) + } + + let joinRequest = account.network.request(Api.functions.phone.joinGroupCall(flags: flags, call: reference.apiInputGroupCall, joinAs: inputJoinAs, inviteHash: inviteHash, publicKey: e2eData?.publicKey.value, block: (e2eData?.block).flatMap({ Buffer.init(data: $0) }), inviteMsgId: nil, params: .dataJSON(data: joinPayload))) + |> `catch` { error -> Signal in + if error.errorDescription == "GROUPCALL_ANONYMOUS_FORBIDDEN" { + return .fail(.error(.anonymousNotAllowed)) + } else if error.errorDescription == "GROUPCALL_PARTICIPANTS_TOO_MUCH" { + return .fail(.error(.tooManyParticipants)) + } else if error.errorDescription == "JOIN_AS_PEER_INVALID" { + if let peerId { + let _ = (account.postbox.transaction { transaction -> Void in + transaction.updatePeerCachedData(peerIds: Set([peerId]), update: { _, current in + if let current = current as? CachedChannelData { + return current.withUpdatedCallJoinPeerId(nil) + } else if let current = current as? CachedGroupData { + return current.withUpdatedCallJoinPeerId(nil) + } else { + return current + } + }) + }).start() + } + + return .fail(.error(.invalidJoinAsPeer)) + } else if error.errorDescription == "GROUPCALL_INVALID" { + return account.postbox.transaction { transaction -> Signal in + if let peerId { + transaction.updatePeerCachedData(peerIds: Set([peerId]), update: { _, current in + if let current = current as? CachedGroupData { + if current.activeCall?.id == callId { + return current.withUpdatedActiveCall(nil) + } + } else if let current = current as? CachedChannelData { + if current.activeCall?.id == callId { + return current.withUpdatedActiveCall(nil) + } + } + return current + }) + } + + return .fail(.error(.generic)) + } + |> castError(InternalJoinError.self) + |> switchToLatest + } else if error.errorDescription.hasPrefix("CONF_WRITE_CHAIN_INVALID") { + return .fail(.restart) + } else { + return .fail(.error(.generic)) + } + } + + let getParticipantsRequest = _internal_getGroupCallParticipants(account: account, reference: reference, offset: "", ssrcs: [], limit: 100, sortAscending: true) + |> mapError { _ -> InternalJoinError in + return .error(.generic) } - |> castError(JoinGroupCallError.self) return combineLatest( - peerAdminIds |> castError(JoinGroupCallError.self) |> take(1), - peer + joinRequest, + getParticipantsRequest ) - |> mapToSignal { peerAdminIds, peer -> Signal in - var state = participantsState - if let peer { - if let channel = peer as? TelegramChannel { - state.isCreator = channel.flags.contains(.isCreator) - } else if let group = peer as? TelegramGroup { - if case .creator = group.role { - state.isCreator = true - } else { - state.isCreator = false + |> mapToSignal { updates, participantsState -> Signal in + let peer = account.postbox.transaction { transaction -> Peer? in + return peerId.flatMap(transaction.getPeer) + } + |> castError(InternalJoinError.self) + + return combineLatest( + peerAdminIds |> castError(InternalJoinError.self) |> take(1), + peer + ) + |> mapToSignal { peerAdminIds, peer -> Signal in + var state = participantsState + if let peer { + if let channel = peer as? TelegramChannel { + state.isCreator = channel.flags.contains(.isCreator) + } else if let group = peer as? TelegramGroup { + if case .creator = group.role { + state.isCreator = true + } else { + state.isCreator = false + } } } - } - - account.stateManager.addUpdates(updates) - - var maybeParsedCall: GroupCallInfo? - var maybeParsedClientParams: String? - loop: for update in updates.allUpdates { - switch update { - case let .updateGroupCall(_, _, call): - maybeParsedCall = GroupCallInfo(call) - - switch call { - case let .groupCall(flags, _, _, _, title, _, recordStartDate, scheduleDate, _, unmutedVideoLimit, _, _): - let isMuted = (flags & (1 << 1)) != 0 - let canChange = (flags & (1 << 2)) != 0 - let isVideoEnabled = (flags & (1 << 9)) != 0 - state.defaultParticipantsAreMuted = GroupCallParticipantsContext.State.DefaultParticipantsAreMuted(isMuted: isMuted, canChange: canChange) - state.title = title - state.recordingStartTimestamp = recordStartDate - state.scheduleTimestamp = scheduleDate - state.isVideoEnabled = isVideoEnabled - state.unmutedVideoLimit = Int(unmutedVideoLimit) + + account.stateManager.addUpdates(updates) + + var maybeParsedCall: GroupCallInfo? + var maybeParsedClientParams: String? + loop: for update in updates.allUpdates { + switch update { + case let .updateGroupCall(_, _, call): + maybeParsedCall = GroupCallInfo(call) + + switch call { + case let .groupCall(flags, _, _, _, title, _, recordStartDate, scheduleDate, _, unmutedVideoLimit, _): + let isMuted = (flags & (1 << 1)) != 0 + let canChange = (flags & (1 << 2)) != 0 + let isVideoEnabled = (flags & (1 << 9)) != 0 + state.defaultParticipantsAreMuted = GroupCallParticipantsContext.State.DefaultParticipantsAreMuted(isMuted: isMuted, canChange: canChange) + state.title = title + state.recordingStartTimestamp = recordStartDate + state.scheduleTimestamp = scheduleDate + state.isVideoEnabled = isVideoEnabled + state.unmutedVideoLimit = Int(unmutedVideoLimit) + default: + break + } + case let .updateGroupCallConnection(_, params): + switch params { + case let .dataJSON(data): + maybeParsedClientParams = data + } default: break } - case let .updateGroupCallConnection(_, params): - switch params { - case let .dataJSON(data): - maybeParsedClientParams = data - } - default: - break } - } - - guard let parsedCall = maybeParsedCall, let parsedClientParams = maybeParsedClientParams else { - return .fail(.generic) - } - - state.sortAscending = parsedCall.sortAscending - - state.adminIds = Set(peerAdminIds) - - let connectionMode: JoinGroupCallResult.ConnectionMode - if let clientParamsData = parsedClientParams.data(using: .utf8), let dict = (try? JSONSerialization.jsonObject(with: clientParamsData, options: [])) as? [String: Any] { - if let stream = dict["stream"] as? Bool, stream { - var isExternalStream = false - if let rtmp = dict["rtmp"] as? Bool, rtmp { - isExternalStream = true - } - connectionMode = .broadcast(isExternalStream: isExternalStream) - } else { - connectionMode = .rtc + + guard let parsedCall = maybeParsedCall, let parsedClientParams = maybeParsedClientParams else { + return .fail(.error(.generic)) } - } else { - connectionMode = .broadcast(isExternalStream: false) - } - - return account.postbox.transaction { transaction -> JoinGroupCallResult in - if let peerId { - transaction.updatePeerCachedData(peerIds: Set([peerId]), update: { _, cachedData -> CachedPeerData? in - if let cachedData = cachedData as? CachedChannelData { - return cachedData.withUpdatedCallJoinPeerId(joinAs).withUpdatedActiveCall(CachedChannelData.ActiveCall(id: parsedCall.id, accessHash: parsedCall.accessHash, title: parsedCall.title, scheduleTimestamp: nil, subscribedToScheduled: false, isStream: parsedCall.isStream)) - } else if let cachedData = cachedData as? CachedGroupData { - return cachedData.withUpdatedCallJoinPeerId(joinAs).withUpdatedActiveCall(CachedChannelData.ActiveCall(id: parsedCall.id, accessHash: parsedCall.accessHash, title: parsedCall.title, scheduleTimestamp: nil, subscribedToScheduled: false, isStream: parsedCall.isStream)) - } else { - return cachedData + + state.sortAscending = parsedCall.sortAscending + + state.adminIds = Set(peerAdminIds) + + let connectionMode: JoinGroupCallResult.ConnectionMode + if let clientParamsData = parsedClientParams.data(using: .utf8), let dict = (try? JSONSerialization.jsonObject(with: clientParamsData, options: [])) as? [String: Any] { + if let stream = dict["stream"] as? Bool, stream { + var isExternalStream = false + if let rtmp = dict["rtmp"] as? Bool, rtmp { + isExternalStream = true } - }) + connectionMode = .broadcast(isExternalStream: isExternalStream) + } else { + connectionMode = .rtc + } + } else { + connectionMode = .broadcast(isExternalStream: false) } - - var state = state - - for update in updates.allUpdates { - switch update { - case let .updateGroupCallParticipants(_, participants, _): - loop: for participant in participants { - switch participant { - case let .groupCallParticipant(flags, apiPeerId, date, activeDate, source, volume, about, raiseHandRating, video, presentation): - let peerId: PeerId = apiPeerId.peerId - let ssrc = UInt32(bitPattern: source) - guard let peer = transaction.getPeer(peerId) else { - continue loop - } - let muted = (flags & (1 << 0)) != 0 - let mutedByYou = (flags & (1 << 9)) != 0 - var muteState: GroupCallParticipantsContext.Participant.MuteState? - if muted { - let canUnmute = (flags & (1 << 2)) != 0 - muteState = GroupCallParticipantsContext.Participant.MuteState(canUnmute: canUnmute, mutedByYou: mutedByYou) - } else if mutedByYou { - muteState = GroupCallParticipantsContext.Participant.MuteState(canUnmute: false, mutedByYou: mutedByYou) - } - var videoDescription = video.flatMap(GroupCallParticipantsContext.Participant.VideoDescription.init) - var presentationDescription = presentation.flatMap(GroupCallParticipantsContext.Participant.VideoDescription.init) - if muteState?.canUnmute == false { - videoDescription = nil - presentationDescription = nil - } - let joinedVideo = (flags & (1 << 15)) != 0 - if !state.participants.contains(where: { $0.peer.id == peer.id }) { - state.participants.append(GroupCallParticipantsContext.Participant( - peer: peer, - ssrc: ssrc, - videoDescription: videoDescription, - presentationDescription: presentationDescription, - joinTimestamp: date, - raiseHandRating: raiseHandRating, - hasRaiseHand: raiseHandRating != nil, - activityTimestamp: activeDate.flatMap(Double.init), - activityRank: nil, - muteState: muteState, - volume: volume, - about: about, - joinedVideo: joinedVideo - )) + + return account.postbox.transaction { transaction -> JoinGroupCallResult in + if let peerId { + transaction.updatePeerCachedData(peerIds: Set([peerId]), update: { _, cachedData -> CachedPeerData? in + if let cachedData = cachedData as? CachedChannelData { + return cachedData.withUpdatedCallJoinPeerId(joinAs).withUpdatedActiveCall(CachedChannelData.ActiveCall(id: parsedCall.id, accessHash: parsedCall.accessHash, title: parsedCall.title, scheduleTimestamp: nil, subscribedToScheduled: false, isStream: parsedCall.isStream)) + } else if let cachedData = cachedData as? CachedGroupData { + return cachedData.withUpdatedCallJoinPeerId(joinAs).withUpdatedActiveCall(CachedChannelData.ActiveCall(id: parsedCall.id, accessHash: parsedCall.accessHash, title: parsedCall.title, scheduleTimestamp: nil, subscribedToScheduled: false, isStream: parsedCall.isStream)) + } else { + return cachedData + } + }) + } + + var state = state + + for update in updates.allUpdates { + switch update { + case let .updateGroupCallParticipants(_, participants, _): + loop: for participant in participants { + switch participant { + case let .groupCallParticipant(flags, apiPeerId, date, activeDate, source, volume, about, raiseHandRating, video, presentation): + let peerId: PeerId = apiPeerId.peerId + let ssrc = UInt32(bitPattern: source) + guard let peer = transaction.getPeer(peerId) else { + continue loop + } + let muted = (flags & (1 << 0)) != 0 + let mutedByYou = (flags & (1 << 9)) != 0 + var muteState: GroupCallParticipantsContext.Participant.MuteState? + if muted { + let canUnmute = (flags & (1 << 2)) != 0 + muteState = GroupCallParticipantsContext.Participant.MuteState(canUnmute: canUnmute, mutedByYou: mutedByYou) + } else if mutedByYou { + muteState = GroupCallParticipantsContext.Participant.MuteState(canUnmute: false, mutedByYou: mutedByYou) + } + var videoDescription = video.flatMap(GroupCallParticipantsContext.Participant.VideoDescription.init) + var presentationDescription = presentation.flatMap(GroupCallParticipantsContext.Participant.VideoDescription.init) + if muteState?.canUnmute == false { + videoDescription = nil + presentationDescription = nil + } + let joinedVideo = (flags & (1 << 15)) != 0 + if !state.participants.contains(where: { $0.peer.id == peer.id }) { + state.participants.append(GroupCallParticipantsContext.Participant( + peer: peer, + ssrc: ssrc, + videoDescription: videoDescription, + presentationDescription: presentationDescription, + joinTimestamp: date, + raiseHandRating: raiseHandRating, + hasRaiseHand: raiseHandRating != nil, + activityTimestamp: activeDate.flatMap(Double.init), + activityRank: nil, + muteState: muteState, + volume: volume, + about: about, + joinedVideo: joinedVideo + )) + } } } + default: + break } - default: - break } + + state.participants.sort(by: { GroupCallParticipantsContext.Participant.compare(lhs: $0, rhs: $1, sortAscending: state.sortAscending) }) + + return JoinGroupCallResult( + callInfo: parsedCall, + state: state, + connectionMode: connectionMode, + jsonParams: parsedClientParams + ) } - - state.participants.sort(by: { GroupCallParticipantsContext.Participant.compare(lhs: $0, rhs: $1, sortAscending: state.sortAscending) }) - - return JoinGroupCallResult( - callInfo: parsedCall, - state: state, - connectionMode: connectionMode, - jsonParams: parsedClientParams - ) + |> castError(InternalJoinError.self) } - |> castError(JoinGroupCallError.self) } } } + + return signal |> restartOrMapError { error in + switch error { + case .restart: + return .restart + case let .error(e): + return .error(e) + } + } +} + +func _internal_inviteConferenceCallParticipant(account: Account, callId: Int64, accessHash: Int64, peerId: EnginePeer.Id) -> Signal { + return account.postbox.transaction { transaction -> Api.InputUser? in + return transaction.getPeer(peerId).flatMap(apiInputUser) + } + |> mapToSignal { inputPeer -> Signal in + guard let inputPeer else { + return .complete() + } + + return account.network.request(Api.functions.phone.inviteConferenceCallParticipant(call: .inputGroupCall(id: callId, accessHash: accessHash), userId: inputPeer)) + |> map(Optional.init) + |> `catch` { _ -> Signal in + return .single(nil) + } + |> mapToSignal { result -> Signal in + if let result { + account.stateManager.addUpdates(result) + } + return .complete() + } + } +} + +public enum RemoveGroupCallBlockchainParticipantError { + case generic + case pollBlocksAndRetry +} + +func _internal_removeGroupCallBlockchainParticipants(account: Account, callId: Int64, accessHash: Int64, block: @escaping ([EnginePeer.Id]) -> Data?) -> Signal { + /*let blockSignal = _internal_getGroupCallParticipants(account: account, callId: callId, accessHash: accessHash, offset: "", ssrcs: [], limit: 1000, sortAscending: nil) + |> mapError { _ -> RemoveGroupCallBlockchainParticipantError in + return .generic + } + |> map { result -> Data? in + return block(result.participants.map(\.peer.id)) + } + + let signal: Signal = blockSignal + |> mapToSignal { block -> Signal in + guard let block else { + return .complete() + } + return + } + + account.postbox.transaction { transaction -> Api.InputPeer? in + return transaction.getPeer(participantId).flatMap(apiInputPeer) + } + |> castError(RemoveGroupCallBlockchainParticipantError.self) + |> mapToSignal { inputPeer -> Signal in + guard let inputPeer else { + return .fail(.generic) + } + return account.network.request(Api.functions.phone.deleteConferenceCallParticipant(call: .inputGroupCall(id: callId, accessHash: accessHash), peer: inputPeer, block: Buffer(data: block))) + |> mapError { error -> RemoveGroupCallBlockchainParticipantError in + if error.errorDescription.hasPrefix("CONF_WRITE_CHAIN_INVALID") { + return .pollBlocksAndRetry + } else { + return .generic + } + } + |> mapToSignal { result -> Signal in + account.stateManager.addUpdates(result) + + return .complete() + } + } + + return signal*/ + //TODO:release + return .complete() } public struct JoinGroupCallAsScreencastResult { @@ -1037,7 +1262,6 @@ public final class GroupCallParticipantsContext { public var isVideoEnabled: Bool public var unmutedVideoLimit: Int public var isStream: Bool - public var upgradedPrivateCallId: Int64? public var version: Int32 public mutating func mergeActivity(from other: State, myPeerId: PeerId?, previousMyPeerId: PeerId?, mergeActivityTimestamps: Bool) { @@ -1073,7 +1297,6 @@ public final class GroupCallParticipantsContext { isVideoEnabled: Bool, unmutedVideoLimit: Int, isStream: Bool, - upgradedPrivateCallId: Int64?, version: Int32 ) { self.participants = participants @@ -1090,7 +1313,6 @@ public final class GroupCallParticipantsContext { self.isVideoEnabled = isVideoEnabled self.unmutedVideoLimit = unmutedVideoLimit self.isStream = isStream - self.upgradedPrivateCallId = upgradedPrivateCallId self.version = version } } @@ -1197,6 +1419,7 @@ public final class GroupCallParticipantsContext { case state(update: StateUpdate) case call(isTerminated: Bool, defaultParticipantsAreMuted: State.DefaultParticipantsAreMuted, title: String?, recordingStartTimestamp: Int32?, scheduleTimestamp: Int32?, isVideoEnabled: Bool, participantCount: Int?) + case conferenceChainBlocks(subChainId: Int, blocks: [Data], nextOffset: Int) } public final class MemberEvent { @@ -1215,7 +1438,7 @@ public final class GroupCallParticipantsContext { private let peerId: PeerId? public let myPeerId: PeerId public let id: Int64 - public let accessHash: Int64 + public let reference: InternalGroupCallReference private var hasReceivedSpeakingParticipantsReport: Bool = false @@ -1323,12 +1546,12 @@ public final class GroupCallParticipantsContext { public private(set) var serviceState: ServiceState - init(account: Account, peerId: PeerId?, myPeerId: PeerId, id: Int64, accessHash: Int64, state: State, previousServiceState: ServiceState?) { + init(account: Account, peerId: PeerId?, myPeerId: PeerId, id: Int64, reference: InternalGroupCallReference, state: State, previousServiceState: ServiceState?) { self.account = account self.peerId = peerId self.myPeerId = myPeerId self.id = id - self.accessHash = accessHash + self.reference = reference self.stateValue = InternalState(state: state, overlayState: OverlayState()) self.statePromise = ValuePromise(self.stateValue) self.serviceState = previousServiceState ?? ServiceState() @@ -1407,7 +1630,6 @@ public final class GroupCallParticipantsContext { isVideoEnabled: strongSelf.stateValue.state.isVideoEnabled, unmutedVideoLimit: strongSelf.stateValue.state.unmutedVideoLimit, isStream: strongSelf.stateValue.state.isStream, - upgradedPrivateCallId: strongSelf.stateValue.state.upgradedPrivateCallId, version: strongSelf.stateValue.state.version ), overlayState: strongSelf.stateValue.overlayState @@ -1560,7 +1782,6 @@ public final class GroupCallParticipantsContext { isVideoEnabled: strongSelf.stateValue.state.isVideoEnabled, unmutedVideoLimit: strongSelf.stateValue.state.unmutedVideoLimit, isStream: strongSelf.stateValue.state.isStream, - upgradedPrivateCallId: strongSelf.stateValue.state.upgradedPrivateCallId, version: strongSelf.stateValue.state.version ), overlayState: strongSelf.stateValue.overlayState @@ -1608,7 +1829,7 @@ public final class GroupCallParticipantsContext { Logger.shared.log("GroupCallParticipantsContext", "will request ssrcs=\(ssrcs)") - self.disposable.set((_internal_getGroupCallParticipants(account: self.account, callId: self.id, accessHash: self.accessHash, offset: "", ssrcs: Array(ssrcs), limit: 100, sortAscending: true) + self.disposable.set((_internal_getGroupCallParticipants(account: self.account, reference: self.reference, offset: "", ssrcs: Array(ssrcs), limit: 100, sortAscending: true) |> deliverOnMainQueue).start(next: { [weak self] state in guard let strongSelf = self else { return @@ -1784,7 +2005,6 @@ public final class GroupCallParticipantsContext { let isVideoEnabled = strongSelf.stateValue.state.isVideoEnabled let isStream = strongSelf.stateValue.state.isStream let unmutedVideoLimit = strongSelf.stateValue.state.unmutedVideoLimit - let upgradedPrivateCallId = strongSelf.stateValue.state.upgradedPrivateCallId updatedParticipants.sort(by: { GroupCallParticipantsContext.Participant.compare(lhs: $0, rhs: $1, sortAscending: strongSelf.stateValue.state.sortAscending) }) @@ -1804,7 +2024,6 @@ public final class GroupCallParticipantsContext { isVideoEnabled: isVideoEnabled, unmutedVideoLimit: unmutedVideoLimit, isStream: isStream, - upgradedPrivateCallId: upgradedPrivateCallId, version: update.version ), overlayState: updatedOverlayState @@ -1824,7 +2043,7 @@ public final class GroupCallParticipantsContext { self.updateQueue.removeAll() - self.disposable.set((_internal_getGroupCallParticipants(account: self.account, callId: self.id, accessHash: self.accessHash, offset: "", ssrcs: [], limit: 100, sortAscending: self.stateValue.state.sortAscending) + self.disposable.set((_internal_getGroupCallParticipants(account: self.account, reference: self.reference, offset: "", ssrcs: [], limit: 100, sortAscending: self.stateValue.state.sortAscending) |> deliverOnMainQueue).start(next: { [weak self] state in guard let strongSelf = self else { return @@ -1877,7 +2096,7 @@ public final class GroupCallParticipantsContext { let account = self.account let id = self.id - let accessHash = self.accessHash + let reference = self.reference let myPeerId = self.myPeerId let signal: Signal = self.account.postbox.transaction { transaction -> Api.InputPeer? in @@ -1907,7 +2126,7 @@ public final class GroupCallParticipantsContext { raiseHandApi = nil } - return account.network.request(Api.functions.phone.editGroupCallParticipant(flags: flags, call: .inputGroupCall(id: id, accessHash: accessHash), participant: inputPeer, muted: muted, volume: volume, raiseHand: raiseHandApi, videoStopped: nil, videoPaused: nil, presentationPaused: nil)) + return account.network.request(Api.functions.phone.editGroupCallParticipant(flags: flags, call: reference.apiInputGroupCall, participant: inputPeer, muted: muted, volume: volume, raiseHand: raiseHandApi, videoStopped: nil, videoPaused: nil, presentationPaused: nil)) |> map(Optional.init) |> `catch` { _ -> Signal in return .single(nil) @@ -1931,6 +2150,8 @@ public final class GroupCallParticipantsContext { if updateCallId != id { continue loop } + case .inputGroupCallSlug, .inputGroupCallInviteMessage: + continue loop } stateUpdates.append(.state(update: GroupCallParticipantsContext.Update.StateUpdate(participants: participants, version: version, removePendingMuteStates: [peerId]))) default: @@ -1964,7 +2185,7 @@ public final class GroupCallParticipantsContext { let account = self.account let id = self.id - let accessHash = self.accessHash + let reference = self.reference let signal: Signal = self.account.postbox.transaction { transaction -> Api.InputPeer? in return transaction.getPeer(peerId).flatMap(apiInputPeer) @@ -1993,7 +2214,7 @@ public final class GroupCallParticipantsContext { flags |= 1 << 5 } - return account.network.request(Api.functions.phone.editGroupCallParticipant(flags: flags, call: .inputGroupCall(id: id, accessHash: accessHash), participant: inputPeer, muted: nil, volume: nil, raiseHand: nil, videoStopped: videoMuted, videoPaused: videoPaused, presentationPaused: presentationPaused)) + return account.network.request(Api.functions.phone.editGroupCallParticipant(flags: flags, call: reference.apiInputGroupCall, participant: inputPeer, muted: nil, volume: nil, raiseHand: nil, videoStopped: videoMuted, videoPaused: videoPaused, presentationPaused: presentationPaused)) |> map(Optional.init) |> `catch` { _ -> Signal in return .single(nil) @@ -2017,6 +2238,8 @@ public final class GroupCallParticipantsContext { if updateCallId != id { continue loop } + case .inputGroupCallSlug, .inputGroupCallInviteMessage: + continue loop } stateUpdates.append(.state(update: GroupCallParticipantsContext.Update.StateUpdate(participants: participants, version: version, removePendingMuteStates: [peerId]))) default: @@ -2053,7 +2276,7 @@ public final class GroupCallParticipantsContext { videoPortrait = videoOrientation ? .boolTrue : .boolFalse } - self.updateShouldBeRecordingDisposable.set((self.account.network.request(Api.functions.phone.toggleGroupCallRecord(flags: flags, call: .inputGroupCall(id: self.id, accessHash: self.accessHash), title: title, videoPortrait: videoPortrait)) + self.updateShouldBeRecordingDisposable.set((self.account.network.request(Api.functions.phone.toggleGroupCallRecord(flags: flags, call: self.reference.apiInputGroupCall, title: title, videoPortrait: videoPortrait)) |> deliverOnMainQueue).start(next: { [weak self] updates in guard let strongSelf = self else { return @@ -2068,7 +2291,7 @@ public final class GroupCallParticipantsContext { } self.stateValue.state.defaultParticipantsAreMuted.isMuted = isMuted - self.updateDefaultMuteDisposable.set((self.account.network.request(Api.functions.phone.toggleGroupCallSettings(flags: 1 << 0, call: .inputGroupCall(id: self.id, accessHash: self.accessHash), joinMuted: isMuted ? .boolTrue : .boolFalse)) + self.updateDefaultMuteDisposable.set((self.account.network.request(Api.functions.phone.toggleGroupCallSettings(flags: 1 << 0, call: self.reference.apiInputGroupCall, joinMuted: isMuted ? .boolTrue : .boolFalse)) |> deliverOnMainQueue).start(next: { [weak self] updates in guard let strongSelf = self else { return @@ -2078,7 +2301,7 @@ public final class GroupCallParticipantsContext { } public func resetInviteLinks() { - self.resetInviteLinksDisposable.set((self.account.network.request(Api.functions.phone.toggleGroupCallSettings(flags: 1 << 1, call: .inputGroupCall(id: self.id, accessHash: self.accessHash), joinMuted: nil)) + self.resetInviteLinksDisposable.set((self.account.network.request(Api.functions.phone.toggleGroupCallSettings(flags: 1 << 1, call: self.reference.apiInputGroupCall, joinMuted: nil)) |> deliverOnMainQueue).start(next: { [weak self] updates in guard let strongSelf = self else { return @@ -2096,7 +2319,7 @@ public final class GroupCallParticipantsContext { } self.stateValue.state.subscribedToScheduled = subscribe - self.subscribeDisposable.set(_internal_toggleScheduledGroupCallSubscription(account: self.account, peerId: peerId, callId: self.id, accessHash: self.accessHash, subscribe: subscribe).start()) + self.subscribeDisposable.set(_internal_toggleScheduledGroupCallSubscription(account: self.account, peerId: peerId, reference: self.reference, subscribe: subscribe).start()) } public func loadMore(token: String) { @@ -2109,7 +2332,7 @@ public final class GroupCallParticipantsContext { } self.isLoadingMore = true - self.disposable.set((_internal_getGroupCallParticipants(account: self.account, callId: self.id, accessHash: self.accessHash, offset: token, ssrcs: [], limit: 100, sortAscending: self.stateValue.state.sortAscending) + self.disposable.set((_internal_getGroupCallParticipants(account: self.account, reference: self.reference, offset: token, ssrcs: [], limit: 100, sortAscending: self.stateValue.state.sortAscending) |> deliverOnMainQueue).start(next: { [weak self] state in guard let strongSelf = self else { return @@ -2236,8 +2459,8 @@ public struct GroupCallInviteLinks { } } -func _internal_groupCallInviteLinks(account: Account, callId: Int64, accessHash: Int64) -> Signal { - let call = Api.InputGroupCall.inputGroupCall(id: callId, accessHash: accessHash) +func _internal_groupCallInviteLinks(account: Account, reference: InternalGroupCallReference, isConference: Bool) -> Signal { + let call = reference.apiInputGroupCall let listenerInvite: Signal = account.network.request(Api.functions.phone.exportGroupCallInvite(flags: 0, call: call)) |> map(Optional.init) |> `catch` { _ -> Signal in @@ -2261,9 +2484,20 @@ func _internal_groupCallInviteLinks(account: Account, callId: Int64, accessHash: } return .single(nil) } + + if isConference { + return speakerInvite + |> map { speakerLink -> GroupCallInviteLinks? in + guard let speakerLink = speakerLink else { + return nil + } + return GroupCallInviteLinks(listenerLink: speakerLink, speakerLink: speakerLink) + } + } return combineLatest(listenerInvite, speakerInvite) |> map { listenerLink, speakerLink in + if let listenerLink = listenerLink { return GroupCallInviteLinks(listenerLink: listenerLink, speakerLink: speakerLink) } else { @@ -2689,3 +2923,118 @@ func _internal_getGroupCallStreamCredentials(account: Account, peerId: PeerId, r } } } + +public enum CreateConferenceCallError { + case generic +} + +public final class EngineCreatedGroupCall { + public let slug: String + public let link: String + public let callInfo: GroupCallInfo + + public init(slug: String, link: String, callInfo: GroupCallInfo) { + self.slug = slug + self.link = link + self.callInfo = callInfo + } +} + +func _internal_createConferenceCall(postbox: Postbox, network: Network, accountPeerId: PeerId) -> Signal { + return network.request(Api.functions.phone.createConferenceCall(randomId: Int32.random(in: Int32.min ... Int32.max))) + |> mapError { _ -> CreateConferenceCallError in + return .generic + } + |> mapToSignal { result in + switch result { + case let .groupCall(call, participants, _, chats, users): + return postbox.transaction { transaction -> Signal in + guard let info = GroupCallInfo(call) else { + return .fail(.generic) + } + + let parsedPeers = AccumulatedPeers(transaction: transaction, chats: chats, users: users) + + updatePeers(transaction: transaction, accountPeerId: accountPeerId, peers: parsedPeers) + + let parsedParticipants = participants.compactMap { GroupCallParticipantsContext.Participant($0, transaction: transaction) } + let _ = parsedParticipants + + let speakerInvite: Signal = network.request(Api.functions.phone.exportGroupCallInvite(flags: 1 << 0, call: .inputGroupCall(id: info.id, accessHash: info.accessHash))) + |> map(Optional.init) + |> `catch` { _ -> Signal in + return .single(nil) + } + |> castError(CreateConferenceCallError.self) + |> mapToSignal { result -> Signal in + if let result, case let .exportedGroupCallInvite(link) = result { + let slug = link.components(separatedBy: "/").last ?? link + return .single(EngineCreatedGroupCall( + slug: slug, + link: link, + callInfo: info + )) + } + return .fail(.generic) + } + return speakerInvite + } + |> mapError { _ -> CreateConferenceCallError in + } + |> switchToLatest + } + } +} + +public enum ConfirmAddConferenceParticipantError { + case generic +} + +func _internal_pollConferenceCallBlockchain(network: Network, reference: InternalGroupCallReference, subChainId: Int, offset: Int, limit: Int) -> Signal<(blocks: [Data], nextOffset: Int)?, NoError> { + return network.request(Api.functions.phone.getGroupCallChainBlocks(call: reference.apiInputGroupCall, subChainId: Int32(subChainId), offset: Int32(offset), limit: Int32(limit))) + |> map(Optional.init) + |> `catch` { error -> Signal in + return .single(nil) + } + |> map { result -> (blocks: [Data], nextOffset: Int)? in + guard let result = result else { + return nil + } + var blocks: [Data] = [] + var nextOffset: Int? + for update in result.allUpdates { + switch update { + case let .updateGroupCallChainBlocks(_, updateSubChainId, updateBlocks, updateNextOffset): + if updateSubChainId == Int32(subChainId) { + blocks.append(contentsOf: updateBlocks.map { $0.makeData() }) + nextOffset = Int(updateNextOffset) + } + default: + break + } + } + guard let nextOffset = nextOffset else { + return nil + } + return (blocks: blocks, nextOffset: nextOffset) + } +} + +func _internal_sendConferenceCallBroadcast(account: Account, callId: Int64, accessHash: Int64, block: Data) -> Signal { + return account.network.request(Api.functions.phone.sendConferenceCallBroadcast(call: .inputGroupCall(id: callId, accessHash: accessHash), block: Buffer(data: block))) + |> retry(retryOnError: { _ in + return true + }, delayIncrement: 0.1, maxDelay: 1.0, maxRetries: 5, onQueue: Queue.concurrentDefaultQueue()) + |> map(Optional.init) + |> `catch` { error -> Signal in + return .single(nil) + } + |> mapToSignal { result -> Signal in + guard let result = result else { + return .complete() + } + account.stateManager.addUpdates(result) + + return .complete() + } +} diff --git a/submodules/TelegramCore/Sources/TelegramEngine/Calls/TelegramEngineCalls.swift b/submodules/TelegramCore/Sources/TelegramEngine/Calls/TelegramEngineCalls.swift index 150ab35df5..2e04767276 100644 --- a/submodules/TelegramCore/Sources/TelegramEngine/Calls/TelegramEngineCalls.swift +++ b/submodules/TelegramCore/Sources/TelegramEngine/Calls/TelegramEngineCalls.swift @@ -33,8 +33,8 @@ public extension TelegramEngine { return _internal_saveCompleteCallDebugLog(account: self.account, callId: callId, logPath: logPath) } - public func getCurrentGroupCall(callId: Int64, accessHash: Int64, peerId: PeerId? = nil) -> Signal { - return _internal_getCurrentGroupCall(account: self.account, callId: callId, accessHash: accessHash, peerId: peerId) + public func getCurrentGroupCall(reference: InternalGroupCallReference, peerId: PeerId? = nil) -> Signal { + return _internal_getCurrentGroupCall(account: self.account, reference: reference, peerId: peerId) } public func createGroupCall(peerId: PeerId, title: String?, scheduleDate: Int32?, isExternalStream: Bool) -> Signal { @@ -45,20 +45,20 @@ public extension TelegramEngine { return _internal_startScheduledGroupCall(account: self.account, peerId: peerId, callId: callId, accessHash: accessHash) } - public func toggleScheduledGroupCallSubscription(peerId: PeerId, callId: Int64, accessHash: Int64, subscribe: Bool) -> Signal { - return _internal_toggleScheduledGroupCallSubscription(account: self.account, peerId: peerId, callId: callId, accessHash: accessHash, subscribe: subscribe) + public func toggleScheduledGroupCallSubscription(peerId: PeerId, reference: InternalGroupCallReference, subscribe: Bool) -> Signal { + return _internal_toggleScheduledGroupCallSubscription(account: self.account, peerId: peerId, reference: reference, subscribe: subscribe) } public func updateGroupCallJoinAsPeer(peerId: PeerId, joinAs: PeerId) -> Signal { return _internal_updateGroupCallJoinAsPeer(account: self.account, peerId: peerId, joinAs: joinAs) } - public func getGroupCallParticipants(callId: Int64, accessHash: Int64, offset: String, ssrcs: [UInt32], limit: Int32, sortAscending: Bool?) -> Signal { - return _internal_getGroupCallParticipants(account: self.account, callId: callId, accessHash: accessHash, offset: offset, ssrcs: ssrcs, limit: limit, sortAscending: sortAscending) + public func getGroupCallParticipants(reference: InternalGroupCallReference, offset: String, ssrcs: [UInt32], limit: Int32, sortAscending: Bool?) -> Signal { + return _internal_getGroupCallParticipants(account: self.account, reference: reference, offset: offset, ssrcs: ssrcs, limit: limit, sortAscending: sortAscending) } - public func joinGroupCall(peerId: PeerId?, joinAs: PeerId?, callId: Int64, accessHash: Int64, preferMuted: Bool, joinPayload: String, peerAdminIds: Signal<[PeerId], NoError>, inviteHash: String? = nil, keyFingerprint: Int64?) -> Signal { - return _internal_joinGroupCall(account: self.account, peerId: peerId, joinAs: joinAs, callId: callId, accessHash: accessHash, preferMuted: preferMuted, joinPayload: joinPayload, peerAdminIds: peerAdminIds, inviteHash: inviteHash, keyFingerprint: keyFingerprint) + public func joinGroupCall(peerId: PeerId?, joinAs: PeerId?, callId: Int64, reference: InternalGroupCallReference, preferMuted: Bool, joinPayload: String, peerAdminIds: Signal<[PeerId], NoError>, inviteHash: String? = nil, generateE2E: ((Data?) -> JoinGroupCallE2E?)?) -> Signal { + return _internal_joinGroupCall(account: self.account, peerId: peerId, joinAs: joinAs, callId: callId, reference: reference, preferMuted: preferMuted, joinPayload: joinPayload, peerAdminIds: peerAdminIds, inviteHash: inviteHash, generateE2E: generateE2E) } public func joinGroupCallAsScreencast(callId: Int64, accessHash: Int64, joinPayload: String) -> Signal { @@ -85,17 +85,33 @@ public extension TelegramEngine { return _internal_inviteToGroupCall(account: self.account, callId: callId, accessHash: accessHash, peerId: peerId) } - public func groupCallInviteLinks(callId: Int64, accessHash: Int64) -> Signal { - return _internal_groupCallInviteLinks(account: self.account, callId: callId, accessHash: accessHash) + public func groupCallInviteLinks(reference: InternalGroupCallReference, isConference: Bool) -> Signal { + return _internal_groupCallInviteLinks(account: self.account, reference: reference, isConference: isConference) } public func editGroupCallTitle(callId: Int64, accessHash: Int64, title: String) -> Signal { return _internal_editGroupCallTitle(account: self.account, callId: callId, accessHash: accessHash, title: title) } - /*public func groupCallDisplayAsAvailablePeers(peerId: PeerId) -> Signal<[FoundPeer], NoError> { - return _internal_groupCallDisplayAsAvailablePeers(network: self.account.network, postbox: self.account.postbox, peerId: peerId) - }*/ + public func createConferenceCall() -> Signal { + return _internal_createConferenceCall(postbox: self.account.postbox, network: self.account.network, accountPeerId: self.account.peerId) + } + + public func pollConferenceCallBlockchain(reference: InternalGroupCallReference, subChainId: Int, offset: Int, limit: Int) -> Signal<(blocks: [Data], nextOffset: Int)?, NoError> { + return _internal_pollConferenceCallBlockchain(network: self.account.network, reference: reference, subChainId: subChainId, offset: offset, limit: limit) + } + + public func sendConferenceCallBroadcast(callId: Int64, accessHash: Int64, block: Data) -> Signal { + return _internal_sendConferenceCallBroadcast(account: self.account, callId: callId, accessHash: accessHash, block: block) + } + + public func inviteConferenceCallParticipant(callId: Int64, accessHash: Int64, peerId: EnginePeer.Id) -> Signal { + return _internal_inviteConferenceCallParticipant(account: self.account, callId: callId, accessHash: accessHash, peerId: peerId) + } + + public func removeGroupCallBlockchainParticipant(callId: Int64, accessHash: Int64, block: @escaping ([EnginePeer.Id]) -> Data?) -> Signal { + return _internal_removeGroupCallBlockchainParticipants(account: self.account, callId: callId, accessHash: accessHash, block: block) + } public func clearCachedGroupCallDisplayAsAvailablePeers(peerId: PeerId) -> Signal { return _internal_clearCachedGroupCallDisplayAsAvailablePeers(account: self.account, peerId: peerId) @@ -124,8 +140,8 @@ public extension TelegramEngine { return _internal_getVideoBroadcastPart(dataSource: dataSource, callId: callId, accessHash: accessHash, timestampIdMilliseconds: timestampIdMilliseconds, durationMilliseconds: durationMilliseconds, channelId: channelId, quality: quality) } - public func groupCall(peerId: PeerId?, myPeerId: PeerId, id: Int64, accessHash: Int64, state: GroupCallParticipantsContext.State, previousServiceState: GroupCallParticipantsContext.ServiceState?) -> GroupCallParticipantsContext { - return GroupCallParticipantsContext(account: self.account, peerId: peerId, myPeerId: myPeerId, id: id, accessHash: accessHash, state: state, previousServiceState: previousServiceState) + public func groupCall(peerId: PeerId?, myPeerId: PeerId, id: Int64, reference: InternalGroupCallReference, state: GroupCallParticipantsContext.State, previousServiceState: GroupCallParticipantsContext.ServiceState?) -> GroupCallParticipantsContext { + return GroupCallParticipantsContext(account: self.account, peerId: peerId, myPeerId: myPeerId, id: id, reference: reference, state: state, previousServiceState: previousServiceState) } public func serverTime() -> Signal { diff --git a/submodules/TelegramCore/Sources/TelegramEngine/Peers/JoinLink.swift b/submodules/TelegramCore/Sources/TelegramEngine/Peers/JoinLink.swift index 2c7b9bd092..fb1eed8be1 100644 --- a/submodules/TelegramCore/Sources/TelegramEngine/Peers/JoinLink.swift +++ b/submodules/TelegramCore/Sources/TelegramEngine/Peers/JoinLink.swift @@ -143,11 +143,15 @@ func _internal_joinLinkInformation(_ hash: String, account: Account) -> Signal Signal { - //TODO:release - - let invite: Signal = account.network.request(Api.functions.messages.checkChatInvite(hash: hash), automaticFloodWait: false) - |> map(Optional.init) - |> `catch` { error -> Signal in - if error.errorDescription.hasPrefix("FLOOD_WAIT") { - return .fail(.flood) - } else { - return .single(nil) + return _internal_getCurrentGroupCall(account: account, reference: .link(slug: hash)) + |> mapError { error -> JoinLinkInfoError in + switch error { + case .generic: + return .generic } } - - return invite - |> mapToSignal { result -> Signal in - if let result { - switch result { - case let .chatInvite(_, _, _, _, participantsCount, participants, _, _, _, _): - return .single(JoinCallLinkInformation(inviter: nil, members: participants?.map({ EnginePeer(TelegramUser(user: $0)) }) ?? [], totalMemberCount: Int(participantsCount))) - default: - return .fail(.generic) - } - } else { + |> mapToSignal { call -> Signal in + guard let call = call else { return .fail(.generic) } + var members: [EnginePeer] = [] + for participant in call.topParticipants { + members.append(EnginePeer(participant.peer)) + } + return .single(JoinCallLinkInformation(id: call.info.id, accessHash: call.info.accessHash, inviter: nil, members: members, totalMemberCount: call.info.participantCount)) + } +} + +func _internal_joinCallInvitationInformation(account: Account, messageId: MessageId) -> Signal { + return _internal_getCurrentGroupCall(account: account, reference: .message(id: messageId)) + |> mapError { error -> JoinLinkInfoError in + switch error { + case .generic: + return .generic + } + } + |> mapToSignal { call -> Signal in + guard let call = call else { + return .fail(.generic) + } + var members: [EnginePeer] = [] + for participant in call.topParticipants { + members.append(EnginePeer(participant.peer)) + } + return .single(JoinCallLinkInformation(id: call.info.id, accessHash: call.info.accessHash, inviter: nil, members: members, totalMemberCount: call.info.participantCount)) } } diff --git a/submodules/TelegramCore/Sources/TelegramEngine/Peers/TelegramEnginePeers.swift b/submodules/TelegramCore/Sources/TelegramEngine/Peers/TelegramEnginePeers.swift index 8c9d9e6693..5a71dd9a9d 100644 --- a/submodules/TelegramCore/Sources/TelegramEngine/Peers/TelegramEnginePeers.swift +++ b/submodules/TelegramCore/Sources/TelegramEngine/Peers/TelegramEnginePeers.swift @@ -841,6 +841,10 @@ public extension TelegramEngine { public func joinCallLinkInformation(_ hash: String) -> Signal { return _internal_joinCallLinkInformation(hash, account: self.account) } + + public func joinCallInvitationInformation(messageId: EngineMessage.Id) -> Signal { + return _internal_joinCallInvitationInformation(account: self.account, messageId: messageId) + } public func updatePeerTitle(peerId: PeerId, title: String) -> Signal { return _internal_updatePeerTitle(account: self.account, peerId: peerId, title: title) diff --git a/submodules/TelegramCore/Sources/TelegramEngine/Peers/UpdateCachedPeerData.swift b/submodules/TelegramCore/Sources/TelegramEngine/Peers/UpdateCachedPeerData.swift index 79d7b40f1e..e6501ca85c 100644 --- a/submodules/TelegramCore/Sources/TelegramEngine/Peers/UpdateCachedPeerData.swift +++ b/submodules/TelegramCore/Sources/TelegramEngine/Peers/UpdateCachedPeerData.swift @@ -534,6 +534,8 @@ func _internal_fetchAndUpdateCachedPeerData(accountPeerId: PeerId, peerId rawPee switch inputCall { case let .inputGroupCall(id, accessHash): updatedActiveCall = CachedChannelData.ActiveCall(id: id, accessHash: accessHash, title: previous.activeCall?.title, scheduleTimestamp: previous.activeCall?.scheduleTimestamp, subscribedToScheduled: previous.activeCall?.subscribedToScheduled ?? false, isStream: previous.activeCall?.isStream) + case .inputGroupCallSlug, .inputGroupCallInviteMessage: + break } } @@ -787,6 +789,8 @@ func _internal_fetchAndUpdateCachedPeerData(accountPeerId: PeerId, peerId rawPee switch inputCall { case let .inputGroupCall(id, accessHash): updatedActiveCall = CachedChannelData.ActiveCall(id: id, accessHash: accessHash, title: previous.activeCall?.title, scheduleTimestamp: previous.activeCall?.scheduleTimestamp, subscribedToScheduled: previous.activeCall?.subscribedToScheduled ?? false, isStream: previous.activeCall?.isStream) + case .inputGroupCallSlug, .inputGroupCallInviteMessage: + break } } diff --git a/submodules/TelegramStringFormatting/Sources/ServiceMessageStrings.swift b/submodules/TelegramStringFormatting/Sources/ServiceMessageStrings.swift index 4f75317468..b013f04d16 100644 --- a/submodules/TelegramStringFormatting/Sources/ServiceMessageStrings.swift +++ b/submodules/TelegramStringFormatting/Sources/ServiceMessageStrings.swift @@ -616,6 +616,10 @@ public func universalServiceMessageString(presentationData: (PresentationTheme, } } attributedString = NSAttributedString(string: titleString, font: titleFont, textColor: primaryTextColor) + case .conferenceCall: + //TODO:localize + let titleString = "Group call" + attributedString = NSAttributedString(string: titleString, font: titleFont, textColor: primaryTextColor) case let .groupPhoneCall(_, _, scheduleDate, duration): if let scheduleDate = scheduleDate { if message.author?.id.namespace == Namespaces.Peer.CloudChannel { diff --git a/submodules/TelegramUI/Components/Chat/ChatBotInfoItem/Sources/ChatBotInfoItem.swift b/submodules/TelegramUI/Components/Chat/ChatBotInfoItem/Sources/ChatBotInfoItem.swift index 99e9bfecb4..19a4ebbc66 100644 --- a/submodules/TelegramUI/Components/Chat/ChatBotInfoItem/Sources/ChatBotInfoItem.swift +++ b/submodules/TelegramUI/Components/Chat/ChatBotInfoItem/Sources/ChatBotInfoItem.swift @@ -175,7 +175,7 @@ public final class ChatBotInfoItemNode: ListViewItemNode { break case .ignore: return .fail - case .url, .phone, .peerMention, .textMention, .botCommand, .hashtag, .instantPage, .wallpaper, .theme, .call, .openMessage, .timecode, .bankCard, .tooltip, .openPollResults, .copy, .largeEmoji, .customEmoji, .custom: + case .url, .phone, .peerMention, .textMention, .botCommand, .hashtag, .instantPage, .wallpaper, .theme, .call, .conferenceCall, .openMessage, .timecode, .bankCard, .tooltip, .openPollResults, .copy, .largeEmoji, .customEmoji, .custom: return .waitForSingleTap } } diff --git a/submodules/TelegramUI/Components/Chat/ChatMessageBubbleContentNode/Sources/ChatMessageBubbleContentNode.swift b/submodules/TelegramUI/Components/Chat/ChatMessageBubbleContentNode/Sources/ChatMessageBubbleContentNode.swift index 34c49278af..66f837bc0d 100644 --- a/submodules/TelegramUI/Components/Chat/ChatMessageBubbleContentNode/Sources/ChatMessageBubbleContentNode.swift +++ b/submodules/TelegramUI/Components/Chat/ChatMessageBubbleContentNode/Sources/ChatMessageBubbleContentNode.swift @@ -151,6 +151,7 @@ public struct ChatMessageBubbleContentTapAction { case wallpaper case theme case call(peerId: PeerId, isVideo: Bool) + case conferenceCall(message: Message) case openMessage case timecode(Double, String) case tooltip(String, ASDisplayNode?, CGRect?) diff --git a/submodules/TelegramUI/Components/Chat/ChatMessageBubbleItemNode/Sources/ChatMessageBubbleItemNode.swift b/submodules/TelegramUI/Components/Chat/ChatMessageBubbleItemNode/Sources/ChatMessageBubbleItemNode.swift index 6eb157593b..e113f5e476 100644 --- a/submodules/TelegramUI/Components/Chat/ChatMessageBubbleItemNode/Sources/ChatMessageBubbleItemNode.swift +++ b/submodules/TelegramUI/Components/Chat/ChatMessageBubbleItemNode/Sources/ChatMessageBubbleItemNode.swift @@ -213,6 +213,8 @@ private func contentNodeMessagesAndClassesForItem(_ item: ChatMessageItem) -> ([ isAction = true if case .phoneCall = action.action { result.append((message, ChatMessageCallBubbleContentNode.self, itemAttributes, BubbleItemAttributes(isAttachment: false, neighborType: .text, neighborSpacing: .default))) + } else if case .conferenceCall = action.action { + result.append((message, ChatMessageCallBubbleContentNode.self, itemAttributes, BubbleItemAttributes(isAttachment: false, neighborType: .text, neighborSpacing: .default))) } else if case .giftPremium = action.action { result.append((message, ChatMessageGiftBubbleContentNode.self, itemAttributes, BubbleItemAttributes(isAttachment: false, neighborType: .text, neighborSpacing: .default))) } else if case .giftStars = action.action { @@ -1251,7 +1253,7 @@ public class ChatMessageBubbleItemNode: ChatMessageItemView, ChatMessagePreviewI break case .ignore: return .fail - case .url, .phone, .peerMention, .textMention, .botCommand, .hashtag, .instantPage, .wallpaper, .theme, .call, .openMessage, .timecode, .bankCard, .tooltip, .openPollResults, .copy, .largeEmoji, .customEmoji, .custom: + case .url, .phone, .peerMention, .textMention, .botCommand, .hashtag, .instantPage, .wallpaper, .theme, .call, .conferenceCall, .openMessage, .timecode, .bankCard, .tooltip, .openPollResults, .copy, .largeEmoji, .customEmoji, .custom: return .waitForSingleTap } } @@ -1347,7 +1349,8 @@ public class ChatMessageBubbleItemNode: ChatMessageItemView, ChatMessagePreviewI return false } else if let media = media as? TelegramMediaAction { - if case .phoneCall(_, _, _, _) = media.action { + if case .phoneCall = media.action { + } else if case .conferenceCall = media.action { } else { return false } @@ -2723,6 +2726,8 @@ public class ChatMessageBubbleItemNode: ChatMessageItemView, ChatMessagePreviewI switch action.action { case .phoneCall: break + case .conferenceCall: + break default: centerAligned = true } @@ -5034,6 +5039,10 @@ public class ChatMessageBubbleItemNode: ChatMessageItemView, ChatMessagePreviewI return .optionalAction({ self.item?.controllerInteraction.callPeer(peerId, isVideo) }) + case let .conferenceCall(message): + return .optionalAction({ + self.item?.controllerInteraction.openConferenceCall(message) + }) case .openMessage: if let item = self.item { if let type = self.backgroundNode.type, case .none = type { @@ -5221,6 +5230,8 @@ public class ChatMessageBubbleItemNode: ChatMessageItemView, ChatMessagePreviewI break case .call: break + case .conferenceCall: + break case .openMessage: break case let .timecode(timecode, text): @@ -5516,6 +5527,7 @@ public class ChatMessageBubbleItemNode: ChatMessageItemView, ChatMessagePreviewI for media in message.media { if let action = media as? TelegramMediaAction { if case .phoneCall = action.action { + } else if case .conferenceCall = action.action { } else { canHaveSelection = false break diff --git a/submodules/TelegramUI/Components/Chat/ChatMessageCallBubbleContentNode/Sources/ChatMessageCallBubbleContentNode.swift b/submodules/TelegramUI/Components/Chat/ChatMessageCallBubbleContentNode/Sources/ChatMessageCallBubbleContentNode.swift index 714b4e7f7f..642e0657e5 100644 --- a/submodules/TelegramUI/Components/Chat/ChatMessageCallBubbleContentNode/Sources/ChatMessageCallBubbleContentNode.swift +++ b/submodules/TelegramUI/Components/Chat/ChatMessageCallBubbleContentNode/Sources/ChatMessageCallBubbleContentNode.swift @@ -123,6 +123,12 @@ public class ChatMessageCallBubbleContentNode: ChatMessageBubbleContentNode { } } break + } else if let action = media as? TelegramMediaAction, case let .conferenceCall(_, duration, _) = action.action { + isVideo = false + callDuration = duration + //TODO:localize + titleString = "Group Call" + break } } @@ -254,6 +260,9 @@ public class ChatMessageCallBubbleContentNode: ChatMessageBubbleContentNode { for media in item.message.media { if let action = media as? TelegramMediaAction, case let .phoneCall(_, _, _, isVideoValue) = action.action { isVideo = isVideoValue + } else if let action = media as? TelegramMediaAction, case .conferenceCall = action.action { + item.controllerInteraction.openConferenceCall(item.message) + return } } item.controllerInteraction.callPeer(item.message.id.peerId, isVideo) @@ -268,6 +277,8 @@ public class ChatMessageCallBubbleContentNode: ChatMessageBubbleContentNode { for media in item.message.media { if let action = media as? TelegramMediaAction, case let .phoneCall(_, _, _, isVideoValue) = action.action { isVideo = isVideoValue + } else if let action = media as? TelegramMediaAction, case .conferenceCall = action.action { + return ChatMessageBubbleContentTapAction(content: .conferenceCall(message: item.message)) } } return ChatMessageBubbleContentTapAction(content: .call(peerId: item.message.id.peerId, isVideo: isVideo)) diff --git a/submodules/TelegramUI/Components/Chat/ChatMessageInteractiveMediaNode/Sources/ChatMessageInteractiveMediaNode.swift b/submodules/TelegramUI/Components/Chat/ChatMessageInteractiveMediaNode/Sources/ChatMessageInteractiveMediaNode.swift index 5bb87a3def..26241e9a6b 100644 --- a/submodules/TelegramUI/Components/Chat/ChatMessageInteractiveMediaNode/Sources/ChatMessageInteractiveMediaNode.swift +++ b/submodules/TelegramUI/Components/Chat/ChatMessageInteractiveMediaNode/Sources/ChatMessageInteractiveMediaNode.swift @@ -1603,8 +1603,18 @@ public final class ChatMessageInteractiveMediaNode: ASDisplayNode, GalleryItemTr } } else { onlyFullSizeVideoThumbnail = isSendingUpdated + let codecConfiguration = HLSCodecConfiguration(context: context) updateImageSignal = { synchronousLoad, _ in - return mediaGridMessageVideo(postbox: context.account.postbox, userLocation: .peer(message.id.peerId), videoReference: .message(message: MessageReference(message), media: file), onlyFullSize: currentMedia?.id?.namespace == Namespaces.Media.LocalFile, autoFetchFullSizeThumbnail: true) + let videoReference: FileMediaReference = .message(message: MessageReference(message), media: file) + var hlsFiles: [(playlist: TelegramMediaFile, video: TelegramMediaFile)] = [] + if let qualitySet = HLSQualitySet(baseFile: videoReference, codecConfiguration: codecConfiguration) { + for key in qualitySet.playlistFiles.keys.sorted() { + if let playlist = qualitySet.playlistFiles[key], let file = qualitySet.qualityFiles[key] { + hlsFiles.append((playlist.media, file.media)) + } + } + } + return mediaGridMessageVideo(postbox: context.account.postbox, userLocation: .peer(message.id.peerId), videoReference: videoReference, hlsFiles: hlsFiles, onlyFullSize: currentMedia?.id?.namespace == Namespaces.Media.LocalFile, autoFetchFullSizeThumbnail: true) } updateBlurredImageSignal = { synchronousLoad, _ in return chatSecretMessageVideo(account: context.account, userLocation: .peer(message.id.peerId), videoReference: .message(message: MessageReference(message), media: file), synchronousLoad: true) diff --git a/submodules/TelegramUI/Components/Chat/ChatMessageItemView/Sources/ChatMessageItemView.swift b/submodules/TelegramUI/Components/Chat/ChatMessageItemView/Sources/ChatMessageItemView.swift index 8634e2b9d2..346ac78203 100644 --- a/submodules/TelegramUI/Components/Chat/ChatMessageItemView/Sources/ChatMessageItemView.swift +++ b/submodules/TelegramUI/Components/Chat/ChatMessageItemView/Sources/ChatMessageItemView.swift @@ -590,6 +590,7 @@ public final class ChatMessageAccessibilityData { } else if let media = media as? TelegramMediaAction { if case .phoneCall = media.action { + } else if case .conferenceCall = media.action { } else { canReply = false } diff --git a/submodules/TelegramUI/Components/Chat/ChatRecentActionsController/Sources/ChatRecentActionsControllerNode.swift b/submodules/TelegramUI/Components/Chat/ChatRecentActionsController/Sources/ChatRecentActionsControllerNode.swift index 82b8b9d88c..1958893ce5 100644 --- a/submodules/TelegramUI/Components/Chat/ChatRecentActionsController/Sources/ChatRecentActionsControllerNode.swift +++ b/submodules/TelegramUI/Components/Chat/ChatRecentActionsController/Sources/ChatRecentActionsControllerNode.swift @@ -264,6 +264,8 @@ final class ChatRecentActionsControllerNode: ViewControllerTracingNode { self?.openPeer(peer: EnginePeer(peer)) }, callPeer: { peerId, isVideo in self?.controllerInteraction?.callPeer(peerId, isVideo) + }, openConferenceCall: { message in + self?.controllerInteraction?.openConferenceCall(message) }, enqueueMessage: { _ in }, sendSticker: nil, sendEmoji: nil, setupTemporaryHiddenMedia: { _, _, _ in }, chatAvatarHiddenMedia: { signal, media in if let strongSelf = self { @@ -372,7 +374,8 @@ final class ChatRecentActionsControllerNode: ViewControllerTracingNode { return self?.getNavigationController() }, chatControllerNode: { [weak self] in return self - }, presentGlobalOverlayController: { _, _ in }, callPeer: { _, _ in }, longTap: { [weak self] action, params in + }, presentGlobalOverlayController: { _, _ in }, callPeer: { _, _ in }, openConferenceCall: { _ in + }, longTap: { [weak self] action, params in if let strongSelf = self { switch action { case let .url(url): @@ -1383,7 +1386,12 @@ final class ChatRecentActionsControllerNode: ViewControllerTracingNode { let _ = (signal |> deliverOnMainQueue).startStandalone(next: { [weak navigationController] resolvedCallLink in navigationController?.pushViewController(context.sharedContext.makeJoinSubjectScreen(context: context, mode: JoinSubjectScreenMode.groupCall(JoinSubjectScreenMode.GroupCall( - inviter: resolvedCallLink.inviter, members: resolvedCallLink.members, totalMemberCount: resolvedCallLink.totalMemberCount + id: resolvedCallLink.id, + accessHash: resolvedCallLink.accessHash, + slug: link, + inviter: resolvedCallLink.inviter, + members: resolvedCallLink.members, + totalMemberCount: resolvedCallLink.totalMemberCount )))) }) case let .localization(identifier): diff --git a/submodules/TelegramUI/Components/Chat/ChatSendAudioMessageContextPreview/Sources/ChatSendAudioMessageContextPreview.swift b/submodules/TelegramUI/Components/Chat/ChatSendAudioMessageContextPreview/Sources/ChatSendAudioMessageContextPreview.swift index 7da3744cef..230431ad0a 100644 --- a/submodules/TelegramUI/Components/Chat/ChatSendAudioMessageContextPreview/Sources/ChatSendAudioMessageContextPreview.swift +++ b/submodules/TelegramUI/Components/Chat/ChatSendAudioMessageContextPreview/Sources/ChatSendAudioMessageContextPreview.swift @@ -428,7 +428,8 @@ public final class ChatSendGroupMediaMessageContextPreview: UIView, ChatSendMess return nil }, chatControllerNode: { return nil - }, presentGlobalOverlayController: { _, _ in }, callPeer: { _, _ in }, longTap: { _, _ in }, openCheckoutOrReceipt: { _, _ in }, openSearch: { }, setupReply: { _ in + }, presentGlobalOverlayController: { _, _ in }, callPeer: { _, _ in }, openConferenceCall: { _ in + }, longTap: { _, _ in }, openCheckoutOrReceipt: { _, _ in }, openSearch: { }, setupReply: { _ in }, canSetupReply: { _ in return .none }, canSendMessages: { diff --git a/submodules/TelegramUI/Components/ChatControllerInteraction/Sources/ChatControllerInteraction.swift b/submodules/TelegramUI/Components/ChatControllerInteraction/Sources/ChatControllerInteraction.swift index b34776baba..7c0459ad02 100644 --- a/submodules/TelegramUI/Components/ChatControllerInteraction/Sources/ChatControllerInteraction.swift +++ b/submodules/TelegramUI/Components/ChatControllerInteraction/Sources/ChatControllerInteraction.swift @@ -208,6 +208,7 @@ public final class ChatControllerInteraction: ChatControllerInteractionProtocol public let chatControllerNode: () -> ASDisplayNode? public let presentGlobalOverlayController: (ViewController, Any?) -> Void public let callPeer: (PeerId, Bool) -> Void + public let openConferenceCall: (Message) -> Void public let longTap: (ChatControllerInteractionLongTapAction, LongTapParams?) -> Void public let openCheckoutOrReceipt: (MessageId, OpenMessageParams?) -> Void public let openSearch: () -> Void @@ -367,6 +368,7 @@ public final class ChatControllerInteraction: ChatControllerInteractionProtocol chatControllerNode: @escaping () -> ASDisplayNode?, presentGlobalOverlayController: @escaping (ViewController, Any?) -> Void, callPeer: @escaping (PeerId, Bool) -> Void, + openConferenceCall: @escaping (Message) -> Void, longTap: @escaping (ChatControllerInteractionLongTapAction, LongTapParams?) -> Void, openCheckoutOrReceipt: @escaping (MessageId, OpenMessageParams?) -> Void, openSearch: @escaping () -> Void, @@ -482,6 +484,7 @@ public final class ChatControllerInteraction: ChatControllerInteractionProtocol self.chatControllerNode = chatControllerNode self.presentGlobalOverlayController = presentGlobalOverlayController self.callPeer = callPeer + self.openConferenceCall = openConferenceCall self.longTap = longTap self.openCheckoutOrReceipt = openCheckoutOrReceipt self.openSearch = openSearch diff --git a/submodules/TelegramUI/Components/JoinSubjectScreen/Sources/JoinSubjectScreen.swift b/submodules/TelegramUI/Components/JoinSubjectScreen/Sources/JoinSubjectScreen.swift index 34090d0df4..3a4dcdb3b6 100644 --- a/submodules/TelegramUI/Components/JoinSubjectScreen/Sources/JoinSubjectScreen.swift +++ b/submodules/TelegramUI/Components/JoinSubjectScreen/Sources/JoinSubjectScreen.swift @@ -394,7 +394,20 @@ private final class JoinSubjectScreenComponent: Component { self.environment?.controller()?.dismiss() }) case let .groupCall(groupCall): - let _ = groupCall + component.context.sharedContext.callManager?.joinConferenceCall( + accountContext: component.context, + initialCall: EngineGroupCallDescription( + id: groupCall.id, + accessHash: groupCall.accessHash, + title: nil, + scheduleTimestamp: nil, + subscribedToScheduled: false, + isStream: false + ), + reference: .link(slug: groupCall.slug), + mode: .joining + ) + self.environment?.controller()?.dismiss() } } diff --git a/submodules/TelegramUI/Components/PeerInfo/PeerInfoScreen/BUILD b/submodules/TelegramUI/Components/PeerInfo/PeerInfoScreen/BUILD index 6a04bb0809..a86f77797d 100644 --- a/submodules/TelegramUI/Components/PeerInfo/PeerInfoScreen/BUILD +++ b/submodules/TelegramUI/Components/PeerInfo/PeerInfoScreen/BUILD @@ -157,6 +157,7 @@ swift_library( "//submodules/TelegramUI/Components/Gifts/GiftViewScreen", "//submodules/TelegramUI/Components/BatchVideoRendering", "//submodules/TelegramUI/Components/GifVideoLayer", + "//submodules/Components/HierarchyTrackingLayer", ], visibility = [ "//visibility:public", diff --git a/submodules/TelegramUI/Components/PeerInfo/PeerInfoScreen/Sources/PeerInfoAvatarTransformContainerNode.swift b/submodules/TelegramUI/Components/PeerInfo/PeerInfoScreen/Sources/PeerInfoAvatarTransformContainerNode.swift index 4c5484f287..7adcb703a5 100644 --- a/submodules/TelegramUI/Components/PeerInfo/PeerInfoScreen/Sources/PeerInfoAvatarTransformContainerNode.swift +++ b/submodules/TelegramUI/Components/PeerInfo/PeerInfoScreen/Sources/PeerInfoAvatarTransformContainerNode.swift @@ -17,7 +17,7 @@ import Postbox import TelegramCore import EmojiStatusComponent import GalleryUI - +import HierarchyTrackingLayer final class PeerInfoAvatarTransformContainerNode: ASDisplayNode { let context: AccountContext @@ -32,6 +32,8 @@ final class PeerInfoAvatarTransformContainerNode: ASDisplayNode { private var videoContent: NativeVideoContent? private var videoStartTimestamp: Double? + private let hierarchyTrackingLayer = HierarchyTrackingLayer() + var isExpanded: Bool = false var canAttachVideo: Bool = true { didSet { @@ -78,6 +80,21 @@ final class PeerInfoAvatarTransformContainerNode: ASDisplayNode { tapGestureRecognizer.isEnabled = true strongSelf.contextAction?(strongSelf.containerNode, gesture) } + + self.hierarchyTrackingLayer.isInHierarchyUpdated = { [weak self] value in + guard let self else { + return + } + + if value { + self.updateFromParams() + } else { + self.videoNode?.removeFromSupernode() + self.videoNode = nil + self.videoContent = nil + } + } + self.layer.addSublayer(self.hierarchyTrackingLayer) } deinit { @@ -189,9 +206,52 @@ final class PeerInfoAvatarTransformContainerNode: ASDisplayNode { transition.updateAlpha(node: markupNode, alpha: 1.0 - fraction) } } + + private struct Params { + let peer: Peer? + let threadId: Int64? + let threadInfo: EngineMessageHistoryThread.Info? + let item: PeerInfoAvatarListItem? + let theme: PresentationTheme + let avatarSize: CGFloat + let isExpanded: Bool + let isSettings: Bool + + init(peer: Peer?, threadId: Int64?, threadInfo: EngineMessageHistoryThread.Info?, item: PeerInfoAvatarListItem?, theme: PresentationTheme, avatarSize: CGFloat, isExpanded: Bool, isSettings: Bool) { + self.peer = peer + self.threadId = threadId + self.threadInfo = threadInfo + self.item = item + self.theme = theme + self.avatarSize = avatarSize + self.isExpanded = isExpanded + self.isSettings = isSettings + } + } var removedPhotoResourceIds = Set() + private var params: Params? + + private func updateFromParams() { + guard let params = self.params else { + return + } + + self.update( + peer: params.peer, + threadId: params.threadId, + threadInfo: params.threadInfo, + item: params.item, + theme: params.theme, + avatarSize: params.avatarSize, + isExpanded: params.isExpanded, + isSettings: params.isSettings + ) + } + func update(peer: Peer?, threadId: Int64?, threadInfo: EngineMessageHistoryThread.Info?, item: PeerInfoAvatarListItem?, theme: PresentationTheme, avatarSize: CGFloat, isExpanded: Bool, isSettings: Bool) { + self.params = Params(peer: peer, threadId: threadId, threadInfo: threadInfo, item: item, theme: theme, avatarSize: avatarSize, isExpanded: isExpanded, isSettings: isSettings) + if let peer = peer { let previousItem = self.item var item = item @@ -345,52 +405,54 @@ final class PeerInfoAvatarTransformContainerNode: ASDisplayNode { if videoContent.id != self.videoContent?.id { self.videoNode?.removeFromSupernode() - let mediaManager = self.context.sharedContext.mediaManager - let videoNode = UniversalVideoNode(context: self.context, postbox: self.context.account.postbox, audioSession: mediaManager.audioSession, manager: mediaManager.universalVideoManager, decoration: GalleryVideoDecoration(), content: videoContent, priority: .embedded) - videoNode.isUserInteractionEnabled = false - videoNode.isHidden = true - - if let startTimestamp = video.representation.startTimestamp { - self.videoStartTimestamp = startTimestamp - self.playbackStartDisposable.set((videoNode.status - |> map { status -> Bool in - if let status = status, case .playing = status.status { - return true - } else { - return false - } - } - |> filter { playing in - return playing - } - |> take(1) - |> deliverOnMainQueue).start(completed: { [weak self] in - if let strongSelf = self { - Queue.mainQueue().after(0.15) { - strongSelf.videoNode?.isHidden = false + if self.hierarchyTrackingLayer.isInHierarchy { + let mediaManager = self.context.sharedContext.mediaManager + let videoNode = UniversalVideoNode(context: self.context, postbox: self.context.account.postbox, audioSession: mediaManager.audioSession, manager: mediaManager.universalVideoManager, decoration: GalleryVideoDecoration(), content: videoContent, priority: .embedded) + videoNode.isUserInteractionEnabled = false + videoNode.isHidden = true + + if let startTimestamp = video.representation.startTimestamp { + self.videoStartTimestamp = startTimestamp + self.playbackStartDisposable.set((videoNode.status + |> map { status -> Bool in + if let status = status, case .playing = status.status { + return true + } else { + return false } } - })) - } else { - self.videoStartTimestamp = nil - self.playbackStartDisposable.set(nil) - videoNode.isHidden = false + |> filter { playing in + return playing + } + |> take(1) + |> deliverOnMainQueue).start(completed: { [weak self] in + if let strongSelf = self { + Queue.mainQueue().after(0.15) { + strongSelf.videoNode?.isHidden = false + } + } + })) + } else { + self.videoStartTimestamp = nil + self.playbackStartDisposable.set(nil) + videoNode.isHidden = false + } + + self.videoContent = videoContent + self.videoNode = videoNode + + let maskPath: UIBezierPath + if isForum { + maskPath = UIBezierPath(roundedRect: CGRect(origin: CGPoint(), size: self.avatarNode.frame.size), cornerRadius: avatarCornerRadius) + } else { + maskPath = UIBezierPath(ovalIn: CGRect(origin: CGPoint(), size: self.avatarNode.frame.size)) + } + let shape = CAShapeLayer() + shape.path = maskPath.cgPath + videoNode.layer.mask = shape + + self.avatarNode.contentNode.addSubnode(videoNode) } - - self.videoContent = videoContent - self.videoNode = videoNode - - let maskPath: UIBezierPath - if isForum { - maskPath = UIBezierPath(roundedRect: CGRect(origin: CGPoint(), size: self.avatarNode.frame.size), cornerRadius: avatarCornerRadius) - } else { - maskPath = UIBezierPath(ovalIn: CGRect(origin: CGPoint(), size: self.avatarNode.frame.size)) - } - let shape = CAShapeLayer() - shape.path = maskPath.cgPath - videoNode.layer.mask = shape - - self.avatarNode.contentNode.addSubnode(videoNode) } } else { if let markupNode = self.markupNode { diff --git a/submodules/TelegramUI/Components/PeerInfo/PeerInfoScreen/Sources/PeerInfoEditingAvatarNode.swift b/submodules/TelegramUI/Components/PeerInfo/PeerInfoScreen/Sources/PeerInfoEditingAvatarNode.swift index 83e663631e..99e40840d8 100644 --- a/submodules/TelegramUI/Components/PeerInfo/PeerInfoScreen/Sources/PeerInfoEditingAvatarNode.swift +++ b/submodules/TelegramUI/Components/PeerInfo/PeerInfoScreen/Sources/PeerInfoEditingAvatarNode.swift @@ -196,7 +196,9 @@ final class PeerInfoEditingAvatarNode: ASDisplayNode { self.videoContent = nil self.videoNode = nil - videoNode.removeFromSupernode() + DispatchQueue.main.async { + videoNode.removeFromSupernode() + } } } } else if let videoNode = self.videoNode { diff --git a/submodules/TelegramUI/Components/PeerInfo/PeerInfoScreen/Sources/PeerInfoScreen.swift b/submodules/TelegramUI/Components/PeerInfo/PeerInfoScreen/Sources/PeerInfoScreen.swift index dd5068356f..87b766c92e 100644 --- a/submodules/TelegramUI/Components/PeerInfo/PeerInfoScreen/Sources/PeerInfoScreen.swift +++ b/submodules/TelegramUI/Components/PeerInfo/PeerInfoScreen/Sources/PeerInfoScreen.swift @@ -3617,6 +3617,7 @@ final class PeerInfoScreenNode: ViewControllerTracingNode, PeerInfoScreenNodePro }, chatControllerNode: { return nil }, presentGlobalOverlayController: { _, _ in }, callPeer: { _, _ in + }, openConferenceCall: { _ in }, longTap: { [weak self] content, _ in guard let strongSelf = self else { return @@ -5430,7 +5431,7 @@ final class PeerInfoScreenNode: ViewControllerTracingNode, PeerInfoScreenNodePro }, openPeer: { [weak self] peer, navigation in self?.openPeer(peerId: peer.id, navigation: navigation) }, callPeer: { peerId, isVideo in - //self?.controllerInteraction?.callPeer(peerId) + }, openConferenceCall: { _ in }, enqueueMessage: { _ in }, sendSticker: nil, sendEmoji: nil, setupTemporaryHiddenMedia: { _, _, _ in }, chatAvatarHiddenMedia: { _, _ in }, actionInteraction: GalleryControllerActionInteraction(openUrl: { [weak self] url, concealed in if let strongSelf = self { diff --git a/submodules/TelegramUI/Components/StorageUsageScreen/Sources/StorageUsageScreen.swift b/submodules/TelegramUI/Components/StorageUsageScreen/Sources/StorageUsageScreen.swift index 53130d45e0..6994ba3d69 100644 --- a/submodules/TelegramUI/Components/StorageUsageScreen/Sources/StorageUsageScreen.swift +++ b/submodules/TelegramUI/Components/StorageUsageScreen/Sources/StorageUsageScreen.swift @@ -2793,7 +2793,7 @@ final class StorageUsageScreenComponent: Component { let _ = self }, callPeer: { _, _ in - //self?.controllerInteraction?.callPeer(peerId) + }, openConferenceCall: { _ in }, enqueueMessage: { _ in }, diff --git a/submodules/TelegramUI/Sources/Chat/ChatControllerOpenMessageContextMenu.swift b/submodules/TelegramUI/Sources/Chat/ChatControllerOpenMessageContextMenu.swift index cdd900f1c7..f6fd011cfa 100644 --- a/submodules/TelegramUI/Sources/Chat/ChatControllerOpenMessageContextMenu.swift +++ b/submodules/TelegramUI/Sources/Chat/ChatControllerOpenMessageContextMenu.swift @@ -307,6 +307,8 @@ extension ChatControllerImpl { switch action.action { case .phoneCall: break + case .conferenceCall: + break default: hideReactionPanelTail = true } diff --git a/submodules/TelegramUI/Sources/Chat/ChatControllerOpenViewOnceMediaMessage.swift b/submodules/TelegramUI/Sources/Chat/ChatControllerOpenViewOnceMediaMessage.swift index 2450bcd1d2..6ae722c6c6 100644 --- a/submodules/TelegramUI/Sources/Chat/ChatControllerOpenViewOnceMediaMessage.swift +++ b/submodules/TelegramUI/Sources/Chat/ChatControllerOpenViewOnceMediaMessage.swift @@ -177,6 +177,7 @@ extension ChatControllerImpl { contextController?.present(c, in: .current) } - let _ = self.context.sharedContext.openChatMessage(OpenChatMessageParams(context: self.context, chatLocation: nil, chatFilterTag: nil, chatLocationContextHolder: nil, message: message, standalone: false, reverseMessageGalleryOrder: false, navigationController: nil, dismissInput: { }, present: { _, _, _ in }, transitionNode: { _, _, _ in return nil }, addToTransitionSurface: { _ in }, openUrl: { _ in }, openPeer: { _, _ in }, callPeer: { _, _ in }, enqueueMessage: { _ in }, sendSticker: nil, sendEmoji: nil, setupTemporaryHiddenMedia: { _, _, _ in }, chatAvatarHiddenMedia: { _, _ in }, playlistLocation: .singleMessage(message.id))) + let _ = self.context.sharedContext.openChatMessage(OpenChatMessageParams(context: self.context, chatLocation: nil, chatFilterTag: nil, chatLocationContextHolder: nil, message: message, standalone: false, reverseMessageGalleryOrder: false, navigationController: nil, dismissInput: { }, present: { _, _, _ in }, transitionNode: { _, _, _ in return nil }, addToTransitionSurface: { _ in }, openUrl: { _ in }, openPeer: { _, _ in }, callPeer: { _, _ in }, openConferenceCall: { _ in + }, enqueueMessage: { _ in }, sendSticker: nil, sendEmoji: nil, setupTemporaryHiddenMedia: { _, _, _ in }, chatAvatarHiddenMedia: { _, _ in }, playlistLocation: .singleMessage(message.id))) } } diff --git a/submodules/TelegramUI/Sources/ChatController.swift b/submodules/TelegramUI/Sources/ChatController.swift index 4fdfbc13e3..623e7f458b 100644 --- a/submodules/TelegramUI/Sources/ChatController.swift +++ b/submodules/TelegramUI/Sources/ChatController.swift @@ -133,6 +133,7 @@ import NotificationPeerExceptionController import AdsReportScreen import AdUI import ChatMessagePaymentAlertController +import TelegramCallsUI public enum ChatControllerPeekActions { case standard @@ -1366,6 +1367,8 @@ public final class ChatControllerImpl: TelegramBaseController, ChatController, G self?.openPeer(peer: EnginePeer(peer), navigation: navigation, fromMessage: nil) }, callPeer: { [weak self] peerId, isVideo in self?.controllerInteraction?.callPeer(peerId, isVideo) + }, openConferenceCall: { [weak self] message in + self?.controllerInteraction?.openConferenceCall(message) }, enqueueMessage: { [weak self] message in self?.sendMessages([message]) }, sendSticker: canSendMessagesToChat(self.presentationInterfaceState) ? { [weak self] fileReference, sourceNode, sourceRect in @@ -2861,6 +2864,50 @@ public final class ChatControllerImpl: TelegramBaseController, ChatController, G }) }) } + }, openConferenceCall: { [weak self] message in + guard let self else { + return + } + + var action: TelegramMediaAction? + for media in message.media { + if let media = media as? TelegramMediaAction { + action = media + break + } + } + guard case let .conferenceCall(callId, duration, _) = action?.action else { + return + } + if duration != nil { + return + } + + if let currentGroupCallController = self.context.sharedContext as? VoiceChatController, case let .group(groupCall) = currentGroupCallController.call, let currentCallId = groupCall.callId, currentCallId == callId { + self.context.sharedContext.navigateToCurrentCall() + return + } + + let signal = self.context.engine.peers.joinCallInvitationInformation(messageId: message.id) + let _ = (signal + |> deliverOnMainQueue).startStandalone(next: { [weak self] resolvedCallLink in + guard let self else { + return + } + self.context.sharedContext.callManager?.joinConferenceCall( + accountContext: self.context, + initialCall: EngineGroupCallDescription( + id: resolvedCallLink.id, + accessHash: resolvedCallLink.accessHash, + title: nil, + scheduleTimestamp: nil, + subscribedToScheduled: false, + isStream: false + ), + reference: .message(id: message.id), + mode: .joining + ) + }) }, longTap: { [weak self] action, params in if let self { self.openLinkLongTap(action, params: params) diff --git a/submodules/TelegramUI/Sources/FetchCachedRepresentations.swift b/submodules/TelegramUI/Sources/FetchCachedRepresentations.swift index ca8e9f055c..08ad7c9271 100644 --- a/submodules/TelegramUI/Sources/FetchCachedRepresentations.swift +++ b/submodules/TelegramUI/Sources/FetchCachedRepresentations.swift @@ -20,6 +20,7 @@ import TelegramUniversalVideoContent import GradientBackground import Svg import UniversalMediaPlayer +import RangeSet public func fetchCachedResourceRepresentation(account: Account, resource: MediaResource, representation: CachedMediaResourceRepresentation) -> Signal { if let representation = representation as? CachedStickerAJpegRepresentation { @@ -66,19 +67,49 @@ public func fetchCachedResourceRepresentation(account: Account, resource: MediaR return EmptyDisposable } } - /*return account.postbox.mediaBox.resourceData(resource, option: .complete(waitUntilFetchStatus: false)) - |> mapToSignal { data -> Signal in - if data.complete { - return fetchCachedVideoFirstFrameRepresentation(account: account, resource: resource, resourceData: data) - |> `catch` { _ -> Signal in - return .complete() + } else if let _ = representation as? CachedVideoPrefixFirstFrameRepresentation { + return Signal { subscriber in + if let size = resource.size { + let videoSource = UniversalSoftwareVideoSource(mediaBox: account.postbox.mediaBox, source: .direct(resource: resource, size: size), automaticallyFetchHeader: false, hintVP9: false) + let disposable = videoSource.takeFrame(at: 0.0).start(next: { value in + switch value { + case let .image(image): + if let image { + if let imageData = image.jpegData(compressionQuality: 0.6) { + subscriber.putNext(.data(imageData)) + subscriber.putNext(.done) + subscriber.putCompletion() + } + } + case .waitingForData: + break + } + }) + + subscriber.keepAlive(videoSource) + + /*let reader = FFMpegFileReader(source: .resource(mediaBox: account.postbox.mediaBox, resource: resource, resourceSize: size, mappedRanges: [0 ..< size]), useHardwareAcceleration: false, selectedStream: .mediaType(.video), seek: nil, maxReadablePts: nil) + reader?.readFrame() + + print("ready to fetch \(representation.prefixLength)")*/ + + return ActionDisposable { + disposable.dispose() } - } else if let size = resource.size { - return videoFirstFrameData(account: account, resource: resource, chunkSize: min(size, 192 * 1024)) - } else { - return .complete() } - }*/ + + /*let disposable = (account.postbox.mediaBox.resourceRangesStatus(resource) + |> filter { ranges in + return ranges.isSuperset(of: RangeSet(0 ..< Int64(representation.prefixLength))) + } + |> take(1)).start(next: { _ in + }) + + return ActionDisposable { + disposable.dispose() + }*/ + return EmptyDisposable + } } else if let representation = representation as? CachedScaledVideoFirstFrameRepresentation { return account.postbox.mediaBox.resourceData(resource, option: .complete(waitUntilFetchStatus: false)) |> mapToSignal { data -> Signal in diff --git a/submodules/TelegramUI/Sources/OpenResolvedUrl.swift b/submodules/TelegramUI/Sources/OpenResolvedUrl.swift index de7ecb7979..2900d2d7ef 100644 --- a/submodules/TelegramUI/Sources/OpenResolvedUrl.swift +++ b/submodules/TelegramUI/Sources/OpenResolvedUrl.swift @@ -395,7 +395,12 @@ func openResolvedUrlImpl( let _ = (signal |> deliverOnMainQueue).startStandalone(next: { [weak navigationController] resolvedCallLink in navigationController?.pushViewController(context.sharedContext.makeJoinSubjectScreen(context: context, mode: JoinSubjectScreenMode.groupCall(JoinSubjectScreenMode.GroupCall( - inviter: resolvedCallLink.inviter, members: resolvedCallLink.members, totalMemberCount: resolvedCallLink.totalMemberCount + id: resolvedCallLink.id, + accessHash: resolvedCallLink.accessHash, + slug: link, + inviter: resolvedCallLink.inviter, + members: resolvedCallLink.members, + totalMemberCount: resolvedCallLink.totalMemberCount )))) }) case let .localization(identifier): diff --git a/submodules/TelegramUI/Sources/OpenUrl.swift b/submodules/TelegramUI/Sources/OpenUrl.swift index e54e402009..d631476b71 100644 --- a/submodules/TelegramUI/Sources/OpenUrl.swift +++ b/submodules/TelegramUI/Sources/OpenUrl.swift @@ -998,6 +998,22 @@ func openExternalUrlImpl(context: AccountContext, urlContext: OpenURLContext, ur convertedUrl = "https://t.me/c/\(channel)?boost" } } + } else if parsedUrl.host == "call" { + if let components = URLComponents(string: "/?" + query) { + var slug: String? + if let queryItems = components.queryItems { + for queryItem in queryItems { + if let value = queryItem.value { + if queryItem.name == "slug" { + slug = value + } + } + } + } + if let slug = slug { + convertedUrl = "https://t.me/call/\(slug)" + } + } } } else { if parsedUrl.host == "importStickers" { diff --git a/submodules/TelegramUI/Sources/OverlayAudioPlayerControllerNode.swift b/submodules/TelegramUI/Sources/OverlayAudioPlayerControllerNode.swift index 007b179c1d..e2324830b8 100644 --- a/submodules/TelegramUI/Sources/OverlayAudioPlayerControllerNode.swift +++ b/submodules/TelegramUI/Sources/OverlayAudioPlayerControllerNode.swift @@ -117,6 +117,7 @@ final class OverlayAudioPlayerControllerNode: ViewControllerTracingNode, ASGestu return nil }, presentGlobalOverlayController: { _, _ in }, callPeer: { _, _ in + }, openConferenceCall: { _ in }, longTap: { _, _ in }, openCheckoutOrReceipt: { _, _ in }, openSearch: { @@ -317,7 +318,8 @@ final class OverlayAudioPlayerControllerNode: ViewControllerTracingNode, ASGestu if let location = strongSelf.playlistLocation as? PeerMessagesPlaylistLocation, case let .custom(messages, _, loadMore) = location { playlistLocation = .custom(messages: messages, at: id, loadMore: loadMore) } - return strongSelf.context.sharedContext.openChatMessage(OpenChatMessageParams(context: strongSelf.context, chatLocation: nil, chatFilterTag: nil, chatLocationContextHolder: nil, message: message, standalone: false, reverseMessageGalleryOrder: false, navigationController: nil, dismissInput: { }, present: { _, _, _ in }, transitionNode: { _, _, _ in return nil }, addToTransitionSurface: { _ in }, openUrl: { _ in }, openPeer: { _, _ in }, callPeer: { _, _ in }, enqueueMessage: { _ in }, sendSticker: nil, sendEmoji: nil, setupTemporaryHiddenMedia: { _, _, _ in }, chatAvatarHiddenMedia: { _, _ in }, playlistLocation: playlistLocation)) + return strongSelf.context.sharedContext.openChatMessage(OpenChatMessageParams(context: strongSelf.context, chatLocation: nil, chatFilterTag: nil, chatLocationContextHolder: nil, message: message, standalone: false, reverseMessageGalleryOrder: false, navigationController: nil, dismissInput: { }, present: { _, _, _ in }, transitionNode: { _, _, _ in return nil }, addToTransitionSurface: { _ in }, openUrl: { _ in }, openPeer: { _, _ in }, callPeer: { _, _ in }, openConferenceCall: { _ in + }, enqueueMessage: { _ in }, sendSticker: nil, sendEmoji: nil, setupTemporaryHiddenMedia: { _, _, _ in }, chatAvatarHiddenMedia: { _, _ in }, playlistLocation: playlistLocation)) } return false } diff --git a/submodules/TelegramUI/Sources/SharedAccountContext.swift b/submodules/TelegramUI/Sources/SharedAccountContext.swift index 4275334cee..506549907d 100644 --- a/submodules/TelegramUI/Sources/SharedAccountContext.swift +++ b/submodules/TelegramUI/Sources/SharedAccountContext.swift @@ -2113,7 +2113,8 @@ public final class SharedAccountContextImpl: SharedAccountContext { return nil }, chatControllerNode: { return nil - }, presentGlobalOverlayController: { _, _ in }, callPeer: { _, _ in }, longTap: { _, _ in }, openCheckoutOrReceipt: { _, _ in }, openSearch: { }, setupReply: { _ in + }, presentGlobalOverlayController: { _, _ in }, callPeer: { _, _ in }, openConferenceCall: { _ in + }, longTap: { _, _ in }, openCheckoutOrReceipt: { _, _ in }, openSearch: { }, setupReply: { _ in }, canSetupReply: { _ in return .none }, canSendMessages: { diff --git a/submodules/TelegramVoip/Sources/GroupCallContext.swift b/submodules/TelegramVoip/Sources/GroupCallContext.swift index 9bfb55e49c..f731d15fed 100644 --- a/submodules/TelegramVoip/Sources/GroupCallContext.swift +++ b/submodules/TelegramVoip/Sources/GroupCallContext.swift @@ -216,6 +216,11 @@ final class OngoingGroupCallBroadcastPartTaskImpl: NSObject, OngoingGroupCallBro } } +public protocol OngoingGroupCallEncryptionContext: AnyObject { + func encrypt(message: Data) -> Data? + func decrypt(message: Data) -> Data? +} + public final class OngoingGroupCallContext { public struct AudioStreamData { public var engine: TelegramEngine @@ -495,11 +500,11 @@ public final class OngoingGroupCallContext { preferX264: Bool, logPath: String, onMutedSpeechActivityDetected: @escaping (Bool) -> Void, - encryptionKey: Data?, isConference: Bool, audioIsActiveByDefault: Bool, isStream: Bool, - sharedAudioDevice: OngoingCallContext.AudioDevice? + sharedAudioDevice: OngoingCallContext.AudioDevice?, + encryptionContext: OngoingGroupCallEncryptionContext? ) { self.queue = queue @@ -632,9 +637,17 @@ public final class OngoingGroupCallContext { onMutedSpeechActivityDetected(value) }, audioDevice: audioDevice?.impl, - encryptionKey: encryptionKey, isConference: isConference, - isActiveByDefault: audioIsActiveByDefault + isActiveByDefault: audioIsActiveByDefault, + encryptDecrypt: encryptionContext.flatMap { encryptionContext in + return { data, isEncrypt in + if isEncrypt { + return encryptionContext.encrypt(message: data) + } else { + return encryptionContext.decrypt(message: data) + } + } + } ) #else self.context = GroupCallThreadLocalContext( @@ -733,9 +746,17 @@ public final class OngoingGroupCallContext { logPath: logPath, statsLogPath: tempStatsLogPath, audioDevice: nil, - encryptionKey: encryptionKey, isConference: isConference, - isActiveByDefault: true + isActiveByDefault: true, + encryptDecrypt: encryptionContext.flatMap { encryptionContext in + return { data, isEncrypt in + if isEncrypt { + return encryptionContext.encrypt(data) + } else { + return encryptionContext.decrypt(data) + } + } + } ) #endif @@ -1184,10 +1205,10 @@ public final class OngoingGroupCallContext { } } - public init(inputDeviceId: String = "", outputDeviceId: String = "", audioSessionActive: Signal, video: OngoingCallVideoCapturer?, requestMediaChannelDescriptions: @escaping (Set, @escaping ([MediaChannelDescription]) -> Void) -> Disposable, rejoinNeeded: @escaping () -> Void, outgoingAudioBitrateKbit: Int32?, videoContentType: VideoContentType, enableNoiseSuppression: Bool, disableAudioInput: Bool, enableSystemMute: Bool, preferX264: Bool, logPath: String, onMutedSpeechActivityDetected: @escaping (Bool) -> Void, encryptionKey: Data?, isConference: Bool, audioIsActiveByDefault: Bool, isStream: Bool, sharedAudioDevice: OngoingCallContext.AudioDevice?) { + public init(inputDeviceId: String = "", outputDeviceId: String = "", audioSessionActive: Signal, video: OngoingCallVideoCapturer?, requestMediaChannelDescriptions: @escaping (Set, @escaping ([MediaChannelDescription]) -> Void) -> Disposable, rejoinNeeded: @escaping () -> Void, outgoingAudioBitrateKbit: Int32?, videoContentType: VideoContentType, enableNoiseSuppression: Bool, disableAudioInput: Bool, enableSystemMute: Bool, preferX264: Bool, logPath: String, onMutedSpeechActivityDetected: @escaping (Bool) -> Void, isConference: Bool, audioIsActiveByDefault: Bool, isStream: Bool, sharedAudioDevice: OngoingCallContext.AudioDevice?, encryptionContext: OngoingGroupCallEncryptionContext?) { let queue = self.queue self.impl = QueueLocalObject(queue: queue, generate: { - return Impl(queue: queue, inputDeviceId: inputDeviceId, outputDeviceId: outputDeviceId, audioSessionActive: audioSessionActive, video: video, requestMediaChannelDescriptions: requestMediaChannelDescriptions, rejoinNeeded: rejoinNeeded, outgoingAudioBitrateKbit: outgoingAudioBitrateKbit, videoContentType: videoContentType, enableNoiseSuppression: enableNoiseSuppression, disableAudioInput: disableAudioInput, enableSystemMute: enableSystemMute, preferX264: preferX264, logPath: logPath, onMutedSpeechActivityDetected: onMutedSpeechActivityDetected, encryptionKey: encryptionKey, isConference: isConference, audioIsActiveByDefault: audioIsActiveByDefault, isStream: isStream, sharedAudioDevice: sharedAudioDevice) + return Impl(queue: queue, inputDeviceId: inputDeviceId, outputDeviceId: outputDeviceId, audioSessionActive: audioSessionActive, video: video, requestMediaChannelDescriptions: requestMediaChannelDescriptions, rejoinNeeded: rejoinNeeded, outgoingAudioBitrateKbit: outgoingAudioBitrateKbit, videoContentType: videoContentType, enableNoiseSuppression: enableNoiseSuppression, disableAudioInput: disableAudioInput, enableSystemMute: enableSystemMute, preferX264: preferX264, logPath: logPath, onMutedSpeechActivityDetected: onMutedSpeechActivityDetected, isConference: isConference, audioIsActiveByDefault: audioIsActiveByDefault, isStream: isStream, sharedAudioDevice: sharedAudioDevice, encryptionContext: encryptionContext) }) } diff --git a/submodules/TgVoipWebrtc/BUILD b/submodules/TgVoipWebrtc/BUILD index 42ad40833b..2b8805cbce 100644 --- a/submodules/TgVoipWebrtc/BUILD +++ b/submodules/TgVoipWebrtc/BUILD @@ -172,6 +172,7 @@ objc_library( "//submodules/ffmpeg:ffmpeg", "//third-party/rnnoise:rnnoise", "//third-party/libyuv:libyuv", + "//third-party/td:TdBinding", ] + (["//third-party/libx264:libx264"] if enable_x264 else []), sdk_frameworks = [ "Foundation", diff --git a/submodules/TgVoipWebrtc/PublicHeaders/TgVoipWebrtc/OngoingCallThreadLocalContext.h b/submodules/TgVoipWebrtc/PublicHeaders/TgVoipWebrtc/OngoingCallThreadLocalContext.h index f9bd9ab71e..25ec5e072c 100644 --- a/submodules/TgVoipWebrtc/PublicHeaders/TgVoipWebrtc/OngoingCallThreadLocalContext.h +++ b/submodules/TgVoipWebrtc/PublicHeaders/TgVoipWebrtc/OngoingCallThreadLocalContext.h @@ -452,9 +452,9 @@ typedef NS_ENUM(int32_t, OngoingGroupCallRequestedVideoQuality) { statsLogPath:(NSString * _Nonnull)statsLogPath onMutedSpeechActivityDetected:(void (^ _Nullable)(bool))onMutedSpeechActivityDetected audioDevice:(SharedCallAudioDevice * _Nullable)audioDevice -encryptionKey:(NSData * _Nullable)encryptionKey isConference:(bool)isConference -isActiveByDefault:(bool)isActiveByDefault; +isActiveByDefault:(bool)isActiveByDefault +encryptDecrypt:(NSData * _Nullable (^ _Nullable)(NSData * _Nonnull, bool))encryptDecrypt; - (void)stop:(void (^ _Nullable)())completion; diff --git a/submodules/TgVoipWebrtc/Sources/OngoingCallThreadLocalContext.mm b/submodules/TgVoipWebrtc/Sources/OngoingCallThreadLocalContext.mm index 4752a7b1ff..2b7c910bbf 100644 --- a/submodules/TgVoipWebrtc/Sources/OngoingCallThreadLocalContext.mm +++ b/submodules/TgVoipWebrtc/Sources/OngoingCallThreadLocalContext.mm @@ -42,6 +42,8 @@ #import "platform/darwin/TGRTCCVPixelBuffer.h" #include "rtc_base/logging.h" +#import + @implementation OngoingCallConnectionDescription - (instancetype _Nonnull)initWithConnectionId:(int64_t)connectionId ip:(NSString * _Nonnull)ip ipv6:(NSString * _Nonnull)ipv6 port:(int32_t)port peerTag:(NSData * _Nonnull)peerTag { @@ -2374,9 +2376,9 @@ private: statsLogPath:(NSString * _Nonnull)statsLogPath onMutedSpeechActivityDetected:(void (^ _Nullable)(bool))onMutedSpeechActivityDetected audioDevice:(SharedCallAudioDevice * _Nullable)audioDevice -encryptionKey:(NSData * _Nullable)encryptionKey isConference:(bool)isConference -isActiveByDefault:(bool)isActiveByDefault { +isActiveByDefault:(bool)isActiveByDefault +encryptDecrypt:(NSData * _Nullable (^ _Nullable)(NSData * _Nonnull, bool))encryptDecrypt { self = [super init]; if (self != nil) { _queue = queue; @@ -2444,16 +2446,17 @@ isActiveByDefault:(bool)isActiveByDefault { std::string statsLogPathValue(statsLogPath.length == 0 ? "" : statsLogPath.UTF8String); - std::optional mappedEncryptionKey; - if (encryptionKey) { - auto encryptionKeyValue = std::make_shared>(); - memcpy(encryptionKeyValue->data(), encryptionKey.bytes, encryptionKey.length); - - #if DEBUG - NSLog(@"Encryption key: %@", [encryptionKey base64EncodedStringWithOptions:0]); - #endif - - mappedEncryptionKey = tgcalls::EncryptionKey(encryptionKeyValue, true); + std::function(std::vector const &, bool)> mappedEncryptDecrypt; + if (encryptDecrypt) { + NSData * _Nullable (^encryptDecryptBlock)(NSData * _Nonnull, bool) = [encryptDecrypt copy]; + mappedEncryptDecrypt = [encryptDecryptBlock](std::vector const &message, bool isEncrypt) -> std::vector { + NSData *mappedMessage = [[NSData alloc] initWithBytes:message.data() length:message.size()]; + NSData *result = encryptDecryptBlock(mappedMessage, isEncrypt); + if (!result) { + return std::vector(); + } + return std::vector((uint8_t *)result.bytes, ((uint8_t *)result.bytes) + result.length); + }; } __weak GroupCallThreadLocalContext *weakSelf = self; @@ -2681,7 +2684,7 @@ isActiveByDefault:(bool)isActiveByDefault { } }]; }, - .encryptionKey = mappedEncryptionKey, + .e2eEncryptDecrypt = mappedEncryptDecrypt, .isConference = isConference })); } diff --git a/third-party/boringssl/BUILD b/third-party/boringssl/BUILD index 8679400e0b..24f0111fc8 100644 --- a/third-party/boringssl/BUILD +++ b/third-party/boringssl/BUILD @@ -29,7 +29,9 @@ load( licenses(["notice"]) -exports_files(["LICENSE"]) +exports_files( + ["LICENSE"] + crypto_headers + ssl_headers, +) # By default, the C files will expect assembly files, if any, to be linked in # with the build. This default can be flipped with -DOPENSSL_NO_ASM. If building diff --git a/third-party/td/BUILD b/third-party/td/BUILD new file mode 100644 index 0000000000..302d844635 --- /dev/null +++ b/third-party/td/BUILD @@ -0,0 +1,150 @@ +load( + "//third-party/boringssl:BUILD.generated.bzl", + "crypto_headers", +) + +headers = [ + "td/e2e/e2e_api.h", + "td/e2e/e2e_errors.h", +] + +libs = [ + "tde2e", + "tdutils", +] + +filegroup( + name = "td_sources", + srcs = glob([ + "td/**/*" + ]), +) + +genrule( + name = "td_build", + srcs = [ + "build-td-bazel.sh", + ":td_sources", + "@cmake_tar_gz//file", + "//third-party/boringssl:crypto", + ] + [ + "//third-party/boringssl:{}".format(header) for header in crypto_headers + ], + cmd_bash = + """ + set -ex + + if [ "$(TARGET_CPU)" == "ios_arm64" ]; then + BUILD_ARCH="arm64" + elif [ "$(TARGET_CPU)" == "ios_sim_arm64" ]; then + BUILD_ARCH="sim_arm64" + else + echo "Unsupported architecture $(TARGET_CPU)" + fi + + BUILD_DIR="$(RULEDIR)/build_$${BUILD_ARCH}" + rm -rf "$$BUILD_DIR" + mkdir -p "$$BUILD_DIR" + + CMAKE_DIR="$$(pwd)/$$BUILD_DIR/cmake" + rm -rf "$$CMAKE_DIR" + mkdir -p "$$CMAKE_DIR" + tar -xzf "$(location @cmake_tar_gz//file)" -C "$$CMAKE_DIR" + + OPENSSL_BASE_DIR="$$(pwd)/$$BUILD_DIR" + OPENSSL_DIR="$$OPENSSL_BASE_DIR/openssl" + rm -rf "$$OPENSSL_DIR" + mkdir -p "$$OPENSSL_DIR" + mkdir -p "$$OPENSSL_DIR/lib" + mkdir -p "$$OPENSSL_DIR/src/include/openssl" + mkdir -p "$$OPENSSL_DIR/src/include/openssl/experimental" + + cp -R "$(location //third-party/boringssl:crypto)" "$$OPENSSL_DIR/lib/libcrypto.a" + + # Copy header files + """ + + "\n".join([ + "cp -f \"$(location //third-party/boringssl:{})\" \"$$OPENSSL_DIR/{}\"".format(header, header) + for header in crypto_headers + ]) + + """ + + cp $(location :build-td-bazel.sh) "$$BUILD_DIR/" + + SOURCE_PATH="third-party/td/td" + + cp -R "$$SOURCE_PATH" "$$BUILD_DIR/" + + mkdir -p "$$BUILD_DIR/Public/td" + + PATH="$$PATH:$$CMAKE_DIR/cmake-3.23.1-macos-universal/CMake.app/Contents/bin" sh $$BUILD_DIR/build-td-bazel.sh $$BUILD_ARCH "$$BUILD_DIR/td" "$$BUILD_DIR" "$$OPENSSL_DIR" + """ + + "\n".join([ + "cp -f \"$$BUILD_DIR/td/tde2e/{}\" \"$(location Public/td/{})\"".format(header, header) for header in headers + ]) + + "\n" + + "\n".join([ + "cp -f \"$$BUILD_DIR/build/tde2e/libtde2e.a\" \"$(location Public/td/lib/libtde2e.a)\"", + "cp -f \"$$BUILD_DIR/build/tdutils/libtdutils.a\" \"$(location Public/td/lib/libtdutils.a)\"", + ]), + outs = [ + "Public/td/" + x for x in headers + ] + + [ + "Public/td/lib/lib{}.a".format(x) for x in libs + ], + visibility = [ + "//visibility:public", + ] +) + +cc_library( + name = "td_lib", + srcs = [":Public/td/lib/lib" + x + ".a" for x in libs], +) + +objc_library( + name = "td", + module_name = "td", + enable_modules = True, + hdrs = [":Public/td/" + x for x in headers], + includes = [ + "Public", + "Public/td", + ], + deps = [ + ":td_lib", + "//third-party/boringssl:crypto", + ], + visibility = [ + "//visibility:public", + ], +) + +objc_library( + name = "TdBinding", + module_name = "TdBinding", + enable_modules = True, + srcs = glob([ + "TdBinding/Sources/**/*.m", + "TdBinding/Sources/**/*.mm", + "TdBinding/Sources/**/*.h", + ]), + hdrs = glob([ + "TdBinding/Public/**/*.h", + ]), + copts = [ + "-Werror", + ], + includes = [ + "TdBinding/Public", + ], + deps = [ + ":td", + ], + sdk_frameworks = [ + ], + visibility = [ + "//visibility:public", + ] +) diff --git a/third-party/td/TdBinding/Public/TdBinding/TdBinding.h b/third-party/td/TdBinding/Public/TdBinding/TdBinding.h new file mode 100644 index 0000000000..d2c6f8384d --- /dev/null +++ b/third-party/td/TdBinding/Public/TdBinding/TdBinding.h @@ -0,0 +1,56 @@ +#ifndef TDBINDING_H +#define TDBINDING_H + +#import + +#ifdef __cplusplus +extern "C" { +#endif + +NS_ASSUME_NONNULL_BEGIN + +@interface TdKeyPair : NSObject + +@property (nonatomic, readonly) int64_t keyId; +@property (nonatomic, strong, readonly) NSData *publicKey; + +- (nullable instancetype)initWithKeyId:(int64_t)keyId publicKey:(NSData *)publicKey; + ++ (nullable instancetype)generate; + +@end + +@interface TdCallParticipant : NSObject + +@property (nonatomic, strong, readonly) NSData *publicKey; +@property (nonatomic, readonly) int64_t userId; + +- (nullable instancetype)initWithPublicKey:(NSData *)publicKey userId:(int64_t)userId; + +@end + +@interface TdCall : NSObject + ++ (nullable instancetype)makeWithKeyPair:(TdKeyPair *)keyPair latestBlock:(NSData *)latestBlock; + +- (NSArray *)takeOutgoingBroadcastBlocks; +- (NSData *)emojiState; + +- (void)applyBlock:(NSData *)block; +- (void)applyBroadcastBlock:(NSData *)block; + +- (nullable NSData *)encrypt:(NSData *)message; +- (nullable NSData *)decrypt:(NSData *)message; + +@end + +NSData * _Nullable tdGenerateZeroBlock(TdKeyPair *keyPair, int64_t userId); +NSData * _Nullable tdGenerateSelfAddBlock(TdKeyPair *keyPair, int64_t userId, NSData *previousBlock); + +NS_ASSUME_NONNULL_END + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/third-party/td/TdBinding/Sources/TdBinding.mm b/third-party/td/TdBinding/Sources/TdBinding.mm new file mode 100644 index 0000000000..45e337ab13 --- /dev/null +++ b/third-party/td/TdBinding/Sources/TdBinding.mm @@ -0,0 +1,275 @@ +#import + +#include + +static NSString *hexStringFromData(NSData *data) { + NSMutableString *string = [[NSMutableString alloc] initWithCapacity:data.length * 2]; + for (NSUInteger i = 0; i < data.length; i++) { + [string appendFormat:@"%02x", ((uint8_t *)data.bytes)[i]]; + } + return string; +} + +@interface TdKeyPair () { + tde2e_api::PrivateKeyId _keyId; + NSData *_publicKey; +} + +@end + +@implementation TdKeyPair + +- (nullable instancetype)initWithKeyId:(int64_t)keyId publicKey:(NSData *)publicKey { + self = [super init]; + if (self != nil) { + _keyId = keyId; + _publicKey = publicKey; + } + return self; +} + +- (int64_t)keyId { + return _keyId; +} + +- (NSData *)publicKey { + return _publicKey; +} + ++ (nullable instancetype)generate { + auto privateKey = tde2e_api::key_generate_private_key(); + if (!privateKey.is_ok()) { + return nil; + } + tde2e_api::PrivateKeyId privateKeyId = privateKey.value(); + auto publicKey = tde2e_api::key_to_public_key(privateKeyId); + if (!publicKey.is_ok()) { + return nil; + } + + NSData *parsedPublicKey = [[NSData alloc] initWithBytes:publicKey.value().data() length:publicKey.value().size()]; + + return [[TdKeyPair alloc] initWithKeyId:privateKeyId publicKey:parsedPublicKey]; +} + +@end + +@implementation TdCallParticipant + +- (nullable instancetype)initWithPublicKey:(NSData *)publicKey userId:(int64_t)userId { + self = [super init]; + if (self != nil) { + _publicKey = publicKey; + _userId = userId; + } + return self; +} + +@end + +@interface TdCall () + +@property (nonatomic, strong) TdKeyPair *keyPair; +@property (nonatomic) int64_t callId; + +@end + +@implementation TdCall + +- (instancetype)initWithId:(int64_t)callId keyPair:(TdKeyPair *)keyPair { + self = [super init]; + if (self != nil) { + _callId = callId; + _keyPair = keyPair; + } + return self; +} + +- (void)dealloc { + tde2e_api::call_destroy(_callId); +} + ++ (nullable instancetype)makeWithKeyPair:(TdKeyPair *)keyPair latestBlock:(NSData *)latestBlock { + std::string mappedLatestBlock((uint8_t *)latestBlock.bytes, ((uint8_t *)latestBlock.bytes) + latestBlock.length); + #if DEBUG + auto describeResult = tde2e_api::call_describe_block(mappedLatestBlock); + if (describeResult.is_ok()) { + NSString *utf8String = [[NSString alloc] initWithBytes:describeResult.value().data() length:describeResult.value().size() encoding:NSUTF8StringEncoding]; + if (utf8String) { + NSLog(@"TdCall.makeWithKeyPair block: %@", utf8String); + } else { + NSString *lossyString = [[NSString alloc] initWithData:[NSData dataWithBytes:describeResult.value().data() length:describeResult.value().size()] encoding:NSASCIIStringEncoding]; + if (lossyString) { + NSLog(@"TdCall.makeWithKeyPair block (lossy conversion): %@", lossyString); + } else { + NSLog(@"TdCall.makeWithKeyPair block: [binary data, length: %lu]", (unsigned long)describeResult.value().size()); + } + } + } else { + NSLog(@"TdCall.makeWithKeyPair describe block failed"); + } + #endif + + auto call = tde2e_api::call_create(keyPair.keyId, mappedLatestBlock); + if (!call.is_ok()) { + return nil; + } + + return [[TdCall alloc] initWithId:call.value() keyPair: keyPair]; +} + +- (NSArray *)takeOutgoingBroadcastBlocks { + NSMutableArray *outboundBroadcastBlocks = [[NSMutableArray alloc] init]; + auto outboundMessages = tde2e_api::call_pull_outbound_messages(_callId); + if (!outboundMessages.is_ok()) { + return @[]; + } + for (const auto &it : outboundMessages.value()) { + #if DEBUG + auto describeResult = tde2e_api::call_describe_message(it); + if (describeResult.is_ok()) { + NSLog(@"TdCall.takeOutgoingBroadcastBlocks call_pull_outbound_messages: block %@", [[NSString alloc] initWithBytes:describeResult.value().data() length:describeResult.value().size() encoding:NSUTF8StringEncoding]); + } else { + NSLog(@"TdCall.takeOutgoingBroadcastBlocks call_pull_outbound_messages: describe block failed"); + } + #endif + + NSData *outBlock = [[NSData alloc] initWithBytes:it.data() length:it.size()]; + + [outboundBroadcastBlocks addObject:outBlock]; + } + return outboundBroadcastBlocks; +} + +- (NSData *)emojiState { + auto result = tde2e_api::call_get_verification_state(_callId); + if (!result.is_ok()) { + return [NSData data]; + } + auto emojiHash = result.value().emoji_hash; + if (!emojiHash.has_value()) { + return [NSData data]; + } + if (emojiHash.value().empty()) { + return [NSData data]; + } + NSData *outEmojiHash = [[NSData alloc] initWithBytes:emojiHash.value().data() length:emojiHash.value().size()]; + return outEmojiHash; +} + +- (void)applyBlock:(NSData *)block { + std::string mappedBlock((uint8_t *)block.bytes, ((uint8_t *)block.bytes) + block.length); + + #if DEBUG + auto describeResult = tde2e_api::call_describe_block(mappedBlock); + if (describeResult.is_ok()) { + NSLog(@"TdCall.applyBlock block: %@", [[NSString alloc] initWithBytes:describeResult.value().data() length:describeResult.value().size() encoding:NSUTF8StringEncoding]); + } else { + NSLog(@"TdCall.applyBlock block: describe block failed"); + } + #endif + + auto result = tde2e_api::call_apply_block(_callId, mappedBlock); + if (!result.is_ok()) { + return; + } +} + +- (void)applyBroadcastBlock:(NSData *)block { + std::string mappedBlock((uint8_t *)block.bytes, ((uint8_t *)block.bytes) + block.length); + + #if DEBUG + auto describeResult = tde2e_api::call_describe_message(mappedBlock); + if (describeResult.is_ok()) { + NSLog(@"TdCall.applyBroadcastBlock block: %@", [[NSString alloc] initWithBytes:describeResult.value().data() length:describeResult.value().size() encoding:NSUTF8StringEncoding]); + } else { + NSLog(@"TdCall.applyBroadcastBlock block: describe block failed"); + } + #endif + + auto result = tde2e_api::call_receive_inbound_message(_callId, mappedBlock); + if (!result.is_ok()) { + return; + } +} + +- (nullable NSData *)encrypt:(NSData *)message { + std::string mappedMessage((uint8_t *)message.bytes, ((uint8_t *)message.bytes) + message.length); + auto result = tde2e_api::call_encrypt(_callId, mappedMessage); + if (!result.is_ok()) { + return nil; + } + return [[NSData alloc] initWithBytes:result.value().data() length:result.value().size()]; +} + +- (nullable NSData *)decrypt:(NSData *)message { + std::string mappedMessage((uint8_t *)message.bytes, ((uint8_t *)message.bytes) + message.length); + auto result = tde2e_api::call_decrypt(_callId, mappedMessage); + if (!result.is_ok()) { + return nil; + } + return [[NSData alloc] initWithBytes:result.value().data() length:result.value().size()]; +} + +@end + +NSData * _Nullable tdGenerateZeroBlock(TdKeyPair *keyPair, int64_t userId) { + if (!keyPair) { + return nil; + } + + std::string mappedPublicKey((uint8_t *)keyPair.publicKey.bytes, ((uint8_t *)keyPair.publicKey.bytes) + keyPair.publicKey.length); + + auto publicKeyId = tde2e_api::key_from_public_key(mappedPublicKey); + if (!publicKeyId.is_ok()) { + return nil; + } + + tde2e_api::CallParticipant initialParticipant; + initialParticipant.user_id = userId; + initialParticipant.public_key_id = publicKeyId.value(); + initialParticipant.permissions = (1 << 0) | (1 << 1); + + tde2e_api::CallState initialCallState; + initialCallState.participants.push_back(std::move(initialParticipant)); + auto zeroBlock = tde2e_api::call_create_zero_block(keyPair.keyId, initialCallState); + if (!zeroBlock.is_ok()) { + return nil; + } + + NSData *zeroBlockData = [[NSData alloc] initWithBytes:zeroBlock.value().data() length:zeroBlock.value().size()]; + #if DEBUG + NSLog(@"Zero block: %@", hexStringFromData(zeroBlockData)); + #endif + return zeroBlockData; +} + +NSData * _Nullable tdGenerateSelfAddBlock(TdKeyPair *keyPair, int64_t userId, NSData *previousBlock) { + if (!keyPair) { + return nil; + } + + std::string mappedPublicKey((uint8_t *)keyPair.publicKey.bytes, ((uint8_t *)keyPair.publicKey.bytes) + keyPair.publicKey.length); + std::string mappedPreviousBlock((uint8_t *)previousBlock.bytes, ((uint8_t *)previousBlock.bytes) + previousBlock.length); + + auto publicKeyId = tde2e_api::key_from_public_key(mappedPublicKey); + if (!publicKeyId.is_ok()) { + return nil; + } + + tde2e_api::CallParticipant myParticipant; + myParticipant.user_id = userId; + myParticipant.public_key_id = publicKeyId.value(); + myParticipant.permissions = (1 << 0) | (1 << 1); + + auto result = tde2e_api::call_create_self_add_block(keyPair.keyId, mappedPreviousBlock, myParticipant); + if (!result.is_ok()) { + return nil; + } + + NSData *resultBlock = [[NSData alloc] initWithBytes:result.value().data() length:result.value().size()]; + #if DEBUG + NSLog(@"Self add block: %@", hexStringFromData(resultBlock)); + #endif + return resultBlock; +} diff --git a/third-party/td/build-td-bazel.sh b/third-party/td/build-td-bazel.sh new file mode 100755 index 0000000000..e4f0c6201c --- /dev/null +++ b/third-party/td/build-td-bazel.sh @@ -0,0 +1,52 @@ +#!/bin/sh + +set -e +set -x + +ARCH="$1" + +SOURCE_DIR="$2" +BUILD_DIR=$(echo "$(cd "$(dirname "$3")"; pwd -P)/$(basename "$3")") +OPENSSL_DIR="$4" + +openssl_crypto_library="${OPENSSL_DIR}/lib/libcrypto.a" +options="" +options="$options -DOPENSSL_FOUND=1" +options="$options -DOPENSSL_CRYPTO_LIBRARY=${openssl_crypto_library}" +options="$options -DOPENSSL_INCLUDE_DIR=${OPENSSL_DIR}/src/include" +#options="$options -DOPENSSL_LIBRARIES=${openssl_crypto_library}" +options="$options -DCMAKE_BUILD_TYPE=Release" + +cd "$BUILD_DIR" + +# Generate source files +mkdir native-build +cd native-build +cmake -DTD_GENERATE_SOURCE_FILES=ON ../td +cmake --build . -- -j$(sysctl -n hw.ncpu) +cd .. + +if [ "$ARCH" = "arm64" ]; then + IOS_PLATFORMDIR="$(xcode-select -p)/Platforms/iPhoneOS.platform" + IOS_SYSROOT=($IOS_PLATFORMDIR/Developer/SDKs/iPhoneOS*.sdk) + export CFLAGS="-arch arm64 -miphoneos-version-min=12.0" +elif [ "$ARCH" = "sim_arm64" ]; then + IOS_PLATFORMDIR="$(xcode-select -p)/Platforms/iPhoneSimulator.platform" + IOS_SYSROOT=($IOS_PLATFORMDIR/Developer/SDKs/iPhoneSimulator*.sdk) + export CFLAGS="-arch arm64 --target=arm64-apple-ios12.0-simulator -miphonesimulator-version-min=12.0" +else + echo "Unsupported architecture $ARCH" + exit 1 +fi + +# Common build steps +mkdir build +cd build + +touch toolchain.cmake +echo "set(CMAKE_SYSTEM_NAME Darwin)" >> toolchain.cmake +echo "set(CMAKE_SYSTEM_PROCESSOR aarch64)" >> toolchain.cmake +echo "set(CMAKE_C_COMPILER $(xcode-select -p)/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang)" >> toolchain.cmake + +cmake -G"Unix Makefiles" -DCMAKE_TOOLCHAIN_FILE=toolchain.cmake -DCMAKE_OSX_SYSROOT=${IOS_SYSROOT[0]} ../td $options +make tde2e -j$(sysctl -n hw.ncpu) diff --git a/third-party/td/td/.clang-format b/third-party/td/td/.clang-format new file mode 100644 index 0000000000..8f0a588366 --- /dev/null +++ b/third-party/td/td/.clang-format @@ -0,0 +1,194 @@ +--- +Language: Cpp +# BasedOnStyle: Google +AccessModifierOffset: -1 +AlignAfterOpenBracket: Align +AlignArrayOfStructures: None +AlignConsecutiveAssignments: + Enabled: false + AcrossEmptyLines: false + AcrossComments: false + AlignCompound: false + PadOperators: true +AlignConsecutiveBitFields: + Enabled: false + AcrossEmptyLines: false + AcrossComments: false + AlignCompound: false + PadOperators: false +AlignConsecutiveDeclarations: + Enabled: false + AcrossEmptyLines: false + AcrossComments: false + AlignCompound: false + PadOperators: false +AlignConsecutiveMacros: + Enabled: false + AcrossEmptyLines: false + AcrossComments: false + AlignCompound: false + PadOperators: false +AlignEscapedNewlines: Left +AlignOperands: Align +AlignTrailingComments: + Kind: Always + OverEmptyLines: 0 +AllowAllArgumentsOnNextLine: true +AllowAllParametersOfDeclarationOnNextLine: true +AllowShortBlocksOnASingleLine: Never +AllowShortCaseLabelsOnASingleLine: false +AllowShortEnumsOnASingleLine: true +AllowShortFunctionsOnASingleLine: None # All +AllowShortIfStatementsOnASingleLine: Never # WithoutElse +AllowShortLambdasOnASingleLine: Inline # All +AllowShortLoopsOnASingleLine: false # true +AlwaysBreakAfterDefinitionReturnType: None +AlwaysBreakAfterReturnType: None +AlwaysBreakBeforeMultilineStrings: true +AlwaysBreakTemplateDeclarations: Yes +# AttributeMacros: +# - __capability +BinPackArguments: true +BinPackParameters: true +BitFieldColonSpacing: Both +BraceWrapping: + AfterCaseLabel: false + AfterClass: false + AfterControlStatement: Never + AfterEnum: false + AfterExternBlock: false + AfterFunction: false + AfterNamespace: false + AfterObjCDeclaration: false + AfterStruct: false + AfterUnion: false + BeforeCatch: false + BeforeElse: false + BeforeLambdaBody: false + BeforeWhile: false + IndentBraces: false + SplitEmptyFunction: true + SplitEmptyRecord: true + SplitEmptyNamespace: true +BreakAfterAttributes: Never +# BreakAfterJavaFieldAnnotations: false +BreakArrays: true +BreakBeforeBinaryOperators: None +BreakBeforeBraces: Attach +BreakBeforeConceptDeclarations: Always +BreakBeforeInlineASMColon: OnlyMultiline +BreakBeforeTernaryOperators: true +BreakConstructorInitializers: BeforeComma # BeforeColon +BreakInheritanceList: BeforeComma # BeforeColon +BreakStringLiterals: true +ColumnLimit: 120 # 80 +CommentPragmas: '^ IWYU pragma:' +CompactNamespaces: false +ConstructorInitializerIndentWidth: 4 +ContinuationIndentWidth: 4 +Cpp11BracedListStyle: true +DerivePointerAlignment: true +DisableFormat: false +EmptyLineAfterAccessModifier: Never +EmptyLineBeforeAccessModifier: LogicalBlock +ExperimentalAutoDetectBinPacking: false +FixNamespaceComments: true +ForEachMacros: + - Q_FOREACH_THIS_LIST_MUST_BE_NON_EMPTY +IncludeBlocks: Preserve +IncludeCategories: + - Regex: '.*' + Priority: 0 +IndentAccessModifiers: false +IndentCaseBlocks: false +IndentCaseLabels: true +IndentExternBlock: AfterExternBlock +IndentGotoLabels: true +IndentPPDirectives: None +IndentRequiresClause: true +IndentWidth: 2 +IndentWrappedFunctionNames: false +InsertBraces: false +InsertNewlineAtEOF: false +# InsertTrailingCommas: None +IntegerLiteralSeparator: + Binary: 0 + Decimal: 0 + Hex: 0 +# JavaScriptQuotes: Leave +# JavaScriptWrapImports: true +KeepEmptyLinesAtTheStartOfBlocks: false +LambdaBodyIndentation: Signature +LineEnding: DeriveLF +MacroBlockBegin: '' +MacroBlockEnd: '' +MaxEmptyLinesToKeep: 1 +NamespaceIndentation: None +# ObjCBinPackProtocolList: Never +# ObjCBlockIndentWidth: 2 +# ObjCBreakBeforeNestedBlockParam: true +# ObjCSpaceAfterProperty: false +# ObjCSpaceBeforeProtocolList: true +PackConstructorInitializers: NextLine +PenaltyBreakAssignment: 2 +PenaltyBreakBeforeFirstCallParameter: 1 +PenaltyBreakComment: 300 +PenaltyBreakFirstLessLess: 120 +PenaltyBreakOpenParenthesis: 0 +PenaltyBreakString: 1000 +PenaltyBreakTemplateDeclaration: 10 +PenaltyExcessCharacter: 1000000 +PenaltyIndentedWhitespace: 0 +PenaltyReturnTypeOnItsOwnLine: 200 +PointerAlignment: Right # Left +PPIndentWidth: -1 +QualifierAlignment: Leave +ReferenceAlignment: Pointer +ReflowComments: false # true +RemoveBracesLLVM: false +RemoveSemicolon: false +RequiresClausePosition: OwnLine +RequiresExpressionIndentation: OuterScope +SeparateDefinitionBlocks: Leave +ShortNamespaceLines: 0 # 1 +SortIncludes: CaseInsensitive # CaseSensitive +# SortJavaStaticImport: Before +SortUsingDeclarations: Lexicographic # LexicographicNumeric +SpaceAfterCStyleCast: false +SpaceAfterLogicalNot: false +SpaceAfterTemplateKeyword: true +SpaceAroundPointerQualifiers: Default +SpaceBeforeAssignmentOperators: true +SpaceBeforeCaseColon: false +SpaceBeforeCpp11BracedList: false +SpaceBeforeCtorInitializerColon: true +SpaceBeforeInheritanceColon: true +SpaceBeforeParens: ControlStatements +SpaceBeforeParensOptions: + AfterControlStatements: true + AfterForeachMacros: true + AfterFunctionDefinitionName: false + AfterFunctionDeclarationName: false + AfterIfMacros: true + AfterOverloadedOperator: false + AfterRequiresInClause: false + AfterRequiresInExpression: false + BeforeNonEmptyParentheses: false +SpaceBeforeRangeBasedForLoopColon: true +SpaceBeforeSquareBrackets: false +SpaceInEmptyBlock: false +SpaceInEmptyParentheses: false +SpacesBeforeTrailingComments: 2 +SpacesInAngles: Never +SpacesInConditionalStatement: false +SpacesInContainerLiterals: true +SpacesInCStyleCastParentheses: false +SpacesInLineCommentPrefix: + Minimum: 1 + Maximum: 1 # -1 +SpacesInParentheses: false +SpacesInSquareBrackets: false +Standard: Auto +TabWidth: 100 # 8 +UseTab: Never +... diff --git a/third-party/td/td/.gitattributes b/third-party/td/td/.gitattributes new file mode 100644 index 0000000000..8a58f71824 --- /dev/null +++ b/third-party/td/td/.gitattributes @@ -0,0 +1,39 @@ +* text=auto + +*.cpp text whitespace=blank-at-eol,space-before-tab,blank-at-eof,tab-in-indent +*.hpp text whitespace=blank-at-eol,space-before-tab,blank-at-eof,tab-in-indent +*.h text whitespace=blank-at-eol,space-before-tab,blank-at-eof,tab-in-indent +*.c text whitespace=blank-at-eol,space-before-tab,blank-at-eof,tab-in-indent +*.tl text whitespace=blank-at-eol,space-before-tab,blank-at-eof,tab-in-indent +*.mm text whitespace=blank-at-eol,space-before-tab,blank-at-eof,tab-in-indent +*.txt text whitespace=blank-at-eol,space-before-tab,blank-at-eof,tab-in-indent +*.sh text whitespace=blank-at-eol,space-before-tab,blank-at-eof,tab-in-indent eol=lf +*.php text whitespace=blank-at-eol,space-before-tab,blank-at-eof,tab-in-indent +*.ps1 text whitespace=blank-at-eol,space-before-tab,blank-at-eof,tab-in-indent eol=crlf +*.cmake text whitespace=blank-at-eol,space-before-tab,blank-at-eof,tab-in-indent +*.md text whitespace=blank-at-eol,space-before-tab,blank-at-eof,tab-in-indent +*.in text whitespace=blank-at-eol,space-before-tab,blank-at-eof,tab-in-indent +*.html text whitespace=blank-at-eol,space-before-tab,blank-at-eof,tab-in-indent + +*.java text whitespace=blank-at-eol,space-before-tab,blank-at-eof,tab-in-indent +*.py text whitespace=blank-at-eol,space-before-tab,blank-at-eof,tab-in-indent +*.js text whitespace=blank-at-eol,space-before-tab,blank-at-eof,tab-in-indent +*.patch text whitespace=blank-at-eol,space-before-tab,blank-at-eof,tab-in-indent +*.swift text whitespace=blank-at-eol,space-before-tab,blank-at-eof,tab-in-indent +*.pbxproj text whitespace=blank-at-eol,space-before-tab,blank-at-eof,tab-in-indent +*.cs text whitespace=blank-at-eol,space-before-tab,blank-at-eof,tab-in-indent +*.xaml text whitespace=blank-at-eol,space-before-tab,blank-at-eof,tab-in-indent +*.appxmanifest text whitespace=blank-at-eol,space-before-tab,blank-at-eof,tab-in-indent +*.vsixmanifest text whitespace=blank-at-eol,space-before-tab,blank-at-eof,tab-in-indent +*.nuspec text whitespace=blank-at-eol,space-before-tab,blank-at-eof,tab-in-indent +*.targets text whitespace=blank-at-eol,space-before-tab,blank-at-eof,tab-in-indent +*.json text whitespace=blank-at-eol,space-before-tab,blank-at-eof,tab-in-indent +*.csproj text whitespace=blank-at-eol,space-before-tab,blank-at-eof,tab-in-indent +*.sln text whitespace=blank-at-eol,space-before-tab,blank-at-eof,tab-in-indent +*.xml text whitespace=blank-at-eol,space-before-tab,blank-at-eof,tab-in-indent +*.config text whitespace=blank-at-eol,space-before-tab,blank-at-eof,tab-in-indent + +sqlite/sqlite/* linguist-vendored + +*.pfx binary +*.png binary diff --git a/third-party/td/td/.gitignore b/third-party/td/td/.gitignore new file mode 100644 index 0000000000..9ce887b5f1 --- /dev/null +++ b/third-party/td/td/.gitignore @@ -0,0 +1,8 @@ +**/*build*/ +**/.*.swp +**/.DS_Store +**/auto/ +docs/ +/tdlib/ +vcpkg/ +.clang-tidy diff --git a/third-party/td/td/CHANGELOG.md b/third-party/td/td/CHANGELOG.md new file mode 100644 index 0000000000..f590b3ef62 --- /dev/null +++ b/third-party/td/td/CHANGELOG.md @@ -0,0 +1,1520 @@ +Changes in 1.8.0 (29 Dec 2021): + +* Changed the type of user, basic group and supergroup identifiers from `int32` to `int53`. +* Simplified chat list loading and removed the ability to misuse the method `getChats`: + - Renamed the method `getChats` to `loadChats`. + - Removed the parameters `offset_order` and `offset_chat_id` from the method `loadChats`. Chats are now always loaded + from the last known chat in the list. + - Changed the type of the result in the method `loadChats` to `ok`. If no chats were loaded, a 404 error is returned. + The order of chats in the list must be maintained using the updates `updateChatPosition`, `updateChatLastMessage`, + and `updateChatDraftMessage`. + - Added the convenience method `getChats`, which returns the requested number of chats from the beginning of a chat + list and can be used if the list of chats doesn't need to be maintained in a consistent state. +* Added the ability to hook TDLib log messages: + - Added the function `td_set_log_message_callback` to JSON interface. + - Added the function `set_log_message_callback` to the class `ClientManager`. + - Added the function `SetLogMessageCallback` to the UWP native wrapper through C++/CX. + - Deprecated the function `td_set_log_fatal_error_callback` in JSON interface in favor of + the function `td_set_log_message_callback`. + - Deprecated the function `Log::set_fatal_error_callback` in favor of + the function `ClientManager::set_log_message_callback`. +* Added support for sending messages on behalf of public channels owned by the user: + - Added the field `message_sender_id` to the class `chat`, containing the identifier of the currently selected + message sender. + - Added the update `updateChatMessageSender`. + - Added the method `getChatAvailableMessageSenders`, returning the list of available message senders for the chat. + - Added the method `setChatMessageSender`, changing the currently selected message sender. + - Added the field `need_another_sender` to the class `messageSendingStateFailed`. If it is true, an alert needs + to be shown to the user that the message will be re-sent on behalf of another sender. + - Replaced the method `deleteChatMessagesFromUser` with the method `deleteChatMessagesBySender`, expecting + a `MessageSender` instead of a user identifier. + - Replaced the update `updateUserChatAction` with the update `updateChatAction`, containing a `MessageSender` + instead of a user identifier as a source of the chat action. +* Added the ability to ban supergroups and channels in other supergroups and channels: + - Replaced the fields `user_id` with the fields `member_id` in the classes `chatMember` and + `chatEventMemberRestricted`. + - Replaced the parameters `user_id` with the parameters `member_id` in the methods `setChatMemberStatus` and + `getChatMember`. +* Improved support for animated emoji: + - Added the class `animatedEmoji`, containing information about an animated emoji. + - Added the class `messageAnimatedEmoji` to the types of message content. + - Added the method `clickAnimatedEmojiMessage` to be called when an animated emoji is clicked. + - Added the update `updateAnimatedEmojiMessageClicked`, received when a big animated sticker must be played. + - Added the class `chatActionWatchingAnimations` to the types of chat action. + - Added the method `getAnimatedEmoji`, returning an animated emoji corresponding to a given emoji. + - Added the writable option "disable_animated_emoji". + - Removed the option "animated_emoji_sticker_set_name". +* Added support for automatic message deletion in all chat types: + - Added the field `message_ttl` to the class `chat`. + - Added the update `updateChatMessageTtl`. + - Added the method `setChatMessageTtl`. + - Added the class `chatEventMessageTtlChanged`, representing change of the field `message_ttl` in the chat event log. + - Removed the field `ttl` from the class `secretChat` in favor of the field `message_ttl` in the class `chat`. + - Removed the method `sendChatSetTtlMessage` in favor of the method `setChatMessageTtl`. +* Improved names of the fields of the type `MessageSender`: + - Renamed the fields `sender` to `sender_id` in the classes `message` and `notificationTypeNewPushMessage`. + - Renamed the parameter `sender` to `sender_id` in the methods `searchChatMessages`, `addLocalMessage`, and + `toggleMessageSenderIsBlocked`. + - Renamed the field `recent_repliers` to `recent_replier_ids` in the class `messageReplyInfo`. + - Renamed the field `traveler` to `traveler_id` in the class `messageProximityAlertTriggered`. + - Renamed the field `watcher` to `watcher_id` in the class `messageProximityAlertTriggered`. +* The field `formatted_phone_number` in the class `phoneNumberInfo` now contains the character '-' at the places of + expected digits. +* Added the synchronous method `getPhoneNumberInfoSync` that can be used instead of the method `getPhoneNumberInfo` + to synchronously receive information about a phone number by its prefix. +* Replaced the field `user_id` in the class `chatEvent` with the field `member_id` of the type `MessageSender`. +* Improved support for bot payments: + - Allowed sending invoices as results of inline queries by allowing bots to use the class `inputMessageInvoice` as + the value of the field `input_message_content` in the classes `inputInlineQueryResultAnimation`, + `inputInlineQueryResultArticle`, `inputInlineQueryResultAudio`, `inputInlineQueryResultContact`, + `inputInlineQueryResultDocument`, `inputInlineQueryResultLocation`, `inputInlineQueryResultPhoto`, + `inputInlineQueryResultSticker`, `inputInlineQueryResultVenue`, `inputInlineQueryResultVideo`, and + `inputInlineQueryResultVoiceNote`. + - Allowed sending invoice messages to basic group, supergroup and channel chats. + - Allowed bots to send forwardable invoices by specifying an empty field `start_parameter` in + the class `inputMessageInvoice`. + - Added the field `invoice_chat_id` to the class `messagePaymentSuccessful`. + - Added the field `id` to the class `paymentForm`, containing a unique payment form identifier. + - Added the parameter `payment_form_id` to the method `sendPaymentForm`. + - Added the field `seller_bot_user_id` to the class `paymentForm`, containing the user identifier of the seller bot. + - Added the field `payments_provider_user_id` to the class `paymentForm`, containing the user identifier of + the payment provider bot. + - Added the fields `title`, `description`, `photo`, and `seller_bot_user_id` to the class `paymentReceipt`. + - Added the fields `max_tip_amount` and `suggested_tip_amounts` to the class `invoice`. + - Added the parameter `tip_amount` to the method `sendPaymentForm`. + - Added the field `tip_amount` to the class `paymentReceipt`. + - Renamed the class `inputCredentialsAndroidPay` to `inputCredentialsGooglePay`. + - Added the class `paymentFormTheme`, containing the desired colors for a payment form. + - Added the parameter `theme` to the method `getPaymentForm`. + - Removed the field `invoice_message_id` from the class `messagePaymentSuccessfulBot`. +* Added the method `deleteChat`, which can be used to completely delete a chat along with all messages. +* Removed the method `deleteSupergroup` in favor of the method `deleteChat`. +* Changed the type of the result in the method `getProxyLink` to the class `httpUrl` instead of the class `text`. +* Removed support for secret chat layers before 73. +* Added support for sponsored messages: + - Added the class `sponsoredMessage`. + - Added the method `getChatSponsoredMessage`. + - Added the ability to pass identifiers of sponsored messages to `viewMessages`. The method must be called when + the entire text of the sponsored message is shown on the screen (excluding the button). +* Added support for video chats: + - Added the class `groupCall`, representing a group call. + - Added the method `getGroupCall` for fetching information about a group call. + - Added the update `updateGroupCall`. + - Added the class `videoChat`, representing a video chat, i.e. group call bound to a chat. + - Added the field `video_chat` to the class `chat`. + - Added the update `updateChatVideoChat`. + - Added the classes `messageVideoChatScheduled`, `messageVideoChatStarted`, and `messageVideoChatEnded` to + the types of message content. + - Added the class `messageInviteVideoChatParticipants` to the types of message content. + - Added the field `can_manage_video_chats` to the class `chatMemberStatusAdministrator`. + - Added the class `groupCallId`. + - Added the method `createVideoChat` for video chat creation. + - Added the method `startScheduledGroupCall`. + - Added the method `toggleGroupCallEnabledStartNotification`. + - Added the method `joinGroupCall`. + - Added the method `leaveGroupCall`. + - Added the method `endGroupCall`. + - Added the method `toggleGroupCallIsMyVideoEnabled`. + - Added the method `toggleGroupCallIsMyVideoPaused`. + - Added the methods `startGroupCallScreenSharing`, `toggleGroupCallScreenSharingIsPaused`, + `endGroupCallScreenSharing` for managing screen sharing during group calls. + - Added the method `setGroupCallTitle`. + - Added the method `toggleGroupCallMuteNewParticipants`. + - Added the classes `groupCallVideoSourceGroup` and `groupCallParticipantVideoInfo`, describing available + video streams. + - Added the class `groupCallParticipant`. + - Added the update `updateGroupCallParticipant`. + - Added the method `loadGroupCallParticipants`. + - Added the method `toggleGroupCallParticipantIsHandRaised`. + - Added the method `setGroupCallParticipantIsSpeaking`. + - Added the methods `toggleGroupCallParticipantIsMuted` and `setGroupCallParticipantVolumeLevel` for managing + the volume level of group call participants. + - Added the method `inviteGroupCallParticipants`. + - Added the method `getGroupCallInviteLink` and `revokeGroupCallInviteLink` for managing group call invite links. + - Added the methods `startGroupCallRecording` and `endGroupCallRecording` for managing group call recordings. + - Added the method `getVideoChatAvailableParticipants`, returning the list of participants, on whose behalf + a video chat in the chat can be joined. + - Added the method `setVideoChatDefaultParticipant` for changing the default participant on whose behalf a video chat + will be joined. + - Added the class `GroupCallVideoQuality` and the method `getGroupCallStreamSegment` for downloading segments of + live streams. + - Added the class `groupCallRecentSpeaker`, representing a group call participant that was recently speaking. + - Added the field `video_chat_changes` to the class `chatEventLogFilters`. + - Added the class `chatEventVideoChatCreated`, representing a video chat being created in the chat event log. + - Added the class `chatEventVideoChatEnded`, representing a video chat being ended in the chat event log. + - Added the class `chatEventVideoChatMuteNewParticipantsToggled`, representing changes of + the setting `mute_new_participants` of a video chat in the chat event log. + - Added the class `chatEventVideoChatParticipantIsMutedToggled`, representing a video chat participant being muted or + unmuted in the chat event log. + - Added the class `chatEventVideoChatParticipantVolumeLevelChanged`, representing a video chat participant's + volume level being changed in the chat event log. +* Added "; pass null" documentation for all TDLib method parameters, for which null is an expected value. +* Added support for link processing: + - Added the method `getInternalLinkType`, which can parse internal links and return the exact link type and actions + to be done when the link is clicked. + - Added the classes `internalLinkTypeActiveSessions`, `internalLinkTypeAuthenticationCode`, + `internalLinkTypeBackground`, `internalLinkTypeBotStart`, `internalLinkTypeBotStartInGroup`, + `internalLinkTypeChangePhoneNumber`, `internalLinkTypeChatInvite`, `internalLinkTypeFilterSettings`, + `internalLinkTypeGame`, `internalLinkTypeLanguagePack`, `internalLinkTypeMessage`, `internalLinkTypeMessageDraft`, + `internalLinkTypePassportDataRequest`, `internalLinkTypePhoneNumberConfirmation`, `internalLinkTypeProxy`, + `internalLinkTypePublicChat`, `internalLinkTypeQrCodeAuthentication`, `internalLinkTypeSettings`, + `internalLinkTypeStickerSet`, `internalLinkTypeTheme`, `internalLinkTypeThemeSettings`, + `internalLinkTypeUnknownDeepLink`, `internalLinkTypeUnsupportedProxy`, and `internalLinkTypeVideoChat` to represent + different types of internal links. + - Added the method `getExternalLinkInfo`, which needs to be called if the clicked link wasn't recognized as + an internal link. + - Added the method `getExternalLink`, which needs to be called after the method `getExternalLinkInfo` if the user + confirms automatic authorization on the website. +* Added support for expiring chat invite links: + - Added the field `is_primary` to the class `chatInviteLink`. The primary invite link can't have a name, + expiration date, or usage limit. There is exactly one primary invite link for each administrator with + the can_invite_users right at any given time. + - Added the field `name` to the class `chatInviteLink`. + - Added the field `creator_user_id` to the class `chatInviteLink`. + - Added the field `date` to the class `chatInviteLink`, containing the link creation date. + - Added the field `edit_date` to the class `chatInviteLink`, containing the date the link was last edited. + - Added the fields `expiration_date` and `member_limit` to the class `chatInviteLink`, limiting link usage. + - Added the field `member_count` to the class `chatInviteLink`. + - Added the field `is_revoked` to the class `chatInviteLink`. + - Changed the type of the fields `invite_link` in the classes `basicGroupFullInfo` and `supergroupFullInfo` to + `chatInviteLink`. + - Added the field `description` to the class `chatInviteLinkInfo`, containing the description of the chat. + - Replaced the method `generateChatInviteLink` with the method `replacePrimaryChatInviteLink`. + - Added the method `createChatInviteLink` for creating new invite links. + - Added the method `editChatInviteLink` for editing non-primary invite links. + - Added the method `revokeChatInviteLink`. + - Added the method `deleteRevokedChatInviteLink`. + - Added the method `deleteAllRevokedChatInviteLink`. + - Added the method `getChatInviteLink`. + - Added the class `chatInviteLinks`, containing a list of chat invite links. + - Added the method `getChatInviteLinks`. + - Added the classes `chatInviteLinkCount` and `chatInviteLinkCounts`. + - Added the method `getChatInviteLinkCounts`, returning the number of invite links created by chat administrators. + - Added the classes `chatInviteLinkMember` and `chatInviteLinkMembers`. + - Added the method `getChatInviteLinkMembers`. + - Added the field `invite_link_changes` to the class `chatEventLogFilters`. + - Added the class `chatEventMemberJoinedByInviteLink`, representing a user joining the chat via invite link in + the chat event log. + - Added the class `chatEventInviteLinkEdited` to the types of chat event. + - Added the class `chatEventInviteLinkRevoked` to the types of chat event. + - Added the class `chatEventInviteLinkDeleted` to the types of chat event. + - Added the class `chatActionBarInviteMembers` to the types of chat action bar. +* Added support for chat invite links that create join requests: + - Added the class `messageChatJoinByRequest` to the types of message content. + - Added the class `pushMessageContentChatJoinByRequest` to the types of push message content. + - Added the field `pending_join_requests` to the class `chat`. + - Added the class `chatJoinRequestsInfo`, containing basic information about pending join requests for the chat. + - Added the update `updateChatPendingJoinRequests`. + - Added the fields `creates_join_request` to the classes `chatInviteLink` and `chatInviteLinkInfo`. + - Added the field `pending_join_request_count` to the class `chatInviteLink`. + - Added the class `chatJoinRequest`, describing a user that sent a join request. + - Added the class `chatJoinRequests`, containing a list of requests to join the chat. + - Added the method `getChatJoinRequests`. + - Added the method `processChatJoinRequest` for processing a request to join the chat. + - Added the method `processChatJoinRequests` for processing all requests to join the chat. + - Added the class `chatActionBarJoinRequest` to the types of chat action bar. + - Added the class `chatEventMemberJoinedByRequest`, representing a user approved to join the chat after + a join request in the chat event log. + - Added the update `updateNewChatJoinRequest` for bots. +* Added the ability to see viewers of outgoing messages in small group chats: + - Added the method `getMessageViewers`. + - Added the field `can_get_viewers` to the class `message`. +* Added the parameter `only_preview` to the method `forwardMessages`, which can be used to receive a preview of + forwarded messages. +* Added the method `getRecentlyOpenedChats`, returning the list of recently opened chats. +* Increased number of recently found chats that are stored to 50. +* Added the ability to get information about chat messages, which are split by days: + - Added the class `messageCalendarDay`, representing found messages, sent on a specific day. + - Added the class `messageCalendar`, representing found messages, split by days. + - Added the writable option "utc_time_offset", which contains a UTC time offset used for splitting messages by days. + The option is reset automatically on each TDLib instance launch, so it needs to be set manually only if + the time offset is changed during execution. + - Added the method `getChatMessageCalendar`, returning information about chat messages, which are split by days. +* Added the ability to get messages of the specified type in sparse positions for hyper-speed scrolling implementation: + - Added the class `messagePosition`, containing an identifier and send date of a message in + a specific chat history position. + - Added the class `messagePositions`, containing a list of message positions. + - Added the method `getChatSparseMessagePositions`. +* Added the field `can_manage_chat` to the class `chatMemberStatusAdministrator` to allow promoting chat administrators + without additional rights. +* Improved support for bot commands: + - Bot command entities in chats without bots are now automatically hidden. + - Added the class `botCommands`, representing a list of bot commands. + - Added the field `commands` to the class `userFullInfo`, containing the list of commands to be used in + the private chat with the bot. + - Added the fields `bot_commands` to the classes `basicGroupFullInfo` and `supergroupFullInfo`. + - Removed the class `botInfo`. + - Removed the fields `bot_info` from the classes `userFullInfo` and `chatMember`. + - Added the class `BotCommandScope`. + - Added the methods `setCommands`, `deleteCommands`, `getCommands` for bots. +* Added the read-only options "suggested_video_note_length", "suggested_video_note_video_bitrate", and + "suggested_video_note_audio_bitrate", containing suggested video note encoding parameters. +* Added the read-only option "channel_bot_user_id", containing the identifier of the bot which is shown in + outdated clients as the sender of messages sent on behalf of channels. +* Added the ability to fetch the actual value of the option "is_location_visible" using the method `getOption` in case + the value of the option was changed from another device. +* Added the field `minithumbnail` to the class `profilePhoto`, representing a profile photo minithumbnail. +* Added the field `minithumbnail` to the class `chatPhotoInfo`, representing a chat photo minithumbnail. +* Added support for sticker outlines: + - Added the field `outline` to the class `sticker`. + - Added the fields `thumbnail_outline` to the classes `stickerSet` and `stickerSetInfo`. + - Added the class `closedVectorPath`, representing a closed vector path. + - Added the class `VectorPathCommand`, representing one edge of a closed vector path. + - Added the class `point`, representing a point on a Cartesian plane. +* Added support for chats and messages with protected content: + - Added the field `has_protected_content` to the class `chat`. + - Added the update `updateChatHasProtectedContent`. + - Added the method `toggleChatHasProtectedContent`. + - Added the class `chatEventHasProtectedContentToggled`, representing a change of the setting `has_protected_content` + in the chat event log. + - Added the field `can_be_saved` to the class `message`. +* Added support for broadcast groups, i.e. supergroups without a limit on the number of members in which + only administrators can send messages: + - Added the field `is_broadcast_group` to the class `supergroup`. + - Added the method `toggleSupergroupIsBroadcastGroup`. Conversion of a supergroup to a broadcast group + can't be undone. + - Added the class `suggestedActionConvertToBroadcastGroup`, representing a suggestion to convert a supergroup to + a broadcast group. +* Improved chat reports: + - Added the parameter `text` to the method `reportChat`, allowing to add additional details to all + chat reporting reasons. + - Removed the field `text` from the class `chatReportReasonCustom`. + - Added the method `reportChatPhoto` for reporting chat photos. +* Added support for users and chats reported as fake: + - Added the field `is_fake` to the class `user`. + - Added the field `is_fake` to the class `supergroup`. + - Added the class `chatReportReasonFake` to the types of chat reporting reasons. +* Added the class `inlineKeyboardButtonTypeUser` to the types of inline keyboard buttons. +* Added the field `input_field_placeholder` to the classes `replyMarkupForceReply` and `replyMarkupShowKeyboard`. +* Added support for media timestamp entities in messages: + - Added the class `textEntityTypeMediaTimestamp` to the types of text entities. + - Added the field `has_timestamped_media` to the class `message`, describing whether media timestamp entities refer + to the message itself or to the replied message. + - Added the parameter `media_timestamp` to the method `getMessageLink` to support creating message links with + a given media timestamp. + - Added the field `can_get_media_timestamp_links` to the class `message`. + - Added the field `media_timestamp` to the class `messageLinkInfo` for handling of message links with + a specified media timestamp. +* Added the ability to change properties of active sessions: + - Added the field `can_accept_secret_chats` to the class `session`. + - Added the method `toggleSessionCanAcceptSecretChats`. + - Added the field `can_accept_calls` to the class `session`. + - Added the method `toggleSessionCanAcceptCalls`. + - Added the field `inactive_session_ttl_days` to the class `sessions`. + - Added the method `setInactiveSessionTtl`. +* Added new ways for phone number verification: + - Added the class `authenticationCodeTypeMissedCall`, describing an authentication code delivered by + a canceled phone call to the given number. The last digits of the phone number that calls are the code that + must be entered manually by the user. + - Added the field `allow_missed_call` to the class `phoneNumberAuthenticationSettings`. + - Added the read-only option "authentication_token", which can be received when logging out and contains + an authentication token to be used on subsequent authorizations. + - Added the field `authentication_tokens` to the class `phoneNumberAuthenticationSettings`. +* Added support for resetting the password from an active session: + - Added the class `ResetPasswordResult` and the method `resetPassword`. + - Added the method `cancelPasswordReset`, which can be used to cancel a pending password reset. + - Added the field `pending_reset_date` to the class `passwordState`. +* Added the ability to set a new 2-step verification password after recovering a lost password using + a recovery email address: + - Added the parameters `new_password` and `new_hint` to the methods `recoverAuthenticationPassword` and + `recoverPassword`. + - Added the method `checkAuthenticationPasswordRecoveryCode`. + - Added the method `checkPasswordRecoveryCode`. +* Added the class `chatActionChoosingSticker` to the types of chat action. +* Added the class `backgroundFillFreeformGradient` to the types of background fill. +* Added the field `is_inverted` to the class `backgroundTypePattern` for inverted patterns for dark themes. +* Added support for chat themes: + - Added the field `theme_name` to the class `chat`. + - Added the method `setChatTheme`. + - Added the update `updateChatTheme`, received when a theme was changed in a chat. + - Added the class `messageChatSetTheme` to the types of message content. + - Added the class `pushMessageContentChatSetTheme` to the types of push message content. + - Added the class `themeSettings`, representing basic theme settings. + - Added the class `chatTheme`, representing a chat theme. + - Added the update `updateChatThemes`, received when the list of available chat themes changes. +* Added the ability for regular users to create sticker sets: + - Allowed to use the methods `uploadStickerFile` and `createNewStickerSet` as regular users. + - Replaced the parameter `png_sticker` in the method `uploadStickerFile` with the parameter `sticker` of + the type `InputSticker`. + - Added the parameter `source` to the method `createNewStickerSet`. + - Added the method `getSuggestedStickerSetName`. + - Added the class `CheckStickerSetNameResult` and the method `checkStickerSetName` for checking a sticker set name + before creating a sticker set. +* Added support for importing chat history from an external source: + - Added the method `importMessages`. + - Added the method `getMessageImportConfirmationText`. + - Added the class `MessageFileType` and the method `getMessageFileType`, which can be used to check whether + the format of a file with exported message history is supported. + - Added the class `messageForwardOriginMessageImport` to the types of forwarded message origins for + imported messages. + - Added the parameter `for_import` to the method `createNewSupergroupChat`, which needs to be set to true whenever + the chat is created for a subsequent message history import. +* Added new types of suggested actions: + - Added the class `suggestedActionSetPassword`, suggesting the user to set a 2-step verification password to be able + to log in again before the specified number of days pass. + - Added the class `suggestedActionCheckPassword`, suggesting the user to check whether they still remember + their 2-step verification password. + - Added the class `suggestedActionViewChecksHint`, suggesting the user to see a hint about the meaning of + one and two check marks on sent messages. +* Added the method `getSuggestedFileName`, which returns a suggested name for saving a file in a given directory. +* Added the method `deleteAllCallMessages`. +* Added the method `deleteChatMessagesByDate`, which can be used to delete all messages between the specified dates in + a chat. +* Added the field `unread_message_count` to the class `messageThreadInfo`. +* Added the field `has_private_forwards` to the class `userFullInfo`. +* Added the field `description` to the class `userFullInfo`, containing description of the bot. +* Added the field `emoji` to the class `inputMessageSticker`, allowing to specify the emoji that was used to choose + the sent sticker. +* Added the method `banChatMember` that can be used to ban chat members instead of the method `setChatMemberStatus` and + allows to revoke messages from the banned user in basic groups. +* Allowed to use the method `setChatMemberStatus` for adding chat members. +* Removed the parameter `user_id` from the method `reportSupergroupSpam`. Messages from different senders can now + be reported simultaneously. +* Added the field `feedback_link` to the class `webPageInstantView`. +* Added the method `getApplicationDownloadLink`, returning the link for downloading official Telegram applications. +* Removed unusable search message filters `searchMessagesFilterCall` and `searchMessagesFilterMissedCall`. +* Removed the method `getChatStatisticsUrl`. +* Removed the method `getInviteText` in favor of the method `getApplicationDownloadLink`. +* Added the field `chat_type` to the update `updateNewInlineQuery` for bots. +* Added the update `updateChatMember` for bots. +* Improved the appearance of the [TDLib build instructions generator](https://tdlib.github.io/td/build.html). +* Added support for the illumos operating system. +* Added support for network access on real watchOS devices. +* Added support for OpenSSL 3.0. +* Improved the iOS/watchOS/tvOS build example to generate a universal XCFramework. +* Added support for ARM64 simulators in the iOS/watchOS/tvOS build example. +* Added the option `-release_only` to the build script for Universal Windows Platform, allowing to build + TDLib SDK for Universal Windows Platform in release-only mode. +* Rewritten the native .NET binding using the new `ClientManager` interface: + - Replaced the method `Client.send` with a static method that must be called exactly once in a dedicated thread. + The callbacks `ClientResultHandler` will be called in this thread for all clients. + - Removed the function `Client.Dispose()` from the C++/CLI native binding. The objects of the type `Client` + don't need to be explicitly disposed anymore. +* Rewritten the C binding using the new `ClientManager` interface: + - Renamed the fields `id` in the structs `TdRequest` and `TdResponse` to `request_id`. + - Added the field `client_id` to the struct `TdResponse`. + - Replaced the method `TdCClientCreate` with the method `TdCClientCreateId`. + - Replaced the parameter `instance` with the parameter `client_id` in the function `TdCClientSend`. + - Added the methods `TdCClientReceive` and `TdCClientExecute`. + - Removed the methods `TdCClientSendCommandSync`, `TdCClientDestroy`, and `TdCClientSetVerbosity`. + +----------------------------------------------------------------------------------------------------------------------- + +Changes in 1.7.0 (28 Nov 2020): + +* Added a new simplified JSON interface in which updates and responses to requests from all TDLib instances + are received in the same thread: + - The TDLib instance is identified by the unique `client_id` identifier, which is returned by the method + `td_create_client_id`. + - Use the method `td_send` to send a request to a specified client. The TDLib instance is created on the first + request sent to it. + - Use the method `td_receive` to receive updates and request responses from TDLib. The response will contain + the identifier of the client from which the event was received in the field "@client_id". + - Use the method `td_execute` to synchronously execute suitable TDLib methods. +* Added support for adding chats to more than one chat list: + - Added the class `chatPosition`, describing the position of the chat within a chat list. + - Replaced the fields `chat_list`, `order`, `is_sponsored` and `is_pinned` in the class `chat` with + the field `positions`, containing a list of the chat positions in various chat list. + - Replaced the field `order` with the field `positions` in the updates `updateChatLastMessage` and + `updateChatDraftMessage`. + - Added the update `updateChatPosition`. + - Removed the superfluous updates `updateChatChatList`, `updateChatIsSponsored`, `updateChatOrder` and + `updateChatIsPinned`. + - Added the parameter `chat_list` to the method `toggleChatIsPinned`. + - Added the class `chatLists`, containing a list of chat lists. + - Added the method `getChatListsToAddChat`, returning all chat lists to which a chat can be added. + - Added the method `addChatToList`, which can be used to add a chat to a chat list. + - Remove the method `setChatChatList`. +* Added support for chat filters: + - Added the new chat list type `chatListFilter`. + - Added the classes `chatFilterInfo` and `chatFilter`, describing a filter of user chats. + - Added the update `updateChatFilters`, which is sent when the list of chat filters is changed. + - Added the methods `createChatFilter`, `editChatFilter` and `deleteChatFilter` for managing chat filters. + - Added the method `reorderChatFilters` for changing the order of chat filters. + - Added the method `getChatFilter`, returning full information about a chat filter. + - Added the synchronous method `getChatFilterDefaultIconName`. + - Added the classes `recommendedChatFilter` and `recommendedChatFilters`. + - Added the method `getRecommendedChatFilters`, returning a list of recommended chat filters. +* Added support for messages sent on behalf of chats instead of users: + - Added the class `MessageSender`, representing a user or a chat which sent a message. + - Added the class `MessageSenders`, representing a list of message senders. + - Replaced the field `sender_user_id` with the field `sender` of the type `MessageSender` in the classes `message` + and `notificationTypeNewPushMessage`. + - Added the class `messageForwardOriginChat`, which describe a chat as the original sender of a message. + - Added the ability to search messages sent by a chat by replacing the parameter `sender_user_id` with + the parameter `sender` of the type `MessageSender` in the method `searchChatMessages`. + - Added the ability to specify a chat as a local message sender by replacing the parameter `sender_user_id` with + the parameter `sender` of the type `MessageSender` in the method `addLocalMessage`. +* Added support for video calls: + - Added the class `callServer`, describing a server for relaying call data. + - Added the classes `callServerTypeTelegramReflector` and `callServerTypeWebrtc`, representing different types of + supported call servers. + - Replaced the field `connections` with the field `servers` in the class `callStateReady`. + - Removed the class `callConnection`. + - Added the update `updateNewCallSignalingData`. + - Added the method `sendCallSignalingData`. + - Added the field `supports_video_calls` to the class `userFullInfo`. + - Added the field `is_video` to the class `messageCall`. + - Added the field `is_video` to the class `call`. + - Added the parameter `is_video` to the method `createCall`. + - Added the parameter `is_video` to the method `discardCall`. + - Added two new types of call problems `callProblemDistortedVideo` and `callProblemPixelatedVideo`. + - Added the field `library_versions` to the class `callProtocol`, which must be used to specify all supported + call library versions. +* Added support for multiple pinned messages and the ability to pin messages in private chats: + - Added the ability to pin messages in all private chats. + - Added the ability to pin mutiple messages in all chats. + - Added the field `is_pinned` to the class `message`. + - Added the update `updateMessageIsPinned`. + - Added the parameter `only_for_self` to the method `pinChatMessage`, allowing to pin messages in private chats for + one side only. + - Added the ability to find pinned messages in a chat using the filter `searchMessagesFilterPinned`. + - Added the parameter `message_id` to the method `unpinChatMessage`. + - Added the field `message` to the class `chatEventMessageUnpinned`. + - Added the method `unpinAllChatMessages`, which can be used to simultaneously unpin all pinned messages in a chat. + - Documented that notifications about new pinned messages are always silent in channels and private chats. + - The method `getChatPinnedMessage` now returns the newest pinned message in the chat. + - Removed the field `pinned_message_id` from the class `chat`. + - Removed the update `updateChatPinnedMessage`. +* Improved thumbnail representation and added support for animated MPEG4 thumbnails: + - Added the class `ThumbnailFormat`, representing the various supported thumbnail formats. + - Added the class `thumbnail`, containing information about a thumbnail. + - Changed the type of all thumbnail fields from `photoSize` to `thumbnail`. + - Added support for thumbnails in the format `thumbnailFormatMpeg4` for some animations and videos. + - Replaced the classes `inputInlineQueryResultAnimatedGif` and `inputInlineQueryResultAnimatedMpeg4` with + the generic class `inputInlineQueryResultAnimation`. + - Added support for animated thumbnails in the class `inputInlineQueryResultAnimation`. + - The class `photoSize` is now only used for JPEG images. +* Improved support for user profile photos and chat photos: + - Added the field `photo` to the class `userFullInfo`, containing full information about the user photo. + - Added the field `photo` to the class `basicGroupFullInfo`, containing full information about the group photo. + - Added the field `photo` to the class `supergroupFullInfo`, containing full information about the group photo. + - Renamed the class `chatPhoto` to `chatPhotoInfo`. + - Added the field `has_animation` to the classes `profilePhoto` and `chatPhotoInfo`, which is set to true for + animated chat photos. + - Added the classes `chatPhoto` and `chatPhotos`. + - Added minithumbnail support via the field `minithumbnail` in the class `chatPhoto`. + - Added the class `animatedChatPhoto`. + - Added animated chat photo support via the field `animation` in the class `chatPhoto`. + - Removed the classes `userProfilePhoto` and `userProfilePhotos`. + - Changed the type of the field `photo` in the class `messageChatChangePhoto` to `chatPhoto`. + - Changed the type of the fields `old_photo` and `new_photo` in the class `chatEventPhotoChanged` to `chatPhoto`. + - Changed the return type of the method `getUserProfilePhotos` to `chatPhotos`. + - Added the class `InputChatPhoto`, representing a chat or a profile photo to set. + - Changed the type of the parameter `photo` in the methods `setProfilePhoto` and `setChatPhoto` to + the `InputChatPhoto`. + - Added the ability to explicitly re-use previously set profile photos using the class `inputChatPhotoPrevious`. + - Added the ability to set animated chat photos using the class `inputChatPhotoAnimated`. +* Added support for message threads in supergroups and channel comments: + - Added the field `message_thread_id` to the class `message`. + - Added the class `messageThreadInfo`, containing information about a message thread. + - Added the class `messageReplyInfo`, containing information about replies to a message. + - Added the field `reply_info` to the class `messageInteractionInfo`, containing information about message replies. + - Added the field `can_get_message_thread` to the class `message`. + - Added the method `getMessageThread`, returning information about the message thread to which a message belongs. + - Added the method `getMessageThreadHistory`, returning messages belonging to a message thread. + - Added the parameter `message_thread_id` to the methods `sendMessage`, `sendMessageAlbum` and + `sendInlineQueryResultMessage` for sending messages within a thread. + - Added the parameter `message_thread_id` to the method `searchChatMessages` to search messages within a thread. + - Added the parameter `message_thread_id` to the method `viewMessages`. + - Added the parameter `message_thread_id` to the method `setChatDraftMessage`. + - Added the parameter `message_thread_id` to the method `sendChatAction` to send chat actions to a thread. + - Added the field `message_thread_id` to the update `updateUserChatAction`. +* Improved support for message albums: + - Added support for sending and receiving messages of the types `messageAudio` and `messageDocument` as albums. + - Added automatic grouping into audio or document albums in the method `forwardMessages` if all forwarded or + copied messages are of the same type. + - Removed the parameter `as_album` from the method `forwardMessages`. Forwarded message albums are now determined + automatically. +* Simplified usage of methods generating an HTTP link to a message: + - Added the class `messageLink`, representing an HTTP link to a message. + - Combined the methods `getPublicMessageLink` and `getMessageLink` into the method `getMessageLink`, which + now returns a public link to the message if possible and a private link otherwise. The combined method is + an offline method now. + - Added the parameter `for_comment` to the method `getMessageLink`, which allows to get a message link to the message + that opens it in a thread. + - Removed the class `publicMessageLink`. + - Added the field `for_comment` to the class `messageLinkInfo`. + - Added the separate method `getMessageEmbeddingCode`, returning an HTML code for embedding a message. +* Added the ability to block private messages sent via the @replies bot from chats: + - Added the field `is_blocked` to the class `chat`. + - Added the update `updateChatIsBlocked`. + - Added the method `blockMessageSenderFromReplies`. + - Replaced the methods `blockUser` and `unblockUser` with the method `toggleMessageSenderIsBlocked`. + - Replaced the method `getBlockedUsers` with the method `getBlockedMessageSenders`. +* Added support for incoming messages which are replies to messages in different chats: + - Added the field `reply_in_chat_id` to the class `message`. + - The method `getRepliedMessage` can now return the replied message in a different chat. +* Renamed the class `sendMessageOptions` to `messageSendOptions`. +* Added the new `tdapi` static library, which needs to be additionally linked in when static linking is used. +* Changed the type of the field `value` in the class `optionValueInteger` from `int32` to `int64`. +* Changed the type of the field `description` in the class `webPage` from `string` to `formattedText`. +* Improved Instant View support: + - Added the field `view_count` to the class `webPageInstantView`. + - Added the class `richTextAnchorLink`, containing a link to an anchor on the same page. + - Added the class `richTextReference`, containing a reference to a text on the same page. + - Removed the field `text` from the class `richTextAnchor`. + - Removed the field `url` which is no longer needed from the class `webPageInstantView`. +* Allowed the update `updateServiceNotification` to be sent before authorization is completed. +* Disallowed to pass messages in non-strictly increasing order to the method `forwardMessages`. +* Improved sending copies of messages: + - Added the class `messageCopyOptions` and the field `copy_options` to the class `inputMessageForwarded`. + - Removed the fields `send_copy` and `remove_caption` from the class `inputMessageForwarded`. + - Allowed to replace captions in copied messages using the fields `replace_caption` and `new_caption` in + the class `messageCopyOptions`. + - Allowed to specify `reply_to_message_id` when sending a copy of a message. + - Allowed to specify `reply_markup` when sending a copy of a message. +* Allowed passing multiple input language codes to `searchEmojis` by replacing the parameter `input_language_code` with + the parameter `input_language_codes`. +* Added support for public service announcements: + - Added the class `ChatSource` and the field `source` to the class `chatPosition`. + - Added the new type of chat source `chatSourcePublicServiceAnnouncement`. + - Added the field `public_service_announcement_type` to the class `messageForwardInfo`. +* Added support for previewing of private supergroups and channels by their invite link. + - The field `chat_id` in the class `chatInviteLinkInfo` is now non-zero for private supergroups and channels to which + the temporary read access is granted. + - Added the field `accessible_for` to the class `chatInviteLinkInfo`, containing the amount of time for which + read access to the chat will remain available. +* Improved methods for message search: + - Replaced the field `next_from_search_id` with a string field `next_offset` in the class `foundMessages`. + - Added the field `total_count` to the class `foundMessages`; can be -1 if the total count of matching messages is + unknown. + - Replaced the parameter `from_search_id` with the parameter `offset` in the method `searchSecretMessages`. + - Added the parameter `filter` to the method `searchMessages`. + - Added the parameters `min_date` and `max_date` to the method `searchMessages` to search messages sent only within + a particular timeframe. +* Added pkg-config file generation for all installed libraries. +* Added automatic operating system version detection. Use an empty field `system_version` in + the class `tdlibParameters` for the automatic detection. +* Increased maximum file size from 1500 MB to 2000 MB. +* Added support for human-friendly Markdown formatting: + - Added the synchronous method `parseMarkdown` for human-friendly parsing of text entities. + - Added the synchronous method `getMarkdownText` for replacing text entities with a human-friendly + Markdown formatting. + - Added the writable option "always_parse_markdown" which enables automatic parsing of text entities in + all `inputMessageText` objects. +* Added support for dice with random values in messages: + - Added the class `messageDice` to the types of message content; contains a dice. + - Added the class `DiceStickers`, containing animated stickers needed to show the dice. + - Added the class `inputMessageDice` to the types of new input message content; can be used to send a dice. + - Added the update `updateDiceEmojis`, containing information about supported dice emojis. +* Added support for chat statistics in channels and supergroups: + - Added the field `can_get_statistics` to the class `supergroupFullInfo`. + - Added the class `ChatStatistics`, which represents a supergroup or a channel statistics. + - Added the method `getChatStatistics` returning detailed statistics about a chat. + - Added the classes `chatStatisticsMessageInteractionInfo`, `chatStatisticsAdministratorActionsInfo`, + `chatStatisticsMessageSenderInfo` and `chatStatisticsInviterInfo` representing various parts of chat statistics. + - Added the class `statisticalValue` describing recent changes of a statistical value. + - Added the class `StatisticalGraph` describing a statistical graph. + - Added the method `getStatisticalGraph`, which can be used for loading asynchronous or zoomed in statistical graphs. + - Added the class `dateRange` representing a date range for which statistics are available. + - Removed the field `can_view_statistics` from the class `supergroupFullInfo` and marked + the method `getChatStatisticsUrl` as disabled and not working. +* Added support for detailed statistics about interactions with messages: + - Added the class `messageInteractionInfo`, containing information about message views, forwards and replies. + - Added the field `interaction_info` to the class `message`. + - Added the update `updateMessageInteractionInfo`. + - Added the field `can_get_statistics` to the class `message`. + - Added the class `messageStatistics`. + - Added the method `getMessageStatistics`. + - Added the method `getMessagePublicForwards`, returning all forwards of a message to public channels. + - Removed the now superfluous field `views` from the class `message`. + - Removed the now superfluous update `updateMessageViews`. +* Improved support for native polls: + - Added the field `explanation` to the class `pollTypeQuiz`. + - Added the fields `close_date` and `open_period` to the class `poll`. + - Added the fields `close_date` and `open_period` to the class `inputMessagePoll`; for bots only. + - Increased maximum poll question length to 300 characters for bots. +* Added support for anonymous administrators in supergroups: + - Added the field `is_anonymous` to the classes `chatMemberStatusCreator` and `chatMemberStatusAdministrator`. + - The field `author_signature` in the class `message` can now contain a custom title of the anonymous administrator + that sent the message. +* Added support for a new type of inline keyboard buttons, requiring user password entry: + - Added the class `inlineKeyboardButtonTypeCallbackWithPassword`, representing a button requiring password entry from + a user. + - Added the class `callbackQueryPayloadDataWithPassword`, representing new type of callback button payload, + which must be used for the buttons of the type `inlineKeyboardButtonTypeCallbackWithPassword`. +* Added support for making the location of the user public: + - Added the writable option "is_location_visible" to allow other users see location of the current user. + - Added the method `setLocation`, which should be called if `getOption("is_location_visible")` is true and location + changes by more than 1 kilometer. +* Improved Notification API: + - Added the field `sender_name` to the class `notificationTypeNewPushMessage`. + - Added the writable option "disable_sent_scheduled_message_notifications" for disabling notifications about + outgoing scheduled messages that were sent. + - Added the field `is_outgoing` to the class `notificationTypeNewPushMessage` for recognizing + outgoing scheduled messages that were sent. + - Added the fields `has_audios` and `has_documents` to the class `pushMessageContentMediaAlbum`. +* Added the field `date` to the class `draftMessage`. +* Added the update `updateStickerSet`, which is sent after a sticker set is changed. +* Added support for pagination in trending sticker sets: + - Added the parameters `offset` and `limit` to the method `getTrendingStickerSets`. + - Changed the field `sticker_sets` in the update `updateTrendingStickerSets` to contain only the prefix of + trending sticker sets. +* Messages that failed to send can now be found using the filter `searchMessagesFilterFailedToSend`. +* Added the ability to disable automatic server-side file type detection using the new field + `disable_content_type_detection` of the class `inputMessageDocument`. +* Improved chat action bar: + - Added the field `can_unarchive` to the classes `chatActionBarReportSpam` and `chatActionBarReportAddBlock`, + which is true whenever the chat was automatically archived. + - Added the field `distance` to the class `chatActionBarReportAddBlock`, + which denotes the distance between the users. +* Added support for actions suggested to the user by the server: + - Added the class `SuggestedAction`, representing possible actions suggested by the server. + - Added the update `updateSuggestedActions`. + - Added the method `hideSuggestedAction`, which can be used to dismiss a suggested action. +* Supported attaching stickers to animations: + - Added the field `has_stickers` to the class `animation`. + - Added the field `added_sticker_file_ids` to the class `inputMessageAnimation`. +* Added methods for phone number formatting: + - Added the class `countryInfo`, describing a country. + - Added the class `countries`, containing a list of countries. + - Added the method `getCountries`, returning a list of all existing countries. + - Added the class `phonenumberinfo` and the method `getPhoneNumberInfo`, which can be used to format a phone number + according to local rules. +* Improved location support: + - Added the field `horizontal_accuracy` to the class `location`. + - Added the field `heading` to the classes `messageLocation` and `inputMessageLocation` for live locations. + - Added the parameter `heading` to the methods `editMessageLiveLocation` and `editInlineMessageLiveLocation`. +* Added support for proximity alerts in live locations: + - Added the field `proximity_alert_radius` to the classes `messageLocation` and `inputMessageLocation`. + - Added the parameter `proximity_alert_radius` to the methods `editMessageLiveLocation` and + `editInlineMessageLiveLocation`. + - Added the new message content `messageProximityAlertTriggered`, received whenever a proximity alert is triggered. +* Added `CentOS 7` and `CentOS 8` operating systems to the + [TDLib build instructions generator](https://tdlib.github.io/td/build.html). +* Added the CMake configuration option TD_ENABLE_MULTI_PROCESSOR_COMPILATION, which can be used to enable parallel + build with MSVC. +* Added support for sending and receiving messages in secret chats with silent notifications. +* Added the field `progressive_sizes` to the class `photo` to allow partial progressive JPEG photo download. +* Added the field `redirect_stderr` to the class `logStreamFile` to allow explicit control over stderr redirection to + the log file. +* Added the read-only option "can_archive_and_mute_new_chats_from_unknown_users", which can be used to check, whether + the option "archive_and_mute_new_chats_from_unknown_users" can be changed. +* Added the writable option "archive_and_mute_new_chats_from_unknown_users", which can be used to automatically archive + and mute new chats from non-contacts. The option can be set only if the option + "can_archive_and_mute_new_chats_from_unknown_users" is true. +* Added the writable option "message_unload_delay", which can be used to change the minimum delay before messages are + unloaded from the memory. +* Added the writable option "disable_persistent_network_statistics", which can be used to disable persistent + network usage statistics, significantly reducing disk usage. +* Added the writable option "disable_time_adjustment_protection", which can be used to disable protection from + external time adjustment, significantly reducing disk usage. +* Added the writable option "ignore_default_disable_notification" to allow the application to manually specify the + `disable_notification` option each time when sending messages instead of following the default per-chat settings. +* Added the read-only option "telegram_service_notifications_chat_id", containing the identifier of + the Telegram service notifications chat. +* Added the read-only option "replies_bot_chat_id", containing the identifier of the @replies bot. +* Added the read-only option "group_anonymous_bot_user_id", containing the identifier of the bot which is shown as + the sender of anonymous group messages when viewed from an outdated client. +* Added the new venue provider value "gplaces" for Google Places. +* Added the parameter `return_deleted_file_statistics` to the method `optimizeStorage` to return information about + the files that were deleted instead of the ones that were not. +* Added the ability to search for supergroup members to mention by their name and username: + - Added the new filter `supergroupMembersFilterMention` for the method `getSupergroupMembers`. + - Added the new filter `chatMembersFilterMention` for the method `searchChatMembers`. +* Added support for highlighting bank card numbers: + - Added the new text entity `textEntityTypeBankCardNumber`. + - Added the classes `bankCardInfo` and `bankCardActionOpenUrl`, containing information about a bank card. + - Added the method `getBankCardInfo`, returning information about a bank card. +* Improved methods for managing sticker sets by bots: + - Added the method `setStickerSetThumbnail`. + - Added the ability to create new animated sticker sets and add new stickers to them by adding + the class `inputStickerAnimated`. + - Renamed the class `inputSticker` to `inputStickerStatic`. + - Renamed the field `png_sticker` to `sticker` in the class `inputStickerStatic`. +* Added the method `setCommands` for bots. +* Added the method `getCallbackQueryMessage` for bots. +* Added support for starting bots in private chats through `sendBotStartMessage`. +* Added the field `total_count` to the class `chats`. The field should have a precise value for the responses of + the methods `getChats`, `searchChats` and `getGroupsInCommon`. +* Added the update `updateAnimationSearchParameters`, containing information about animation search parameters. +* Documented that `getRepliedMessage` can be used to get a pinned message, a game message, or an invoice message for + messages of the types `messagePinMessage`, `messageGameScore`, and `messagePaymentSuccessful` respectively. +* Added guarantees that the field `member_count` in the class `supergroup` is known if the supergroup was received from + the methods `searchChatsNearby`, `getInactiveSupergroupChats`, `getSuitableDiscussionChats`, `getGroupsInCommon`, or + `getUserPrivacySettingRules`. +* Updated SQLCipher to 4.4.0. +* Updated dependencies in the prebuilt TDLib for Android: + - Updated SDK to SDK 30. + - Updated NDK to r21d, which dropped support for 32-bit ARM devices without Neon support. +* Updated recommended `emsdk` version for `tdweb` building to the 2.0.6. +* Removed the ability to change the update handler after client creation in native .NET binding, Java example and + prebuilt library for Android. +* Removed the ability to change the default exception handler after client creation in Java example and + prebuilt library for Android. +* Removed the ability to close Client using close() method in Java example and prebuilt library for Android. + Use the method TdApi.close() instead. +* Changed license of source code in prebuilt library for Android to Boost Software License, Version 1.0. + +----------------------------------------------------------------------------------------------------------------------- + +Changes in 1.6.0 (31 Jan 2020): + +* Added support for multiple chat lists. Currently, only two chat lists Main and Archive are supported: + - Added the class `ChatList`, which represents a chat list and could be `chatListMain` or `chatListArchive`. + - Added the field `chat_list` to the class `chat`, denoting the chat list to which the chat belongs. + - Added the parameter `chat_list` to the methods `getChats`, `searchMessages` and `setPinnedChats`. + - Added the field `chat_list` to the updates `updateUnreadMessageCount` and `updateUnreadChatCount`. + - Added the field `total_count` to the update `updateUnreadChatCount`, containing the total number of chats in + the list. + - Added the update `updateChatChatList`, which is sent after a chat is moved to or from a chat list. + - Added the method `setChatChatList`, which can be used to move a chat between chat lists. + - Added the option `pinned_archived_chat_count_max` for the maximum number of pinned chats in the Archive chat list. +* Added support for scheduled messages: + - Added the classes `messageSchedulingStateSendAtDate` and `messageSchedulingStateSendWhenOnline`, + representing the scheduling state of a message. + - Added the field `scheduling_state` to the class `message`, which allows to distinguish between scheduled and + ordinary messages. + - The update `updateNewMessage` can now contain a scheduled message and must be handled appropriately. + - The updates `updateMessageContent`, `updateDeleteMessages`, `updateMessageViews`, `updateMessageSendSucceeded`, + `updateMessageSendFailed`, and `updateMessageSendAcknowledged` can now contain identifiers of scheduled messages. + - Added the class `sendMessageOptions`, which contains options for sending messages, + including the scheduling state of the messages. + - Replaced the parameters `disable_notification` and `from_background` in the methods `sendMessage`, + `sendMessageAlbum`, `sendInlineQueryResultMessage`, and `forwardMessages` with the new field `options` of + the type `sendMessageOptions`. + - Added the method `editMessageSchedulingState`, which can be used to reschedule a message or send it immediately. + - Added the method `getChatScheduledMessages`, which returns all scheduled messages in a chat. + - Added the field `has_scheduled_messages` to the class `chat`. + - Added the update `updateChatHasScheduledMessages`, which is sent whenever the field `has_scheduled_messages` + changes in a chat. + - Added support for reminders in Saved Messages and notifications about other sent scheduled messages in + the [Notification API](https://core.telegram.org/tdlib/notification-api/). +* Added support for adding users without a known phone number to the list of contacts: + - Added the method `addContact` for adding or renaming contacts without a known phone number. + - Added the field `need_phone_number_privacy_exception` to the class `userFullInfo`, containing the default value for + the second parameter of the method `addContact`. + - Added the fields `is_contact` and `is_mutual_contact` to the class `user`. + - Removed the class `LinkState` and the fields `outgoing_link` and `incoming_link` from the class `user`. +* Improved support for the top chat action bar: + - Added the class `ChatActionBar`, representing all possible types of the action bar. + - Added the field `action_bar` to the class `chat`. + - Removed the legacy class `chatReportSpamState`. + - Removed the legacy methods `getChatReportSpamState` and `changeChatReportSpamState`. + - Added the update `updateChatActionBar`. + - Added the method `removeChatActionBar`, which allows to dismiss the action bar. + - Added the method `sharePhoneNumber`, allowing to share the phone number of the current user with a mutual contact. + - Added the new reason `chatReportReasonUnrelatedLocation` for reporting location-based groups unrelated to + their stated location. +* Improved support for text entities: + - Added the new types of text entities `textEntityTypeUnderline` and `textEntityTypeStrikethrough`. + - Added support for nested entities. Entities can be nested, but must not mutually intersect with each other. + Pre, Code and PreCode entities can't contain other entities. Bold, Italic, Underline and Strikethrough entities can + contain and be contained in all other entities. All other entities can't contain each other. + - Added the field `version` to the method `textParseModeMarkdown`. Versions 0 and 1 correspond to Bot API Markdown + parse mode, version 2 to Bot API MarkdownV2 parse mode with underline, strikethrough and nested entities support. + - The new entity types and nested entities are supported in secret chats also if its layer is at least 101. +* Added support for native non-anonymous, multiple answer, and quiz-style polls: + - Added support for quiz-style polls, which has exactly one correct answer option and can be answered only once. + - Added support for regular polls, which allows multiple answers. + - Added the classes `pollTypeRegular` and `pollTypeQuiz`, representing the possible types of a poll. + - Added the field `type` to the classes `poll` and `inputMessagePoll`. + - Added support for non-anonymous polls with visible votes by adding the field `is_anonymous` to the classes `poll` + and `inputMessagePoll`. + - Added the method `getPollVoters` returning users that voted for the specified option in a non-anonymous poll. + - Added the new reply markup keyboard button `keyboardButtonTypeRequestPoll`. + - Added the field `is_regular` to the class `pushMessageContentPoll`. + - Added the update `updatePollAnswer` for bots only. + - Added the field `is_closed` to the class `inputMessagePoll`, which can be used by bots to send a closed poll. +* Clarified in the documentation that file remote ID is guaranteed to be usable only if the corresponding file is + still accessible to the user and is known to TDLib. For example, if the file is from a message, then the message + must be not deleted and accessible to the user. If the file database is disabled, then the corresponding object with + the file must be preloaded by the client. +* Added support for administrator custom titles: + - Added the field `custom_title` to `chatMemberStatusCreator` and `chatMemberStatusAdministrator` classes. + - Added the classes `chatAdministrator` and `chatAdministrators`, containing user identifiers along with + their custom administrator title and owner status. + - Replaced the result type of the method `getChatAdministrators` with `chatAdministrators`. +* Improved Instant View support: + - Added the new web page block `pageBlockVoiceNote`. + - Changed value of invisible cells in `pageBlockTableCell` to null. + - Added the field `is_cached` to the class `richTextUrl`. +* Improved support for chat backgrounds: + - Added the classes `backgroundFillSolid` for solid color backgrounds and `backgroundFillGradient` for + gradient backgrounds. + - Added support for TGV (gzipped subset of SVG with MIME type "application/x-tgwallpattern") background patterns + in addition to PNG patterns. Background pattern thumbnails are still always in PNG format. + - Replaced the field `color` in the class `backgroundTypePattern` with the field `fill` of type `BackgroundFill`. + - Replaced the class `backgroundTypeSolid` with the class `backgroundTypeFill`. +* Added support for discussion groups for channel chats: + - Added the field `linked_chat_id` to the class `supergroupFullInfo` containing the identifier of a discussion + supergroup for the channel, or a channel, for which the supergroup is the designated discussion supergroup. + - Added the field `has_linked_chat` to the class `supergroup`. + - Added the method `getSuitableDiscussionChats`, which returns a list of chats which can be assigned as + a discussion group for a channel by the current user. + - Added the method `setChatDiscussionGroup`, which can be used to add or remove a discussion group from a channel. + - Added the class `chatEventLinkedChatChanged` representing a change of the linked chat in the chat event log. +* Added support for slow mode in supergroups: + - Added the field `is_slow_mode_enabled` to the class `supergroup`. + - Added the field `slow_mode_delay` to the class `supergroupFullInfo`. + - Added the method `setChatSlowModeDelay`, which can be used to change the slow mode delay setting in a supergroup. + - Added the class `chatEventSlowModeDelayChanged` representing a change of the slow mode delay setting in + the chat event log. +* Improved privacy settings support: + - Added the classes `userPrivacySettingRuleAllowChatMembers` and `userPrivacySettingRuleRestrictChatMembers` + to include or exclude all group members in a privacy setting rule. + - Added the class `userPrivacySettingShowPhoneNumber` for managing the visibility of the user's phone number. + - Added the class `userPrivacySettingAllowFindingByPhoneNumber` for managing whether the user can be found by + their phone number. +* Added the method `checkCreatedPublicChatsLimit` for checking whether the maximum number of owned public chats + has been reached. +* Added support for transferring ownership of supergroup and channel chats: + - Added the method `transferChatOwnership`. + - Added the class `CanTransferOwnershipResult` and the method `canTransferOwnership` for checking + whether chat ownership can be transferred from the current session. +* Added support for location-based supergroups: + - Added the class `chatLocation`, which contains the location to which the supergroup is connected. + - Added the field `has_location` to the class `supergroup`. + - Added the field `location` to the class `supergroupFullInfo`. + - Added the ability to create location-based supergroups via the new field `location` in + the method `createNewSupergroupChat`. + - Added the method `setChatLocation`, which allows to change location of location-based supergroups. + - Added the field `can_set_location` to the class `supergroupFullInfo`. + - Added the class `PublicChatType`, which can be one of `publicChatTypeHasUsername` or + `publicChatTypeIsLocationBased`. + - Added the parameter `type` to the method `getCreatedPublicChats`, which allows to get location-based supergroups + owned by the user. + - Supported location-based supergroups as public chats where appropriate. + - Added the class `chatEventLocationChanged` representing a change of the location of a chat in the chat event log. +* Added support for searching chats and users nearby: + - Added the classes `chatNearby` and `chatsNearby`, containing information about chats along with + the distance to them. + - Added the method `searchChatsNearby`, which returns chats and users nearby. + - Added the update `updateUsersNearby`, which is sent 60 seconds after a successful `searchChatsNearby` request. +* Improved support for inline keyboard buttons of the type `inlineKeyboardButtonTypeLoginUrl`: + - Added the class `LoginUrlInfo` and the method `getLoginUrlInfo`, which allows to get information about + an inline button of the type `inlineKeyboardButtonTypeLoginUrl`. + - Added the method `getLoginUrl` for automatic authorization on the target website. +* Improved support for content restrictions: + - The field `restriction_reason` in the classes `user` and `channel` now contains only a human-readable description + why access must be restricted. It is non-empty if and only if access to the chat needs to be restricted. + - Added the field `restriction_reason` to the class `message`. It is non-empty if and only if access to the message + needs to be restricted. + - Added the writable option `ignore_platform_restrictions`, which can be set in non-store apps to ignore restrictions + specific to the currently used operating system. + - Added the writable option `ignore_sensitive_content_restrictions`, which can be set to show sensitive content on + all user devices. `getOption("ignore_sensitive_content_restrictions")` can be used to fetch the actual value of + the option, the option will not be immediately updated after a change from another device. + - Added the read-only option `can_ignore_sensitive_content_restrictions`, which can be used to check, whether + the option `ignore_sensitive_content_restrictions` can be changed. +* Added support for QR code authentication for already registered users: + - Added the authorization state `authorizationStateWaitOtherDeviceConfirmation`. + - Added the method `requestQrCodeAuthentication`, which can be used in the `authorizationStateWaitPhoneNumber` state + instead of the method `setAuthenticationPhoneNumber` to request QR code authentication. + - Added the method `confirmQrCodeAuthentication` for authentication confirmation from another device. +* Added the update `updateMessageLiveLocationViewed`, which is supposed to trigger an edit of the corresponding + live location. +* Added the parameter `input_language_code` to the method `searchEmojis`. +* Added the method `getInactiveSupergroupChats`, to be used when the user receives a CHANNELS_TOO_MUCH error after + reaching the limit on the number of joined supergroup and channel chats. +* Added the field `unique_id` to the class `remoteFile`, which can be used to identify the same file for + different users. +* Added the new category of top chat list `topChatCategoryForwardChats`. +* Added the read-only option `animated_emoji_sticker_set_name`, containing name of a sticker set with animated emojis. +* Added the read-only option `unix_time`, containing an estimation of the current Unix timestamp. + The option will not be updated automatically unless the difference between the previous estimation and + the locally available monotonic clocks changes significantly. +* Added the field `is_silent` to the class `notification`, so silent notifications can be shown with + the appropriate mark. +* Added the field `video_upload_bitrate` to the class `autoDownloadSettings`. +* Disallowed to call `setChatNotificationSettings` method on the chat with self, which never worked. +* Added support for `ton://` URLs in messages and inline keyboard buttons. + +----------------------------------------------------------------------------------------------------------------------- + +Changes in 1.5.0 (9 Sep 2019): + +* Changed authorization workflow: + - Added the state `authorizationStateWaitRegistration`, which will be received after `authorizationStateWaitCode` for + users who are not registered yet. + - Added the method `registerUser`, which must be used in the `authorizationStateWaitRegistration` state to finish + registration of the user. + - Removed the fields `is_registered` and `terms_of_service` from the class `authorizationStateWaitCode`. + - Removed the parameters `first_name` and `last_name` from the method `checkAuthenticationCode`. +* Added support for messages with an unknown sender (zero `sender_user_id`) in private chats, basic groups and + supergroups. Currently, the sender is unknown for posts in channels and for channel posts automatically forwarded to + the discussion group. +* Added support for the new permission system for non-administrator users in groups: + - Added the class `chatPermissions` containing all supported permissions, including new permissions `can_send_polls`, + `can_change_info`, `can_invite_users` and `can_pin_messages`. + - Added the field `permissions` to the class `chat`, describing actions that non-administrator chat members are + allowed to take in the chat. + - Added the update `updateChatPermissions`. + - Added the method `setChatPermissions` for changing chat permissions. + - Added the class `chatEventPermissionsChanged` representing a change of chat permissions in the chat event log. + - Replaced the fields `can_send_messages`, `can_send_media_messages`, `can_send_other_messages`, + `can_add_web_page_previews` in the class `chatMemberStatusRestricted` with the field `permissions` of + the type `chatPermissions`. + - Removed the field `everyone_is_administrator` from the `basicGroup` class in favor of the field `permissions` of + the class `chat`. + - Removed the field `anyone_can_invite` from the `supergroup` class in favor of the field `permissions` of + the class `chat`. + - Removed the method `toggleBasicGroupAdministrators` in favor of `setChatPermissions`. + - Removed the method `toggleSupergroupInvites` in favor of `setChatPermissions`. + - Renamed the field `anyone_can_invite` to `can_invite_users` in the class `chatEventInvitesToggled`. + - The permissions `can_send_other_messages` and `can_add_web_page_previews` now imply only `can_send_messages` + instead of `can_send_media_messages`. + - Allowed administrators in basic groups to use the method `generateChatInviteLink`. +* Added out of the box `OpenBSD` and `NetBSD` operating systems support. +* Added possibility to use `LibreSSL` >= 2.7.0 instead of `OpenSSL` to build TDLib. +* Added instructions for building TDLib on `Debian 10`, `OpenBSD` and `NetBSD` to + the [TDLib build instructions generator](https://tdlib.github.io/td/build.html). +* Added support for Backgrounds 2.0: + - Added the classes `BackgroundType`, `background`, `backgrounds` and `InputBackground`. + - Added the method `getBackground` returning the list of backgrounds installed by the user. + - Added the method `setBackground` for changing the background selected by the user. + - Added the update `updateSelectedBackground`, which is sent right after a successful initialization and whenever + the selected background changes. + - Added the method `removeBackground` for removing a background from the list of installed backgrounds. + - Added the method `resetBackgrounds` for restoring the default list of installed backgrounds. + - Added the method `searchBackground` returning a background by its name. + - Added the method `getBackgroundUrl` returning a persistent URL for a background. + - Removed the `getWallpapers` method. + - Removed the `wallpaper` and the `wallpapers` classes. + - The class `fileTypeWallpaper` can be used for remote file identifiers of both old wallpapers and new backgrounds. +* Added support for descriptions in basic groups: + - Added the field `description` to the class `basicGroupFullInfo`. + - Replaced the method `setSupergroupDescription` with `setChatDescription` which can be used for any chat type. +* Added support for emoji suggestions: + - Added the method `searchEmojis` for searching emojis by keywords. + - Added the method `getEmojiSuggestionsUrl`, which can be used to automatically log in to the translation platform + and suggest new emoji replacements. + - Renamed the class `stickerEmojis` to `emojis`. +* Changed type of the fields `old_photo` and `new_photo` in the class `chatEventPhotoChanged` from `chatPhoto` to + `photo`. +* Changed recommended size for `inputThumbnail` from 90x90 to 320x320. +* Combined all supported settings for phone number authentication: + - Added the class `phoneNumberAuthenticationSettings` which contains all the settings. + - Replaced the parameters `is_current_phone_number` and `allow_flash_call` in the methods + `setAuthenticationPhoneNumber`, `sendPhoneNumberConfirmationCode`, `sendPhoneNumberVerificationCode` and + `changePhoneNumber` with the parameter `settings` of the type `phoneNumberAuthenticationSettings`. + - Added support for automatic SMS code verification for official applications via the new field `allow_app_hash` in + the class `phoneNumberAuthenticationSettings`. +* Added support for auto-download settings presets. + - Added the classes `autoDownloadSettings` and `autoDownloadSettingsPresets`. + - Added the method `getAutoDownloadSettingsPresets` for getting the settings. + - Added the method `setAutoDownloadSettings`, which needs to be called whenever the user changes the settings. +* Added support for minithumbnails - thumbnail images of a very poor quality and low resolution: + - Added the class `minithumbnail`. + - Added the field `minithumbnail` to `animation`, `document`, `photo`, `video` and `videoNote` classes. + - Added the field `audio_cover_minithumbnail` to the class `audio`. +* Added support for resending messages which failed to send: + - Added the fields `error_code`, `error_message`, `can_retry` and `retry_after` to + the class `messageSendingStateFailed`. + - Added the method `resendMessages`. +* Added the field `is_animated` to the `sticker`, `stickerSet` and `stickerSetInfo` classes. + Animated stickers can be received anywhere where non-animated stickers can appear. +* Added the parameters `send_copy` and `remove_caption` to the `forwardMessages` method to allow forwarding of + messages without links to the originals. +* Added the fields `send_copy` and `remove_caption` to `inputMessageForwarded` method to allow forwarding of + a message without link to the original message. +* Added the method `getMessageLinkInfo` for getting information about a link to a message in a chat. +* Added the class `userPrivacySettingShowProfilePhoto` for managing visibility of the user's profile photo. +* Added the class `userPrivacySettingShowLinkInForwardedMessages` for managing whether a link to the user's account is + included with forwarded messages. +* Added the field `thumbnail` to the classes `stickerSet` and `stickerSetInfo`, containing a thumbnail for + the sticker set. +* Added the field `is_scam` to the classes `user` and `supergroup`. +* Added a new kind of inline keyboard button `inlineKeyboardButtonTypeLoginUrl`, which for the moment must be processed + in the same way as an `inlineKeyboardButtonTypeUrl`. +* Added the new class `supergroupMembersFilterContacts`, allowing to only search for contacts + in `getSupergroupMembers`. +* Added the new class `chatMembersFilterContacts`, allowing to only search for contacts in `searchChatMembers`. +* Added the class `chatEventPollStopped` representing the closing of a poll in a message in the chat event log. +* Added ability to specify the exact types of problems with a call in the method `sendCallRating` and + the new class `CallProblem`. +* Changes in [tdweb](https://github.com/tdlib/td/blob/master/example/web/): + - Supported non-zero `offset` and `limit` in `readFilePart`. + +----------------------------------------------------------------------------------------------------------------------- + +Changes in 1.4.0 (1 May 2019): + +* Added a [TDLib build instructions generator](https://tdlib.github.io/td/build.html), covering in details + TDLib building on the most popular operating systems. +* Added an example of TDLib building and usage from a browser. + See https://github.com/tdlib/td/blob/master/example/web/ for more details. +* Allowed to pass NULL pointer to `td_json_client_execute` instead of a previously created JSON client. + Now you can use synchronous TDLib methods through a JSON interface before creating a TDLib JSON client. +* Added support for media streaming by allowing to download any part of a file: + - Added the `offset` parameter to `downloadFile` which specifies the starting position + from which the file should be downloaded. + - Added the `limit` parameter to `downloadFile` which specifies how many bytes should be downloaded starting from + the `offset` position. + - Added the field `download_offset` to the class `localFile` which contains the current download offset. + - The field `downloaded_prefix_size` of the `localFile` class now contains the number of available bytes + from the position `download_offset` instead of from the beginning of the file. + - Added the method `getFileDownloadedPrefixSize` which can be used to get the number of locally available file bytes + from a given offset without actually changing the download offset. +* Added the parameter `synchronous` to `downloadFile` which causes the request to return the result only after + the download is completed. +* Added support for native polls in messages: + - Added `messagePoll` to the types of message content; contains a poll. + - Added the classes `poll` and `pollOption` describing a poll and a poll answer option respectively. + - Added `inputMessagePoll` to the types of new input message content; can be used to send a poll. + - Added the method `setPollAnswer` which can be used for voting in polls. + - Added the method `stopPoll` which can be used to stop polls. Use the `Message.can_be_edited` field to check whether + this method can be called on a message. + - Added the update `updatePoll` for bots only. Ordinary users receive poll updates through `updateMessageContent`. +* Added a Notification API. See article https://core.telegram.org/tdlib/notification-api for a detailed description. + - Added the class `pushReceiverId` which contains a globally unique identifier of the push notification subscription. + - Changed the return type of the method `registerDevice` to `pushReceiverId` to allow matching of push notifications + with TDLib instances. + - Removed the fields `disable_notification` and `contains_mention` from `updateNewMessage`. + - Renamed the class `deviceTokenGoogleCloudMessaging` to `deviceTokenFirebaseCloudMessaging`. + - Added the field `encrypt` to classes `deviceTokenApplePushVoIP` and `deviceTokenFirebaseCloudMessaging` + which allows to subscribe for end-to-end encrypted push notifications. + - Added the option `notification_group_count_max` which can be used to enable the Notification API and set + the maximum number of notification groups to be shown simultaneously. + - Added the option `notification_group_size_max` which can be used to set the maximum number of simultaneously shown + notifications in a group. + - Added the synchronous method `getPushReceiverId` for matching a push notification with a TDLib instance. + - Added the method `processPushNotification` for handling of push notifications. + - Removed the method `processDcUpdate` in favor of the general `processPushNotification` method. + - Added the update `updateNotificationGroup`, sent whenever a notification group changes. + - Added the update `updateNotification`, sent whenever a notification changes. + - Added the update `updateActiveNotifications` for syncing the list of active notifications on startup. + - Added the update `updateHavePendingNotifications` which can be used to improve lifetime handling of + the TDLib instance. + - Added the possibility to disable special handling of notifications about pinned messages via the new settings + `use_default_disable_pinned_message_notifications`, `disable_pinned_message_notifications` in + the class `chatNotificationSettings` and the new setting `disable_pinned_message_notifications` in + the class `scopeNotificationSettings`. + - Added the possibility to disable special handling of notifications about mentions and replies via the new settings + `use_default_disable_mention_notifications`, `disable_mention_notifications` in + the class `chatNotificationSettings` and the new setting `disable_mention_notifications` in + the class `scopeNotificationSettings`. + - Added the class `PushMessageContent` describing the content of a notification, received through + a push notification. + - Added the class `NotificationType` describing a type of notification. + - Added the class `notification` containing information about a notification. + - Added the class `NotificationGroupType` describing a type of notification group. + - Added the class `notificationGroup` describing a state of a notification group. + - Added the methods `removeNotification` and `removeNotificationGroup` for handling notifications removal + by the user. + - Added the separate notification scope `notificationSettingsScopeChannelChats` for channel chats. +* Added support for pinned notifications in basic groups and Saved Messages: + - Added the field `pinned_message_id` to the class `chat`. + - Removed the field `pinned_message_id` from the class `supergroupFullInfo` in favor of `chat.pinned_message_id`. + - Added the update `updateChatPinnedMessage`. + - The right `can_pin_messages` is now applicable to both basic groups and supergroups. + - Replaced the method `pinSupergroupMessage` with `pinChatMessage` which can be used for any chat type. + - Replaced the method `unpinSupergroupMessage` with `unpinChatMessage` which can be used for any chat type. +* Added new synchronous methods for managing TDLib internal logging. The old functions are deprecated and + will be removed in TDLib 2.0.0. + - Added the synchronous method `setLogStream` for changing the stream to which the TDLib internal log is written. + - Added the synchronous method `getLogStream` for getting information about the currently used log stream. + - Added the classes `logStreamDefault`, `logStreamFile` and `logStreamEmpty` describing different supported kinds of + log streams. + - Added the class `logVerbosityLevel` containing the verbosity level of the TDLib internal log. + - Added the class `logTags` containing a list of available TDLib internal log tags. + - Added the synchronous method `setLogVerbosityLevel` for changing verbosity level of logging. + - Added the synchronous method `getLogVerbosityLevel` for getting the current verbosity level of logging. + - Added the synchronous method `getLogTags` returning all currently supported log tags. + - Added the synchronous method `setLogTagVerbosityLevel` for changing the verbosity level of logging for + some specific part of the code. + - Added the synchronous method `getLogTagVerbosityLevel` for getting the current verbosity level for a specific part + of the code. + - Added the synchronous method `addLogMessage` for using the TDLib internal log by the application. +* Added support for Instant View 2.0: + - Replaced the field `has_instant_view` in class `webPage` with the `instant_view_version` field. + - Added the field `version` to the class `webPageInstantView`. + - Added the class `pageBlockCaption`. + - Changed the type of `caption` fields in `pageBlockAnimation`, `pageBlockAudio`, `pageBlockPhoto`, `pageBlockVideo`, + `pageBlockEmbedded`, `pageBlockEmbeddedPost`, `pageBlockCollage` and `pageBlockSlideshow` from + `RichText` to `pageBlockCaption`. + - Added the class `pageBlockListItem` and replaced the content of the `pageBlockList` class with a list of + `pageBlockListItem`. + - Added 6 new kinds of `RichText`: `richTextSubscript`, `richTextSuperscript`, `richTextMarked`, + `richTextPhoneNumber`, `richTextIcon` and `richTextAnchor`. + - Added new classes `pageBlockRelatedArticle`, `PageBlockHorizontalAlignment`, `PageBlockVerticalAlignment` and + `pageBlockTableCell`. + - Added new block types `pageBlockKicker`, `pageBlockRelatedArticles`, `pageBlockTable`, `pageBlockDetails` and + `pageBlockMap`. + - Added the flag `is_rtl` to the class `webPageInstantView`. + - Renamed the field `caption` in classes `pageBlockBlockQuote` and `pageBlockPullQuote` to `credit`. + - Dimensions in `pageBlockEmbedded` can now be unknown. + - Added the field `url` to `pageBlockPhoto` which contains a URL that needs to be opened when the photo is clicked. + - Added the field `url` to `webPageInstantView` which must be used for the correct handling of anchors. +* Added methods for confirmation of the 2-step verification recovery email address: + - Added the method `checkRecoveryEmailAddressCode` for checking the verification code. + - Added the method `resendRecoveryEmailAddressCode` for resending the verification code. + - Replaced the field `unconfirmed_recovery_email_address_pattern` in the class `passwordState` with + the `recovery_email_address_code_info` field containing full information about the code. + - The necessity of recovery email address confirmation in `setPassword` and `setRecoveryEmailAddress` methods + is now returned by the corresponding `passwordState` and not by the error `EMAIL_UNCONFIRMED`. +* Improved the `MessageForwardInfo` class and added support for hidden original senders: + - Removed the old `messageForwardedPost` and `messageForwardedFromUser` classes. + - Added the class `messageForwardInfo` which contains information about the origin of the message, original sending + date and identifies the place from which the message was forwarded the last time for messages forwarded to + Saved Messages. + - Added the classes `messageForwardOriginUser`, `messageForwardOriginHiddenUser` and `messageForwardOriginChannel` + which describe the exact origins of a message. +* Improved getting the list of user profile photos: + - Added the class `userProfilePhoto`, containing `id`, `added_date` and `sizes` of a profile photo. + - Changed the type of the field `photos` in `userProfilePhotos` to a list of `userProfilePhoto` instead of + a list of `photo`. `getUserProfilePhotos` now returns a date for each profile photo. + - Removed the field `id` from the class `photo` (this field was only needed in the result of `getUserProfilePhotos`). +* Added the possibility to get a Telegram Passport authorization form before asking the user for a password: + - Removed the parameter `password` from the method `getPassportAuthorizationForm`. + - Moved the fields `elements` and `errors` from the class `passportAuthorizationForm` to + the new class `passportElementsWithErrors`. + - Added the method `getPassportAuthorizationFormAvailableElements` that takes the user's password and + returns previously uploaded Telegram Passport elements and errors in them. +* Added the field `file_index` to the classes `passportElementErrorSourceFile` and + `passportElementErrorSourceTranslationFile`. +* Added the method `getCurrentState` returning all updates describing the current `TDLib` state. It can be used to + restore the correct state after connecting to a running TDLib instance. +* Added the class `updates` which contains a list of updates and is returned by the `getCurrentState` method. +* Added the update `updateChatOnlineMemberCount` which is automatically sent for open group chats if the number of + online members in a group changes. +* Added support for custom language packs downloaded from the server: + - Added the fields `base_language_pack_id`` to the class `languagePackInfo`. Strings from the base language pack + must be used for untranslated keys from the chosen language pack. + - Added the fields `plural_code`, `is_official`, `is_rtl`, `is_beta`, `is_installed`, `total_string_count`, + `translated_string_count`, `translation_url` to the class `languagePackInfo`. + - Added the method `addCustomServerLanguagePack` which adds a custom server language pack to the list of + installed language packs. + - Added the method `getLanguagePackInfo` which can be used for handling `https://t.me/setlanguage/...` links. + - Added the method `synchronizeLanguagePack` which can be used to fetch the latest versions of all strings from + a language pack. + The method doesn't need to be called explicitly for the current used/base language packs. + - The method `deleteLanguagePack` now also removes the language pack from the list of installed language packs. +* Added the method `getChatNotificationSettingsExceptions` which can be used to get chats with + non-default notification settings. +* Added the parameter `hide_via_bot` to `sendInlineQueryResultMessage` which can be used for + `getOption("animation_search_bot_username")`, `getOption("photo_search_bot_username")` and + `getOption("venue_search_bot_username")` bots to hide that the message was sent via the bot. +* Added the class `chatReportReasonChildAbuse` which can be used to report a chat for child abuse. +* Added the method `getMessageLocally` which returns a message only if it is available locally without + a network request. +* Added the method `writeGeneratedFilePart` which can be used to write a generated file if there is no direct access to + TDLib's file system. +* Added the method `readFilePart` which can be used to read a file from the TDLib file cache. +* Added the class `filePart` to represent the result of the new `readFilePart` method. +* Added the field `log_size` to the `storageStatisticsFast` class which contains the size of the TDLib internal log. + Previously the size was included into the value of the `database_size` field. +* Added the field `language_pack_database_size` to the `storageStatisticsFast` class which contains the size of the + language pack database. +* Added the field `is_support` to the class `user` which can be used to identify Telegram Support accounts. +* Added the class `HttpUrl` encapsulating an HTTP URL. +* Added the method `getMessageLink` which can be used to create a private link (which works only for members) to + a message in a supergroup or channel. +* Added support for channel statistics (coming soon): + - Added the field `can_view_statistics` to the `supergroupFullInfo` class. + - Added the method `getChatStatisticsUrl` which returns a URL with the chat statistics. +* Added support for server-side peer-to-peer calls privacy: + - Added the class `userPrivacySettingAllowPeerToPeerCalls` for managing privacy. + - Added the field `allow_p2p` to `callStateReady` class which must be used to determine whether + a peer-to-peer connection can be used. +* Added the option `ignore_background_updates` which allows to skip all updates received while the TDLib instance was + not running. The option does nothing if the database or secret chats are used. +* Added the read-only option `expect_blocking`, suggesting whether Telegram is blocked for the user. +* Added the read-only option `enabled_proxy_id`, containing the ID of the enabled proxy. +* Added the ability to identify password pending sessions (where the code was entered but not + the two-step verification password) via the flag `is_password_pending` in the `session` class. + TDLib guarantees that the sessions will be returned by the `getActiveSessions` method in the correct order. +* Added the classes `JsonValue` and `jsonObjectMember` which represent a JSON value and + a member of a JSON object respectively as TDLib API objects. +* Added the synchronous methods `getJsonValue` and `getJsonString` for simple conversion between + a JSON-encoded string and `JsonValue` TDLib API class. +* Added the methods `getApplicationConfig` and `saveApplicationLogEvent` to be used for testing purposes. +* Added the temporarily class `databaseStatistics` and the method `getDatabaseStatistics` for rough estimations of + database tables size in a human-readable format. +* Made the method `Client.Execute` static in .NET interface. +* Removed the `on_closed` callback virtual method from low-level C++ ClientActor interface. + Callback destructor can be used instead. +* Updated dependencies in the prebuilt TDLib for Android: + - Updated SDK to SDK 28 in which helper classes were moved from `android.support.` to `androidx.` package. + - Updated NDK to r19c, which dropped support for Android versions up to 4.0.4, so the minimum supported version is + Android 4.1. + - Updated OpenSSL to version 1.1.1. + - Added x86_64 libraries. +* Added out of the box `FreeBSD` support. +* Significantly improved TDLib compilation time and decreased compiler RAM usage: + - In native C++ interface `td_api::object_ptr` is now a simple homebrew const-propagating class instead of + `std::unique_ptr`. + - Added the script `SplitSource.php`, which can be used to split some source code files before building + the library to reduce maximum RAM usage per file at the expense of increased build time. +* The update `updateOption` with the `version` option is now guaranteed to come before all other updates. + It can now be used to dynamically discover available methods. +* Added the ability to delete incoming messages in private chats and revoke messages without a time limit: + - Added the parameter `revoke` to the method `deleteChatHistory`; use it to delete chat history for all chat members. + - Added the fields `can_be_deleted_only_for_self` and `can_be_deleted_for_all_users` to the class `chat` + which can be used to determine for whom the chat can be deleted through the `deleteChatHistory` method. + - The fields `Message.can_be_deleted_only_for_self` and `Message.can_be_deleted_for_all_users` can still be used + to determine for whom the message can be deleted through the `deleteMessages` method. +* Added support for server-generated notifications about newly registered contacts: + - Setting the option `disable_contact_registered_notifications` now affects all user sessions. + When the option is enabled, the client will still receive `messageContactRegistered` message in the private chat, + but there will be no notification about the message. + - `getOption("disable_contact_registered_notifications")` can be used to fetch the actual value of the option, + the option will not be updated automatically after a change from another device. +* Decreased the maximum allowed first name and last name length to 64, chat title length to 128, + matching the new server-side limits. +* Decreased the maximum allowed value of the `forward_limit` parameter of the `addChatMember` method from 300 to 100, + matching the new server-side limit. +* Added protection from opening two TDLib instances with the same database directory from one process. +* Added copying of notification settings of new secret chats from notification settings of + the corresponding private chat. +* Excluded the sponsored chat (when using sponsored proxies) from unread counters. +* Allowed to pass decreased local_size in `setFileGenerationProgress` to restart the generation from the beginning. +* Added a check for modification time of original file in `inputFileGenerated` whenever possible. + If the original file was changed, then TDLib will restart the generation. +* Added the destruction of MTProto keys on the server during log out. +* Added support for hexadecimal-encoded and decimal-encoded IPv4 proxy server addresses. +* Improved the behavior of `changeImportedContacts` which now also deletes contacts of users without Telegram accounts + from the server. +* Added the ability to call `getStorageStatistics` before authorization. +* Allowed to pass `limit` = -`offset` for negative offset in the `getChatHistory` method. +* Changed the recommended `inputThumbnail` size to be at most 320x320 instead of the previous 90x90. +* Disabled building by default of the native C interface. Use `cmake --build . --target tdc` to build it. +* Numerous optimizations and bug fixes: + - Network implementation for Windows was completely rewritten to allow a literally unlimited number of + simultaneously used TDLib instances. + - TDLib instances can now share working threads with each other. Only a limited number of threads will be created + even if there are thousands of TDLib instances in a single process. + - Removed the restriction on the size of update or response result in JSON interface. + - Fixed pinning of the 5th chat when there is a sponsored chat. + - Fixed IPv6 on Windows. + - Improved network connections balancing, aliveness checks and overall stability. + - Various autogenerated documentation fixes and improvements. + +----------------------------------------------------------------------------------------------------------------------- + +Changes in 1.3.0 (5 Sep 2018): + +* Added a review of existing TDLib based [frameworks](https://github.com/tdlib/td/blob/master/example/README.md) + in different programming languages. +* Added a [Getting started](https://core.telegram.org/tdlib/getting-started) guide describing the main TDLib concepts + and basic principles required for library usage. +* When a chat is opened, only those messages that have been viewed are marked as read. +* Improved the proxy settings API: + - A list of proxies is stored instead of just one proxy. + - New methods `addProxy`, `editProxy`, `enableProxy`, `disableProxy`, `removeProxy` and `getProxies` were added + instead of `setProxy` and `getProxy`. + - Added the method `pingProxy` which can be used to compute time needed to receive a response from a Telegram server + through a proxy or directly. + - Added support for MTProto proxy via class `proxyTypeMtproto`. + - Added support for HTTP proxy via class `proxyTypeHttp`. + - For each proxy last time it was used is remembered. + - Added the method `getProxyLink` which returns an HTTPS link that can be used to share a proxy with others. +* Improved the notification settings API. Scope notification settings are now properly synchronized between all devices + and chat notification settings can be reset to their default values: + - The `notificationSettings` class was split into `chatNotificationSettings` and `scopeNotificationSettings`. + - Only two notification settings scopes are left: `notificationSettingsScopePrivateChats` which is responsible for + default notification settings for private and secret chats and `notificationSettingsScopeGroupChats` for all other + chats. + - `updateNotificationSettings` was split into `updateChatNotificationSettings` and `updateScopeNotificationSettings`. + - `setNotificationSettings` was split into `setChatNotificationSettings` and `setScopeNotificationSettings`. + - `getNotificationSettings` was replaced with `getScopeNotificationSettings`. +* Added the field `filter` to the `searchChatMembers` method to support searching among administrators, bots, + restricted and banned members. +* Added the ability to use synchronous requests and `setAlarm` before the library is initialized. +* Added the ability to send requests that don't need authentication before the library is initialized. These requests + will be postponed and executed at the earliest opportunity. For example, `setNetworkType` can be used to disable the + network for TDLib before the library tries to use it; `addProxy` can be used to add a proxy before any network + activity; or `setOption("use_pfs")` can be used to guarantee that PFS is used for all requests. +* Added support for tg:// links in `inlineKeyboardButtonTypeUrl` and `textEntityTypeTextUrl`. +* Added the ability to call `deleteAccount` in the `authorizationStateWaitPassword` authorization state. +* Added the ability to call `checkAuthenticationCode` with an empty `first_name` for unregistered users to check the + code validity. +* Added the methods `editMessageMedia` and `editInlineMessageMedia` for editing media messages content. +* Renamed the class `shippingAddress` to `address`. +* Changed the return value of the `requestPasswordRecovery` method from `passwordRecoveryInfo` to + `emailAddressAuthenticationCodeInfo`. +* Added support for sponsored channels promoted by MTProto-proxies: + - Added the field `is_sponsored` to the `chat` class. + - Added `updateChatIsSponsored`, sent when this field changes. +* Added support for marking chats as unread: + - Added the field `is_marked_as_unread` to `chat`. + - Added the update `updateChatIsMarkedAsUnread`. + - Added the method `toggleChatIsMarkedAsUnread`. +* Added support for a default value of `disable_notification`, used when a message is sent to the chat: + - Added the field `default_disable_notification` to `chat` class. + - Added the update `updateChatDefaultDisableNotification`. + - Added the method `toggleChatDefaultDisableNotification`. +* Added the field `vcard` to the `contact` class. +* Added the field `type` to `venue`, which contains a provider-specific type of the venue, +* Added the update `updateUnreadChatCount`, enabled when the message database is used and sent when + the number of unread chats has changed. +* Added the method `addLocalMessage` for adding a local message to a chat. +* Added the method `getDeepLinkInfo`, which can return information about `tg://` links that are not supported by + the client. +* Added support for language packs: + - Added the writable option `language_pack_database_path` which can be used to specify a path to a database + for storing language pack strings, so that this database can be shared between different accounts. + If not specified, language pack strings will be stored only in memory. + Changes to the option are applied only on the next TDLib launch. + - Added the writable option `localization_target` for setting up a name for the current localization target + (currently supported: "android", "android_x", "ios", "macos" and "tdesktop"). + - Added the writable option `language_pack_id` for setting up an identifier of the currently used language pack from + the current localization target (a "language pack" represents the collection of strings that can be used to display + the interface of a particular application in a particular language). + - Added the class `LanguagePackStringValue` describing the possible values of a string from a language pack. + - Added the class `languagePackString` describing a string from a language pack. + - Added the class `languagePackStrings` containing a list of language pack strings. + - Added the class `languagePackInfo` containing information about a language pack from a localization target. + - Added the class `localizationTargetInfo` containing information about a localization target. + - Added the update `updateLanguagePackStrings` which is sent when some strings in a language pack have changed. + - Added the synchronous method `getLanguagePackString` which can be used to get a language pack string from + the local database. + - Added the method `getLocalizationTargetInfo` which returns information about the current localization target. + - Added the method `getLanguagePackStrings` which returns some or all strings from a language pack, possibly fetching + them from the server. + - Added the method `setCustomLanguagePack` for adding or editing a custom language pack. + - Added the method `editCustomLanguagePackInfo` for editing information about a custom language pack. + - Added the method `setCustomLanguagePackString` for adding, editing or deleting a string in a custom language pack. + - Added the method `deleteLanguagePack` for deleting a language pack from the database. + - Added the read-only option `suggested_language_pack_id` containing the identifier of the language pack, + suggested for the user by the server. +* Added support for Telegram Passport: + - Added two new message contents `messagePassportDataSent` for ordinary users and `messagePassportDataReceived` + for bots containing information about Telegram Passport data shared with a bot. + - Added the new file type `fileTypeSecure`. + - Added the class `datedFile` containing information about a file along with the date it was uploaded. + - Added the helper classes `date`, `personalDetails`, `identityDocument`, `inputIdentityDocument`, + `personalDocument`, `inputPersonalDocument`, `passportElements`. + - Added the class `PassportElementType` describing all supported types of Telegram Passport elements. + - Added the class `PassportElement` containing information about a Telegram Passport element. + - Added the class `InputPassportElement` containing information about a Telegram Passport element to save. + - Added the classes `passportElementError` and `PassportElementErrorSource` describing an error in + a Telegram Passport element. + - Added the field `has_passport_data` to the `passwordState` class. + - Added the methods `getPassportElement`, `getAllPassportElements`, `setPassportElement`, `deletePassportElement` + for managing Telegram Passport elements. + - Added the methods `getPassportAuthorizationForm` and `sendPassportAuthorizationForm` used for sharing + Telegram Passport data with a service via a bot. + - Added the methods `sendPhoneNumberVerificationCode`, `resendPhoneNumberVerificationCode` and + `checkPhoneNumberVerificationCode` for verification of a phone number used for Telegram Passport. + - Added the methods `sendEmailAddressVerificationCode`, `resendEmailAddressVerificationCode` and + `checkEmailAddressVerificationCode` for verification of an email address used for Telegram Passport. + - Added the method `getPreferredCountryLanguage` returning a most popular language in a country. + - Added the classes `inputPassportElementError` and `InputPassportElementErrorSource` for bots describing an error in + a Telegram Passport element. + - Added the method `setPassportElementErrors` for bots. + - Added the class `encryptedPassportElement` and `encryptedCredentials` for bots describing + an encrypted Telegram Passport element. +* Improved support for Telegram terms of service: + - Added the class `termsOfService`, containing information about the Telegram terms of service. + - Added the field `terms_of_service` to `authorizationStateWaitCode`. + - Added the update `updateTermsOfService` coming when new terms of service need to be accepted by the user. + - Added the method `acceptTermsOfService` for accepting terms of service. + - Removed the method `getTermsOfService`. +* Added the method `getMapThumbnailFile` which can be used to register and download a map thumbnail file. +* Added the methods `sendPhoneNumberConfirmationCode`, `resendPhoneNumberConfirmationCode` and + `checkPhoneNumberConfirmationCode` which can be used to prevent an account from being deleted. +* Added the convenience methods `joinChat` and `leaveChat` which can be used instead of `setChatMemberStatus` to manage + the current user's membership in a chat. +* Added the convenience method `getContacts` which can be used instead of `searchContacts` to get all contacts. +* Added the synchronous method `cleanFileName` which removes potentially dangerous characters from a file name. +* Added the method `getChatMessageCount` which can be used to get the number of shared media. +* Added the writable option `ignore_inline_thumbnails` which can be used to prevent file thumbnails sent + by the server along with messages from being saved on the disk. +* Added the writable option `prefer_ipv6` which can be used to prefer IPv6 connections over IPv4. +* Added the writable option `disable_top_chats` which can be used to disable support for top chats. +* Added the class `chatReportReasonCopyright` for reporting chats containing infringing content. +* Added the method `clearAllDraftMessages` which can be used to delete all cloud drafts. +* Added the read-only options `message_text_length_max` and `message_caption_length_max`. +* Added the read-only options `animation_search_bot_username`, `photo_search_bot_username` and + `venue_search_bot_username` containing usernames of bots which can be used in inline mode for animations, photos and + venues search respectively. +* Numerous optimizations and bug fixes: + - Fixed string encoding for .NET binding. + - Fixed building TDLib SDK for Universal Windows Platform for ARM with MSVC 2017. + - Fixed the Swift example project. + - Fixed the syntax error in the Python example. + - Sticker thumbnails can now have `webp` extensions if they are more likely to be in WEBP format. + +----------------------------------------------------------------------------------------------------------------------- + +Changes in 1.2.0 (20 Mar 2018): + +* Added support for native .NET bindings through `C++/CLI` and `C++/CX`. + See [using in .NET projects](README.md#using-dotnet) for more details. +* Added a C# example. See [README](example/csharp/README.md) for build and usage instructions. +* Added a build and usage example of TDLib SDK for Universal Windows Platform. See [README](example/uwp/README.md) + for detailed build and usage instructions. Also, see [Unigram](https://github.com/UnigramDev/Unigram), which is + a full-featured client rewritten from scratch using TDLib SDK for Universal Windows Platform in less than 2 months. +* Added a Swift example. See [README](example/swift/README.md) for build and usage instructions. +* Added an example of building TDLib for iOS, watchOS, tvOS, and also macOS. See [README](example/ios/README.md) for + detailed build instructions. +* Added README to [C++](example/cpp/README.md) and [python](example/python/README.md) examples. +* Link Time Optimization is disabled by default. Use `-DTD_ENABLE_LTO=ON` CMake option and CMake >= 3.9 to enable it. +* `updateNotificationSettings` is now automatically sent when the mute time expires for a chat. +* Added automatic sending of a corresponding `chatAction` when a file is being uploaded. +* `updateUserChatAction` with `chatActionCancel` is now automatically sent when the timeout expires for an action. +* Authorization states `authorizationStateWaitCode` and `authorizationStateWaitPassword` are now saved between + library restarts for 5 minutes. +* Added new message content type `messageWebsiteConnected`. +* Added new text entity types `textEntityTypeCashtag` and `textEntityTypePhoneNumber`. +* Added new update `updateUnreadMessageCount`, enabled when message database is used. +* Method `joinChatByInviteLink` now returns the joined `chat`. +* Method `getWebPagePreview` now accepts `formattedText` instead of plain `string`. +* Added field `phone_number` to `authenticationCodeInfo`, which contains a phone number that is being authenticated. +* Added field `is_secret` to `messageAnimation`, `messagePhoto`, `messageVideo` and `messageVideoNote` classes, + which denotes whether the thumbnail for the content must be blurred and the content must be shown only while tapped. +* Added field `expires_in` to `messageLocation` for live locations. +* Added flag `can_be_reported` to `chat` class. +* Added flag `supports_streaming` to classes `video` and `inputMessageVideo`. +* Added parameter `message_ids` to `reportChat`, which can be used to report specific messages. +* Added method `checkChatUsername` for checking whether a username can be set for a chat. +* Added method `getRepliedMessage`, which returns a message that is replied by a given message. +* Added method `getChatPinnedMessage`, which returns the pinned message from a chat. +* Added method `searchStickers` to search by emoji for popular stickers suggested by the server. +* Added method `searchStickerSets` to search by title and name for popular sticker sets suggested by the server. +* Added method `searchInstalledStickerSets` to search by title and name for installed sticker sets. +* Added methods for handling connected websites: `getConnectedWebsites`, `disconnectWebsite` and + `disconnectAllWebsites`. +* Added method `getCountryCode`, which uses current user IP address to identify their country. +* Added option `t_me_url`. +* Fixed `BlackBerry` spelling in `deviceTokenBlackBerryPush`. +* Fixed return type of `getChatMessageByDate` method, which is `Message` and not `Messages`. +* Ensured that updateOption("my_id") comes before `updateAuthorizationState` with `authorizationStateReady`. +* Numerous optimizations and bug fixes. + +----------------------------------------------------------------------------------------------------------------------- + +Changes in 1.1.1 (4 Feb 2018): +* Fixed C JSON bindings compilation error. +* Fixed locale-dependent JSON generation. + +----------------------------------------------------------------------------------------------------------------------- + +Changes in 1.1.0 (31 Jan 2018): + +* Methods `td::Log::set_file_path` and `td_set_log_file_path` now return whether they succeeded. +* Added methods `td::Log::set_max_file_size` and `td_set_log_max_file_size` for restricting maximum TDLib log size. +* Added methods `td::Log::set_fatal_error_callback` and `td_set_log_fatal_error_callback` for providing callbacks + on fatal errors. +* JNI-bindings are now package-agnostic. Use CMake option `TD_ENABLE_JNI` to enable JNI-bindings. +* Added a Java example. See [README](example/java/README.md) for build and usage instructions. +* Added support for text entities in media captions. + - Added new type `formattedText` containing a text with entities. + - Replaced all string fields `caption` with fields of type `formattedText`. + - Replaced fields `text` and `entities` with the field `text` of type `formattedText` in class `messageText`. + - Replaced fields `text` and `entities` with the field `text` of type `formattedText` in class `inputMessageText`. + - Replaced fields `text` and `text_entities` with the field `text` of type `formattedText` in class `game`. + - Removed field `parse_mode` from class `inputMessageText`. + - Added synchronous method `parseTextEntities`. +* updateNewMessage is now sent for all sent messages. +* updateChatLastMessage is now sent when any field of the last message in a chat changes. +* Reworked the `registerDevice` method: + - Added parameter `other_user_ids` to method `registerDevice` to support multiple accounts. + - It is now possible to specify tokens for VoIP pushes, WNS, web Push API, Tizen Push Service as `DeviceToken`. + - Added support for Apple Push Notification Service inside App Sandbox. +* Added method `searchChatsOnServer` analogous to `searchChats`, but using server search. +* Results from the `searchChatsOnServer` method are now excluded from `searchPublicChats` results, + so `searchChatsOnServer` (along with `searchContacts`) should be called whenever `searchPublicChats` is called + to ensure that no results were omitted. +* Added parameter `as_album` to method `getPublicMessageLink` to enable getting public links for media albums. +* Added field `html` to class `publicMessageLink`, containing HTML-code for message/message album embedding. +* Added parameter `only_if_pending` to method `cancelDownloadFile` to allow keeping already started downloads. +* Methods `createPrivateChat`, `createBasicGroupChat`, `createSupergroupChat` and `createSecretChat` + can now be called without a prior call to `getUser`/`getBasicGroup`/`getSupergroup`/`getSecretChat`. +* Added parameter `force` to methods `createPrivateChat`, `createBasicGroupChat` and `createSupergroupChat` to allow + creating a chat without network requests. +* Numerous optimizations and bug fixes. + +----------------------------------------------------------------------------------------------------------------------- diff --git a/third-party/td/td/CMake/AddCXXCompilerFlag.cmake b/third-party/td/td/CMake/AddCXXCompilerFlag.cmake new file mode 100644 index 0000000000..6fb615a1f7 --- /dev/null +++ b/third-party/td/td/CMake/AddCXXCompilerFlag.cmake @@ -0,0 +1,74 @@ +# - Adds a compiler flag if it is supported by the compiler +# +# This function checks that the supplied compiler flag is supported and then +# adds it to the corresponding compiler flags +# +# add_cxx_compiler_flag( []) +# +# - Example +# +# include(AddCXXCompilerFlag) +# add_cxx_compiler_flag(-Wall) +# add_cxx_compiler_flag(-no-strict-aliasing RELEASE) +# Requires CMake 2.6+ + +if (__add_cxx_compiler_flag) + return() +endif() +set(__add_cxx_compiler_flag INCLUDED) + +include(CheckCXXCompilerFlag) + +function(mangle_compiler_flag FLAG OUTPUT) + string(TOUPPER "HAVE_CXX_FLAG_${FLAG}" SANITIZED_FLAG) + string(REPLACE "+" "X" SANITIZED_FLAG ${SANITIZED_FLAG}) + string(REGEX REPLACE "[^A-Za-z_0-9]" "_" SANITIZED_FLAG ${SANITIZED_FLAG}) + string(REGEX REPLACE "_+" "_" SANITIZED_FLAG ${SANITIZED_FLAG}) + set(${OUTPUT} "${SANITIZED_FLAG}" PARENT_SCOPE) +endfunction(mangle_compiler_flag) + +function(add_cxx_compiler_flag FLAG) + string(REPLACE "-Wno-" "-W" MAIN_FLAG ${FLAG}) + mangle_compiler_flag("${MAIN_FLAG}" MANGLED_FLAG_NAME) + if (DEFINED CMAKE_REQUIRED_FLAGS) + set(OLD_CMAKE_REQUIRED_FLAGS "${CMAKE_REQUIRED_FLAGS}") + set(CMAKE_REQUIRED_FLAGS "${CMAKE_REQUIRED_FLAGS} ${FLAG}") + else() + set(CMAKE_REQUIRED_FLAGS "${FLAG}") + endif() + check_cxx_compiler_flag("${MAIN_FLAG}" ${MANGLED_FLAG_NAME}) + if (DEFINED OLD_CMAKE_REQUIRED_FLAGS) + set(CMAKE_REQUIRED_FLAGS "${OLD_CMAKE_REQUIRED_FLAGS}") + else() + unset(CMAKE_REQUIRED_FLAGS) + endif() + if (${MANGLED_FLAG_NAME}) + set(VARIANT ${ARGV1}) + if (ARGV1) + string(TOUPPER "_${VARIANT}" VARIANT) + endif() + set(CMAKE_CXX_FLAGS${VARIANT} "${CMAKE_CXX_FLAGS${VARIANT}} ${FLAG}" PARENT_SCOPE) + endif() +endfunction() + +function(add_required_cxx_compiler_flag FLAG) + string(REPLACE "-Wno-" "-W" MAIN_FLAG ${FLAG}) + mangle_compiler_flag("${MAIN_FLAG}" MANGLED_FLAG_NAME) + set(OLD_CMAKE_REQUIRED_FLAGS "${CMAKE_REQUIRED_FLAGS}") + set(CMAKE_REQUIRED_FLAGS "${CMAKE_REQUIRED_FLAGS} ${FLAG}") + check_cxx_compiler_flag("${MAIN_FLAG}" ${MANGLED_FLAG_NAME}) + set(CMAKE_REQUIRED_FLAGS "${OLD_CMAKE_REQUIRED_FLAGS}") + if (${MANGLED_FLAG_NAME}) + set(VARIANT ${ARGV1}) + if (ARGV1) + string(TOUPPER "_${VARIANT}" VARIANT) + endif() + set(CMAKE_CXX_FLAGS${VARIANT} "${CMAKE_CXX_FLAGS${VARIANT}} ${FLAG}" PARENT_SCOPE) + set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} ${FLAG}" PARENT_SCOPE) + set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} ${FLAG}" PARENT_SCOPE) + set(CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} ${FLAG}" PARENT_SCOPE) + set(CMAKE_REQUIRED_FLAGS "${CMAKE_REQUIRED_FLAGS} ${FLAG}" PARENT_SCOPE) + else() + message(FATAL_ERROR "Required flag '${FLAG}' is not supported by the compiler") + endif() +endfunction() diff --git a/third-party/td/td/CMake/FindAtomics.cmake b/third-party/td/td/CMake/FindAtomics.cmake new file mode 100644 index 0000000000..a855132581 --- /dev/null +++ b/third-party/td/td/CMake/FindAtomics.cmake @@ -0,0 +1,62 @@ +# Original issue: +# * https://gitlab.kitware.com/cmake/cmake/-/issues/23021#note_1098733 +# +# For reference: +# * https://gcc.gnu.org/wiki/Atomic/GCCMM +# +# riscv64 specific: +# * https://lists.debian.org/debian-riscv/2022/01/msg00009.html +# +# ATOMICS_FOUND - system has C++ atomics +# ATOMICS_LIBRARIES - libraries needed to use C++ atomics + +if (ATOMICS_FOUND) + return() +endif() + +include(CheckCXXSourceCompiles) + +# RISC-V only has 32-bit and 64-bit atomic instructions. GCC is supposed +# to convert smaller atomics to those larger ones via masking and +# shifting like LLVM, but it's a known bug that it does not. This means +# anything that wants to use atomics on 1-byte or 2-byte types needs +# to link atomic library, but not 4-byte or 8-byte (though it does no harm). +set(ATOMIC_CODE + " + #include + #include + std::atomic n8{0}; // riscv64 + std::atomic n64{0}; // armel, mipsel, powerpc + int main() { + ++n8; + ++n64; + }") + +set(ATOMICS_LIBS " " "-latomic") +if (CMAKE_SYSTEM_NAME MATCHES "NetBSD") + set(ATOMICS_LIBS "${ATOMICS_LIBS}" /usr/pkg/gcc12/x86_64--netbsd/lib/libatomic.so /usr/pkg/gcc12/i486--netbsdelf/lib/libatomic.so) +endif() + +foreach (ATOMICS_LIBRARY ${ATOMICS_LIBS}) + unset(ATOMICS_FOUND CACHE) + set(CMAKE_REQUIRED_LIBRARIES "${ATOMICS_LIBRARY}") + check_cxx_source_compiles("${ATOMIC_CODE}" ATOMICS_FOUND) + unset(CMAKE_REQUIRED_LIBRARIES) + if (ATOMICS_FOUND) + if (NOT ATOMICS_LIBRARY STREQUAL " ") + include(FindPackageHandleStandardArgs) + find_package_handle_standard_args(Atomics DEFAULT_MSG ATOMICS_LIBRARY) + set(ATOMICS_LIBRARIES "${ATOMICS_LIBRARY}" CACHE STRING "Atomic library" FORCE) + else() + set(ATOMICS_LIBRARIES "" CACHE STRING "Atomic operations library" FORCE) + endif() + break() + endif() +endforeach() +if (Atomics_FIND_REQUIRED AND NOT ATOMICS_FOUND) + message(FATAL_ERROR "Atomic operations library isn't found.") +endif() + +unset(ATOMICS_LIBRARY) +unset(ATOMICS_LIBS) +unset(ATOMIC_CODE) diff --git a/third-party/td/td/CMake/FindReadline.cmake b/third-party/td/td/CMake/FindReadline.cmake new file mode 100644 index 0000000000..94b92ef558 --- /dev/null +++ b/third-party/td/td/CMake/FindReadline.cmake @@ -0,0 +1,25 @@ +if (APPLE) + find_path(READLINE_INCLUDE_DIR readline/readline.h /opt/homebrew/opt/readline/include /usr/local/opt/readline/include /opt/local/include /opt/include /usr/local/include /usr/include NO_DEFAULT_PATH) +endif() +find_path(READLINE_INCLUDE_DIR readline/readline.h) + +if (APPLE) + find_library(READLINE_LIBRARY readline /opt/homebrew/opt/readline/lib /usr/local/opt/readline/lib /opt/local/lib /opt/lib /usr/local/lib /usr/lib NO_DEFAULT_PATH) +endif() +find_library(READLINE_LIBRARY readline) + +if (READLINE_INCLUDE_DIR AND READLINE_LIBRARY AND NOT GNU_READLINE_FOUND) + set(CMAKE_REQUIRED_INCLUDES "${READLINE_INCLUDE_DIR}") + set(CMAKE_REQUIRED_LIBRARIES "${READLINE_LIBRARY}") + include(CheckCXXSourceCompiles) + unset(GNU_READLINE_FOUND CACHE) + check_cxx_source_compiles("#include \n#include \nint main() { rl_replace_line(\"\", 0); }" GNU_READLINE_FOUND) + if (NOT GNU_READLINE_FOUND) + unset(READLINE_INCLUDE_DIR CACHE) + unset(READLINE_LIBRARY CACHE) + endif() +endif() + +include(FindPackageHandleStandardArgs) +find_package_handle_standard_args(Readline DEFAULT_MSG READLINE_INCLUDE_DIR READLINE_LIBRARY) +mark_as_advanced(READLINE_INCLUDE_DIR READLINE_LIBRARY) diff --git a/third-party/td/td/CMake/GeneratePkgConfig.cmake b/third-party/td/td/CMake/GeneratePkgConfig.cmake new file mode 100644 index 0000000000..3d3fa01d1f --- /dev/null +++ b/third-party/td/td/CMake/GeneratePkgConfig.cmake @@ -0,0 +1,99 @@ +function(get_relative_link OUTPUT PATH) + if (PATH MATCHES "^[$]<[$]:") + set(${OUTPUT} "" PARENT_SCOPE) + return() + endif() + string(REGEX REPLACE "^[$]<[$]>:(.*)>$" "\\1" PATH "${PATH}") + + get_filename_component(NAME "${PATH}" NAME_WE) + if (IS_ABSOLUTE ${PATH}) + get_filename_component(DIRECTORY_NAME "${PATH}" DIRECTORY) + if (WIN32) + set(${OUTPUT} "-l\"${DIRECTORY_NAME}/${NAME}\"" PARENT_SCOPE) + else() + get_filename_component(FULL_NAME "${PATH}" NAME) + set(${OUTPUT} "-L\"${DIRECTORY_NAME}\" -l:${FULL_NAME}" PARENT_SCOPE) + endif() + return() + endif() + + if (NOT WIN32 AND NAME MATCHES "^lib") + string(REGEX REPLACE "^lib" "-l" LINK "${NAME}") + elseif (NAME MATCHES "^-") + set(LINK "${NAME}") + else() + string(CONCAT LINK "-l" "${NAME}") + endif() + set(${OUTPUT} "${LINK}" PARENT_SCOPE) +endfunction() + +function(generate_pkgconfig TARGET DESCRIPTION) + # message("Generating pkg-config for ${TARGET}") + get_filename_component(PREFIX "${CMAKE_INSTALL_PREFIX}" REALPATH) + + get_target_property(LIST "${TARGET}" LINK_LIBRARIES) + set(REQS "") + set(LIBS "") + foreach (LIB ${LIST}) + if (TARGET "${LIB}") + set(HAS_REQS 1) + list(APPEND REQS "${LIB}") + else() + set(HAS_LIBS 1) + get_relative_link(LINK "${LIB}") + if (NOT LINK EQUAL "") + list(APPEND LIBS "${LINK}") + endif() + endif() + endforeach() + + if (HAS_REQS) + set(REQUIRES "") + foreach (REQ ${REQS}) + set(REQUIRES "${REQUIRES} ${REQ}") + endforeach() + set(REQUIRES "Requires.private:${REQUIRES}\n") + endif() + if (HAS_LIBS) + set(LIBRARIES "") + list(REVERSE LIBS) + list(REMOVE_DUPLICATES LIBS) + foreach (LIB ${LIBS}) + set(LIBRARIES " ${LIB}${LIBRARIES}") + endforeach() + set(LIBRARIES "Libs.private:${LIBRARIES}\n") + endif() + + if (IS_ABSOLUTE "${CMAKE_INSTALL_INCLUDEDIR}") + set(PKGCONFIG_INCLUDEDIR "${CMAKE_INSTALL_INCLUDEDIR}") + else() + set(PKGCONFIG_INCLUDEDIR "\${prefix}/${CMAKE_INSTALL_INCLUDEDIR}") + endif() + + if (IS_ABSOLUTE "${CMAKE_INSTALL_LIBDIR}") + set(PKGCONFIG_LIBDIR "${CMAKE_INSTALL_LIBDIR}") + else() + set(PKGCONFIG_LIBDIR "\${prefix}/${CMAKE_INSTALL_LIBDIR}") + endif() + + file(MAKE_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/pkgconfig") + file(GENERATE OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/pkgconfig/${TARGET}.pc" CONTENT +"prefix=${PREFIX} + +Name: ${TARGET} +Description: ${DESCRIPTION} +Version: ${PROJECT_VERSION} + +CFlags: -I\"${PKGCONFIG_INCLUDEDIR}\" +Libs: -L\"${PKGCONFIG_LIBDIR}\" -l${TARGET} +${REQUIRES}${LIBRARIES}") + + get_target_property(LIBRARY_TYPE "${TARGET}" TYPE) + if (LIBRARY_TYPE STREQUAL "STATIC_LIBRARY" OR LIBRARY_TYPE STREQUAL "SHARED_LIBRARY") + install(FILES "${CMAKE_CURRENT_BINARY_DIR}/pkgconfig/${TARGET}.pc" DESTINATION "${CMAKE_INSTALL_LIBDIR}/pkgconfig") + elseif (LIBRARY_TYPE STREQUAL "INTERFACE_LIBRARY") + # TODO: support interface libraries + else() + message(FATAL_ERROR "Don't know how to handle ${TARGET} of type ${LIBRARY_TYPE}") + endif() +endfunction() diff --git a/third-party/td/td/CMake/GetGitRevisionDescription.cmake b/third-party/td/td/CMake/GetGitRevisionDescription.cmake new file mode 100644 index 0000000000..746c29d583 --- /dev/null +++ b/third-party/td/td/CMake/GetGitRevisionDescription.cmake @@ -0,0 +1,127 @@ +# - Returns a version string from Git +# +# These functions force a re-configure on each git commit so that you can +# trust the values of the variables in your build system. +# +# get_git_head_revision( ) +# +# Requires CMake 2.6 or newer (uses the 'function' command) +# +# Original Author: +# 2009-2020 Ryan Pavlik +# http://academic.cleardefinition.com +# +# Copyright 2009-2013, Iowa State University. +# Copyright 2013-2020, Ryan Pavlik +# Copyright 2013-2020, Contributors +# SPDX-License-Identifier: BSL-1.0 +# 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) + +if (__get_git_revision_description) + return() +endif() +set(__get_git_revision_description YES) + +# We must run the following at "include" time, not at function call time, +# to find the path to this module rather than the path to a calling list file +get_filename_component(_gitdescmoddir ${CMAKE_CURRENT_LIST_FILE} PATH) + +# Function _git_find_closest_git_dir finds the next closest .git directory +# that is part of any directory in the path defined by _start_dir. +# The result is returned in the parent scope variable whose name is passed +# as variable _git_dir_var. If no .git directory can be found, the +# function returns an empty string via _git_dir_var. +# +# Example: Given a path C:/bla/foo/bar and assuming C:/bla/.git exists and +# neither foo nor bar contain a file/directory .git. This will return +# C:/bla/.git +# +function(_git_find_closest_git_dir _start_dir _git_dir_var) + set(cur_dir "${_start_dir}") + set(git_dir "${_start_dir}/.git") + while (NOT EXISTS "${git_dir}") + # .git dir not found, search parent directories + set(git_previous_parent "${cur_dir}") + get_filename_component(cur_dir "${cur_dir}" DIRECTORY) + if (cur_dir STREQUAL git_previous_parent) + # We have reached the root directory, we are not in git + set(${_git_dir_var} "" PARENT_SCOPE) + return() + endif() + set(git_dir "${cur_dir}/.git") + endwhile() + set(${_git_dir_var} "${git_dir}" PARENT_SCOPE) +endfunction() + +function(get_git_head_revision _refspecvar _hashvar) + _git_find_closest_git_dir("${CMAKE_CURRENT_SOURCE_DIR}" GIT_DIR) + + if (NOT GIT_DIR STREQUAL "") + file(RELATIVE_PATH _relative_to_source_dir "${CMAKE_CURRENT_SOURCE_DIR}" "${GIT_DIR}") + if (_relative_to_source_dir MATCHES "^[.][.]") + # We've gone above the CMake root dir. + set(GIT_DIR "") + endif() + endif() + if (GIT_DIR STREQUAL "") + set(${_refspecvar} "GITDIR-NOTFOUND" PARENT_SCOPE) + set(${_hashvar} "GITDIR-NOTFOUND" PARENT_SCOPE) + return() + endif() + + find_package(Git QUIET) + + # Check if the current source dir is a git submodule or a worktree. + # In both cases .git is a file instead of a directory. + # + if ((NOT IS_DIRECTORY ${GIT_DIR}) AND Git_FOUND) + # The following git command will return a non empty string that + # points to the super project working tree if the current + # source dir is inside a git submodule. + # Otherwise, the command will return an empty string. + # + execute_process( + COMMAND "${GIT_EXECUTABLE}" rev-parse --show-superproject-working-tree + WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}" + OUTPUT_VARIABLE out + ERROR_QUIET OUTPUT_STRIP_TRAILING_WHITESPACE) + if (NOT out STREQUAL "") + # If out is non-empty, GIT_DIR/CMAKE_CURRENT_SOURCE_DIR is in a submodule + file(READ ${GIT_DIR} submodule) + string(REGEX REPLACE "gitdir: (.*)$" "\\1" GIT_DIR_RELATIVE ${submodule}) + string(STRIP ${GIT_DIR_RELATIVE} GIT_DIR_RELATIVE) + get_filename_component(SUBMODULE_DIR ${GIT_DIR} PATH) + get_filename_component(GIT_DIR ${SUBMODULE_DIR}/${GIT_DIR_RELATIVE} ABSOLUTE) + set(HEAD_SOURCE_FILE "${GIT_DIR}/HEAD") + else() + # GIT_DIR/CMAKE_CURRENT_SOURCE_DIR is in a worktree + file(READ ${GIT_DIR} worktree_ref) + # The .git directory contains a path to the worktree information directory + # inside the parent git repo of the worktree. + string(REGEX REPLACE "gitdir: (.*)$" "\\1" git_worktree_dir ${worktree_ref}) + string(STRIP ${git_worktree_dir} git_worktree_dir) + _git_find_closest_git_dir("${git_worktree_dir}" GIT_DIR) + set(HEAD_SOURCE_FILE "${git_worktree_dir}/HEAD") + endif() + else() + set(HEAD_SOURCE_FILE "${GIT_DIR}/HEAD") + endif() + if (NOT EXISTS "${HEAD_SOURCE_FILE}") + return() + endif() + + set(GIT_DATA "${CMAKE_CURRENT_BINARY_DIR}/CMakeFiles/git-data") + if (NOT EXISTS "${GIT_DATA}") + file(MAKE_DIRECTORY "${GIT_DATA}") + endif() + set(HEAD_FILE "${GIT_DATA}/HEAD") + configure_file("${HEAD_SOURCE_FILE}" "${HEAD_FILE}" COPYONLY) + + configure_file("${_gitdescmoddir}/GetGitRevisionDescription.cmake.in" "${GIT_DATA}/grabRef.cmake" @ONLY) + include("${GIT_DATA}/grabRef.cmake") + + set(${_refspecvar} "${HEAD_REF}" PARENT_SCOPE) + set(${_hashvar} "${HEAD_HASH}" PARENT_SCOPE) +endfunction() diff --git a/third-party/td/td/CMake/GetGitRevisionDescription.cmake.in b/third-party/td/td/CMake/GetGitRevisionDescription.cmake.in new file mode 100644 index 0000000000..bfc1e54c15 --- /dev/null +++ b/third-party/td/td/CMake/GetGitRevisionDescription.cmake.in @@ -0,0 +1,43 @@ +# +# Internal file for GetGitRevisionDescription.cmake +# +# Requires CMake 2.6 or newer (uses the 'function' command) +# +# Original Author: +# 2009-2010 Ryan Pavlik +# http://academic.cleardefinition.com +# Iowa State University HCI Graduate Program/VRAC +# +# Copyright 2009-2012, Iowa State University +# Copyright 2011-2015, Contributors +# 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) +# SPDX-License-Identifier: BSL-1.0 + +set(HEAD_HASH) + +file(READ "@HEAD_FILE@" HEAD_CONTENTS LIMIT 1024) + +string(STRIP "${HEAD_CONTENTS}" HEAD_CONTENTS) +if (HEAD_CONTENTS MATCHES "ref") + # named branch + string(REPLACE "ref: " "" HEAD_REF "${HEAD_CONTENTS}") + if (EXISTS "@GIT_DIR@/${HEAD_REF}") + configure_file("@GIT_DIR@/${HEAD_REF}" "@GIT_DATA@/head-ref" COPYONLY) + else() + configure_file("@GIT_DIR@/packed-refs" "@GIT_DATA@/packed-refs" COPYONLY) + file(READ "@GIT_DATA@/packed-refs" PACKED_REFS) + if (PACKED_REFS MATCHES "([0-9a-z]*) ${HEAD_REF}") + set(HEAD_HASH "${CMAKE_MATCH_1}") + endif() + endif() +else() + # detached HEAD + configure_file("@GIT_DIR@/HEAD" "@GIT_DATA@/head-ref" COPYONLY) +endif() + +if (NOT HEAD_HASH) + file(READ "@GIT_DATA@/head-ref" HEAD_HASH LIMIT 1024) + string(STRIP "${HEAD_HASH}" HEAD_HASH) +endif() diff --git a/third-party/td/td/CMake/PreventInSourceBuild.cmake b/third-party/td/td/CMake/PreventInSourceBuild.cmake new file mode 100644 index 0000000000..1815e82a25 --- /dev/null +++ b/third-party/td/td/CMake/PreventInSourceBuild.cmake @@ -0,0 +1,14 @@ +function(prevent_in_source_build) + get_filename_component(REAL_SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}" REALPATH) + get_filename_component(REAL_BINARY_DIR "${CMAKE_CURRENT_BINARY_DIR}" REALPATH) + + if (REAL_BINARY_DIR STREQUAL REAL_SOURCE_DIR) + message(" Out-of-source build must be used. Remove the files already") + message(" created by CMake and rerun CMake from a new directory:") + message(" rm -rf CMakeFiles CMakeCache.txt") + message(" mkdir build") + message(" cd build") + message(" cmake ..") + message(FATAL_ERROR "In-source build failed.") + endif() +endfunction() diff --git a/third-party/td/td/CMake/TdSetUpCompiler.cmake b/third-party/td/td/CMake/TdSetUpCompiler.cmake new file mode 100644 index 0000000000..a1937c2eb4 --- /dev/null +++ b/third-party/td/td/CMake/TdSetUpCompiler.cmake @@ -0,0 +1,185 @@ +# Configures C++17 compiler, setting TDLib-specific compilation options. + +function(td_set_up_compiler) + set(CMAKE_EXPORT_COMPILE_COMMANDS 1 PARENT_SCOPE) + + set(CMAKE_POSITION_INDEPENDENT_CODE ON PARENT_SCOPE) + + include(illumos) + + if (CMAKE_CXX_COMPILER_ID STREQUAL "GNU") + set(GCC 1) + set(GCC 1 PARENT_SCOPE) + elseif (CMAKE_CXX_COMPILER_ID MATCHES "Clang") + set(CLANG 1) + set(CLANG 1 PARENT_SCOPE) + elseif (CMAKE_CXX_COMPILER_ID STREQUAL "Intel") + set(INTEL 1) + set(INTEL 1 PARENT_SCOPE) + elseif (NOT MSVC) + message(FATAL_ERROR "Compiler isn't supported") + endif() + + include(CheckCXXCompilerFlag) + + if (GCC OR CLANG OR INTEL) + if (WIN32 AND INTEL) + set(STD17_FLAG /Qstd=c++17) + else() + set(STD17_FLAG -std=c++17) + endif() + if (GCC AND (CMAKE_CXX_COMPILER_VERSION VERSION_LESS 7.0)) + message(FATAL_ERROR "No C++17 support in the compiler. Please upgrade the compiler to at least GCC 7.0.") + endif() + if (CLANG AND (CMAKE_CXX_COMPILER_VERSION VERSION_LESS 5.0)) + message(FATAL_ERROR "No C++17 support in the compiler. Please upgrade the compiler to at least clang 5.0.") + endif() + check_cxx_compiler_flag(${STD17_FLAG} HAVE_STD17) + elseif (MSVC) + set(HAVE_STD17 MSVC_VERSION>=1914) # MSVC 2017 version 15.7 + endif() + + if (NOT HAVE_STD17) + message(FATAL_ERROR "No C++17 support in the compiler. Please upgrade the compiler.") + endif() + + if (MSVC) + if (CMAKE_CXX_FLAGS_DEBUG MATCHES "/RTC1") + string(REPLACE "/RTC1" " " CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG}") + endif() + add_definitions(-D_SCL_SECURE_NO_WARNINGS -D_CRT_SECURE_NO_WARNINGS) + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /std:c++17 /utf-8 /GR- /W4 /wd4100 /wd4127 /wd4324 /wd4505 /wd4814 /wd4702 /bigobj") + elseif (CLANG OR GCC) + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${STD17_FLAG} -fno-omit-frame-pointer -fno-exceptions -fno-rtti") + if (APPLE) + set(TD_LINKER_FLAGS "-Wl,-dead_strip") + if (NOT CMAKE_BUILD_TYPE MATCHES "Deb") + set(TD_LINKER_FLAGS "${TD_LINKER_FLAGS},-x,-S") + endif() + else() + set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -ffunction-sections -fdata-sections") + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -ffunction-sections -fdata-sections") + if (CMAKE_SYSTEM_NAME STREQUAL "SunOS") + set(TD_LINKER_FLAGS "-Wl,-z,ignore") + elseif (EMSCRIPTEN) + set(TD_LINKER_FLAGS "-Wl,--gc-sections") + elseif (ANDROID) + set(TD_LINKER_FLAGS "-Wl,--gc-sections -Wl,--exclude-libs,ALL -Wl,--icf=safe") + else() + set(TD_LINKER_FLAGS "-Wl,--gc-sections -Wl,--exclude-libs,ALL") + endif() + endif() + set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} ${TD_LINKER_FLAGS}") + set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} ${TD_LINKER_FLAGS}") + + if (WIN32 OR CYGWIN) + if (GCC) + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wa,-mbig-obj") + endif() + endif() + elseif (INTEL) + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${STD17_FLAG}") + endif() + + if (WIN32) + add_definitions(-DNTDDI_VERSION=0x06020000 -DWINVER=0x0602 -D_WIN32_WINNT=0x0602 -DPSAPI_VERSION=1 -DNOMINMAX -DUNICODE -D_UNICODE -DWIN32_LEAN_AND_MEAN) + endif() + if (CYGWIN) + add_definitions(-D_DEFAULT_SOURCE=1 -DFD_SETSIZE=4096) + endif() + + # _FILE_OFFSET_BITS is broken in Android NDK r15, r15b and r17 and doesn't work prior to Android 7.0 + add_definitions(-D_FILE_OFFSET_BITS=64) + + # _GNU_SOURCE might not be defined by g++ + add_definitions(-D_GNU_SOURCE) + + if (CMAKE_SYSTEM_NAME STREQUAL "SunOS") + set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -lsocket -lnsl") + if (ILLUMOS) + add_definitions(-DTD_ILLUMOS=1) + endif() + endif() + + include(AddCXXCompilerFlag) + if (NOT MSVC) + add_cxx_compiler_flag("-Wall") + add_cxx_compiler_flag("-Wextra") + add_cxx_compiler_flag("-Wimplicit-fallthrough=2") + add_cxx_compiler_flag("-Wpointer-arith") + add_cxx_compiler_flag("-Wcast-qual") + add_cxx_compiler_flag("-Wsign-compare") + add_cxx_compiler_flag("-Wduplicated-branches") + add_cxx_compiler_flag("-Wduplicated-cond") + add_cxx_compiler_flag("-Walloc-zero") + add_cxx_compiler_flag("-Wlogical-op") + add_cxx_compiler_flag("-Wno-tautological-compare") + add_cxx_compiler_flag("-Wpointer-arith") + add_cxx_compiler_flag("-Wvla") + add_cxx_compiler_flag("-Wnon-virtual-dtor") + add_cxx_compiler_flag("-Wno-unused-parameter") + add_cxx_compiler_flag("-Wconversion") + add_cxx_compiler_flag("-Wno-sign-conversion") + add_cxx_compiler_flag("-Wc++17-compat-pedantic") + add_cxx_compiler_flag("-Wdeprecated") + add_cxx_compiler_flag("-Wno-unused-command-line-argument") + add_cxx_compiler_flag("-Qunused-arguments") + add_cxx_compiler_flag("-Wno-unknown-warning-option") + add_cxx_compiler_flag("-Wodr") + add_cxx_compiler_flag("-flto-odr-type-merging") + add_cxx_compiler_flag("-Wno-psabi") + add_cxx_compiler_flag("-Wunused-member-function") + add_cxx_compiler_flag("-Wunused-private-field") + + # add_cxx_compiler_flag("-Werror") + + # add_cxx_compiler_flag("-Wcast-align") + + #std::int32_t <-> int and off_t <-> std::size_t/std::int64_t + # add_cxx_compiler_flag("-Wuseless-cast") + + #external headers like openssl + # add_cxx_compiler_flag("-Wzero-as-null-pointer-constant") + endif() + + if (GCC) + add_cxx_compiler_flag("-Wno-maybe-uninitialized") # too many false positives + endif() + if (WIN32 AND GCC AND NOT (CMAKE_CXX_COMPILER_VERSION VERSION_LESS 8.0)) + # warns about casts of function pointers returned by GetProcAddress + add_cxx_compiler_flag("-Wno-cast-function-type") + endif() + if (GCC AND NOT (CMAKE_CXX_COMPILER_VERSION VERSION_LESS 9.0)) + # warns about a lot of "return std::move", which are not redundant for compilers without fix for DR 1579, i.e. GCC 4.9 or clang 3.8 + # see http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html#1579 + add_cxx_compiler_flag("-Wno-redundant-move") + endif() + if (GCC AND NOT (CMAKE_CXX_COMPILER_VERSION VERSION_LESS 12.0)) + add_cxx_compiler_flag("-Wno-stringop-overflow") # some false positives + endif() + if (CLANG AND (CMAKE_CXX_COMPILER_VERSION VERSION_LESS 3.5)) + # https://stackoverflow.com/questions/26744556/warning-returning-a-captured-reference-from-a-lambda + add_cxx_compiler_flag("-Wno-return-stack-address") + endif() + if (GCC AND (CMAKE_CXX_COMPILER_VERSION VERSION_LESS 13.0)) + # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=104030 + add_cxx_compiler_flag("-Wbidi-chars=none") + endif() + + if (MINGW) + add_cxx_compiler_flag("-ftrack-macro-expansion=0") + endif() + + #set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -isystem /usr/include/c++/v1") + #set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -stdlib=libc++") + #set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fsanitize=thread") + #set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fsanitize=address") + #set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fsanitize=undefined") + #set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fsanitize=leak") + + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}" PARENT_SCOPE) + set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG}" PARENT_SCOPE) + set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS}" PARENT_SCOPE) + set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS}" PARENT_SCOPE) + set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS}" PARENT_SCOPE) +endfunction() diff --git a/third-party/td/td/CMake/iOS.cmake b/third-party/td/td/CMake/iOS.cmake new file mode 100644 index 0000000000..0bdbe7505a --- /dev/null +++ b/third-party/td/td/CMake/iOS.cmake @@ -0,0 +1,278 @@ +# This file is based off of the Platform/Darwin.cmake and Platform/UnixPaths.cmake +# files which are included with CMake 2.8.4 +# It has been altered for iOS development + +# Options: +# +# IOS_PLATFORM = OS (default) or SIMULATOR +# This decides if SDKS will be selected from the iPhoneOS.platform or iPhoneSimulator.platform folders +# OS - the default, used to build for iPhone and iPad physical devices, which have an arm arch. +# SIMULATOR - used to build for the Simulator platforms, which have an x86 arch. +# +# IOS_ARCH = automatic(default) or "arch1;arch2" (e.q. "x86_64;arm64") +# By default this value will be automatically chosen based on the IOS_PLATFORM value above. +# If set manually, it will override the default and force to build those architectures only. +# +# CMAKE_IOS_DEVELOPER_ROOT = automatic(default) or /path/to/platform/Developer folder +# By default this location is automatically chosen based on the IOS_PLATFORM value above. +# If set manually, it will override the default location and force the user of a particular Developer Platform +# +# CMAKE_IOS_SDK_ROOT = automatic(default) or /path/to/platform/Developer/SDKs/SDK folder +# By default this location is automatically chosen based on the CMAKE_IOS_DEVELOPER_ROOT value. +# In this case it will always be the most up-to-date SDK found in the CMAKE_IOS_DEVELOPER_ROOT path. +# If set manually, this will force the use of a specific SDK version + +# Macros: +# +# set_xcode_property (TARGET XCODE_PROPERTY XCODE_VALUE) +# A convenience macro for setting xcode specific properties on targets +# example: set_xcode_property (myioslib IPHONEOS_DEPLOYMENT_TARGET "3.1") +# +# find_host_package (PROGRAM ARGS) +# A macro used to find executable programs on the host system, not within the iOS environment. +# Thanks to the android-cmake project for providing the command + +# Standard settings +set (CMAKE_SYSTEM_NAME Darwin) +set (CMAKE_SYSTEM_VERSION 1) +set (UNIX True) +set (APPLE True) +set (IOS True) + +# Required as of cmake 2.8.10 +set (CMAKE_OSX_DEPLOYMENT_TARGET "" CACHE STRING "Force unset of the deployment target for iOS" FORCE) + +# Determine the cmake host system version so we know where to find the iOS SDKs +find_program (CMAKE_UNAME uname /bin /usr/bin /usr/local/bin) +if (CMAKE_UNAME) + execute_process(COMMAND uname -r OUTPUT_VARIABLE CMAKE_HOST_SYSTEM_VERSION OUTPUT_STRIP_TRAILING_WHITESPACE) + string (REGEX REPLACE "^([0-9]+)\\.([0-9]+).*$" "\\1" DARWIN_MAJOR_VERSION "${CMAKE_HOST_SYSTEM_VERSION}") +endif (CMAKE_UNAME) + +# Force the compilers to gcc for iOS +set (CMAKE_C_COMPILER /usr/bin/gcc) +set (CMAKE_CXX_COMPILER /usr/bin/g++) +set (CMAKE_AR ar CACHE FILEPATH "" FORCE) +set (CMAKE_RANLIB ranlib CACHE FILEPATH "" FORCE) +set (PKG_CONFIG_EXECUTABLE pkg-config CACHE FILEPATH "" FORCE) + +# Setup iOS platform unless specified manually with IOS_PLATFORM +if (NOT DEFINED IOS_PLATFORM) + set (IOS_PLATFORM "OS") +endif (NOT DEFINED IOS_PLATFORM) +set (IOS_PLATFORM ${IOS_PLATFORM} CACHE STRING "Type of iOS Platform") + +# Check the platform selection and setup for developer root +if (IOS_PLATFORM STREQUAL "OS") + set (IOS_PLATFORM_LOCATION "iPhoneOS.platform") + set (XCODE_IOS_PLATFORM ios) + + # This causes the installers to properly locate the output libraries + set (CMAKE_XCODE_EFFECTIVE_PLATFORMS "-iphoneos") + + set (APPLE_IOS True) +elseif (IOS_PLATFORM STREQUAL "SIMULATOR") + set (SIMULATOR_FLAG true) + set (IOS_PLATFORM_LOCATION "iPhoneSimulator.platform") + set (XCODE_IOS_PLATFORM ios-simulator) + + # This causes the installers to properly locate the output libraries + set (CMAKE_XCODE_EFFECTIVE_PLATFORMS "-iphonesimulator") + + set (APPLE_IOS True) +elseif (IOS_PLATFORM STREQUAL "WATCHOS") + set (IOS_PLATFORM_LOCATION "WatchOS.platform") + set (XCODE_IOS_PLATFORM watchos) + + # This causes the installers to properly locate the output libraries + set (CMAKE_XCODE_EFFECTIVE_PLATFORMS "-watchos") + + set (APPLE_WATCH True) +elseif (IOS_PLATFORM STREQUAL "WATCHSIMULATOR") + set (SIMULATOR_FLAG true) + set (IOS_PLATFORM_LOCATION "WatchSimulator.platform") + set (XCODE_IOS_PLATFORM watchos-simulator) + + # This causes the installers to properly locate the output libraries + set (CMAKE_XCODE_EFFECTIVE_PLATFORMS "-watchsimulator") + + set (APPLE_WATCH True) +elseif (IOS_PLATFORM STREQUAL "TVOS") + set (IOS_PLATFORM_LOCATION "AppleTvOS.platform") + set (XCODE_IOS_PLATFORM tvos) + + # This causes the installers to properly locate the output libraries + set (CMAKE_XCODE_EFFECTIVE_PLATFORMS "-appletvos") + + set (APPLE_TV True) +elseif (IOS_PLATFORM STREQUAL "TVSIMULATOR") + set (SIMULATOR_FLAG true) + set (IOS_PLATFORM_LOCATION "AppleTvSimulator.platform") + set (XCODE_IOS_PLATFORM tvos-simulator) + + # This causes the installers to properly locate the output libraries + set (CMAKE_XCODE_EFFECTIVE_PLATFORMS "-tvsimulator") + + set (APPLE_TV True) +elseif (IOS_PLATFORM STREQUAL "VISIONOS") + set (IOS_PLATFORM_LOCATION "XROS.platform") + set (XCODE_IOS_PLATFORM xros) + + # This causes the installers to properly locate the output libraries + set (CMAKE_XCODE_EFFECTIVE_PLATFORMS "-xros") + + set (APPLE_VISION True) +elseif (IOS_PLATFORM STREQUAL "VISIONSIMULATOR") + set (SIMULATOR_FLAG true) + set (IOS_PLATFORM_LOCATION "XRSimulator.platform") + set (XCODE_IOS_PLATFORM xros-simulator) + + # This causes the installers to properly locate the output libraries + set (CMAKE_XCODE_EFFECTIVE_PLATFORMS "-xrsimulator") + + set (APPLE_VISION True) +else (IOS_PLATFORM STREQUAL "OS") + message (FATAL_ERROR "Unsupported IOS_PLATFORM value selected. Please choose OS, SIMULATOR, or WATCHOS.") +endif () + +# All iOS/Darwin specific settings - some may be redundant +set (CMAKE_SHARED_LIBRARY_PREFIX "lib") +set (CMAKE_SHARED_LIBRARY_SUFFIX ".dylib") +set (CMAKE_SHARED_MODULE_PREFIX "lib") +set (CMAKE_SHARED_MODULE_SUFFIX ".so") +set (CMAKE_MODULE_EXISTS 1) +set (CMAKE_DL_LIBS "") + +set (CMAKE_C_OSX_COMPATIBILITY_VERSION_FLAG "-compatibility_version ") +set (CMAKE_C_OSX_CURRENT_VERSION_FLAG "-current_version ") +set (CMAKE_CXX_OSX_COMPATIBILITY_VERSION_FLAG "${CMAKE_C_OSX_COMPATIBILITY_VERSION_FLAG}") +set (CMAKE_CXX_OSX_CURRENT_VERSION_FLAG "${CMAKE_C_OSX_CURRENT_VERSION_FLAG}") + +if (IOS_DEPLOYMENT_TARGET) + set (XCODE_IOS_PLATFORM_VERSION_FLAGS "-m${XCODE_IOS_PLATFORM}-version-min=${IOS_DEPLOYMENT_TARGET}") +endif() + +set (CMAKE_SHARED_LINKER_FLAGS_INIT "-fapplication-extension") +set (CMAKE_C_FLAGS_INIT "${XCODE_IOS_PLATFORM_VERSION_FLAGS}") +# Hidden visibility is required for cxx on iOS +set (CMAKE_CXX_FLAGS_INIT "${XCODE_IOS_PLATFORM_VERSION_FLAGS} -fvisibility-inlines-hidden") + +set (CMAKE_C_LINK_FLAGS "${XCODE_IOS_PLATFORM_VERSION_FLAGS} -fapplication-extension -Wl,-search_paths_first ${CMAKE_C_LINK_FLAGS}") +set (CMAKE_CXX_LINK_FLAGS "${XCODE_IOS_PLATFORM_VERSION_FLAGS} -fapplication-extension -Wl,-search_paths_first ${CMAKE_CXX_LINK_FLAGS}") + +set (CMAKE_PLATFORM_HAS_INSTALLNAME 1) +set (CMAKE_SHARED_LIBRARY_CREATE_C_FLAGS "-dynamiclib -headerpad_max_install_names") +set (CMAKE_SHARED_MODULE_CREATE_C_FLAGS "-bundle -headerpad_max_install_names") +set (CMAKE_SHARED_MODULE_LOADER_C_FLAG "-Wl,-bundle_loader,") +set (CMAKE_SHARED_MODULE_LOADER_CXX_FLAG "-Wl,-bundle_loader,") +set (CMAKE_FIND_LIBRARY_SUFFIXES ".dylib" ".so" ".a") + +# hack: if a new cmake (which uses CMAKE_INSTALL_NAME_TOOL) runs on an old build tree +# (where install_name_tool was hardcoded) and where CMAKE_INSTALL_NAME_TOOL isn't in the cache +# and still cmake didn't fail in CMakeFindBinUtils.cmake (because it isn't rerun) +# hardcode CMAKE_INSTALL_NAME_TOOL here to install_name_tool, so it behaves as it did before, Alex +if (NOT DEFINED CMAKE_INSTALL_NAME_TOOL) + find_program(CMAKE_INSTALL_NAME_TOOL install_name_tool) +endif (NOT DEFINED CMAKE_INSTALL_NAME_TOOL) + +# Setup iOS deployment target +set (IOS_DEPLOYMENT_TARGET ${IOS_DEPLOYMENT_TARGET} CACHE STRING "Minimum iOS version") + +# Setup iOS developer location unless specified manually with CMAKE_IOS_DEVELOPER_ROOT +# Note Xcode 4.3 changed the installation location, choose the most recent one available +execute_process(COMMAND /usr/bin/xcode-select -print-path OUTPUT_VARIABLE CMAKE_XCODE_DEVELOPER_DIR OUTPUT_STRIP_TRAILING_WHITESPACE) +set (XCODE_POST_43_ROOT "${CMAKE_XCODE_DEVELOPER_DIR}/Platforms/${IOS_PLATFORM_LOCATION}/Developer") +set (XCODE_PRE_43_ROOT "/Developer/Platforms/${IOS_PLATFORM_LOCATION}/Developer") +if (NOT DEFINED CMAKE_IOS_DEVELOPER_ROOT) + if (EXISTS ${XCODE_POST_43_ROOT}) + set (CMAKE_IOS_DEVELOPER_ROOT ${XCODE_POST_43_ROOT}) + elseif (EXISTS ${XCODE_PRE_43_ROOT}) + set (CMAKE_IOS_DEVELOPER_ROOT ${XCODE_PRE_43_ROOT}) + endif (EXISTS ${XCODE_POST_43_ROOT}) +endif (NOT DEFINED CMAKE_IOS_DEVELOPER_ROOT) +set (CMAKE_IOS_DEVELOPER_ROOT ${CMAKE_IOS_DEVELOPER_ROOT} CACHE PATH "Location of iOS Platform") + +# Find and use the most recent iOS sdk unless specified manually with CMAKE_IOS_SDK_ROOT +if (NOT DEFINED CMAKE_IOS_SDK_ROOT) + file (GLOB _CMAKE_IOS_SDKS "${CMAKE_IOS_DEVELOPER_ROOT}/SDKs/*") + if (_CMAKE_IOS_SDKS) + list (SORT _CMAKE_IOS_SDKS) + list (REVERSE _CMAKE_IOS_SDKS) + list (GET _CMAKE_IOS_SDKS 0 CMAKE_IOS_SDK_ROOT) + else (_CMAKE_IOS_SDKS) + message (FATAL_ERROR "No iOS SDK's found in default search path ${CMAKE_IOS_DEVELOPER_ROOT}. Manually set CMAKE_IOS_SDK_ROOT or install the iOS SDK.") + endif (_CMAKE_IOS_SDKS) + message (STATUS "Toolchain using default iOS SDK: ${CMAKE_IOS_SDK_ROOT}") +endif (NOT DEFINED CMAKE_IOS_SDK_ROOT) +set (CMAKE_IOS_SDK_ROOT ${CMAKE_IOS_SDK_ROOT} CACHE PATH "Location of the selected iOS SDK") + +# Set the sysroot default to the most recent SDK +set (CMAKE_OSX_SYSROOT ${CMAKE_IOS_SDK_ROOT} CACHE PATH "Sysroot used for iOS support") + +# Set the architectures unless specified manually with IOS_ARCH +if (NOT DEFINED IOS_ARCH) + if (IOS_PLATFORM STREQUAL "OS") + set (IOS_ARCH "arm64") + elseif (IOS_PLATFORM STREQUAL "SIMULATOR") + set (IOS_ARCH "x86_64;arm64") + elseif (IOS_PLATFORM STREQUAL "WATCHOS") + set (IOS_ARCH "armv7k;arm64_32;arm64") + + # Include C++ Standard Library for Xcode 15 builds. + include_directories(SYSTEM "${CMAKE_IOS_SDK_ROOT}/usr/include/c++/v1") + elseif (IOS_PLATFORM STREQUAL "WATCHSIMULATOR") + set (IOS_ARCH "x86_64;arm64") + + # Include C++ Standard Library for Xcode 15 builds. + include_directories(SYSTEM "${CMAKE_IOS_SDK_ROOT}/usr/include/c++/v1") + elseif (IOS_PLATFORM STREQUAL "TVOS") + set (IOS_ARCH "arm64") + elseif (IOS_PLATFORM STREQUAL "TVSIMULATOR") + set (IOS_ARCH "x86_64;arm64") + elseif (IOS_PLATFORM STREQUAL "VISIONOS") + set (IOS_ARCH "arm64") + elseif (IOS_PLATFORM STREQUAL "VISIONSIMULATOR") + set (IOS_ARCH "x86_64;arm64") + endif() +endif() +message (STATUS "The iOS architectures: ${IOS_ARCH}") + +set (CMAKE_OSX_ARCHITECTURES ${IOS_ARCH} CACHE STRING "Build architecture for iOS") + +# Set the find root to the iOS developer roots and to user defined paths +set (CMAKE_FIND_ROOT_PATH ${CMAKE_IOS_DEVELOPER_ROOT} ${CMAKE_IOS_SDK_ROOT} ${CMAKE_PREFIX_PATH} CACHE STRING "iOS find search path root") + +# default to searching for frameworks first +set (CMAKE_FIND_FRAMEWORK FIRST) + +# set up the default search directories for frameworks +set (CMAKE_SYSTEM_FRAMEWORK_PATH + ${CMAKE_IOS_SDK_ROOT}/System/Library/Frameworks + ${CMAKE_IOS_SDK_ROOT}/System/Library/PrivateFrameworks + ${CMAKE_IOS_SDK_ROOT}/Developer/Library/Frameworks +) + +# only search the iOS sdks, not the remainder of the host filesystem +set (CMAKE_FIND_ROOT_PATH_MODE_PROGRAM ONLY) +set (CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY) +set (CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY) + +# This little macro lets you set any Xcode specific property +macro (set_xcode_property TARGET XCODE_PROPERTY XCODE_VALUE) + set_property (TARGET ${TARGET} PROPERTY XCODE_ATTRIBUTE_${XCODE_PROPERTY} ${XCODE_VALUE}) +endmacro (set_xcode_property) + +# This macro lets you find executable programs on the host system +macro (find_host_package) + set (CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER) + set (CMAKE_FIND_ROOT_PATH_MODE_LIBRARY NEVER) + set (CMAKE_FIND_ROOT_PATH_MODE_INCLUDE NEVER) + set (IOS FALSE) + + find_package(${ARGN}) + + set (IOS TRUE) + set (CMAKE_FIND_ROOT_PATH_MODE_PROGRAM ONLY) + set (CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY) + set (CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY) +endmacro (find_host_package) diff --git a/third-party/td/td/CMake/illumos.cmake b/third-party/td/td/CMake/illumos.cmake new file mode 100644 index 0000000000..70583d1a82 --- /dev/null +++ b/third-party/td/td/CMake/illumos.cmake @@ -0,0 +1,10 @@ +if (CMAKE_SYSTEM_NAME STREQUAL "SunOS") + # + # Determine if the host is running an illumos distribution: + # + execute_process(COMMAND /usr/bin/uname -o OUTPUT_VARIABLE UNAME_O OUTPUT_STRIP_TRAILING_WHITESPACE) + + if (UNAME_O STREQUAL "illumos") + set(ILLUMOS 1) + endif() +endif() diff --git a/third-party/td/td/CMakeLists.txt b/third-party/td/td/CMakeLists.txt new file mode 100644 index 0000000000..46ae3e1e36 --- /dev/null +++ b/third-party/td/td/CMakeLists.txt @@ -0,0 +1,1440 @@ +cmake_minimum_required(VERSION 3.10 FATAL_ERROR) + +project(TDLib VERSION 1.8.46 LANGUAGES CXX C) + +if (NOT DEFINED CMAKE_MODULE_PATH) + set(CMAKE_MODULE_PATH "") +endif() +set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/CMake" "${CMAKE_MODULE_PATH}") + +if (NOT DEFINED CMAKE_INSTALL_LIBDIR) + set(CMAKE_INSTALL_LIBDIR "lib") +endif() +if (NOT DEFINED CMAKE_INSTALL_BINDIR) + set(CMAKE_INSTALL_BINDIR "bin") +endif() +if (NOT DEFINED CMAKE_INSTALL_INCLUDEDIR) + set(CMAKE_INSTALL_INCLUDEDIR "include") +endif() + +if (POLICY CMP0074) + # use environment variables to find libraries + cmake_policy(SET CMP0074 NEW) +endif() + +include(PreventInSourceBuild) +prevent_in_source_build() + +option(TD_INSTALL_STATIC_LIBRARIES "Enable installation of static libraries." ON) +option(TD_INSTALL_SHARED_LIBRARIES "Enable installation of shared libraries." ON) +option(TD_ENABLE_JNI "Use \"ON\" to enable JNI-compatible TDLib API.") +option(TD_ENABLE_DOTNET "Use \"ON\" to enable generation of C++/CLI or C++/CX TDLib API bindings.") +if (NOT CMAKE_CROSSCOMPILING) + option(TD_GENERATE_SOURCE_FILES "Use \"ON\" to just generate TDLib source files.") +endif() + +include(CTest) + +option(TD_ENABLE_LTO "Use \"ON\" to enable Link Time Optimization.") + +if (TD_ENABLE_LTO) + include(CheckIPOSupported) + check_ipo_supported(RESULT IPO_SUPPORTED) + if (IPO_SUPPORTED) + # set_property(DIRECTORY PROPERTY INTERPROCEDURAL_OPTIMIZATION TRUE) do not work? + string(REPLACE ";" " " CXX_FLAGS_IPO "${CMAKE_CXX_COMPILE_OPTIONS_IPO}") + message(STATUS "Use link time optimization CXX options: ${CXX_FLAGS_IPO}") + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${CXX_FLAGS_IPO}") + + string(REPLACE ";" " " C_FLAGS_IPO "${CMAKE_C_COMPILE_OPTIONS_IPO}") + message(STATUS "Use link time optimization C options: ${C_FLAGS_IPO}") + set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${C_FLAGS_IPO}") + + string(REPLACE ";" " " LINK_FLAGS_IPO "${CMAKE_CXX_LINK_OPTIONS_IPO}") + message(STATUS "Use link time optimization linker options: ${LINK_FLAGS_IPO}") + set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} ${LINK_FLAGS_IPO}") + endif() +endif() + +# Configure Ccache if available +find_program(CCACHE_FOUND ccache) +#set(CCACHE_FOUND 0) +if (CCACHE_FOUND) + message(STATUS "Found ccache") + set_property(GLOBAL PROPERTY RULE_LAUNCH_COMPILE ccache) + set_property(GLOBAL PROPERTY RULE_LAUNCH_LINK ccache) +else() + message(STATUS "Could NOT find ccache (this is NOT an error)") +endif() + +set(MEMPROF "" CACHE STRING "Use one of \"ON\", \"FAST\" or \"SAFE\" to enable memory profiling. \ +Works under macOS and Linux when compiled using glibc. \ +In FAST mode stack is unwinded only using frame pointers, which may fail. \ +In SAFE mode stack is unwinded using backtrace function from execinfo.h, which may be very slow. \ +By default both methods are used to achieve the maximum speed and accuracy") + +if (EMSCRIPTEN) + # use prebuilt zlib + set(ZLIB_FOUND 1) + set(ZLIB_LIBRARIES) + set(ZLIB_INCLUDE_DIR) + + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -s ALLOW_MEMORY_GROWTH=1 -s MEMFS_APPEND_TO_TYPED_ARRAYS=1 -s USE_ZLIB=1 -s MODULARIZE=1 \ + -s EXPORT_NAME=\"'createTdwebModule'\" -s WEBSOCKET_URL=\"'wss:#'\" -s EXPORTED_RUNTIME_METHODS=\"['FS','cwrap']\" -lidbfs.js -lworkerfs.js") + set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -s ALLOW_MEMORY_GROWTH=1 -s MEMFS_APPEND_TO_TYPED_ARRAYS=1 -s USE_ZLIB=1 -s MODULARIZE=1 \ + -s EXPORT_NAME=\"'createTdwebModule'\" -s WEBSOCKET_URL=\"'wss:#'\" -s EXPORTED_RUNTIME_METHODS=\"['FS','cwrap']\" -lidbfs.js -lworkerfs.js") + set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -s DEMANGLE_SUPPORT=1 -s ASSERTIONS=1") + set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -s DEMANGLE_SUPPORT=1 -s ASSERTIONS=1") + + set(TD_EMSCRIPTEN td_wasm) + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -s WASM=1 --post-js ${CMAKE_CURRENT_SOURCE_DIR}/post.js") + set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -s WASM=1") +endif() + +if (NOT TD_GENERATE_SOURCE_FILES) + if (NOT OPENSSL_FOUND) + find_package(OpenSSL) + endif() + if (OPENSSL_FOUND) + message(STATUS "Found OpenSSL: ${OPENSSL_INCLUDE_DIR} ${OPENSSL_LIBRARIES}") + endif() +endif() + +set(CMAKE_THREAD_PREFER_PTHREAD ON) +set(THREADS_PREFER_PTHREAD_FLAG ON) +find_package(Threads REQUIRED) + +if (THREADS_HAVE_PTHREAD_ARG) + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pthread") +endif() + +include(TdSetUpCompiler) +td_set_up_compiler() + +if (MSVC) + option(TD_ENABLE_MULTI_PROCESSOR_COMPILATION "Use \"ON\" to enable multi-processor compilation.") + + if (TD_ENABLE_MULTI_PROCESSOR_COMPILATION) + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /MP") + endif() + + if (TD_ENABLE_JNI) + # https://github.com/tdlib/td/issues/2912 + add_definitions(-D_DISABLE_CONSTEXPR_MUTEX_CONSTRUCTOR) + endif() +endif() + +if (CLANG OR GCC) + if (MEMPROF) + include(CheckCXXCompilerFlag) + check_cxx_compiler_flag(-no-pie CXX_NO_PIE_FLAG) + if (CXX_NO_PIE_FLAG) + set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -no-pie") + elseif (APPLE) + set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,-no_pie") + endif() + include(AddCXXCompilerFlag) + add_cxx_compiler_flag("-static-libstdc++") + add_cxx_compiler_flag("-static-libgcc") + endif() +endif() + +include(GetGitRevisionDescription) +get_git_head_revision(TD_GIT_REFSPEC TD_GIT_COMMIT_HASH) +message(STATUS "Git state: ${TD_GIT_COMMIT_HASH}") + +configure_file("${CMAKE_CURRENT_SOURCE_DIR}/td/telegram/GitCommitHash.cpp.in" "${CMAKE_CURRENT_BINARY_DIR}/td/telegram/GitCommitHash.cpp" @ONLY) + +add_subdirectory(tdtl) + +if (TD_GENERATE_SOURCE_FILES) + set(TDUTILS_MIME_TYPE ON CACHE BOOL "" FORCE) + set(TDUTILS_USE_EXTERNAL_DEPENDENCIES OFF CACHE BOOL "" FORCE) +endif() +set(TDUTILS_ENABLE_INSTALL ${TD_INSTALL_STATIC_LIBRARIES} CACHE BOOL "" FORCE) +add_subdirectory(tdutils) + +add_subdirectory(td/generate) + +if (NOT CMAKE_CROSSCOMPILING) + set(TD_ALWAYS_GENERATE_SOURCE "") + if (TD_GENERATE_SOURCE_FILES) + set(TD_ALWAYS_GENERATE_SOURCE "ALL") + endif() + add_custom_target(prepare_cross_compiling ${TD_ALWAYS_GENERATE_SOURCE} DEPENDS tl_generate_mtproto tl_generate_common tdmime_auto tl_generate_json) + if (TD_ENABLE_DOTNET) + add_custom_target(remove_cpp_documentation + WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}" + COMMAND remove_documentation ${TL_TD_API_AUTO_SOURCE} td/telegram/Client.h td/telegram/Log.h td/tl/TlObject.h + COMMENT "Remove C++ documentation from sources" + DEPENDS remove_documentation tl_generate_mtproto tl_generate_common generate_dotnet_api ${TL_TD_API_AUTO_SOURCE} td/telegram/Client.h td/telegram/Log.h td/tl/TlObject.h + ) + + add_dependencies(prepare_cross_compiling generate_dotnet_api remove_cpp_documentation) + endif() +endif() + +if (NOT OPENSSL_FOUND) + if (NOT TD_GENERATE_SOURCE_FILES) + message(WARNING "Can't find OpenSSL: stop TDLib building") + endif() + return() +endif() + +if (NOT ZLIB_FOUND) + find_package(ZLIB) +endif() +if (NOT ZLIB_FOUND) + message(WARNING "Can't find zlib: stop TDLib building") + return() +endif() + +if (NOT TDUTILS_MIME_TYPE OR NOT TDUTILS_USE_EXTERNAL_DEPENDENCIES) + message(WARNING "Option TDUTILS_MIME_TYPE and TDUTILS_USE_EXTERNAL_DEPENDENCIES must not be disabled: stop TDLib building") + return() +endif() + +set(TDACTOR_ENABLE_INSTALL ${TD_INSTALL_STATIC_LIBRARIES} CACHE BOOL "" FORCE) +add_subdirectory(tdactor) + +set(TDNET_ENABLE_INSTALL ${TD_INSTALL_STATIC_LIBRARIES} CACHE BOOL "" FORCE) +add_subdirectory(tdnet) + +set(TDSQLITE_ENABLE_INSTALL ${TD_INSTALL_STATIC_LIBRARIES} CACHE BOOL "" FORCE) +add_subdirectory(sqlite) + +set(TDDB_ENABLE_INSTALL ${TD_INSTALL_STATIC_LIBRARIES} CACHE BOOL "" FORCE) +add_subdirectory(tddb) + +if (BUILD_TESTING) + add_subdirectory(test) +endif() + +set(TDE2E_ENABLE_INSTALL ${TD_INSTALL_STATIC_LIBRARIES} CACHE BOOL "" FORCE) +add_subdirectory(tde2e) + +if (NOT CMAKE_CROSSCOMPILING) + add_subdirectory(benchmark) +endif() + + +get_directory_property(HAS_PARENT PARENT_DIRECTORY) +if (HAS_PARENT) + set(TL_TD_JSON_AUTO ${TL_TD_JSON_AUTO_SOURCE} PARENT_SCOPE) # used in tdbot + set(TD_TEST_SOURCE ${TD_TEST_SOURCE} PARENT_SCOPE) # used to build tests +endif() + + +# SOURCE SETS + +set_source_files_properties(${TL_TD_API_AUTO_SOURCE} PROPERTIES GENERATED TRUE) +if (TD_ENABLE_JNI OR ANDROID) + set(TL_JNI_OBJECT_SOURCE + td/tl/tl_jni_object.cpp + td/tl/tl_jni_object.h + ) +else() + set(TL_JNI_OBJECT_SOURCE) +endif() + +set(TL_TD_API_SOURCE + ${TL_TD_API_AUTO_SOURCE} + ${TL_JNI_OBJECT_SOURCE} + td/tl/TlObject.h +) + +set_source_files_properties(${TL_MTPROTO_AUTO_SOURCE} PROPERTIES GENERATED TRUE) + +set_source_files_properties(${TL_TD_AUTO_SOURCE} PROPERTIES GENERATED TRUE) + +set_source_files_properties(${TL_TD_JSON_AUTO_SOURCE} PROPERTIES GENERATED TRUE) +set(TL_TD_JSON_SOURCE + ${TL_TD_JSON_AUTO_SOURCE} + td/tl/tl_json.h +) + +set_source_files_properties(${TL_C_AUTO_SOURCE} PROPERTIES GENERATED TRUE) +set(TL_C_SCHEME_SOURCE + ${TL_C_AUTO_SOURCE} +) + +set_source_files_properties(${TL_DOTNET_AUTO_SOURCE} PROPERTIES GENERATED TRUE) +set(TL_DOTNET_SCHEME_SOURCE + ${TL_DOTNET_AUTO_SOURCE} + td/tl/tl_dotnet_object.h +) + +set(TD_MTPROTO_SOURCE + td/mtproto/AuthData.cpp + td/mtproto/ConnectionManager.cpp + td/mtproto/DhHandshake.cpp + td/mtproto/Handshake.cpp + td/mtproto/HandshakeActor.cpp + td/mtproto/HttpTransport.cpp + td/mtproto/IStreamTransport.cpp + td/mtproto/KDF.cpp + td/mtproto/Ping.cpp + td/mtproto/PingConnection.cpp + td/mtproto/ProxySecret.cpp + td/mtproto/RawConnection.cpp + td/mtproto/RSA.cpp + td/mtproto/SessionConnection.cpp + td/mtproto/TcpTransport.cpp + td/mtproto/TlsInit.cpp + td/mtproto/TlsReaderByteFlow.cpp + td/mtproto/Transport.cpp + td/mtproto/utils.cpp + + td/mtproto/AuthData.h + td/mtproto/AuthKey.h + td/mtproto/ConnectionManager.h + td/mtproto/CryptoStorer.h + td/mtproto/DhCallback.h + td/mtproto/DhHandshake.h + td/mtproto/Handshake.h + td/mtproto/HandshakeActor.h + td/mtproto/HandshakeConnection.h + td/mtproto/HttpTransport.h + td/mtproto/IStreamTransport.h + td/mtproto/KDF.h + td/mtproto/MessageId.h + td/mtproto/MtprotoQuery.h + td/mtproto/NoCryptoStorer.h + td/mtproto/PacketInfo.h + td/mtproto/PacketStorer.h + td/mtproto/Ping.h + td/mtproto/PingConnection.h + td/mtproto/ProxySecret.h + td/mtproto/RawConnection.h + td/mtproto/RSA.h + td/mtproto/SessionConnection.h + td/mtproto/TcpTransport.h + td/mtproto/TlsInit.h + td/mtproto/TlsReaderByteFlow.h + td/mtproto/Transport.h + td/mtproto/TransportType.h + td/mtproto/utils.h + + ${TL_MTPROTO_AUTO_SOURCE} + + td/tl/TlObject.h + td/tl/tl_object_parse.h + td/tl/tl_object_store.h +) + +set(TDLIB_SOURCE_PART1 + td/telegram/AccountManager.cpp + td/telegram/AffiliateType.cpp + td/telegram/AlarmManager.cpp + td/telegram/AnimationsManager.cpp + td/telegram/Application.cpp + td/telegram/AttachMenuManager.cpp + td/telegram/AudiosManager.cpp + td/telegram/AuthManager.cpp + td/telegram/AutoDownloadSettings.cpp + td/telegram/AutosaveManager.cpp + td/telegram/BackgroundInfo.cpp + td/telegram/BackgroundManager.cpp + td/telegram/BackgroundType.cpp + td/telegram/BaseTheme.cpp + td/telegram/Birthdate.cpp + td/telegram/BoostManager.cpp + td/telegram/BotCommand.cpp + td/telegram/BotCommandScope.cpp + td/telegram/BotInfoManager.cpp + td/telegram/BotMenuButton.cpp + td/telegram/BotQueries.cpp + td/telegram/BotRecommendationManager.cpp + td/telegram/BotVerification.cpp + td/telegram/BotVerifierSettings.cpp + td/telegram/BusinessAwayMessage.cpp + td/telegram/BusinessAwayMessageSchedule.cpp + td/telegram/BusinessBotManageBar.cpp + td/telegram/BusinessChatLink.cpp + td/telegram/BusinessConnectedBot.cpp + td/telegram/BusinessConnectionManager.cpp + td/telegram/BusinessGreetingMessage.cpp + td/telegram/BusinessInfo.cpp + td/telegram/BusinessIntro.cpp + td/telegram/BusinessManager.cpp + td/telegram/BusinessRecipients.cpp + td/telegram/BusinessWorkHours.cpp + td/telegram/CallActor.cpp + td/telegram/CallbackQueriesManager.cpp + td/telegram/CallDiscardReason.cpp + td/telegram/CallManager.cpp + td/telegram/ChannelParticipantFilter.cpp + td/telegram/ChannelRecommendationManager.cpp + td/telegram/ChatManager.cpp + td/telegram/ChatReactions.cpp + td/telegram/ClientActor.cpp + td/telegram/CommonDialogManager.cpp + td/telegram/ConfigManager.cpp + td/telegram/ConnectionState.cpp + td/telegram/ConnectionStateManager.cpp + td/telegram/Contact.cpp + td/telegram/CountryInfoManager.cpp + td/telegram/DelayDispatcher.cpp + td/telegram/Dependencies.cpp + td/telegram/DeviceTokenManager.cpp + td/telegram/DhCache.cpp + td/telegram/DialogAction.cpp + td/telegram/DialogActionBar.cpp + td/telegram/DialogActionManager.cpp + td/telegram/DialogAdministrator.cpp + td/telegram/DialogDb.cpp + td/telegram/DialogEventLog.cpp + td/telegram/DialogFilter.cpp + td/telegram/DialogFilterInviteLink.cpp + td/telegram/DialogFilterManager.cpp + td/telegram/DialogId.cpp + td/telegram/DialogInviteLink.cpp + td/telegram/DialogInviteLinkManager.cpp + td/telegram/DialogLocation.cpp + td/telegram/DialogManager.cpp + td/telegram/DialogNotificationSettings.cpp + td/telegram/DialogParticipant.cpp + td/telegram/DialogParticipantFilter.cpp + td/telegram/DialogParticipantManager.cpp + td/telegram/DialogSource.cpp + td/telegram/Dimensions.cpp + td/telegram/Document.cpp + td/telegram/DocumentsManager.cpp + td/telegram/DownloadManager.cpp + td/telegram/DownloadManagerCallback.cpp + td/telegram/DraftMessage.cpp + td/telegram/EmailVerification.cpp + td/telegram/EmojiGroup.cpp + td/telegram/EmojiGroupType.cpp + td/telegram/EmojiStatus.cpp + td/telegram/FactCheck.cpp + td/telegram/FileReferenceManager.cpp + td/telegram/files/FileBitmask.cpp + td/telegram/files/FileDb.cpp + td/telegram/files/FileDownloader.cpp + td/telegram/files/FileDownloadManager.cpp + td/telegram/files/FileEncryptionKey.cpp + td/telegram/files/FileFromBytes.cpp + td/telegram/files/FileGcParameters.cpp + td/telegram/files/FileGcWorker.cpp + td/telegram/files/FileGenerateManager.cpp + td/telegram/files/FileHashUploader.cpp + td/telegram/files/FileLoaderUtils.cpp + td/telegram/files/FileLoadManager.cpp + td/telegram/files/FileManager.cpp + td/telegram/files/FileStats.cpp + td/telegram/files/FileStatsWorker.cpp + td/telegram/files/FileType.cpp + td/telegram/files/FileUploader.cpp + td/telegram/files/FileUploadManager.cpp + td/telegram/files/PartsManager.cpp + td/telegram/files/ResourceManager.cpp + td/telegram/files/ResourceState.cpp + td/telegram/ForumTopic.cpp + td/telegram/ForumTopicEditedData.cpp + td/telegram/ForumTopicIcon.cpp + td/telegram/ForumTopicInfo.cpp + td/telegram/ForumTopicManager.cpp + td/telegram/Game.cpp + td/telegram/GameManager.cpp + td/telegram/GiveawayParameters.cpp + td/telegram/Global.cpp + td/telegram/GlobalPrivacySettings.cpp + td/telegram/GroupCallManager.cpp + td/telegram/GroupCallParticipant.cpp + td/telegram/GroupCallParticipantOrder.cpp + td/telegram/GroupCallVideoPayload.cpp + td/telegram/HashtagHints.cpp + td/telegram/InlineMessageManager.cpp + td/telegram/InlineQueriesManager.cpp + td/telegram/InputBusinessChatLink.cpp + td/telegram/InputDialogId.cpp + td/telegram/InputGroupCallId.cpp + td/telegram/InputInvoice.cpp + td/telegram/InputMessageText.cpp + td/telegram/JsonValue.cpp + td/telegram/LanguagePackManager.cpp + td/telegram/LinkManager.cpp + td/telegram/Location.cpp + td/telegram/logevent/LogEventHelper.cpp + td/telegram/Logging.cpp + td/telegram/MediaArea.cpp + td/telegram/MediaAreaCoordinates.cpp + td/telegram/MessageContent.cpp + td/telegram/MessageContentType.cpp + td/telegram/MessageDb.cpp + td/telegram/MessageEntity.cpp + td/telegram/MessageExtendedMedia.cpp + td/telegram/MessageForwardInfo.cpp + td/telegram/MessageId.cpp + td/telegram/MessageImportManager.cpp + td/telegram/MessageInputReplyTo.cpp + td/telegram/MessageOrigin.cpp + td/telegram/MessageQueryManager.cpp + td/telegram/MessageQuote.cpp + td/telegram/MessageReaction.cpp + td/telegram/MessageReactor.cpp + td/telegram/MessageReplyHeader.cpp + td/telegram/MessageReplyInfo.cpp + td/telegram/MessageSearchFilter.cpp + td/telegram/MessageSearchOffset.cpp + td/telegram/MessageSelfDestructType.cpp + td/telegram/MessageSender.cpp + td/telegram/MessagesInfo.cpp + td/telegram/MessagesManager.cpp + td/telegram/MessageSource.cpp + td/telegram/MessageThreadDb.cpp + td/telegram/MessageTtl.cpp + td/telegram/MessageViewer.cpp + td/telegram/misc.cpp + td/telegram/MissingInvitee.cpp +) +set(TDLIB_SOURCE_PART2 + td/telegram/net/AuthDataShared.cpp + td/telegram/net/ConnectionCreator.cpp + td/telegram/net/DcAuthManager.cpp + td/telegram/net/DcOptionsSet.cpp + td/telegram/net/MtprotoHeader.cpp + td/telegram/net/NetActor.cpp + td/telegram/net/NetQuery.cpp + td/telegram/net/NetQueryCreator.cpp + td/telegram/net/NetQueryDelayer.cpp + td/telegram/net/NetQueryDispatcher.cpp + td/telegram/net/NetQueryStats.cpp + td/telegram/net/NetQueryVerifier.cpp + td/telegram/net/NetStatsManager.cpp + td/telegram/net/Proxy.cpp + td/telegram/net/PublicRsaKeySharedCdn.cpp + td/telegram/net/PublicRsaKeySharedMain.cpp + td/telegram/net/PublicRsaKeyWatchdog.cpp + td/telegram/net/Session.cpp + td/telegram/net/SessionMultiProxy.cpp + td/telegram/net/SessionProxy.cpp + td/telegram/NewPasswordState.cpp + td/telegram/NotificationGroupInfo.cpp + td/telegram/NotificationGroupType.cpp + td/telegram/NotificationManager.cpp + td/telegram/NotificationSettingsManager.cpp + td/telegram/NotificationSettingsScope.cpp + td/telegram/NotificationSound.cpp + td/telegram/NotificationType.cpp + td/telegram/OnlineManager.cpp + td/telegram/OptionManager.cpp + td/telegram/OrderedMessage.cpp + td/telegram/OrderInfo.cpp + td/telegram/Outline.cpp + td/telegram/PaidReactionType.cpp + td/telegram/PasswordManager.cpp + td/telegram/Payments.cpp + td/telegram/PeerColor.cpp + td/telegram/PeopleNearbyManager.cpp + td/telegram/PhoneNumberManager.cpp + td/telegram/Photo.cpp + td/telegram/PhotoSize.cpp + td/telegram/PhotoSizeSource.cpp + td/telegram/PollManager.cpp + td/telegram/Premium.cpp + td/telegram/PremiumGiftOption.cpp + td/telegram/PrivacyManager.cpp + td/telegram/PromoDataManager.cpp + td/telegram/QueryCombiner.cpp + td/telegram/QueryMerger.cpp + td/telegram/QuickReplyManager.cpp + td/telegram/ReactionListType.cpp + td/telegram/ReactionManager.cpp + td/telegram/ReactionNotificationSettings.cpp + td/telegram/ReactionNotificationsFrom.cpp + td/telegram/ReactionType.cpp + td/telegram/RecentDialogList.cpp + td/telegram/ReferralProgramInfo.cpp + td/telegram/ReferralProgramManager.cpp + td/telegram/ReferralProgramParameters.cpp + td/telegram/ReferralProgramSortOrder.cpp + td/telegram/RepliedMessageInfo.cpp + td/telegram/ReplyMarkup.cpp + td/telegram/ReportReason.cpp + td/telegram/RequestedDialogType.cpp + td/telegram/Requests.cpp + td/telegram/RestrictionReason.cpp + td/telegram/SavedMessagesManager.cpp + td/telegram/SavedMessagesTopicId.cpp + td/telegram/ScopeNotificationSettings.cpp + td/telegram/SecretChatActor.cpp + td/telegram/SecretChatDb.cpp + td/telegram/SecretChatsManager.cpp + td/telegram/SecretInputMedia.cpp + td/telegram/SecureManager.cpp + td/telegram/SecureStorage.cpp + td/telegram/SecureValue.cpp + td/telegram/SendCodeHelper.cpp + td/telegram/SentEmailCode.cpp + td/telegram/SequenceDispatcher.cpp + td/telegram/SharedDialog.cpp + td/telegram/SpecialStickerSetType.cpp + td/telegram/SponsoredMessageManager.cpp + td/telegram/StarAmount.cpp + td/telegram/StarGift.cpp + td/telegram/StarGiftAttribute.cpp + td/telegram/StarGiftId.cpp + td/telegram/StarGiftManager.cpp + td/telegram/StarManager.cpp + td/telegram/StarSubscription.cpp + td/telegram/StarSubscriptionPricing.cpp + td/telegram/StateManager.cpp + td/telegram/StatisticsManager.cpp + td/telegram/StickerFormat.cpp + td/telegram/StickerListType.cpp + td/telegram/StickerMaskPosition.cpp + td/telegram/StickerPhotoSize.cpp + td/telegram/StickerSetId.cpp + td/telegram/StickersManager.cpp + td/telegram/StickerType.cpp + td/telegram/StorageManager.cpp + td/telegram/StoryContent.cpp + td/telegram/StoryContentType.cpp + td/telegram/StoryDb.cpp + td/telegram/StoryForwardInfo.cpp + td/telegram/StoryInteractionInfo.cpp + td/telegram/StoryManager.cpp + td/telegram/StoryStealthMode.cpp + td/telegram/StoryViewer.cpp + td/telegram/SuggestedAction.cpp + td/telegram/SuggestedActionManager.cpp + td/telegram/Support.cpp + td/telegram/SynchronousRequests.cpp + td/telegram/TargetDialogTypes.cpp + td/telegram/Td.cpp + td/telegram/TdDb.cpp + td/telegram/TermsOfService.cpp + td/telegram/TermsOfServiceManager.cpp + td/telegram/ThemeManager.cpp + td/telegram/ThemeSettings.cpp + td/telegram/TimeZoneManager.cpp + td/telegram/TopDialogCategory.cpp + td/telegram/TopDialogManager.cpp + td/telegram/TranscriptionInfo.cpp + td/telegram/TranscriptionManager.cpp + td/telegram/TranslationManager.cpp + td/telegram/UpdatesManager.cpp + td/telegram/UserManager.cpp + td/telegram/Usernames.cpp + td/telegram/UserPrivacySetting.cpp + td/telegram/UserPrivacySettingRule.cpp + td/telegram/UserStarGift.cpp + td/telegram/Venue.cpp + td/telegram/VerificationStatus.cpp + td/telegram/VideoNotesManager.cpp + td/telegram/VideosManager.cpp + td/telegram/VoiceNotesManager.cpp + td/telegram/WebApp.cpp + td/telegram/WebAppManager.cpp + td/telegram/WebAppOpenParameters.cpp + td/telegram/WebPageBlock.cpp + td/telegram/WebPagesManager.cpp + + td/telegram/AccentColorId.h + td/telegram/AccessRights.h + td/telegram/AccountManager.h + td/telegram/AffectedHistory.h + td/telegram/AffiliateType.h + td/telegram/AlarmManager.h + td/telegram/AnimationsManager.h + td/telegram/Application.h + td/telegram/AttachMenuManager.h + td/telegram/AudiosManager.h + td/telegram/AuthManager.h + td/telegram/AutoDownloadSettings.h + td/telegram/AutosaveManager.h + td/telegram/BackgroundId.h + td/telegram/BackgroundInfo.h + td/telegram/BackgroundManager.h + td/telegram/BackgroundType.h + td/telegram/BaseTheme.h + td/telegram/Birthdate.h + td/telegram/BotVerification.h + td/telegram/BotVerifierSettings.h + td/telegram/BlockListId.h + td/telegram/BoostManager.h + td/telegram/BotCommand.h + td/telegram/BotCommandScope.h + td/telegram/BotInfoManager.h + td/telegram/BotMenuButton.h + td/telegram/BotQueries.h + td/telegram/BotRecommendationManager.h + td/telegram/BusinessAwayMessage.h + td/telegram/BusinessAwayMessageSchedule.h + td/telegram/BusinessBotManageBar.h + td/telegram/BusinessChatLink.h + td/telegram/BusinessConnectedBot.h + td/telegram/BusinessConnectionId.h + td/telegram/BusinessConnectionManager.h + td/telegram/BusinessGreetingMessage.h + td/telegram/BusinessInfo.h + td/telegram/BusinessIntro.h + td/telegram/BusinessManager.h + td/telegram/BusinessRecipients.h + td/telegram/BusinessWorkHours.h + td/telegram/CallActor.h + td/telegram/CallbackQueriesManager.h + td/telegram/CallDiscardReason.h + td/telegram/CallId.h + td/telegram/CallManager.h + td/telegram/ChainId.h + td/telegram/ChannelId.h + td/telegram/ChannelParticipantFilter.h + td/telegram/ChannelRecommendationManager.h + td/telegram/ChannelType.h + td/telegram/ChatId.h + td/telegram/ChatManager.h + td/telegram/ChatReactions.h + td/telegram/ClientActor.h + td/telegram/CommonDialogManager.h + td/telegram/ConfigManager.h + td/telegram/ConnectionState.h + td/telegram/ConnectionStateManager.h + td/telegram/Contact.h + td/telegram/CountryInfoManager.h + td/telegram/CustomEmojiId.h + td/telegram/DelayDispatcher.h + td/telegram/Dependencies.h + td/telegram/DeviceTokenManager.h + td/telegram/DhCache.h + td/telegram/DhConfig.h + td/telegram/DialogAction.h + td/telegram/DialogActionBar.h + td/telegram/DialogActionManager.h + td/telegram/DialogAdministrator.h + td/telegram/DialogBoostLinkInfo.h + td/telegram/DialogDate.h + td/telegram/DialogDb.h + td/telegram/DialogEventLog.h + td/telegram/DialogFilter.h + td/telegram/DialogFilterDialogInfo.h + td/telegram/DialogFilterId.h + td/telegram/DialogFilterInviteLink.h + td/telegram/DialogFilterManager.h + td/telegram/DialogId.h + td/telegram/DialogInviteLink.h + td/telegram/DialogInviteLinkManager.h + td/telegram/DialogListId.h + td/telegram/DialogLocation.h + td/telegram/DialogManager.h + td/telegram/DialogNotificationSettings.h + td/telegram/DialogParticipant.h + td/telegram/DialogParticipantFilter.h + td/telegram/DialogParticipantManager.h + td/telegram/DialogSource.h + td/telegram/Dimensions.h + td/telegram/Document.h + td/telegram/DocumentsManager.h + td/telegram/DownloadManager.h + td/telegram/DownloadManagerCallback.h + td/telegram/DraftMessage.h + td/telegram/EmailVerification.h + td/telegram/EmojiGroup.h + td/telegram/EmojiGroupType.h + td/telegram/EmojiStatus.h + td/telegram/EncryptedFile.h + td/telegram/FactCheck.h + td/telegram/FileReferenceManager.h + td/telegram/files/FileBitmask.h + td/telegram/files/FileData.h + td/telegram/files/FileDb.h + td/telegram/files/FileDbId.h + td/telegram/files/FileDownloader.h + td/telegram/files/FileDownloadManager.h + td/telegram/files/FileEncryptionKey.h + td/telegram/files/FileFromBytes.h + td/telegram/files/FileGcParameters.h + td/telegram/files/FileGcWorker.h + td/telegram/files/FileGenerateManager.h + td/telegram/files/FileHashUploader.h + td/telegram/files/FileId.h + td/telegram/files/FileLoaderActor.h + td/telegram/files/FileLoaderUtils.h + td/telegram/files/FileLoadManager.h + td/telegram/files/FileLocation.h + td/telegram/files/FileManager.h + td/telegram/files/FileSourceId.h + td/telegram/files/FileStats.h + td/telegram/files/FileStatsWorker.h + td/telegram/files/FileType.h + td/telegram/files/FileUploader.h + td/telegram/files/FileUploadId.h + td/telegram/files/FileUploadManager.h + td/telegram/files/PartsManager.h + td/telegram/files/ResourceManager.h + td/telegram/files/ResourceState.h + td/telegram/FolderId.h + td/telegram/ForumTopic.h + td/telegram/ForumTopicEditedData.h + td/telegram/ForumTopicIcon.h + td/telegram/ForumTopicInfo.h + td/telegram/ForumTopicManager.h + td/telegram/Game.h + td/telegram/GameManager.h + td/telegram/GitCommitHash.h + td/telegram/GiveawayParameters.h + td/telegram/Global.h + td/telegram/GlobalPrivacySettings.h + td/telegram/GroupCallId.h + td/telegram/GroupCallManager.h + td/telegram/GroupCallParticipant.h + td/telegram/GroupCallParticipantOrder.h + td/telegram/GroupCallVideoPayload.h + td/telegram/HashtagHints.h + td/telegram/InlineMessageManager.h + td/telegram/InlineQueriesManager.h + td/telegram/InputBusinessChatLink.h + td/telegram/InputDialogId.h + td/telegram/InputGroupCallId.h + td/telegram/InputInvoice.h + td/telegram/InputMessageText.h + td/telegram/JsonValue.h + td/telegram/LabeledPricePart.h + td/telegram/LanguagePackManager.h + td/telegram/LinkManager.h + td/telegram/Location.h + td/telegram/logevent/LogEvent.h + td/telegram/logevent/LogEventHelper.h + td/telegram/logevent/SecretChatEvent.h + td/telegram/Logging.h + td/telegram/MediaArea.h + td/telegram/MediaAreaCoordinates.h + td/telegram/MessageContent.h + td/telegram/MessageContentType.h + td/telegram/MessageCopyOptions.h + td/telegram/MessageDb.h + td/telegram/MessageEffectId.h + td/telegram/MessageEntity.h + td/telegram/MessageExtendedMedia.h + td/telegram/MessageForwardInfo.h + td/telegram/MessageFullId.h + td/telegram/MessageId.h + td/telegram/MessageImportManager.h + td/telegram/MessageInputReplyTo.h + td/telegram/MessageLinkInfo.h + td/telegram/MessageOrigin.h + td/telegram/MessageQueryManager.h + td/telegram/MessageQuote.h + td/telegram/MessageReaction.h + td/telegram/MessageReactor.h + td/telegram/MessageReplyHeader.h + td/telegram/MessageReplyInfo.h + td/telegram/MessageSearchFilter.h + td/telegram/MessageSearchOffset.h + td/telegram/MessageSelfDestructType.h + td/telegram/MessageSender.h + td/telegram/MessagesInfo.h + td/telegram/MessagesManager.h + td/telegram/MessageSource.h + td/telegram/MessageThreadDb.h + td/telegram/MessageThreadInfo.h + td/telegram/MessageTtl.h + td/telegram/MessageViewer.h + td/telegram/MinChannel.h + td/telegram/misc.h + td/telegram/MissingInvitee.h + td/telegram/net/AuthDataShared.h + td/telegram/net/AuthKeyState.h + td/telegram/net/ConnectionCreator.h + td/telegram/net/DcAuthManager.h + td/telegram/net/DcId.h + td/telegram/net/DcOptions.h + td/telegram/net/DcOptionsSet.h + td/telegram/net/MtprotoHeader.h + td/telegram/net/NetActor.h + td/telegram/net/NetQuery.h + td/telegram/net/NetQueryCounter.h + td/telegram/net/NetQueryCreator.h + td/telegram/net/NetQueryDelayer.h + td/telegram/net/NetQueryDispatcher.h + td/telegram/net/NetQueryStats.h + td/telegram/net/NetQueryVerifier.h + td/telegram/net/NetStatsManager.h + td/telegram/net/NetType.h + td/telegram/net/Proxy.h + td/telegram/net/PublicRsaKeySharedCdn.h + td/telegram/net/PublicRsaKeySharedMain.h + td/telegram/net/PublicRsaKeyWatchdog.h + td/telegram/net/Session.h + td/telegram/net/SessionMultiProxy.h + td/telegram/net/SessionProxy.h + td/telegram/net/TempAuthKeyWatchdog.h + td/telegram/NewPasswordState.h + td/telegram/Notification.h + td/telegram/NotificationGroupFromDatabase.h + td/telegram/NotificationGroupId.h + td/telegram/NotificationGroupInfo.h + td/telegram/NotificationGroupKey.h + td/telegram/NotificationGroupType.h + td/telegram/NotificationId.h + td/telegram/NotificationManager.h + td/telegram/NotificationObjectFullId.h + td/telegram/NotificationObjectId.h + td/telegram/NotificationSettingsManager.h + td/telegram/NotificationSettingsScope.h + td/telegram/NotificationSound.h + td/telegram/NotificationSoundType.h + td/telegram/NotificationType.h + td/telegram/OnlineManager.h + td/telegram/OptionManager.h + td/telegram/OrderedMessage.h + td/telegram/OrderInfo.h + td/telegram/Outline.h + td/telegram/PaidReactionType.h + td/telegram/PasswordManager.h + td/telegram/Payments.h + td/telegram/PeerColor.h + td/telegram/PeopleNearbyManager.h + td/telegram/PhoneNumberManager.h + td/telegram/Photo.h + td/telegram/PhotoFormat.h + td/telegram/PhotoSize.h + td/telegram/PhotoSizeSource.h + td/telegram/PhotoSizeType.h + td/telegram/PollId.h + td/telegram/PollManager.h + td/telegram/Premium.h + td/telegram/PremiumGiftOption.h + td/telegram/PrivacyManager.h + td/telegram/PromoDataManager.h + td/telegram/PtsManager.h + td/telegram/PublicDialogType.h + td/telegram/QueryCombiner.h + td/telegram/QueryMerger.h + td/telegram/QuickReplyManager.h + td/telegram/QuickReplyMessageFullId.h + td/telegram/QuickReplyShortcutId.h + td/telegram/ReactionListType.h + td/telegram/ReactionManager.h + td/telegram/ReactionNotificationSettings.h + td/telegram/ReactionNotificationsFrom.h + td/telegram/ReactionType.h + td/telegram/ReactionUnavailabilityReason.h + td/telegram/RecentDialogList.h + td/telegram/ReferralProgramInfo.h + td/telegram/ReferralProgramManager.h + td/telegram/ReferralProgramParameters.h + td/telegram/ReferralProgramSortOrder.h + td/telegram/RepliedMessageInfo.h + td/telegram/ReplyMarkup.h + td/telegram/ReportReason.h + td/telegram/RequestActor.h + td/telegram/RequestedDialogType.h + td/telegram/Requests.h + td/telegram/RestrictionReason.h + td/telegram/SavedMessagesManager.h + td/telegram/SavedMessagesTopicId.h + td/telegram/ScheduledServerMessageId.h + td/telegram/ScopeNotificationSettings.h + td/telegram/SecretChatActor.h + td/telegram/SecretChatDb.h + td/telegram/SecretChatId.h + td/telegram/SecretChatLayer.h + td/telegram/SecretChatsManager.h + td/telegram/SecretInputMedia.h + td/telegram/SecureManager.h + td/telegram/SecureStorage.h + td/telegram/SecureValue.h + td/telegram/SendCodeHelper.h + td/telegram/SentEmailCode.h + td/telegram/SequenceDispatcher.h + td/telegram/ServerMessageId.h + td/telegram/SetWithPosition.h + td/telegram/SharedDialog.h + td/telegram/SpecialStickerSetType.h + td/telegram/SponsoredMessageManager.h + td/telegram/StarAmount.h + td/telegram/StarGift.h + td/telegram/StarGiftAttribute.h + td/telegram/StarGiftId.h + td/telegram/StarGiftManager.h + td/telegram/StarManager.h + td/telegram/StarSubscription.h + td/telegram/StarSubscriptionPricing.h + td/telegram/StateManager.h + td/telegram/StatisticsManager.h + td/telegram/StickerFormat.h + td/telegram/StickerListType.h + td/telegram/StickerMaskPosition.h + td/telegram/StickerPhotoSize.h + td/telegram/StickerSetId.h + td/telegram/StickersManager.h + td/telegram/StickerType.h + td/telegram/StorageManager.h + td/telegram/StoryContent.h + td/telegram/StoryContentType.h + td/telegram/StoryDb.h + td/telegram/StoryForwardInfo.h + td/telegram/StoryFullId.h + td/telegram/StoryId.h + td/telegram/StoryInteractionInfo.h + td/telegram/StoryListId.h + td/telegram/StoryManager.h + td/telegram/StoryNotificationSettings.h + td/telegram/StoryStealthMode.h + td/telegram/StoryViewer.h + td/telegram/SuggestedAction.h + td/telegram/SuggestedActionManager.h + td/telegram/Support.h + td/telegram/SynchronousRequests.h + td/telegram/TargetDialogTypes.h + td/telegram/Td.h + td/telegram/TdCallback.h + td/telegram/TdDb.h + td/telegram/TermsOfService.h + td/telegram/TermsOfServiceManager.h + td/telegram/ThemeManager.h + td/telegram/ThemeSettings.h + td/telegram/TimeZoneManager.h + td/telegram/TopDialogCategory.h + td/telegram/TopDialogManager.h + td/telegram/TranscriptionInfo.h + td/telegram/TranscriptionManager.h + td/telegram/TranslationManager.h + td/telegram/UniqueId.h + td/telegram/UpdatesManager.h + td/telegram/UserId.h + td/telegram/UserManager.h + td/telegram/Usernames.h + td/telegram/UserPrivacySetting.h + td/telegram/UserPrivacySettingRule.h + td/telegram/UserStarGift.h + td/telegram/Venue.h + td/telegram/VerificationStatus.h + td/telegram/Version.h + td/telegram/VideoNotesManager.h + td/telegram/VideosManager.h + td/telegram/VoiceNotesManager.h + td/telegram/WebApp.h + td/telegram/WebAppManager.h + td/telegram/WebAppOpenParameters.h + td/telegram/WebPageBlock.h + td/telegram/WebPageId.h + td/telegram/WebPagesManager.h + + td/telegram/AnimationsManager.hpp + td/telegram/AudiosManager.hpp + td/telegram/AuthManager.hpp + td/telegram/BackgroundInfo.hpp + td/telegram/BackgroundType.hpp + td/telegram/Birthdate.hpp + td/telegram/BotVerification.hpp + td/telegram/BotVerifierSettings.hpp + td/telegram/BusinessAwayMessage.hpp + td/telegram/BusinessAwayMessageSchedule.hpp + td/telegram/BusinessConnectedBot.hpp + td/telegram/BusinessGreetingMessage.hpp + td/telegram/BusinessInfo.hpp + td/telegram/BusinessIntro.hpp + td/telegram/BusinessRecipients.hpp + td/telegram/BusinessWorkHours.hpp + td/telegram/ChatReactions.hpp + td/telegram/DialogFilter.hpp + td/telegram/DialogInviteLink.hpp + td/telegram/DialogNotificationSettings.hpp + td/telegram/Dimensions.hpp + td/telegram/Document.hpp + td/telegram/DocumentsManager.hpp + td/telegram/DraftMessage.hpp + td/telegram/EmojiGroup.hpp + td/telegram/FactCheck.hpp + td/telegram/FileReferenceManager.hpp + td/telegram/files/FileData.hpp + td/telegram/files/FileId.hpp + td/telegram/files/FileLocation.hpp + td/telegram/files/FileManager.hpp + td/telegram/files/FileSourceId.hpp + td/telegram/ForumTopic.hpp + td/telegram/ForumTopicEditedData.hpp + td/telegram/ForumTopicIcon.hpp + td/telegram/ForumTopicInfo.hpp + td/telegram/Game.hpp + td/telegram/GiveawayParameters.hpp + td/telegram/InputInvoice.hpp + td/telegram/InputMessageText.hpp + td/telegram/MediaArea.hpp + td/telegram/MediaAreaCoordinates.hpp + td/telegram/MessageEntity.hpp + td/telegram/MessageExtendedMedia.hpp + td/telegram/MessageForwardInfo.hpp + td/telegram/MessageInputReplyTo.hpp + td/telegram/MessageOrigin.hpp + td/telegram/MessageQuote.hpp + td/telegram/MessageReaction.hpp + td/telegram/MessageReactor.hpp + td/telegram/MessageReplyInfo.hpp + td/telegram/MinChannel.hpp + td/telegram/NotificationGroupInfo.hpp + td/telegram/OrderInfo.hpp + td/telegram/PaidReactionType.hpp + td/telegram/Photo.hpp + td/telegram/PhotoSize.hpp + td/telegram/PhotoSizeSource.hpp + td/telegram/PhotoSizeType.hpp + td/telegram/PollId.hpp + td/telegram/PollManager.hpp + td/telegram/PremiumGiftOption.hpp + td/telegram/ReactionManager.hpp + td/telegram/ReactionNotificationSettings.hpp + td/telegram/ReactionNotificationsFrom.hpp + td/telegram/ReactionType.hpp + td/telegram/ReferralProgramInfo.hpp + td/telegram/ReferralProgramParameters.hpp + td/telegram/RepliedMessageInfo.hpp + td/telegram/ReplyMarkup.hpp + td/telegram/RequestedDialogType.hpp + td/telegram/ScopeNotificationSettings.hpp + td/telegram/SecureValue.hpp + td/telegram/SendCodeHelper.hpp + td/telegram/SharedDialog.hpp + td/telegram/StarAmount.hpp + td/telegram/StarGift.hpp + td/telegram/StarGiftAttribute.hpp + td/telegram/StarGiftId.hpp + td/telegram/StarSubscriptionPricing.hpp + td/telegram/StickerMaskPosition.hpp + td/telegram/StickerPhotoSize.hpp + td/telegram/StickersManager.hpp + td/telegram/StoryForwardInfo.hpp + td/telegram/StoryInteractionInfo.hpp + td/telegram/StoryStealthMode.hpp + td/telegram/SuggestedAction.hpp + td/telegram/TermsOfService.hpp + td/telegram/ThemeSettings.hpp + td/telegram/TranscriptionInfo.hpp + td/telegram/VideoNotesManager.hpp + td/telegram/VideosManager.hpp + td/telegram/VoiceNotesManager.hpp + td/telegram/WebApp.hpp + + ${TL_TD_AUTO_SOURCE} + + td/tl/TlObject.h + td/tl/tl_object_parse.h + td/tl/tl_object_store.h + + ${CMAKE_CURRENT_BINARY_DIR}/td/telegram/GitCommitHash.cpp +) +set(TDLIB_SOURCE + ${TDLIB_SOURCE_PART1} + ${TDLIB_SOURCE_PART2} +) + +set(MEMPROF_SOURCE + memprof/memprof.cpp + memprof/memprof.h +) + +set(MEMPROF_STAT_SOURCE + memprof/memprof_stat.cpp + memprof/memprof_stat.h +) + +# LIBRARIES + +# memprof - simple library for memory usage profiling +add_library(memprof STATIC ${MEMPROF_SOURCE}) +target_include_directories(memprof PUBLIC $) +target_link_libraries(memprof PRIVATE tdutils) +if (MEMPROF) + target_compile_definitions(memprof PRIVATE -DUSE_MEMPROF=1) + if (MEMPROF STREQUAL "SAFE") + target_compile_definitions(memprof PRIVATE -DUSE_MEMPROF_SAFE=1) + elseif (MEMPROF STREQUAL "FAST") + target_compile_definitions(memprof PRIVATE -DUSE_MEMPROF_FAST=1) + elseif (NOT MEMPROF) + message(FATAL_ERROR "Unsupported MEMPROF value \"${MEMPROF}\"") + endif() +endif() + +add_library(memprof_stat EXCLUDE_FROM_ALL STATIC ${MEMPROF_STAT_SOURCE}) +target_include_directories(memprof_stat PUBLIC $) +target_link_libraries(memprof_stat PRIVATE tdutils) + + +add_library(tdapi STATIC ${TL_TD_API_SOURCE}) +target_include_directories(tdapi PUBLIC $ INTERFACE $) +target_link_libraries(tdapi PRIVATE tdutils) + +if (TD_ENABLE_JNI AND NOT ANDROID) # jni is available by default on Android + if (NOT JNI_FOUND) + find_package(JNI REQUIRED COMPONENTS JVM) + endif() + message(STATUS "Found JNI: ${JNI_INCLUDE_DIRS} ${JNI_LIBRARIES}") + target_include_directories(tdapi PUBLIC ${JAVA_INCLUDE_PATH} ${JAVA_INCLUDE_PATH2}) + target_link_libraries(tdapi PUBLIC ${JAVA_JVM_LIBRARY}) +endif() + +if (NOT CMAKE_CROSSCOMPILING) + add_dependencies(tdapi tl_generate_common) +endif() + +add_library(tdmtproto STATIC ${TD_MTPROTO_SOURCE}) +target_include_directories(tdmtproto PUBLIC $ $) +target_include_directories(tdmtproto SYSTEM PRIVATE ${OPENSSL_INCLUDE_DIR}) +target_link_libraries(tdmtproto PUBLIC tdactor tdnet tdutils PRIVATE ${OPENSSL_CRYPTO_LIBRARY} ${CMAKE_DL_LIBS} ${ZLIB_LIBRARIES}) +if (WIN32) + if (MINGW) + target_link_libraries(tdmtproto PRIVATE ws2_32 mswsock crypt32) + else() + target_link_libraries(tdmtproto PRIVATE ws2_32 Mswsock Crypt32) + endif() +endif() +if (NOT CMAKE_CROSSCOMPILING) + add_dependencies(tdmtproto tl_generate_mtproto) +endif() + +# tdcore - internal TDLib interface +if (MSVC AND TD_ENABLE_LTO) + add_library(tdcore_part1 STATIC ${TDLIB_SOURCE_PART1}) + target_include_directories(tdcore_part1 PUBLIC $ $) + target_link_libraries(tdcore_part1 PUBLIC tdapi tdnet tddb tdactor tde2e tdutils PRIVATE tdmtproto) + + add_library(tdcore_part2 STATIC ${TDLIB_SOURCE_PART2}) + target_include_directories(tdcore_part2 PUBLIC $ $) + target_link_libraries(tdcore_part2 PUBLIC tdapi tdnet tddb tdactor tde2e tdutils PRIVATE tdmtproto) + + add_library(tdcore INTERFACE) + target_link_libraries(tdcore INTERFACE tdcore_part1 tdcore_part2) + + set(TD_CORE_PART_TARGETS tdcore_part1 tdcore_part2) +else() + add_library(tdcore STATIC ${TDLIB_SOURCE}) + target_include_directories(tdcore PUBLIC $ $) + target_link_libraries(tdcore PUBLIC tdapi tdnet tddb tdactor tde2e tdutils PRIVATE tdmtproto) + + set(TD_CORE_PART_TARGETS) +endif() + +if (NOT CMAKE_CROSSCOMPILING) + add_dependencies(tdcore tl_generate_common) + if (TD_ENABLE_JNI) + add_dependencies(tdcore td_generate_java_api) + endif() + if (TD_ENABLE_DOTNET) + add_dependencies(tdcore remove_cpp_documentation) + endif() +endif() + +add_library(tdclient STATIC td/telegram/Client.cpp td/telegram/Client.h td/telegram/Log.cpp td/telegram/Log.h) +target_include_directories(tdclient PUBLIC + $ +) +target_link_libraries(tdclient PUBLIC tdapi PRIVATE tdcore) + +if (TD_ENABLE_DOTNET) + add_library(tddotnet SHARED + td/telegram/ClientDotNet.cpp + td/telegram/LogDotNet.cpp + ${TL_DOTNET_SCHEME_SOURCE} + ) + set_target_properties(tddotnet PROPERTIES OUTPUT_NAME Telegram.Td) + target_link_libraries(tddotnet PRIVATE tdclient tdutils) + target_include_directories(tddotnet PUBLIC + $ + ) + if (NOT CMAKE_CROSSCOMPILING) + add_dependencies(tddotnet generate_dotnet_api) + endif() + + target_compile_options(tddotnet PRIVATE "/doc") + if (CMAKE_SYSTEM_NAME STREQUAL "WindowsStore") + set_target_properties(tddotnet PROPERTIES VS_WINRT_COMPONENT "true") + target_compile_options(tddotnet PUBLIC "/ZW") + else() + set_target_properties(tddotnet PROPERTIES COMPILE_FLAGS "/GR /clr") + target_compile_options(tddotnet PUBLIC "/EHa") + endif() +endif() + +# tdc - TDLib interface in pure C +add_library(tdc STATIC EXCLUDE_FROM_ALL ${TL_C_SCHEME_SOURCE} td/telegram/td_c_client.cpp td/telegram/td_c_client.h) +target_include_directories(tdc PUBLIC + $ + $) +target_link_libraries(tdc PRIVATE tdclient tdutils) +if (NOT CMAKE_CROSSCOMPILING) + add_dependencies(tdc tl_generate_c) +endif() + +add_library(tdjson_private STATIC ${TL_TD_JSON_SOURCE} td/telegram/ClientJson.cpp td/telegram/ClientJson.h) +target_include_directories(tdjson_private PUBLIC + $ + $) +target_link_libraries(tdjson_private PUBLIC tdclient tdutils) +if (NOT CMAKE_CROSSCOMPILING) + add_dependencies(tdjson_private tl_generate_common tl_generate_json) + if (TD_ENABLE_DOTNET) + add_dependencies(tdjson_private remove_cpp_documentation) + endif() +endif() + +set(TD_JSON_HEADERS td/telegram/td_json_client.h td/telegram/td_log.h) +set(TD_JSON_SOURCE td/telegram/td_json_client.cpp td/telegram/td_log.cpp) + +include(GenerateExportHeader) + +add_library(tdjson SHARED ${TD_JSON_SOURCE} ${TD_JSON_HEADERS}) +target_link_libraries(tdjson PRIVATE tdjson_private) +generate_export_header(tdjson EXPORT_FILE_NAME ${CMAKE_CURRENT_BINARY_DIR}/td/telegram/tdjson_export.h) +target_include_directories(tdjson PUBLIC + $ + $) +if (APPLE) + set_target_properties(tdjson PROPERTIES LINK_FLAGS "-Wl,-exported_symbols_list,${CMAKE_CURRENT_SOURCE_DIR}/tdclientjson_export_list") +endif() + +add_library(tdjson_static STATIC ${TD_JSON_SOURCE} ${TD_JSON_HEADERS}) +target_link_libraries(tdjson_static PRIVATE tdjson_private) +target_compile_definitions(tdjson_static PUBLIC TDJSON_STATIC_DEFINE) +target_include_directories(tdjson_static PUBLIC + $ + $) + +# EXECUTABLES +if (EMSCRIPTEN) + set(TD_EMSCRIPTEN_SRC td/telegram/td_emscripten.cpp) + add_executable(${TD_EMSCRIPTEN} ${TD_EMSCRIPTEN_SRC}) + target_include_directories(${TD_EMSCRIPTEN} PUBLIC $) + target_link_libraries(${TD_EMSCRIPTEN} PRIVATE tdjson_static tdactor) +endif() + +if (NOT CMAKE_CROSSCOMPILING) + add_executable(tg_cli td/telegram/cli.cpp ${TL_TD_JSON_SOURCE}) + + if (NOT READLINE_FOUND) + find_package(Readline QUIET) + endif() + if (READLINE_FOUND) + message(STATUS "Found Readline: ${READLINE_INCLUDE_DIR} ${READLINE_LIBRARY}") + if (NOT USABLE_READLINE_FOUND) + set(CMAKE_REQUIRED_INCLUDES "${READLINE_INCLUDE_DIR}") + set(CMAKE_REQUIRED_LIBRARIES "${READLINE_LIBRARY}") + include(CheckCXXSourceCompiles) + unset(USABLE_READLINE_FOUND CACHE) + check_cxx_source_compiles("#include \n#include \nint main() { rl_free(0); }" USABLE_READLINE_FOUND) + if (NOT USABLE_READLINE_FOUND) + message(STATUS "Found Readline is too old, ignore it (this is NOT an error)") + unset(READLINE_INCLUDE_DIR CACHE) + unset(READLINE_LIBRARY CACHE) + endif() + endif() + if (USABLE_READLINE_FOUND) + target_link_libraries(tg_cli PRIVATE ${READLINE_LIBRARY}) + target_include_directories(tg_cli SYSTEM PRIVATE ${READLINE_INCLUDE_DIR}) + target_compile_definitions(tg_cli PRIVATE -DUSE_READLINE=1) + endif() + endif() + target_link_libraries(tg_cli PRIVATE memprof tdclient tdcore) + add_dependencies(tg_cli tl_generate_json) +endif() + +# Exported libraries +add_library(TdStatic INTERFACE) +target_link_libraries(TdStatic INTERFACE tdclient) + +add_library(TdJson INTERFACE) +target_link_libraries(TdJson INTERFACE tdjson) + +add_library(TdJsonStatic INTERFACE) +target_link_libraries(TdJsonStatic INTERFACE tdjson_static) + +add_library(Td::TdStatic ALIAS TdStatic) +add_library(Td::TdJson ALIAS TdJson) +add_library(Td::TdJsonStatic ALIAS TdJsonStatic) + +set(INSTALL_TARGETS tdjson TdJson) +set(INSTALL_STATIC_TARGETS tdjson_static TdJsonStatic tdjson_private "${TD_CORE_PART_TARGETS}" tdcore tdmtproto tdclient TdStatic tdapi) + +if (TD_INSTALL_SHARED_LIBRARIES) + install(TARGETS ${INSTALL_TARGETS} EXPORT TdTargets + LIBRARY DESTINATION "${CMAKE_INSTALL_LIBDIR}" + ARCHIVE DESTINATION "${CMAKE_INSTALL_LIBDIR}" + RUNTIME DESTINATION "${CMAKE_INSTALL_BINDIR}" + INCLUDES DESTINATION "${CMAKE_INSTALL_INCLUDEDIR}" + ) +endif() + +if (TD_INSTALL_STATIC_LIBRARIES) + install(TARGETS ${INSTALL_STATIC_TARGETS} EXPORT TdStaticTargets + LIBRARY DESTINATION "${CMAKE_INSTALL_LIBDIR}" + ARCHIVE DESTINATION "${CMAKE_INSTALL_LIBDIR}" + INCLUDES DESTINATION "${CMAKE_INSTALL_INCLUDEDIR}" + ) +endif() + +# generate pkg-config files +include(GeneratePkgConfig) + +if (TD_INSTALL_STATIC_LIBRARIES) + generate_pkgconfig(tdutils "Telegram Library - Utils") + generate_pkgconfig(tdactor "Telegram Library - Actor") + generate_pkgconfig(tde2e "Telegram Library - E2E") + generate_pkgconfig(tdnet "Telegram Library - Net") + generate_pkgconfig(tdsqlite "Telegram Library - SQLite") + generate_pkgconfig(tddb "Telegram Library - Database") + if (MEMPROF) + # generate_pkgconfig(memprof "memprof - simple library for memory usage profiling") + endif() + generate_pkgconfig(tdmtproto "Telegram Library - MTProto implementation") + generate_pkgconfig(tdcore "Telegram Library - Core") + generate_pkgconfig(tdclient "Telegram Library - C++ Interface") + if (TD_ENABLE_DOTNET) + # generate_pkgconfig(tddotnet "Telegram Library - C# Interface") + endif() + # generate_pkgconfig(tdc "Telegram Library - C interface") + generate_pkgconfig(tdapi "Telegram Library - API") + generate_pkgconfig(tdjson_private "Telegram Library - JSON interface (private)") + generate_pkgconfig(tdjson_static "Telegram Library - JSON interface (static)") +endif() +if (TD_INSTALL_SHARED_LIBRARIES) + generate_pkgconfig(tdjson "Telegram Library - JSON interface (shared)") +endif() + +if (TD_INSTALL_SHARED_LIBRARIES) + install(EXPORT TdTargets + FILE TdTargets.cmake + NAMESPACE Td:: + DESTINATION "${CMAKE_INSTALL_LIBDIR}/cmake/Td" + ) +endif() + +if (TD_INSTALL_STATIC_LIBRARIES) + install(EXPORT TdStaticTargets + FILE TdStaticTargets.cmake + NAMESPACE Td:: + DESTINATION "${CMAKE_INSTALL_LIBDIR}/cmake/Td" + ) +endif() + +if (TD_INSTALL_SHARED_LIBRARIES OR TD_INSTALL_STATIC_LIBRARIES) + # Install tdjson/tdjson_static: + install(FILES ${TD_JSON_HEADERS} "${CMAKE_CURRENT_BINARY_DIR}/td/telegram/tdjson_export.h" DESTINATION "${CMAKE_INSTALL_INCLUDEDIR}/td/telegram") +endif() +if (TD_INSTALL_STATIC_LIBRARIES) + # Install tdclient: + install(FILES td/telegram/Client.h td/telegram/Log.h DESTINATION "${CMAKE_INSTALL_INCLUDEDIR}/td/telegram") + # Install tdapi: + install(FILES td/tl/TlObject.h DESTINATION "${CMAKE_INSTALL_INCLUDEDIR}/td/tl") + install(FILES "${TL_TD_AUTO_INCLUDE_DIR}/td/telegram/td_api.h" "${TL_TD_AUTO_INCLUDE_DIR}/td/telegram/td_api.hpp" DESTINATION "${CMAKE_INSTALL_INCLUDEDIR}/td/telegram") +endif() +if (TD_ENABLE_JNI) + install(FILES td/tl/tl_jni_object.h DESTINATION "${CMAKE_INSTALL_INCLUDEDIR}/td/tl") +endif() +if (MSVC AND VCPKG_TOOLCHAIN) + install(DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/$/" DESTINATION "${CMAKE_INSTALL_BINDIR}" FILES_MATCHING PATTERN "*.dll") +endif() + +include(CMakePackageConfigHelpers) +write_basic_package_version_file("TdConfigVersion.cmake" + VERSION "${TDLib_VERSION}" + COMPATIBILITY ExactVersion +) +install(FILES "TdConfig.cmake" "${CMAKE_CURRENT_BINARY_DIR}/TdConfigVersion.cmake" + DESTINATION "${CMAKE_INSTALL_LIBDIR}/cmake/Td" +) + +# Add SOVERSION to shared libraries +set_property(TARGET tdjson PROPERTY SOVERSION "${TDLib_VERSION}") diff --git a/third-party/td/td/Doxyfile b/third-party/td/td/Doxyfile new file mode 100644 index 0000000000..e9e26e2d5d --- /dev/null +++ b/third-party/td/td/Doxyfile @@ -0,0 +1,2473 @@ +# Doxyfile 1.8.13 + +# This file describes the settings to be used by the documentation system +# doxygen (www.doxygen.org) for a project. +# +# All text after a double hash (##) is considered a comment and is placed in +# front of the TAG it is preceding. +# +# All text after a single hash (#) is considered a comment and will be ignored. +# The format is: +# TAG = value [value, ...] +# For lists, items can also be appended using: +# TAG += value [value, ...] +# Values that contain spaces should be placed between quotes (\" \"). + +#--------------------------------------------------------------------------- +# Project related configuration options +#--------------------------------------------------------------------------- + +# This tag specifies the encoding used for all characters in the config file +# that follow. The default is UTF-8 which is also the encoding used for all text +# before the first occurrence of this tag. Doxygen uses libiconv (or the iconv +# built into libc) for the transcoding. See http://www.gnu.org/software/libiconv +# for the list of possible encodings. +# The default value is: UTF-8. + +DOXYFILE_ENCODING = UTF-8 + +# The PROJECT_NAME tag is a single word (or a sequence of words surrounded by +# double-quotes, unless you are using Doxywizard) that should identify the +# project for which the documentation is generated. This name is used in the +# title of most generated pages and in a few other places. +# The default value is: My Project. + +PROJECT_NAME = "TDLib" + +# The PROJECT_NUMBER tag can be used to enter a project or revision number. This +# could be handy for archiving the generated documentation or if some version +# control system is used. + +PROJECT_NUMBER = + +# Using the PROJECT_BRIEF tag one can provide an optional one line description +# for a project that appears at the top of each page and should give viewer a +# quick idea about the purpose of the project. Keep the description short. + +PROJECT_BRIEF = + +# With the PROJECT_LOGO tag one can specify a logo or an icon that is included +# in the documentation. The maximum height of the logo should not exceed 55 +# pixels and the maximum width should not exceed 200 pixels. Doxygen will copy +# the logo to the output directory. + +PROJECT_LOGO = + +# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path +# into which the generated documentation will be written. If a relative path is +# entered, it will be relative to the location where doxygen was started. If +# left blank the current directory will be used. + +OUTPUT_DIRECTORY = "docs" + +# If the CREATE_SUBDIRS tag is set to YES then doxygen will create 4096 sub- +# directories (in 2 levels) under the output directory of each output format and +# will distribute the generated files over these directories. Enabling this +# option can be useful when feeding doxygen a huge amount of source files, where +# putting all generated files in the same directory would otherwise causes +# performance problems for the file system. +# The default value is: NO. + +CREATE_SUBDIRS = NO + +# If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII +# characters to appear in the names of generated files. If set to NO, non-ASCII +# characters will be escaped, for example _xE3_x81_x84 will be used for Unicode +# U+3044. +# The default value is: NO. + +ALLOW_UNICODE_NAMES = NO + +# The OUTPUT_LANGUAGE tag is used to specify the language in which all +# documentation generated by doxygen is written. Doxygen will use this +# information to generate all constant output in the proper language. +# Possible values are: Afrikaans, Arabic, Armenian, Brazilian, Catalan, Chinese, +# Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States), +# Esperanto, Farsi (Persian), Finnish, French, German, Greek, Hungarian, +# Indonesian, Italian, Japanese, Japanese-en (Japanese with English messages), +# Korean, Korean-en (Korean with English messages), Latvian, Lithuanian, +# Macedonian, Norwegian, Persian (Farsi), Polish, Portuguese, Romanian, Russian, +# Serbian, Serbian-Cyrillic, Slovak, Slovene, Spanish, Swedish, Turkish, +# Ukrainian and Vietnamese. +# The default value is: English. + +OUTPUT_LANGUAGE = English + +# If the BRIEF_MEMBER_DESC tag is set to YES, doxygen will include brief member +# descriptions after the members that are listed in the file and class +# documentation (similar to Javadoc). Set to NO to disable this. +# The default value is: YES. + +BRIEF_MEMBER_DESC = YES + +# If the REPEAT_BRIEF tag is set to YES, doxygen will prepend the brief +# description of a member or function before the detailed description +# +# Note: If both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the +# brief descriptions will be completely suppressed. +# The default value is: YES. + +REPEAT_BRIEF = YES + +# This tag implements a quasi-intelligent brief description abbreviator that is +# used to form the text in various listings. Each string in this list, if found +# as the leading text of the brief description, will be stripped from the text +# and the result, after processing the whole list, is used as the annotated +# text. Otherwise, the brief description is used as-is. If left blank, the +# following values are used ($name is automatically replaced with the name of +# the entity):The $name class, The $name widget, The $name file, is, provides, +# specifies, contains, represents, a, an and the. + +ABBREVIATE_BRIEF = "The $name class" \ + "The $name widget" \ + "The $name file" \ + is \ + provides \ + specifies \ + contains \ + represents \ + a \ + an \ + the + +# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then +# doxygen will generate a detailed section even if there is only a brief +# description. +# The default value is: NO. + +ALWAYS_DETAILED_SEC = NO + +# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all +# inherited members of a class in the documentation of that class as if those +# members were ordinary class members. Constructors, destructors and assignment +# operators of the base classes will not be shown. +# The default value is: NO. + +INLINE_INHERITED_MEMB = NO + +# If the FULL_PATH_NAMES tag is set to YES, doxygen will prepend the full path +# before files name in the file list and in the header files. If set to NO the +# shortest path that makes the file name unique will be used +# The default value is: YES. + +FULL_PATH_NAMES = YES + +# The STRIP_FROM_PATH tag can be used to strip a user-defined part of the path. +# Stripping is only done if one of the specified strings matches the left-hand +# part of the path. The tag can be used to show relative paths in the file list. +# If left blank the directory from which doxygen is run is used as the path to +# strip. +# +# Note that you can specify absolute paths here, but also relative paths, which +# will be relative from the directory where doxygen is started. +# This tag requires that the tag FULL_PATH_NAMES is set to YES. + +STRIP_FROM_PATH = + +# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the +# path mentioned in the documentation of a class, which tells the reader which +# header file to include in order to use a class. If left blank only the name of +# the header file containing the class definition is used. Otherwise one should +# specify the list of include paths that are normally passed to the compiler +# using the -I flag. + +STRIP_FROM_INC_PATH = td/generate/auto/ . + +# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but +# less readable) file names. This can be useful is your file systems doesn't +# support long names like on DOS, Mac, or CD-ROM. +# The default value is: NO. + +SHORT_NAMES = NO + +# If the JAVADOC_AUTOBRIEF tag is set to YES then doxygen will interpret the +# first line (until the first dot) of a Javadoc-style comment as the brief +# description. If set to NO, the Javadoc-style will behave just like regular Qt- +# style comments (thus requiring an explicit @brief command for a brief +# description.) +# The default value is: NO. + +JAVADOC_AUTOBRIEF = NO + +# If the QT_AUTOBRIEF tag is set to YES then doxygen will interpret the first +# line (until the first dot) of a Qt-style comment as the brief description. If +# set to NO, the Qt-style will behave just like regular Qt-style comments (thus +# requiring an explicit \brief command for a brief description.) +# The default value is: NO. + +QT_AUTOBRIEF = NO + +# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make doxygen treat a +# multi-line C++ special comment block (i.e. a block of //! or /// comments) as +# a brief description. This used to be the default behavior. The new default is +# to treat a multi-line C++ comment block as a detailed description. Set this +# tag to YES if you prefer the old behavior instead. +# +# Note that setting this tag to YES also means that rational rose comments are +# not recognized any more. +# The default value is: NO. + +MULTILINE_CPP_IS_BRIEF = NO + +# If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the +# documentation from any documented member that it re-implements. +# The default value is: YES. + +INHERIT_DOCS = YES + +# If the SEPARATE_MEMBER_PAGES tag is set to YES then doxygen will produce a new +# page for each member. If set to NO, the documentation of a member will be part +# of the file/class/namespace that contains it. +# The default value is: NO. + +SEPARATE_MEMBER_PAGES = NO + +# The TAB_SIZE tag can be used to set the number of spaces in a tab. Doxygen +# uses this value to replace tabs by spaces in code fragments. +# Minimum value: 1, maximum value: 16, default value: 4. + +TAB_SIZE = 4 + +# This tag can be used to specify a number of aliases that act as commands in +# the documentation. An alias has the form: +# name=value +# For example adding +# "sideeffect=@par Side Effects:\n" +# will allow you to put the command \sideeffect (or @sideeffect) in the +# documentation, which will result in a user-defined paragraph with heading +# "Side Effects:". You can put \n's in the value part of an alias to insert +# newlines. + +ALIASES = + +# This tag can be used to specify a number of word-keyword mappings (TCL only). +# A mapping has the form "name=value". For example adding "class=itcl::class" +# will allow you to use the command class in the itcl::class meaning. + +TCL_SUBST = + +# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources +# only. Doxygen will then generate output that is more tailored for C. For +# instance, some of the names that are used will be different. The list of all +# members will be omitted, etc. +# The default value is: NO. + +OPTIMIZE_OUTPUT_FOR_C = NO + +# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java or +# Python sources only. Doxygen will then generate output that is more tailored +# for that language. For instance, namespaces will be presented as packages, +# qualified scopes will look different, etc. +# The default value is: NO. + +OPTIMIZE_OUTPUT_JAVA = NO + +# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran +# sources. Doxygen will then generate output that is tailored for Fortran. +# The default value is: NO. + +OPTIMIZE_FOR_FORTRAN = NO + +# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL +# sources. Doxygen will then generate output that is tailored for VHDL. +# The default value is: NO. + +OPTIMIZE_OUTPUT_VHDL = NO + +# Doxygen selects the parser to use depending on the extension of the files it +# parses. With this tag you can assign which parser to use for a given +# extension. Doxygen has a built-in mapping, but you can override or extend it +# using this tag. The format is ext=language, where ext is a file extension, and +# language is one of the parsers supported by doxygen: IDL, Java, Javascript, +# C#, C, C++, D, PHP, Objective-C, Python, Fortran (fixed format Fortran: +# FortranFixed, free formatted Fortran: FortranFree, unknown formatted Fortran: +# Fortran. In the later case the parser tries to guess whether the code is fixed +# or free formatted code, this is the default for Fortran type files), VHDL. For +# instance to make doxygen treat .inc files as Fortran files (default is PHP), +# and .f files as C (default is Fortran), use: inc=Fortran f=C. +# +# Note: For files without extension you can use no_extension as a placeholder. +# +# Note that for custom extensions you also need to set FILE_PATTERNS otherwise +# the files are not read by doxygen. + +EXTENSION_MAPPING = + +# If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments +# according to the Markdown format, which allows for more readable +# documentation. See http://daringfireball.net/projects/markdown/ for details. +# The output of markdown processing is further processed by doxygen, so you can +# mix doxygen, HTML, and XML commands with Markdown formatting. Disable only in +# case of backward compatibilities issues. +# The default value is: YES. + +MARKDOWN_SUPPORT = YES + +# When the TOC_INCLUDE_HEADINGS tag is set to a non-zero value, all headings up +# to that level are automatically included in the table of contents, even if +# they do not have an id attribute. +# Note: This feature currently applies only to Markdown headings. +# Minimum value: 0, maximum value: 99, default value: 0. +# This tag requires that the tag MARKDOWN_SUPPORT is set to YES. + +TOC_INCLUDE_HEADINGS = 0 + +# When enabled doxygen tries to link words that correspond to documented +# classes, or namespaces to their corresponding documentation. Such a link can +# be prevented in individual cases by putting a % sign in front of the word or +# globally by setting AUTOLINK_SUPPORT to NO. +# The default value is: YES. + +AUTOLINK_SUPPORT = YES + +# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want +# to include (a tag file for) the STL sources as input, then you should set this +# tag to YES in order to let doxygen match functions declarations and +# definitions whose arguments contain STL classes (e.g. func(std::string); +# versus func(std::string) {}). This also make the inheritance and collaboration +# diagrams that involve STL classes more complete and accurate. +# The default value is: NO. + +BUILTIN_STL_SUPPORT = YES + +# If you use Microsoft's C++/CLI language, you should set this option to YES to +# enable parsing support. +# The default value is: NO. + +CPP_CLI_SUPPORT = NO + +# Set the SIP_SUPPORT tag to YES if your project consists of sip (see: +# http://www.riverbankcomputing.co.uk/software/sip/intro) sources only. Doxygen +# will parse them like normal C++ but will assume all classes use public instead +# of private inheritance when no explicit protection keyword is present. +# The default value is: NO. + +SIP_SUPPORT = NO + +# For Microsoft's IDL there are propget and propput attributes to indicate +# getter and setter methods for a property. Setting this option to YES will make +# doxygen to replace the get and set methods by a property in the documentation. +# This will only work if the methods are indeed getting or setting a simple +# type. If this is not the case, or you want to show the methods anyway, you +# should set this option to NO. +# The default value is: YES. + +IDL_PROPERTY_SUPPORT = YES + +# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC +# tag is set to YES then doxygen will reuse the documentation of the first +# member in the group (if any) for the other members of the group. By default +# all members of a group must be documented explicitly. +# The default value is: NO. + +DISTRIBUTE_GROUP_DOC = NO + +# If one adds a struct or class to a group and this option is enabled, then also +# any nested class or struct is added to the same group. By default this option +# is disabled and one has to add nested compounds explicitly via \ingroup. +# The default value is: NO. + +GROUP_NESTED_COMPOUNDS = NO + +# Set the SUBGROUPING tag to YES to allow class member groups of the same type +# (for instance a group of public functions) to be put as a subgroup of that +# type (e.g. under the Public Functions section). Set it to NO to prevent +# subgrouping. Alternatively, this can be done per class using the +# \nosubgrouping command. +# The default value is: YES. + +SUBGROUPING = YES + +# When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and unions +# are shown inside the group in which they are included (e.g. using \ingroup) +# instead of on a separate page (for HTML and Man pages) or section (for LaTeX +# and RTF). +# +# Note that this feature does not work in combination with +# SEPARATE_MEMBER_PAGES. +# The default value is: NO. + +INLINE_GROUPED_CLASSES = NO + +# When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and unions +# with only public data fields or simple typedef fields will be shown inline in +# the documentation of the scope in which they are defined (i.e. file, +# namespace, or group documentation), provided this scope is documented. If set +# to NO, structs, classes, and unions are shown on a separate page (for HTML and +# Man pages) or section (for LaTeX and RTF). +# The default value is: NO. + +INLINE_SIMPLE_STRUCTS = NO + +# When TYPEDEF_HIDES_STRUCT tag is enabled, a typedef of a struct, union, or +# enum is documented as struct, union, or enum with the name of the typedef. So +# typedef struct TypeS {} TypeT, will appear in the documentation as a struct +# with name TypeT. When disabled the typedef will appear as a member of a file, +# namespace, or class. And the struct will be named TypeS. This can typically be +# useful for C code in case the coding convention dictates that all compound +# types are typedef'ed and only the typedef is referenced, never the tag name. +# The default value is: NO. + +TYPEDEF_HIDES_STRUCT = NO + +# The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This +# cache is used to resolve symbols given their name and scope. Since this can be +# an expensive process and often the same symbol appears multiple times in the +# code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small +# doxygen will become slower. If the cache is too large, memory is wasted. The +# cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range +# is 0..9, the default is 0, corresponding to a cache size of 2^16=65536 +# symbols. At the end of a run doxygen will report the cache usage and suggest +# the optimal cache size from a speed point of view. +# Minimum value: 0, maximum value: 9, default value: 0. + +LOOKUP_CACHE_SIZE = 0 + +#--------------------------------------------------------------------------- +# Build related configuration options +#--------------------------------------------------------------------------- + +# If the EXTRACT_ALL tag is set to YES, doxygen will assume all entities in +# documentation are documented, even if no documentation was available. Private +# class members and static file members will be hidden unless the +# EXTRACT_PRIVATE respectively EXTRACT_STATIC tags are set to YES. +# Note: This will also disable the warnings about undocumented members that are +# normally produced when WARNINGS is set to YES. +# The default value is: NO. + +EXTRACT_ALL = NO + +# If the EXTRACT_PRIVATE tag is set to YES, all private members of a class will +# be included in the documentation. +# The default value is: NO. + +EXTRACT_PRIVATE = NO + +# If the EXTRACT_PACKAGE tag is set to YES, all members with package or internal +# scope will be included in the documentation. +# The default value is: NO. + +EXTRACT_PACKAGE = NO + +# If the EXTRACT_STATIC tag is set to YES, all static members of a file will be +# included in the documentation. +# The default value is: NO. + +EXTRACT_STATIC = NO + +# If the EXTRACT_LOCAL_CLASSES tag is set to YES, classes (and structs) defined +# locally in source files will be included in the documentation. If set to NO, +# only classes defined in header files are included. Does not have any effect +# for Java sources. +# The default value is: YES. + +EXTRACT_LOCAL_CLASSES = YES + +# This flag is only useful for Objective-C code. If set to YES, local methods, +# which are defined in the implementation section but not in the interface are +# included in the documentation. If set to NO, only methods in the interface are +# included. +# The default value is: NO. + +EXTRACT_LOCAL_METHODS = NO + +# If this flag is set to YES, the members of anonymous namespaces will be +# extracted and appear in the documentation as a namespace called +# 'anonymous_namespace{file}', where file will be replaced with the base name of +# the file that contains the anonymous namespace. By default anonymous namespace +# are hidden. +# The default value is: NO. + +EXTRACT_ANON_NSPACES = NO + +# If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all +# undocumented members inside documented classes or files. If set to NO these +# members will be included in the various overviews, but no documentation +# section is generated. This option has no effect if EXTRACT_ALL is enabled. +# The default value is: NO. + +HIDE_UNDOC_MEMBERS = NO + +# If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all +# undocumented classes that are normally visible in the class hierarchy. If set +# to NO, these classes will be included in the various overviews. This option +# has no effect if EXTRACT_ALL is enabled. +# The default value is: NO. + +HIDE_UNDOC_CLASSES = NO + +# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, doxygen will hide all friend +# (class|struct|union) declarations. If set to NO, these declarations will be +# included in the documentation. +# The default value is: NO. + +HIDE_FRIEND_COMPOUNDS = NO + +# If the HIDE_IN_BODY_DOCS tag is set to YES, doxygen will hide any +# documentation blocks found inside the body of a function. If set to NO, these +# blocks will be appended to the function's detailed documentation block. +# The default value is: NO. + +HIDE_IN_BODY_DOCS = NO + +# The INTERNAL_DOCS tag determines if documentation that is typed after a +# \internal command is included. If the tag is set to NO then the documentation +# will be excluded. Set it to YES to include the internal documentation. +# The default value is: NO. + +INTERNAL_DOCS = NO + +# If the CASE_SENSE_NAMES tag is set to NO then doxygen will only generate file +# names in lower-case letters. If set to YES, upper-case letters are also +# allowed. This is useful if you have classes or files whose names only differ +# in case and if your file system supports case sensitive file names. Windows +# and Mac users are advised to set this option to NO. +# The default value is: system dependent. + +CASE_SENSE_NAMES = NO + +# If the HIDE_SCOPE_NAMES tag is set to NO then doxygen will show members with +# their full class and namespace scopes in the documentation. If set to YES, the +# scope will be hidden. +# The default value is: NO. + +HIDE_SCOPE_NAMES = NO + +# If the HIDE_COMPOUND_REFERENCE tag is set to NO (default) then doxygen will +# append additional text to a page's title, such as Class Reference. If set to +# YES the compound reference will be hidden. +# The default value is: NO. + +HIDE_COMPOUND_REFERENCE= NO + +# If the SHOW_INCLUDE_FILES tag is set to YES then doxygen will put a list of +# the files that are included by a file in the documentation of that file. +# The default value is: YES. + +SHOW_INCLUDE_FILES = YES + +# If the SHOW_GROUPED_MEMB_INC tag is set to YES then Doxygen will add for each +# grouped member an include statement to the documentation, telling the reader +# which file to include in order to use the member. +# The default value is: NO. + +SHOW_GROUPED_MEMB_INC = NO + +# If the FORCE_LOCAL_INCLUDES tag is set to YES then doxygen will list include +# files with double quotes in the documentation rather than with sharp brackets. +# The default value is: NO. + +FORCE_LOCAL_INCLUDES = NO + +# If the INLINE_INFO tag is set to YES then a tag [inline] is inserted in the +# documentation for inline members. +# The default value is: YES. + +INLINE_INFO = YES + +# If the SORT_MEMBER_DOCS tag is set to YES then doxygen will sort the +# (detailed) documentation of file and class members alphabetically by member +# name. If set to NO, the members will appear in declaration order. +# The default value is: YES. + +SORT_MEMBER_DOCS = YES + +# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the brief +# descriptions of file, namespace and class members alphabetically by member +# name. If set to NO, the members will appear in declaration order. Note that +# this will also influence the order of the classes in the class list. +# The default value is: NO. + +SORT_BRIEF_DOCS = NO + +# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen will sort the +# (brief and detailed) documentation of class members so that constructors and +# destructors are listed first. If set to NO the constructors will appear in the +# respective orders defined by SORT_BRIEF_DOCS and SORT_MEMBER_DOCS. +# Note: If SORT_BRIEF_DOCS is set to NO this option is ignored for sorting brief +# member documentation. +# Note: If SORT_MEMBER_DOCS is set to NO this option is ignored for sorting +# detailed member documentation. +# The default value is: NO. + +SORT_MEMBERS_CTORS_1ST = NO + +# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the hierarchy +# of group names into alphabetical order. If set to NO the group names will +# appear in their defined order. +# The default value is: NO. + +SORT_GROUP_NAMES = NO + +# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be sorted by +# fully-qualified names, including namespaces. If set to NO, the class list will +# be sorted only by class name, not including the namespace part. +# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. +# Note: This option applies only to the class list, not to the alphabetical +# list. +# The default value is: NO. + +SORT_BY_SCOPE_NAME = NO + +# If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to do proper +# type resolution of all parameters of a function it will reject a match between +# the prototype and the implementation of a member function even if there is +# only one candidate or it is obvious which candidate to choose by doing a +# simple string match. By disabling STRICT_PROTO_MATCHING doxygen will still +# accept a match between prototype and implementation in such cases. +# The default value is: NO. + +STRICT_PROTO_MATCHING = NO + +# The GENERATE_TODOLIST tag can be used to enable (YES) or disable (NO) the todo +# list. This list is created by putting \todo commands in the documentation. +# The default value is: YES. + +GENERATE_TODOLIST = YES + +# The GENERATE_TESTLIST tag can be used to enable (YES) or disable (NO) the test +# list. This list is created by putting \test commands in the documentation. +# The default value is: YES. + +GENERATE_TESTLIST = YES + +# The GENERATE_BUGLIST tag can be used to enable (YES) or disable (NO) the bug +# list. This list is created by putting \bug commands in the documentation. +# The default value is: YES. + +GENERATE_BUGLIST = YES + +# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or disable (NO) +# the deprecated list. This list is created by putting \deprecated commands in +# the documentation. +# The default value is: YES. + +GENERATE_DEPRECATEDLIST= YES + +# The ENABLED_SECTIONS tag can be used to enable conditional documentation +# sections, marked by \if ... \endif and \cond +# ... \endcond blocks. + +ENABLED_SECTIONS = + +# The MAX_INITIALIZER_LINES tag determines the maximum number of lines that the +# initial value of a variable or macro / define can have for it to appear in the +# documentation. If the initializer consists of more lines than specified here +# it will be hidden. Use a value of 0 to hide initializers completely. The +# appearance of the value of individual variables and macros / defines can be +# controlled using \showinitializer or \hideinitializer command in the +# documentation regardless of this setting. +# Minimum value: 0, maximum value: 10000, default value: 30. + +MAX_INITIALIZER_LINES = 30 + +# Set the SHOW_USED_FILES tag to NO to disable the list of files generated at +# the bottom of the documentation of classes and structs. If set to YES, the +# list will mention the files that were used to generate the documentation. +# The default value is: YES. + +SHOW_USED_FILES = YES + +# Set the SHOW_FILES tag to NO to disable the generation of the Files page. This +# will remove the Files entry from the Quick Index and from the Folder Tree View +# (if specified). +# The default value is: YES. + +SHOW_FILES = YES + +# Set the SHOW_NAMESPACES tag to NO to disable the generation of the Namespaces +# page. This will remove the Namespaces entry from the Quick Index and from the +# Folder Tree View (if specified). +# The default value is: YES. + +SHOW_NAMESPACES = YES + +# The FILE_VERSION_FILTER tag can be used to specify a program or script that +# doxygen should invoke to get the current version for each file (typically from +# the version control system). Doxygen will invoke the program by executing (via +# popen()) the command command input-file, where command is the value of the +# FILE_VERSION_FILTER tag, and input-file is the name of an input file provided +# by doxygen. Whatever the program writes to standard output is used as the file +# version. For an example see the documentation. + +FILE_VERSION_FILTER = + +# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed +# by doxygen. The layout file controls the global structure of the generated +# output files in an output format independent way. To create the layout file +# that represents doxygen's defaults, run doxygen with the -l option. You can +# optionally specify a file name after the option, if omitted DoxygenLayout.xml +# will be used as the name of the layout file. +# +# Note that if you run doxygen from a directory containing a file called +# DoxygenLayout.xml, doxygen will parse it automatically even if the LAYOUT_FILE +# tag is left empty. + +LAYOUT_FILE = + +# The CITE_BIB_FILES tag can be used to specify one or more bib files containing +# the reference definitions. This must be a list of .bib files. The .bib +# extension is automatically appended if omitted. This requires the bibtex tool +# to be installed. See also http://en.wikipedia.org/wiki/BibTeX for more info. +# For LaTeX the style of the bibliography can be controlled using +# LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the +# search path. See also \cite for info how to create references. + +CITE_BIB_FILES = + +#--------------------------------------------------------------------------- +# Configuration options related to warning and progress messages +#--------------------------------------------------------------------------- + +# The QUIET tag can be used to turn on/off the messages that are generated to +# standard output by doxygen. If QUIET is set to YES this implies that the +# messages are off. +# The default value is: NO. + +QUIET = NO + +# The WARNINGS tag can be used to turn on/off the warning messages that are +# generated to standard error (stderr) by doxygen. If WARNINGS is set to YES +# this implies that the warnings are on. +# +# Tip: Turn warnings on while writing the documentation. +# The default value is: YES. + +WARNINGS = YES + +# If the WARN_IF_UNDOCUMENTED tag is set to YES then doxygen will generate +# warnings for undocumented members. If EXTRACT_ALL is set to YES then this flag +# will automatically be disabled. +# The default value is: YES. + +WARN_IF_UNDOCUMENTED = YES + +# If the WARN_IF_DOC_ERROR tag is set to YES, doxygen will generate warnings for +# potential errors in the documentation, such as not documenting some parameters +# in a documented function, or documenting parameters that don't exist or using +# markup commands wrongly. +# The default value is: YES. + +WARN_IF_DOC_ERROR = YES + +# This WARN_NO_PARAMDOC option can be enabled to get warnings for functions that +# are documented, but have no documentation for their parameters or return +# value. If set to NO, doxygen will only warn about wrong or incomplete +# parameter documentation, but not about the absence of documentation. +# The default value is: NO. + +WARN_NO_PARAMDOC = NO + +# If the WARN_AS_ERROR tag is set to YES then doxygen will immediately stop when +# a warning is encountered. +# The default value is: NO. + +WARN_AS_ERROR = NO + +# The WARN_FORMAT tag determines the format of the warning messages that doxygen +# can produce. The string should contain the $file, $line, and $text tags, which +# will be replaced by the file and line number from which the warning originated +# and the warning text. Optionally the format may contain $version, which will +# be replaced by the version of the file (if it could be obtained via +# FILE_VERSION_FILTER) +# The default value is: $file:$line: $text. + +WARN_FORMAT = "$file:$line: $text" + +# The WARN_LOGFILE tag can be used to specify a file to which warning and error +# messages should be written. If left blank the output is written to standard +# error (stderr). + +WARN_LOGFILE = + +#--------------------------------------------------------------------------- +# Configuration options related to the input files +#--------------------------------------------------------------------------- + +# The INPUT tag is used to specify the files and/or directories that contain +# documented source files. You may enter file names like myfile.cpp or +# directories like /usr/src/myproject. Separate the files or directories with +# spaces. See also FILE_PATTERNS and EXTENSION_MAPPING +# Note: If this tag is empty the current directory is searched. + +INPUT = td/generate/auto/td/telegram/td_api.h td/generate/auto/td/telegram/td_api.hpp td/tl/TlObject.h td/telegram/Client.h td/telegram/ClientActor.h td/telegram/Log.h td/telegram/TdCallback.h td/telegram/td_json_client.h td/telegram/td_log.h ./README.md + +# This tag can be used to specify the character encoding of the source files +# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses +# libiconv (or the iconv built into libc) for the transcoding. See the libiconv +# documentation (see: http://www.gnu.org/software/libiconv) for the list of +# possible encodings. +# The default value is: UTF-8. + +INPUT_ENCODING = UTF-8 + +# If the value of the INPUT tag contains directories, you can use the +# FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and +# *.h) to filter out the source-files in the directories. +# +# Note that for custom extensions or not directly supported extensions you also +# need to set EXTENSION_MAPPING for the extension otherwise the files are not +# read by doxygen. +# +# If left blank the following patterns are tested:*.c, *.cc, *.cxx, *.cpp, +# *.c++, *.java, *.ii, *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h, +# *.hh, *.hxx, *.hpp, *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc, +# *.m, *.markdown, *.md, *.mm, *.dox, *.py, *.pyw, *.f90, *.f95, *.f03, *.f08, +# *.f, *.for, *.tcl, *.vhd, *.vhdl, *.ucf and *.qsf. + +FILE_PATTERNS = *.c \ + *.cc \ + *.cxx \ + *.cpp \ + *.c++ \ + *.java \ + *.ii \ + *.ixx \ + *.ipp \ + *.i++ \ + *.inl \ + *.idl \ + *.ddl \ + *.odl \ + *.h \ + *.hh \ + *.hxx \ + *.hpp \ + *.h++ \ + *.cs \ + *.d \ + *.php \ + *.php4 \ + *.php5 \ + *.phtml \ + *.inc \ + *.m \ + *.markdown \ + *.md \ + *.mm \ + *.dox \ + *.py \ + *.pyw \ + *.f90 \ + *.f95 \ + *.f03 \ + *.f08 \ + *.f \ + *.for \ + *.tcl \ + *.vhd \ + *.vhdl \ + *.ucf \ + *.qsf + +# The RECURSIVE tag can be used to specify whether or not subdirectories should +# be searched for input files as well. +# The default value is: NO. + +RECURSIVE = NO + +# The EXCLUDE tag can be used to specify files and/or directories that should be +# excluded from the INPUT source files. This way you can easily exclude a +# subdirectory from a directory tree whose root is specified with the INPUT tag. +# +# Note that relative paths are relative to the directory from which doxygen is +# run. + +EXCLUDE = + +# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or +# directories that are symbolic links (a Unix file system feature) are excluded +# from the input. +# The default value is: NO. + +EXCLUDE_SYMLINKS = NO + +# If the value of the INPUT tag contains directories, you can use the +# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude +# certain files from those directories. +# +# Note that the wildcards are matched against the file with absolute path, so to +# exclude all test directories for example use the pattern */test/* + +EXCLUDE_PATTERNS = + +# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names +# (namespaces, classes, functions, etc.) that should be excluded from the +# output. The symbol name can be a fully qualified name, a word, or if the +# wildcard * is used, a substring. Examples: ANamespace, AClass, +# AClass::ANamespace, ANamespace::*Test +# +# Note that the wildcards are matched against the file with absolute path, so to +# exclude all test directories use the pattern */test/* + +EXCLUDE_SYMBOLS = + +# The EXAMPLE_PATH tag can be used to specify one or more files or directories +# that contain example code fragments that are included (see the \include +# command). + +EXAMPLE_PATH = + +# If the value of the EXAMPLE_PATH tag contains directories, you can use the +# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and +# *.h) to filter out the source-files in the directories. If left blank all +# files are included. + +EXAMPLE_PATTERNS = * + +# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be +# searched for input files to be used with the \include or \dontinclude commands +# irrespective of the value of the RECURSIVE tag. +# The default value is: NO. + +EXAMPLE_RECURSIVE = NO + +# The IMAGE_PATH tag can be used to specify one or more files or directories +# that contain images that are to be included in the documentation (see the +# \image command). + +IMAGE_PATH = + +# The INPUT_FILTER tag can be used to specify a program that doxygen should +# invoke to filter for each input file. Doxygen will invoke the filter program +# by executing (via popen()) the command: +# +# +# +# where is the value of the INPUT_FILTER tag, and is the +# name of an input file. Doxygen will then use the output that the filter +# program writes to standard output. If FILTER_PATTERNS is specified, this tag +# will be ignored. +# +# Note that the filter must not add or remove lines; it is applied before the +# code is scanned, but not when the output code is generated. If lines are added +# or removed, the anchors will not be placed correctly. +# +# Note that for custom extensions or not directly supported extensions you also +# need to set EXTENSION_MAPPING for the extension otherwise the files are not +# properly processed by doxygen. + +INPUT_FILTER = + +# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern +# basis. Doxygen will compare the file name with each pattern and apply the +# filter if there is a match. The filters are a list of the form: pattern=filter +# (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how +# filters are used. If the FILTER_PATTERNS tag is empty or if none of the +# patterns match the file name, INPUT_FILTER is applied. +# +# Note that for custom extensions or not directly supported extensions you also +# need to set EXTENSION_MAPPING for the extension otherwise the files are not +# properly processed by doxygen. + +FILTER_PATTERNS = + +# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using +# INPUT_FILTER) will also be used to filter the input files that are used for +# producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES). +# The default value is: NO. + +FILTER_SOURCE_FILES = NO + +# The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file +# pattern. A pattern will override the setting for FILTER_PATTERN (if any) and +# it is also possible to disable source filtering for a specific pattern using +# *.ext= (so without naming a filter). +# This tag requires that the tag FILTER_SOURCE_FILES is set to YES. + +FILTER_SOURCE_PATTERNS = + +# If the USE_MDFILE_AS_MAINPAGE tag refers to the name of a markdown file that +# is part of the input, its contents will be placed on the main page +# (index.html). This can be useful if you have a project on for instance GitHub +# and want to reuse the introduction page also for the doxygen output. + +USE_MDFILE_AS_MAINPAGE = ./README.md + +#--------------------------------------------------------------------------- +# Configuration options related to source browsing +#--------------------------------------------------------------------------- + +# If the SOURCE_BROWSER tag is set to YES then a list of source files will be +# generated. Documented entities will be cross-referenced with these sources. +# +# Note: To get rid of all source code in the generated output, make sure that +# also VERBATIM_HEADERS is set to NO. +# The default value is: NO. + +SOURCE_BROWSER = NO + +# Setting the INLINE_SOURCES tag to YES will include the body of functions, +# classes and enums directly into the documentation. +# The default value is: NO. + +INLINE_SOURCES = NO + +# Setting the STRIP_CODE_COMMENTS tag to YES will instruct doxygen to hide any +# special comment blocks from generated source code fragments. Normal C, C++ and +# Fortran comments will always remain visible. +# The default value is: YES. + +STRIP_CODE_COMMENTS = YES + +# If the REFERENCED_BY_RELATION tag is set to YES then for each documented +# function all documented functions referencing it will be listed. +# The default value is: NO. + +REFERENCED_BY_RELATION = NO + +# If the REFERENCES_RELATION tag is set to YES then for each documented function +# all documented entities called/used by that function will be listed. +# The default value is: NO. + +REFERENCES_RELATION = NO + +# If the REFERENCES_LINK_SOURCE tag is set to YES and SOURCE_BROWSER tag is set +# to YES then the hyperlinks from functions in REFERENCES_RELATION and +# REFERENCED_BY_RELATION lists will link to the source code. Otherwise they will +# link to the documentation. +# The default value is: YES. + +REFERENCES_LINK_SOURCE = YES + +# If SOURCE_TOOLTIPS is enabled (the default) then hovering a hyperlink in the +# source code will show a tooltip with additional information such as prototype, +# brief description and links to the definition and documentation. Since this +# will make the HTML file larger and loading of large files a bit slower, you +# can opt to disable this feature. +# The default value is: YES. +# This tag requires that the tag SOURCE_BROWSER is set to YES. + +SOURCE_TOOLTIPS = YES + +# If the USE_HTAGS tag is set to YES then the references to source code will +# point to the HTML generated by the htags(1) tool instead of doxygen built-in +# source browser. The htags tool is part of GNU's global source tagging system +# (see http://www.gnu.org/software/global/global.html). You will need version +# 4.8.6 or higher. +# +# To use it do the following: +# - Install the latest version of global +# - Enable SOURCE_BROWSER and USE_HTAGS in the config file +# - Make sure the INPUT points to the root of the source tree +# - Run doxygen as normal +# +# Doxygen will invoke htags (and that will in turn invoke gtags), so these +# tools must be available from the command line (i.e. in the search path). +# +# The result: instead of the source browser generated by doxygen, the links to +# source code will now point to the output of htags. +# The default value is: NO. +# This tag requires that the tag SOURCE_BROWSER is set to YES. + +USE_HTAGS = NO + +# If the VERBATIM_HEADERS tag is set the YES then doxygen will generate a +# verbatim copy of the header file for each class for which an include is +# specified. Set to NO to disable this. +# See also: Section \class. +# The default value is: YES. + +VERBATIM_HEADERS = YES + +#--------------------------------------------------------------------------- +# Configuration options related to the alphabetical class index +#--------------------------------------------------------------------------- + +# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index of all +# compounds will be generated. Enable this if the project contains a lot of +# classes, structs, unions or interfaces. +# The default value is: YES. + +ALPHABETICAL_INDEX = YES + +# The COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns in +# which the alphabetical index list will be split. +# Minimum value: 1, maximum value: 20, default value: 5. +# This tag requires that the tag ALPHABETICAL_INDEX is set to YES. + +COLS_IN_ALPHA_INDEX = 5 + +# In case all classes in a project start with a common prefix, all classes will +# be put under the same header in the alphabetical index. The IGNORE_PREFIX tag +# can be used to specify a prefix (or a list of prefixes) that should be ignored +# while generating the index headers. +# This tag requires that the tag ALPHABETICAL_INDEX is set to YES. + +IGNORE_PREFIX = + +#--------------------------------------------------------------------------- +# Configuration options related to the HTML output +#--------------------------------------------------------------------------- + +# If the GENERATE_HTML tag is set to YES, doxygen will generate HTML output +# The default value is: YES. + +GENERATE_HTML = YES + +# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. If a +# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of +# it. +# The default directory is: html. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_OUTPUT = html + +# The HTML_FILE_EXTENSION tag can be used to specify the file extension for each +# generated HTML page (for example: .htm, .php, .asp). +# The default value is: .html. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_FILE_EXTENSION = .html + +# The HTML_HEADER tag can be used to specify a user-defined HTML header file for +# each generated HTML page. If the tag is left blank doxygen will generate a +# standard header. +# +# To get valid HTML the header file that includes any scripts and style sheets +# that doxygen needs, which is dependent on the configuration options used (e.g. +# the setting GENERATE_TREEVIEW). It is highly recommended to start with a +# default header using +# doxygen -w html new_header.html new_footer.html new_stylesheet.css +# YourConfigFile +# and then modify the file new_header.html. See also section "Doxygen usage" +# for information on how to generate the default header that doxygen normally +# uses. +# Note: The header is subject to change so you typically have to regenerate the +# default header when upgrading to a newer version of doxygen. For a description +# of the possible markers and block names see the documentation. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_HEADER = + +# The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each +# generated HTML page. If the tag is left blank doxygen will generate a standard +# footer. See HTML_HEADER for more information on how to generate a default +# footer and what special commands can be used inside the footer. See also +# section "Doxygen usage" for information on how to generate the default footer +# that doxygen normally uses. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_FOOTER = + +# The HTML_STYLESHEET tag can be used to specify a user-defined cascading style +# sheet that is used by each HTML page. It can be used to fine-tune the look of +# the HTML output. If left blank doxygen will generate a default style sheet. +# See also section "Doxygen usage" for information on how to generate the style +# sheet that doxygen normally uses. +# Note: It is recommended to use HTML_EXTRA_STYLESHEET instead of this tag, as +# it is more robust and this tag (HTML_STYLESHEET) will in the future become +# obsolete. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_STYLESHEET = + +# The HTML_EXTRA_STYLESHEET tag can be used to specify additional user-defined +# cascading style sheets that are included after the standard style sheets +# created by doxygen. Using this option one can overrule certain style aspects. +# This is preferred over using HTML_STYLESHEET since it does not replace the +# standard style sheet and is therefore more robust against future updates. +# Doxygen will copy the style sheet files to the output directory. +# Note: The order of the extra style sheet files is of importance (e.g. the last +# style sheet in the list overrules the setting of the previous ones in the +# list). For an example see the documentation. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_EXTRA_STYLESHEET = + +# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or +# other source files which should be copied to the HTML output directory. Note +# that these files will be copied to the base HTML output directory. Use the +# $relpath^ marker in the HTML_HEADER and/or HTML_FOOTER files to load these +# files. In the HTML_STYLESHEET file, use the file name only. Also note that the +# files will be copied as-is; there are no commands or markers available. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_EXTRA_FILES = + +# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen +# will adjust the colors in the style sheet and background images according to +# this color. Hue is specified as an angle on a colorwheel, see +# http://en.wikipedia.org/wiki/Hue for more information. For instance the value +# 0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300 +# purple, and 360 is red again. +# Minimum value: 0, maximum value: 359, default value: 220. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_HUE = 220 + +# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors +# in the HTML output. For a value of 0 the output will use grayscales only. A +# value of 255 will produce the most vivid colors. +# Minimum value: 0, maximum value: 255, default value: 100. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_SAT = 100 + +# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to the +# luminance component of the colors in the HTML output. Values below 100 +# gradually make the output lighter, whereas values above 100 make the output +# darker. The value divided by 100 is the actual gamma applied, so 80 represents +# a gamma of 0.8, The value 220 represents a gamma of 2.2, and 100 does not +# change the gamma. +# Minimum value: 40, maximum value: 240, default value: 80. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_GAMMA = 80 + +# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML +# page will contain the date and time when the page was generated. Setting this +# to YES can help to show when doxygen was last run and thus if the +# documentation is up to date. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_TIMESTAMP = NO + +# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML +# documentation will contain sections that can be hidden and shown after the +# page has loaded. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_DYNAMIC_SECTIONS = NO + +# With HTML_INDEX_NUM_ENTRIES one can control the preferred number of entries +# shown in the various tree structured indices initially; the user can expand +# and collapse entries dynamically later on. Doxygen will expand the tree to +# such a level that at most the specified number of entries are visible (unless +# a fully collapsed tree already exceeds this amount). So setting the number of +# entries 1 will produce a full collapsed tree by default. 0 is a special value +# representing an infinite number of entries and will result in a full expanded +# tree by default. +# Minimum value: 0, maximum value: 9999, default value: 100. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_INDEX_NUM_ENTRIES = 100 + +# If the GENERATE_DOCSET tag is set to YES, additional index files will be +# generated that can be used as input for Apple's Xcode 3 integrated development +# environment (see: http://developer.apple.com/tools/xcode/), introduced with +# OSX 10.5 (Leopard). To create a documentation set, doxygen will generate a +# Makefile in the HTML output directory. Running make will produce the docset in +# that directory and running make install will install the docset in +# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find it at +# startup. See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html +# for more information. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_DOCSET = NO + +# This tag determines the name of the docset feed. A documentation feed provides +# an umbrella under which multiple documentation sets from a single provider +# (such as a company or product suite) can be grouped. +# The default value is: Doxygen generated docs. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_FEEDNAME = "Doxygen generated docs" + +# This tag specifies a string that should uniquely identify the documentation +# set bundle. This should be a reverse domain-name style string, e.g. +# com.mycompany.MyDocSet. Doxygen will append .docset to the name. +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_BUNDLE_ID = org.doxygen.Project + +# The DOCSET_PUBLISHER_ID tag specifies a string that should uniquely identify +# the documentation publisher. This should be a reverse domain-name style +# string, e.g. com.mycompany.MyDocSet.documentation. +# The default value is: org.doxygen.Publisher. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_PUBLISHER_ID = org.doxygen.Publisher + +# The DOCSET_PUBLISHER_NAME tag identifies the documentation publisher. +# The default value is: Publisher. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_PUBLISHER_NAME = Publisher + +# If the GENERATE_HTMLHELP tag is set to YES then doxygen generates three +# additional HTML index files: index.hhp, index.hhc, and index.hhk. The +# index.hhp is a project file that can be read by Microsoft's HTML Help Workshop +# (see: http://www.microsoft.com/en-us/download/details.aspx?id=21138) on +# Windows. +# +# The HTML Help Workshop contains a compiler that can convert all HTML output +# generated by doxygen into a single compiled HTML file (.chm). Compiled HTML +# files are now used as the Windows 98 help format, and will replace the old +# Windows help format (.hlp) on all Windows platforms in the future. Compressed +# HTML files also contain an index, a table of contents, and you can search for +# words in the documentation. The HTML workshop also contains a viewer for +# compressed HTML files. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_HTMLHELP = NO + +# The CHM_FILE tag can be used to specify the file name of the resulting .chm +# file. You can add a path in front of the file if the result should not be +# written to the html output directory. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +CHM_FILE = + +# The HHC_LOCATION tag can be used to specify the location (absolute path +# including file name) of the HTML help compiler (hhc.exe). If non-empty, +# doxygen will try to run the HTML help compiler on the generated index.hhp. +# The file has to be specified with full path. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +HHC_LOCATION = + +# The GENERATE_CHI flag controls if a separate .chi index file is generated +# (YES) or that it should be included in the master .chm file (NO). +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +GENERATE_CHI = NO + +# The CHM_INDEX_ENCODING is used to encode HtmlHelp index (hhk), content (hhc) +# and project file content. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +CHM_INDEX_ENCODING = + +# The BINARY_TOC flag controls whether a binary table of contents is generated +# (YES) or a normal table of contents (NO) in the .chm file. Furthermore it +# enables the Previous and Next buttons. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +BINARY_TOC = NO + +# The TOC_EXPAND flag can be set to YES to add extra items for group members to +# the table of contents of the HTML help documentation and to the tree view. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +TOC_EXPAND = NO + +# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and +# QHP_VIRTUAL_FOLDER are set, an additional index file will be generated that +# can be used as input for Qt's qhelpgenerator to generate a Qt Compressed Help +# (.qch) of the generated HTML documentation. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_QHP = NO + +# If the QHG_LOCATION tag is specified, the QCH_FILE tag can be used to specify +# the file name of the resulting .qch file. The path specified is relative to +# the HTML output folder. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QCH_FILE = + +# The QHP_NAMESPACE tag specifies the namespace to use when generating Qt Help +# Project output. For more information please see Qt Help Project / Namespace +# (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#namespace). +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_NAMESPACE = org.doxygen.Project + +# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt +# Help Project output. For more information please see Qt Help Project / Virtual +# Folders (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#virtual- +# folders). +# The default value is: doc. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_VIRTUAL_FOLDER = doc + +# If the QHP_CUST_FILTER_NAME tag is set, it specifies the name of a custom +# filter to add. For more information please see Qt Help Project / Custom +# Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom- +# filters). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_CUST_FILTER_NAME = + +# The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the +# custom filter to add. For more information please see Qt Help Project / Custom +# Filters (see: http://qt-project.org/doc/qt-4.8/qthelpproject.html#custom- +# filters). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_CUST_FILTER_ATTRS = + +# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this +# project's filter section matches. Qt Help Project / Filter Attributes (see: +# http://qt-project.org/doc/qt-4.8/qthelpproject.html#filter-attributes). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_SECT_FILTER_ATTRS = + +# The QHG_LOCATION tag can be used to specify the location of Qt's +# qhelpgenerator. If non-empty doxygen will try to run qhelpgenerator on the +# generated .qhp file. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHG_LOCATION = + +# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files will be +# generated, together with the HTML files, they form an Eclipse help plugin. To +# install this plugin and make it available under the help contents menu in +# Eclipse, the contents of the directory containing the HTML and XML files needs +# to be copied into the plugins directory of eclipse. The name of the directory +# within the plugins directory should be the same as the ECLIPSE_DOC_ID value. +# After copying Eclipse needs to be restarted before the help appears. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_ECLIPSEHELP = NO + +# A unique identifier for the Eclipse help plugin. When installing the plugin +# the directory name containing the HTML and XML files should also have this +# name. Each documentation set should have its own identifier. +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_ECLIPSEHELP is set to YES. + +ECLIPSE_DOC_ID = org.doxygen.Project + +# If you want full control over the layout of the generated HTML pages it might +# be necessary to disable the index and replace it with your own. The +# DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) at top +# of each HTML page. A value of NO enables the index and the value YES disables +# it. Since the tabs in the index contain the same information as the navigation +# tree, you can set this option to YES if you also set GENERATE_TREEVIEW to YES. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +DISABLE_INDEX = NO + +# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index +# structure should be generated to display hierarchical information. If the tag +# value is set to YES, a side panel will be generated containing a tree-like +# index structure (just like the one that is generated for HTML Help). For this +# to work a browser that supports JavaScript, DHTML, CSS and frames is required +# (i.e. any modern browser). Windows users are probably better off using the +# HTML help feature. Via custom style sheets (see HTML_EXTRA_STYLESHEET) one can +# further fine-tune the look of the index. As an example, the default style +# sheet generated by doxygen has an example that shows how to put an image at +# the root of the tree instead of the PROJECT_NAME. Since the tree basically has +# the same information as the tab index, you could consider setting +# DISABLE_INDEX to YES when enabling this option. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_TREEVIEW = NO + +# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that +# doxygen will group on one line in the generated HTML documentation. +# +# Note that a value of 0 will completely suppress the enum values from appearing +# in the overview section. +# Minimum value: 0, maximum value: 20, default value: 4. +# This tag requires that the tag GENERATE_HTML is set to YES. + +ENUM_VALUES_PER_LINE = 4 + +# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be used +# to set the initial width (in pixels) of the frame in which the tree is shown. +# Minimum value: 0, maximum value: 1500, default value: 250. +# This tag requires that the tag GENERATE_HTML is set to YES. + +TREEVIEW_WIDTH = 250 + +# If the EXT_LINKS_IN_WINDOW option is set to YES, doxygen will open links to +# external symbols imported via tag files in a separate window. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +EXT_LINKS_IN_WINDOW = NO + +# Use this tag to change the font size of LaTeX formulas included as images in +# the HTML documentation. When you change the font size after a successful +# doxygen run you need to manually remove any form_*.png images from the HTML +# output directory to force them to be regenerated. +# Minimum value: 8, maximum value: 50, default value: 10. +# This tag requires that the tag GENERATE_HTML is set to YES. + +FORMULA_FONTSIZE = 10 + +# Use the FORMULA_TRANPARENT tag to determine whether or not the images +# generated for formulas are transparent PNGs. Transparent PNGs are not +# supported properly for IE 6.0, but are supported on all modern browsers. +# +# Note that when changing this option you need to delete any form_*.png files in +# the HTML output directory before the changes have effect. +# The default value is: YES. +# This tag requires that the tag GENERATE_HTML is set to YES. + +FORMULA_TRANSPARENT = YES + +# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax (see +# http://www.mathjax.org) which uses client side Javascript for the rendering +# instead of using pre-rendered bitmaps. Use this if you do not have LaTeX +# installed or if you want to formulas look prettier in the HTML output. When +# enabled you may also need to install MathJax separately and configure the path +# to it using the MATHJAX_RELPATH option. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +USE_MATHJAX = NO + +# When MathJax is enabled you can set the default output format to be used for +# the MathJax output. See the MathJax site (see: +# http://docs.mathjax.org/en/latest/output.html) for more details. +# Possible values are: HTML-CSS (which is slower, but has the best +# compatibility), NativeMML (i.e. MathML) and SVG. +# The default value is: HTML-CSS. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_FORMAT = HTML-CSS + +# When MathJax is enabled you need to specify the location relative to the HTML +# output directory using the MATHJAX_RELPATH option. The destination directory +# should contain the MathJax.js script. For instance, if the mathjax directory +# is located at the same level as the HTML output directory, then +# MATHJAX_RELPATH should be ../mathjax. The default value points to the MathJax +# Content Delivery Network so you can quickly see the result without installing +# MathJax. However, it is strongly recommended to install a local copy of +# MathJax from http://www.mathjax.org before deployment. +# The default value is: http://cdn.mathjax.org/mathjax/latest. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_RELPATH = http://cdn.mathjax.org/mathjax/latest + +# The MATHJAX_EXTENSIONS tag can be used to specify one or more MathJax +# extension names that should be enabled during MathJax rendering. For example +# MATHJAX_EXTENSIONS = TeX/AMSmath TeX/AMSsymbols +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_EXTENSIONS = + +# The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces +# of code that will be used on startup of the MathJax code. See the MathJax site +# (see: http://docs.mathjax.org/en/latest/output.html) for more details. For an +# example see the documentation. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_CODEFILE = + +# When the SEARCHENGINE tag is enabled doxygen will generate a search box for +# the HTML output. The underlying search engine uses javascript and DHTML and +# should work on any modern browser. Note that when using HTML help +# (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets (GENERATE_DOCSET) +# there is already a search function so this one should typically be disabled. +# For large projects the javascript based search engine can be slow, then +# enabling SERVER_BASED_SEARCH may provide a better solution. It is possible to +# search using the keyboard; to jump to the search box use + S +# (what the is depends on the OS and browser, but it is typically +# , /