From 9dd2997b0f0670462e12f1595decb33673b996c8 Mon Sep 17 00:00:00 2001 From: Kwoth Date: Wed, 16 Oct 2024 15:15:41 +0000 Subject: [PATCH] dev: added botonguild api endpoint --- src/NadekoBot.GrpcApiBase/protos/other.proto | 10 +++++++++- src/NadekoBot/Services/GrpcApi/OtherSvc.cs | 13 +++++++++++++ 2 files changed, 22 insertions(+), 1 deletion(-) diff --git a/src/NadekoBot.GrpcApiBase/protos/other.proto b/src/NadekoBot.GrpcApiBase/protos/other.proto index c075c4fc9..367bdc2ee 100644 --- a/src/NadekoBot.GrpcApiBase/protos/other.proto +++ b/src/NadekoBot.GrpcApiBase/protos/other.proto @@ -8,7 +8,7 @@ import "google/protobuf/timestamp.proto"; package other; service GrpcOther { - + rpc BotOnGuild(BotOnGuildRequest) returns (BotOnGuildReply); rpc GetGuilds(google.protobuf.Empty) returns (GetGuildsReply); rpc GetTextChannels(GetTextChannelsRequest) returns (GetTextChannelsReply); @@ -20,6 +20,14 @@ service GrpcOther { rpc GetServerInfo(ServerInfoRequest) returns (GetServerInfoReply); } +message BotOnGuildRequest { + uint64 guildId = 1; +} + +message BotOnGuildReply { + bool success = 1; +} + message GetGuildsReply { repeated GuildReply guilds = 1; } diff --git a/src/NadekoBot/Services/GrpcApi/OtherSvc.cs b/src/NadekoBot/Services/GrpcApi/OtherSvc.cs index dacc091a6..3ebf094e9 100644 --- a/src/NadekoBot/Services/GrpcApi/OtherSvc.cs +++ b/src/NadekoBot/Services/GrpcApi/OtherSvc.cs @@ -39,6 +39,19 @@ public sealed class OtherSvc : GrpcOther.GrpcOtherBase, INService _cache = cache; } + [GrpcNoAuthRequired] + public override async Task BotOnGuild(BotOnGuildRequest request, ServerCallContext context) + { + var guild = await _client.GetGuildAsync(request.GuildId); + + var reply = new BotOnGuildReply + { + Success = guild is not null + }; + + return reply; + } + public override async Task GetTextChannels( GetTextChannelsRequest request, ServerCallContext context)