RikoBot-Sharp/Commands.cs

269 lines
11 KiB
C#
Raw Normal View History

2020-01-30 20:57:41 +01:00
using System;
using System.Collections.Generic;
using System.Linq;
2020-03-07 01:11:58 +01:00
using System.Text;
2020-01-30 20:57:41 +01:00
using System.Text.RegularExpressions;
using System.Web;
using CodeHollow.FeedReader;
using NLog;
using Telegram.Bot.Exceptions;
using Telegram.Bot.Types;
using Telegram.Bot.Types.Enums;
namespace RSSBot {
public static class Commands {
private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
public static async void Welcome(Message message, GroupCollection matches) {
await Bot.BotClient.SendTextMessageAsync(
message.Chat,
"<b>Willkommen beim RSS-Bot!</b>\nSende /help, um zu starten.",
ParseMode.Html
);
}
public static async void Help(Message message, GroupCollection matches) {
await Bot.BotClient.SendTextMessageAsync(
message.Chat,
"<b>/rss</b> <i>[Chat]</i>: Abonnierte Feeds anzeigen\n" +
"<b>/sub</b> <i>Feed-URL</i> <i>[Chat]</i>: Feed abonnieren\n" +
"<b>/del</b> <i>Feed-URL</i> <i>[Chat]</i>: Feed löschen\n" +
"<b>/show</b> <i>Feed-URL</i> <i>[Chat]</i>: Feeds auf dieser Seite anzeigen\n" +
"<i>[Chat]</i> ist ein optionales Argument mit dem @Kanalnamen.",
ParseMode.Html
);
}
public static async void Subscribe(Message message, GroupCollection args) {
2020-03-07 01:11:58 +01:00
var url = args[1].Value;
var chatId = message.Chat.Id;
var feed = new RssBotFeed(url);
2020-01-30 20:57:41 +01:00
await Bot.BotClient.SendChatActionAsync(message.Chat, ChatAction.Typing);
if (args.Count > 2) {
2020-03-07 01:11:58 +01:00
var chatName = args[2].Value;
if (!chatName.StartsWith("@")) chatName = $"@{chatName}";
2020-01-30 20:57:41 +01:00
Chat chatInfo;
try {
chatInfo = await Bot.BotClient.GetChatAsync(chatName);
} catch {
await Bot.BotClient.SendTextMessageAsync(message.Chat, "❌ Dieser Kanal existiert nicht.");
return;
}
chatId = chatInfo.Id;
if (!await Utils.IsBotAdmin(chatId)) {
await Bot.BotClient.SendTextMessageAsync(message.Chat,
"❌ Du musst den Bot als Administrator zu diesem Kanal hinzufügen.");
return;
}
}
try {
await feed.Check();
} catch {
await Bot.BotClient.SendTextMessageAsync(
message.Chat,
"❌ Kein gültiger RSS-Feed."
);
return;
}
// Check if we already have the feed
RssBotFeed existingFeed = Bot.RssBotFeeds
.FirstOrDefault(x => x.Url.ToLower().Equals(feed.Url.ToLower()));
2020-03-07 01:11:58 +01:00
if (existingFeed == null)
2020-01-30 20:57:41 +01:00
Bot.RssBotFeeds.Add(feed);
2020-03-07 01:11:58 +01:00
else
2020-01-30 20:57:41 +01:00
feed = existingFeed;
// Check if chat already subscribed
if (feed.Subs.Contains(chatId)) {
await Bot.BotClient.SendTextMessageAsync(message.Chat, "✅ Dieser Feed wurde bereits abonniert.");
} else {
feed.Subs.Add(chatId);
await Bot.BotClient.SendTextMessageAsync(message.Chat, "✅ Feed abonniert!");
Bot.Save();
}
}
public static async void Unsubscribe(Message message, GroupCollection args) {
2020-03-07 01:11:58 +01:00
var url = args[1].Value;
var chatId = message.Chat.Id;
2020-01-30 20:57:41 +01:00
RssBotFeed feed = Bot.RssBotFeeds
.FirstOrDefault(x => x.Url.ToLower().Equals(url.ToLower()));
if (args.Count > 2) {
2020-03-07 01:11:58 +01:00
var chatName = args[2].Value;
if (!chatName.StartsWith("@")) chatName = $"@{chatName}";
2020-01-30 20:57:41 +01:00
Chat chatInfo;
try {
chatInfo = await Bot.BotClient.GetChatAsync(chatName);
} catch {
await Bot.BotClient.SendTextMessageAsync(message.Chat, "❌ Dieser Kanal existiert nicht.");
return;
}
chatId = chatInfo.Id;
if (!await Utils.IsBotAdmin(chatId)) {
await Bot.BotClient.SendTextMessageAsync(message.Chat,
"❌ Du musst den Bot als Administrator zu diesem Kanal hinzufügen.");
return;
}
}
if (feed == null || !feed.Subs.Contains(chatId)) {
await Bot.BotClient.SendTextMessageAsync(message.Chat, "❌ Feed wurde nicht abonniert.");
return;
}
feed.Cleanup(chatId);
2020-03-07 01:11:58 +01:00
if (feed.Subs.Count == 0) Bot.RssBotFeeds.Remove(feed);
2020-01-30 20:57:41 +01:00
await Bot.BotClient.SendTextMessageAsync(message.Chat, "✅ Feed deabonniert!");
Bot.Save();
}
public static async void Show(Message message, GroupCollection args) {
2020-03-07 01:11:58 +01:00
var chatId = message.Chat.Id;
var chatTitle = message.Chat.Type.Equals(ChatType.Private) ? message.Chat.FirstName : message.Chat.Title;
2020-01-30 20:57:41 +01:00
await Bot.BotClient.SendChatActionAsync(message.Chat, ChatAction.Typing);
2020-03-07 01:11:58 +01:00
2020-01-30 20:57:41 +01:00
if (args.Count > 1) {
2020-03-07 01:11:58 +01:00
var chatName = args[1].Value;
if (!chatName.StartsWith("@")) chatName = $"@{chatName}";
2020-01-30 20:57:41 +01:00
Chat chatInfo;
try {
chatInfo = await Bot.BotClient.GetChatAsync(chatName);
} catch {
await Bot.BotClient.SendTextMessageAsync(message.Chat, "❌ Dieser Kanal existiert nicht.");
return;
}
chatId = chatInfo.Id;
chatTitle = chatInfo.Title;
if (!await Utils.IsBotAdmin(chatId)) {
await Bot.BotClient.SendTextMessageAsync(message.Chat,
"❌ Du musst den Bot als Administrator zu diesem Kanal hinzufügen.");
return;
}
}
2020-03-07 01:11:58 +01:00
var feeds = Bot.RssBotFeeds.Where(x => x.Subs.Contains(chatId)).ToList();
2020-01-30 20:57:41 +01:00
2020-03-07 01:11:58 +01:00
var text = new StringBuilder();
2020-01-30 20:57:41 +01:00
if (feeds.Count < 1) {
2020-03-07 01:11:58 +01:00
text.Append("❌ Keine Feeds abonniert.");
2020-01-30 20:57:41 +01:00
} else {
2020-03-07 01:11:58 +01:00
text.Append($"<strong>{HttpUtility.HtmlEncode(chatTitle)}</strong> hat abonniert:\n");
for (var i = 0; i < feeds.Count; i++) text.Append($"<strong>{i + 1}</strong>) {feeds[i].Url}\n");
2020-01-30 20:57:41 +01:00
}
2020-03-07 01:11:58 +01:00
await Bot.BotClient.SendTextMessageAsync(message.Chat, text.ToString(), ParseMode.Html, true);
2020-01-30 20:57:41 +01:00
}
public static async void Sync() {
2020-03-07 01:11:58 +01:00
Logger.Info("================================");
var hadEntries = false;
2020-01-30 20:57:41 +01:00
foreach (RssBotFeed feed in Bot.RssBotFeeds.ToList()) {
Logger.Info(feed.Url);
try {
await feed.Check();
} catch (Exception e) {
Logger.Warn($"FEHLER: {e.Message}");
continue;
}
if (feed.NewEntries.Count == 0) {
Logger.Info("Keine neuen Beiträge.");
continue;
}
hadEntries = true;
Logger.Info(feed.NewEntries.Count == 1
? "1 neuer Beitrag"
: $"{feed.NewEntries.Count} neue Beiträge");
foreach (FeedItem entry in feed.NewEntries) {
2020-03-07 01:11:58 +01:00
var postTitle = "Kein Titel";
if (!string.IsNullOrWhiteSpace(entry.Title)) postTitle = Utils.StripHtml(entry.Title);
2020-01-30 20:57:41 +01:00
2020-03-07 01:11:58 +01:00
var postLink = feed.MainLink;
var linkName = postLink;
2020-01-30 20:57:41 +01:00
if (!string.IsNullOrWhiteSpace(entry.Link)) {
postLink = entry.Link;
// FeedProxy URLs
GroupCollection feedProxy =
2020-03-13 22:40:42 +01:00
Utils.ReturnMatches(postLink, "^https?://feedproxy.google.com/~r/(.+?)/.*");
2020-01-30 20:57:41 +01:00
linkName = feedProxy.Count > 1 ? feedProxy[1].Value : new Uri(postLink).Host;
}
// Remove "www."
2020-03-07 01:11:58 +01:00
var index = linkName.IndexOf("www.", StringComparison.Ordinal);
2020-03-13 13:57:10 +01:00
if (index > -1) linkName = linkName.Remove(index, 4);
2020-01-30 20:57:41 +01:00
2020-03-07 01:11:58 +01:00
var content = "";
if (!string.IsNullOrWhiteSpace(entry.Content))
2020-03-13 13:57:10 +01:00
content = Utils.ProcessContent(entry.Content);
2020-03-07 01:11:58 +01:00
else if (!string.IsNullOrWhiteSpace(entry.Description))
2020-01-30 20:57:41 +01:00
content = Utils.ProcessContent(entry.Description);
2020-03-07 01:11:58 +01:00
var text = $"<b>{postTitle}</b>\n<i>{feed.Title}</i>\n{content}";
2020-01-30 20:57:41 +01:00
text += $"\n<a href=\"{postLink}\">Weiterlesen auf {linkName}</a>";
// Send
2020-03-07 01:11:58 +01:00
foreach (var chatId in feed.Subs.ToList())
2020-01-30 20:57:41 +01:00
try {
await Bot.BotClient.SendTextMessageAsync(chatId, text, ParseMode.Html, true, true);
} catch (ApiRequestException e) {
if (e.ErrorCode.Equals(403)) {
Logger.Warn(e.Message);
feed.Cleanup(chatId);
2020-03-07 01:11:58 +01:00
if (feed.Subs.Count == 0) // was last subscriber
2020-01-30 20:57:41 +01:00
Bot.RssBotFeeds.Remove(feed);
} else {
Logger.Error($"{e.ErrorCode}: {e.Message}");
}
}
}
}
Logger.Info("Nächster Check in 60 Sekunden");
2020-03-07 01:11:58 +01:00
if (hadEntries) Bot.Save();
2020-01-30 20:57:41 +01:00
Bot.JobQueue.Change(TimeSpan.FromMinutes(1), TimeSpan.FromMilliseconds(-1));
}
public static async void ShowAvailableFeeds(Message message, GroupCollection args) {
2020-03-07 01:11:58 +01:00
var url = args[1].Value;
2020-01-30 20:57:41 +01:00
IEnumerable<HtmlFeedLink> feeds;
try {
feeds = await FeedReader.GetFeedUrlsFromUrlAsync(url);
} catch {
await Bot.BotClient.SendTextMessageAsync(message.Chat, "❌ Sete konnte nicht erreicht werden.");
return;
}
2020-03-07 01:11:58 +01:00
var htmlFeedLinks = feeds.ToList();
2020-01-30 20:57:41 +01:00
if (htmlFeedLinks.Count == 0) {
await Bot.BotClient.SendTextMessageAsync(message.Chat, "❌ Keine Feeds gefunden.");
return;
}
2020-03-07 01:11:58 +01:00
var text = htmlFeedLinks.Aggregate("Feeds gefunden:\n",
(current, feedLink) =>
current + $"* <a href=\"{feedLink.Url}\">{Utils.StripHtml(feedLink.Title)}</a>\n");
2020-01-30 20:57:41 +01:00
await Bot.BotClient.SendTextMessageAsync(message.Chat, text, ParseMode.Html, true);
}
}
}