@@ -124,12 +124,34 @@ public async Task OnDiscordMessage(SocketMessage messageParam)
124
124
}
125
125
126
126
/* 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 ) ;
128
128
formatted = MentionToNickname ( formatted , message ) ;
129
129
formatted = EmojiToName ( formatted , message ) ;
130
130
formatted = ChannelMentionToName ( formatted , message ) ;
131
131
formatted = Unescape ( formatted ) ;
132
132
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
+ "\n Your 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
+
133
155
if ( Program . HasMember ( config , "SpamFilter" ) ) //bcompat for older configurations
134
156
{
135
157
foreach ( string badstr in config . SpamFilter )
@@ -151,22 +173,6 @@ public async Task OnDiscordMessage(SocketMessage messageParam)
151
173
return ;
152
174
}
153
175
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
- "\n Your 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
-
170
176
string username = ( messageParam . Author as SocketGuildUser ) ? . Nickname ?? message . Author . Username ;
171
177
if ( config . IRCLogMessages )
172
178
LogManager . WriteLog ( MsgSendType . DiscordToIRC , username , formatted , "log.txt" ) ;
@@ -200,21 +206,17 @@ public void Dispose()
200
206
201
207
/** Helper methods **/
202
208
203
- public async Task < string > DoURLMessage ( string input , SocketUserMessage msg )
209
+ public string RemoveCodeblock ( string input , SocketUserMessage msg , out string codeout )
204
210
{
211
+ codeout = "" ;
205
212
string text = "```" ;
206
213
if ( input . Contains ( "```" ) )
207
214
{
208
215
int start = input . IndexOf ( text , StringComparison . CurrentCulture ) ;
209
216
int end = input . IndexOf ( text , start + text . Length , StringComparison . CurrentCulture ) ;
210
217
211
218
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);
218
220
input = input . Remove ( start , ( end - start ) + text . Length ) ;
219
221
}
220
222
return input ;
@@ -246,11 +248,6 @@ private async Task DoStikkedUpload(string input, SocketUserMessage msg)
246
248
var content = new FormUrlEncodedContent ( values ) ;
247
249
var response = await client . PostAsync ( config . StikkedCreateUrlAndKey , content ) ; // config.StikkedCreateUrlAndKey
248
250
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 ) ;
254
251
}
255
252
}
256
253
0 commit comments