concord 2.3.5

A terminal user interface client for Discord
Documentation
use crate::{
    DiscordClient,
    discord::{AppCommand, AppEvent},
    logging,
};

const MENTION_MEMBER_SEARCH_LIMIT: u16 = 10;

pub(super) async fn handle(client: DiscordClient, command: AppCommand) {
    match command {
        AppCommand::LoadGuildMembers { guild_id } => {
            publish_gateway_result(&client, client.request_guild_members(guild_id)).await;
        }
        AppCommand::LoadGuildMembersByIds { guild_id, user_ids } => {
            publish_gateway_result(
                &client,
                client.request_guild_members_by_ids(guild_id, user_ids),
            )
            .await;
        }
        AppCommand::SearchGuildMembers { guild_id, query } => {
            publish_gateway_result(
                &client,
                client.search_guild_members(guild_id, query, MENTION_MEMBER_SEARCH_LIMIT),
            )
            .await;
        }
        AppCommand::SetSelectedGuild { guild_id } => {
            client
                .publish_event(AppEvent::SelectedGuildChanged { guild_id })
                .await;
        }
        AppCommand::SetSelectedMessageChannel { channel_id } => {
            client
                .publish_event(AppEvent::SelectedMessageChannelChanged { channel_id })
                .await;
        }
        AppCommand::SubscribeDirectMessage { channel_id } => {
            publish_gateway_result(&client, client.subscribe_direct_message(channel_id)).await;
        }
        AppCommand::SubscribeGuildChannel {
            guild_id,
            channel_id,
        } => {
            publish_gateway_result(
                &client,
                client.subscribe_guild_channel(guild_id, channel_id),
            )
            .await;
        }
        AppCommand::UpdateMemberListSubscription {
            guild_id,
            channel_id,
            ranges,
        } => {
            publish_gateway_result(
                &client,
                client.update_member_list_subscription(guild_id, channel_id, ranges),
            )
            .await;
        }
        _ => unreachable!("non-gateway command routed to gateway handler"),
    }
}

async fn publish_gateway_result(client: &DiscordClient, result: std::result::Result<(), String>) {
    if let Err(message) = result {
        publish_gateway_error(client, message).await;
    }
}

async fn publish_gateway_error(client: &DiscordClient, message: String) {
    logging::error("app", &message);
    client
        .publish_event(AppEvent::GatewayError { message })
        .await;
}