Inheritance: Telegram.Bot.Types.ReplyMarkups.ReplyMarkup
Exemple #1
0
        public async Task SendTextMessage(string message, params string[] items)
        {
            try
            {
                IReplyMarkup replyMarkup;
                if (items.Count() > 0)
                {
                    replyMarkup = new ReplyKeyboardMarkup(
                        items.Select(x => new KeyboardButton(x)).Select(x => new[] { x }).ToArray(),
                        oneTimeKeyboard: true
                        );
                }
                else
                {
                    replyMarkup = new Telegram.Bot.Types.ReplyMarkups.ReplyKeyboardRemove
                    {
                        RemoveKeyboard = true
                    };
                }
                var msg = await Worker.TelegramApi.SendTextMessageAsync(ChatId, message,
                                                                        parseMode : Telegram.Bot.Types.Enums.ParseMode.Html,
                                                                        replyMarkup : replyMarkup
                                                                        );

                var task = Worker.GeneralApi.Send(msg.Date, msg.Text, msg.Chat.Id.ToString(), Worker.BotInfo.Username, msg.Chat.Username);
                task.Wait();
            }
            catch (Exception ex) {
                Console.WriteLine(ex);
            }
        }
Exemple #2
0
        async void Bot_OnMessage(object sender, MessageEventArgs e)
        {
            var msg = e.Message;

            async void RemoveK()
            {
                var rmv = new ReplyKeyboardRemove();

                await bot.SendTextMessageAsync(msg.Chat.Id, "Done", Telegram.Bot.Types.Enums.ParseMode.Default, false, false, 0, replyMarkup : rmv);

                await bot.SendChatActionAsync(msg.Chat.Id, Telegram.Bot.Types.Enums.ChatAction.Typing);
            };  // Метод который убирает клавиатуру

            if (msg.Type == Telegram.Bot.Types.Enums.MessageType.Text)
            {
                if (msg.Text == "Remove Keyboard")
                {
                    RemoveK();
                }

                if (msg.Text == "/weather" || msg.Text == "/погода")
                {
                    var RKM = new ReplyKeyboardMarkup();
                    RKM.Keyboard = new KeyboardButton[][]
                    {
                        new KeyboardButton []
                        {
                            new KeyboardButton("Погода")
                            {
                                RequestLocation = true
                            },
                        },
                        new KeyboardButton[]
                        {
                            new KeyboardButton("Remove Keyboard")
                        }
                    };
                    await bot.SendTextMessageAsync(msg.Chat.Id, "Requesting location..", replyMarkup : RKM);
                }

                if (msg.Text == "Погода сегодня")
                {
                    var    rmv  = new Telegram.Bot.Types.ReplyMarkups.ReplyKeyboardRemove();
                    string cord = coord.GetCoord(msg.Chat.Id.ToString());
                    if (cord != "error" || cord != null)
                    {
                        string lat = cord.Split('/')[0];
                        string lon = cord.Split('/')[1];
                        await bot.SendTextMessageAsync(msg.Chat.Id, weather.GetForecast(lat, lon, "today"), replyMarkup : rmv);
                    }
                    else
                    {
                        await bot.SendTextMessageAsync(msg.Chat.Id, "Координаты не указаны", replyMarkup : rmv);
                    }
                }

                if (msg.Text == "Прогноз погоды")
                {
                    var    rmv  = new Telegram.Bot.Types.ReplyMarkups.ReplyKeyboardRemove();
                    string cord = coord.GetCoord(msg.Chat.Id.ToString());
                    if (cord != "error" || cord != null)
                    {
                        string lat = cord.Split('/')[0];
                        string lon = cord.Split('/')[1];
                        await bot.SendTextMessageAsync(msg.Chat.Id, weather.GetForecast(lat, lon, "3 days"));
                    }
                    else
                    {
                        await bot.SendTextMessageAsync(msg.Chat.Id, "Коррдинаты не указаны", replyMarkup : rmv);
                    }
                }

                if (msg.Text.StartsWith("/city"))
                {
                    try
                    {
                        string   txt   = msg.Text.ToString();
                        string[] split = txt.Split(' ');
                        string   city  = split[1];
                        await bot.SendTextMessageAsync(msg.Chat.Id, weather.SetCity(city));
                    }
                    catch
                    {
                        await bot.SendTextMessageAsync(msg.Chat.Id, "Некорректное выражение\n" + "/city cityname");
                    }
                }
            }

            if (msg.Type == Telegram.Bot.Types.Enums.MessageType.Location)
            {
                if (msg.Location.Latitude > 0.01)
                {
                    if (msg.ReplyToMessage.Text == "Requesting location..")
                    {
                        var forecast = new ReplyKeyboardMarkup();
                        forecast.Keyboard = new KeyboardButton[][]
                        {
                            new KeyboardButton []
                            {
                                new KeyboardButton("Погода сегодня"),
                                new KeyboardButton("Прогноз погоды"),
                            },
                            new KeyboardButton[]
                            {
                                new KeyboardButton("Remove Keyboard")
                            }
                        };
                        coord.SetCoord(msg.Chat.Id.ToString(), msg.Location.Latitude, msg.Location.Longitude);
                        string urlocation = "Ширина : " + coord.GetCoord(msg.Chat.Id.ToString()).Split('/')[0] + "\nДолгота : " + coord.GetCoord(msg.Chat.Id.ToString()).Split('/')[1];
                        await bot.SendTextMessageAsync(msg.Chat.Id, urlocation, replyMarkup : forecast);
                    }
                }
                else
                {
                    await bot.SendTextMessageAsync(msg.Chat.Id, "Something went wrong");
                }
            }

            if (msg == null || msg.Type != Telegram.Bot.Types.Enums.MessageType.Text)
            {
                return;
            }
        }