Skip to content
This repository was archived by the owner on Sep 29, 2020. It is now read-only.

Commit 157e6fc

Browse files
authored
Upload hastebin asyncronously & prevent empty log messages (#22)
1 parent f76a345 commit 157e6fc

File tree

3 files changed

+29
-28
lines changed

3 files changed

+29
-28
lines changed

IRC-Relay/Discord.cs

+25-27
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ public async Task OnDiscordMessage(SocketMessage messageParam)
114114
}
115115

116116
/* Santize discord-specific notation to human readable things */
117-
string formatted = CodeblockToURL(messageParam.Content, out string url);
117+
string formatted = DoURLMessage(messageParam.Content, message);
118118
formatted = MentionToNickname(formatted, message);
119119
formatted = EmojiToName(formatted, message);
120120
formatted = ChannelMentionToName(formatted, message);
@@ -168,19 +168,11 @@ await messageParam.Author.SendMessageAsync("To prevent you from having to re-typ
168168

169169
foreach (String part in parts) // we're going to send each line indpependently instead of letting irc clients handle it.
170170
{
171-
if (part.Replace(" ", "").Replace("\n", "").Replace("\t", "").Length != 0) // if the string is not empty or just spaces
171+
if (part.Trim().Length != 0) // if the string is not empty or just spaces
172172
{
173173
session.SendMessage(Session.MessageDestination.IRC, part, username);
174174
}
175175
}
176-
177-
if (!url.Equals("")) // hastebin upload is succesfuly if url contains any data
178-
{
179-
if (config.IRCLogMessages)
180-
LogManager.WriteLog(MsgSendType.DiscordToIRC, username, url, "log.txt");
181-
182-
session.SendMessage(Session.MessageDestination.IRC, url, username);
183-
}
184176
}
185177

186178
public static Task Log(LogMessage msg)
@@ -195,7 +187,7 @@ public void Dispose()
195187

196188
/** Helper methods **/
197189

198-
public static string CodeblockToURL(string input, out string url)
190+
public string DoURLMessage(string input, SocketUserMessage msg)
199191
{
200192
string text = "```";
201193
if (input.Contains("```"))
@@ -205,32 +197,38 @@ public static string CodeblockToURL(string input, out string url)
205197

206198
string code = input.Substring(start + text.Length, (end - start) - text.Length);
207199

208-
url = UploadMarkDown(code);
200+
using (var client = new WebClient())
201+
{
202+
client.Headers[HttpRequestHeader.ContentType] = "text/plain";
203+
204+
client.UploadDataCompleted += Client_UploadDataCompleted;
205+
client.UploadDataAsync(new Uri("https://hastebin.com/documents"), null, Encoding.ASCII.GetBytes(input), msg);
206+
}
209207

210208
input = input.Remove(start, (end - start) + text.Length);
211209
}
212-
else
213-
{
214-
url = "";
215-
}
216210
return input;
217211
}
218-
public static string UploadMarkDown(string input)
212+
213+
private void Client_UploadDataCompleted(object sender, UploadDataCompletedEventArgs e)
219214
{
220-
using (var client = new WebClient())
215+
if (e.Error != null)
221216
{
222-
client.Headers[HttpRequestHeader.ContentType] = "text/plain";
217+
Log(new LogMessage(LogSeverity.Critical, "HastebinUpload", e.Error.Message));
218+
return;
219+
}
220+
JObject obj = JObject.Parse(Encoding.UTF8.GetString(e.Result));
223221

224-
var response = client.UploadString("https://hastebin.com/documents", input);
225-
JObject obj = JObject.Parse(response);
222+
if (obj.HasValues)
223+
{
224+
string key = (string)obj["key"];
225+
string result = "https://hastebin.com/" + key + ".cs";
226226

227-
if (!obj.HasValues)
228-
{
229-
return "";
230-
}
227+
var msg = (SocketUserMessage)e.UserState;
228+
if (config.IRCLogMessages)
229+
LogManager.WriteLog(MsgSendType.DiscordToIRC, msg.Author.Username, result, "log.txt");
231230

232-
string key = (string)obj["key"];
233-
return "https://hastebin.com/" + key + ".cs";
231+
session.SendMessage(Session.MessageDestination.IRC, result, msg.Author.Username);
234232
}
235233
}
236234
public static string MentionToNickname(string input, SocketUserMessage message)

IRC-Relay/IRC.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ private void OnError(object sender, ErrorEventArgs e)
9292
{
9393
/* Create a new thread to kill the session. We cannot block
9494
* this Disconnect call */
95-
new System.Threading.Thread(() => { session.Kill(); }).Start();
95+
new Thread(() => { session.Kill(); }).Start();
9696

9797
Discord.Log(new LogMessage(LogSeverity.Critical, "IRCOnError", e.ErrorMessage));
9898
}

IRC-Relay/LogManager.cs

+3
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@ public class LogManager
3131
{
3232
public static void WriteLog(MsgSendType type, string name, string message, string filename)
3333
{
34+
if (message.Trim().Length == 0)
35+
return;
36+
3437
string prefix;
3538
if (type == MsgSendType.DiscordToIRC)
3639
{

0 commit comments

Comments
 (0)