|
|
|
@ -1,5 +1,6 @@
|
|
|
|
|
using System;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Net;
|
|
|
|
|
using System.Web;
|
|
|
|
|
using FluentValidation.Results;
|
|
|
|
|
using NLog;
|
|
|
|
|
using NzbDrone.Common.Extensions;
|
|
|
|
@ -28,13 +29,13 @@ namespace NzbDrone.Core.Notifications.Telegram
|
|
|
|
|
public void SendNotification(string title, string message, TelegramSettings settings)
|
|
|
|
|
{
|
|
|
|
|
//Format text to add the title before and bold using markdown
|
|
|
|
|
var text = $"*{title}*\n{message}";
|
|
|
|
|
var text = $"<b>{HttpUtility.HtmlEncode(title)}</b>\n{HttpUtility.HtmlEncode(message)}";
|
|
|
|
|
var client = RestClientFactory.BuildClient(URL);
|
|
|
|
|
var request = new RestRequest("bot{token}/sendmessage", Method.POST);
|
|
|
|
|
|
|
|
|
|
request.AddUrlSegment("token", settings.BotToken);
|
|
|
|
|
request.AddParameter("chat_id", settings.ChatId);
|
|
|
|
|
request.AddParameter("parse_mode", "Markdown");
|
|
|
|
|
request.AddParameter("parse_mode", "HTML");
|
|
|
|
|
request.AddParameter("text", text);
|
|
|
|
|
|
|
|
|
|
client.ExecuteAndValidate(request);
|
|
|
|
|