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

Commit 9326a15

Browse files
committed
Prevent codeblock multi-lines from uploading
1 parent 1b2c498 commit 9326a15

File tree

1 file changed

+26
-29
lines changed

1 file changed

+26
-29
lines changed

IRC-Relay/Discord.cs

+26-29
Original file line numberDiff line numberDiff line change
@@ -124,12 +124,34 @@ public async Task OnDiscordMessage(SocketMessage messageParam)
124124
}
125125

126126
/* Santize discord-specific notation to human readable things */
127-
string formatted = await DoURLMessage(messageParam.Content, message);
127+
string formatted = RemoveCodeblock(messageParam.Content, message, out string code);
128128
formatted = MentionToNickname(formatted, message);
129129
formatted = EmojiToName(formatted, message);
130130
formatted = ChannelMentionToName(formatted, message);
131131
formatted = Unescape(formatted);
132132

133+
string[] parts = formatted.Split('\n');
134+
if (parts.Length > 3) // don't spam IRC, please.
135+
{
136+
await messageParam.Channel.SendMessageAsync(messageParam.Author.Mention + ": Too many lines! If you're meaning to post" +
137+
" code blocks, please use \\`\\`\\` to open & close the codeblock." +
138+
"\nYour message has been deleted and was not relayed to IRC. Please try again.");
139+
await messageParam.DeleteAsync();
140+
141+
await messageParam.Author.SendMessageAsync("To prevent you from having to re-type your message,"
142+
+ " here's what you tried to send: \n ```"
143+
+ messageParam.Content
144+
+ "```");
145+
146+
return;
147+
}
148+
149+
if (Program.HasMember(config, "StikkedCreateUrlAndKey") && config.StikkedCreateUrlAndKey.Length > 0)
150+
await DoStikkedUpload(code, message);
151+
else
152+
DoHastebinUpload(code, message);
153+
154+
133155
if (Program.HasMember(config, "SpamFilter")) //bcompat for older configurations
134156
{
135157
foreach (string badstr in config.SpamFilter)
@@ -151,22 +173,6 @@ public async Task OnDiscordMessage(SocketMessage messageParam)
151173
return;
152174
}
153175

154-
string[] parts = formatted.Split('\n');
155-
if (parts.Length > 3) // don't spam IRC, please.
156-
{
157-
await messageParam.Channel.SendMessageAsync(messageParam.Author.Mention + ": Too many lines! If you're meaning to post" +
158-
" code blocks, please use \\`\\`\\` to open & close the codeblock." +
159-
"\nYour message has been deleted and was not relayed to IRC. Please try again.");
160-
await messageParam.DeleteAsync();
161-
162-
await messageParam.Author.SendMessageAsync("To prevent you from having to re-type your message,"
163-
+ " here's what you tried to send: \n ```"
164-
+ messageParam.Content
165-
+ "```");
166-
167-
return;
168-
}
169-
170176
string username = (messageParam.Author as SocketGuildUser)?.Nickname ?? message.Author.Username;
171177
if (config.IRCLogMessages)
172178
LogManager.WriteLog(MsgSendType.DiscordToIRC, username, formatted, "log.txt");
@@ -200,21 +206,17 @@ public void Dispose()
200206

201207
/** Helper methods **/
202208

203-
public async Task<string> DoURLMessage(string input, SocketUserMessage msg)
209+
public string RemoveCodeblock(string input, SocketUserMessage msg, out string codeout)
204210
{
211+
codeout = "";
205212
string text = "```";
206213
if (input.Contains("```"))
207214
{
208215
int start = input.IndexOf(text, StringComparison.CurrentCulture);
209216
int end = input.IndexOf(text, start + text.Length, StringComparison.CurrentCulture);
210217

211218
string code = input.Substring(start + text.Length, (end - start) - text.Length);
212-
213-
if (Program.HasMember(config, "StikkedCreateUrlAndKey") && config.StikkedCreateUrlAndKey.Length > 0)
214-
await DoStikkedUpload(code, msg);
215-
else
216-
DoHastebinUpload(code, msg);
217-
219+
codeout = code; //await DoStikkedUpload(code, msg);
218220
input = input.Remove(start, (end - start) + text.Length);
219221
}
220222
return input;
@@ -246,11 +248,6 @@ private async Task DoStikkedUpload(string input, SocketUserMessage msg)
246248
var content = new FormUrlEncodedContent(values);
247249
var response = await client.PostAsync(config.StikkedCreateUrlAndKey, content); // config.StikkedCreateUrlAndKey
248250
var url = await response.Content.ReadAsStringAsync();
249-
250-
if (config.IRCLogMessages)
251-
LogManager.WriteLog(MsgSendType.DiscordToIRC, username, url, "log.txt");
252-
253-
session.SendMessage(Session.TargetBot.IRC, url, username);
254251
}
255252
}
256253

0 commit comments

Comments
 (0)