@@ -114,7 +114,7 @@ public async Task OnDiscordMessage(SocketMessage messageParam)
114
114
}
115
115
116
116
/* Santize discord-specific notation to human readable things */
117
- string formatted = CodeblockToURL ( messageParam . Content , out string url ) ;
117
+ string formatted = DoURLMessage ( messageParam . Content , message ) ;
118
118
formatted = MentionToNickname ( formatted , message ) ;
119
119
formatted = EmojiToName ( formatted , message ) ;
120
120
formatted = ChannelMentionToName ( formatted , message ) ;
@@ -168,19 +168,11 @@ await messageParam.Author.SendMessageAsync("To prevent you from having to re-typ
168
168
169
169
foreach ( String part in parts ) // we're going to send each line indpependently instead of letting irc clients handle it.
170
170
{
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
172
172
{
173
173
session . SendMessage ( Session . MessageDestination . IRC , part , username ) ;
174
174
}
175
175
}
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
- }
184
176
}
185
177
186
178
public static Task Log ( LogMessage msg )
@@ -195,7 +187,7 @@ public void Dispose()
195
187
196
188
/** Helper methods **/
197
189
198
- public static string CodeblockToURL ( string input , out string url )
190
+ public string DoURLMessage ( string input , SocketUserMessage msg )
199
191
{
200
192
string text = "```" ;
201
193
if ( input . Contains ( "```" ) )
@@ -205,32 +197,38 @@ public static string CodeblockToURL(string input, out string url)
205
197
206
198
string code = input . Substring ( start + text . Length , ( end - start ) - text . Length ) ;
207
199
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
+ }
209
207
210
208
input = input . Remove ( start , ( end - start ) + text . Length ) ;
211
209
}
212
- else
213
- {
214
- url = "" ;
215
- }
216
210
return input ;
217
211
}
218
- public static string UploadMarkDown ( string input )
212
+
213
+ private void Client_UploadDataCompleted ( object sender , UploadDataCompletedEventArgs e )
219
214
{
220
- using ( var client = new WebClient ( ) )
215
+ if ( e . Error != null )
221
216
{
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 ) ) ;
223
221
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" ;
226
226
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" ) ;
231
230
232
- string key = ( string ) obj [ "key" ] ;
233
- return "https://hastebin.com/" + key + ".cs" ;
231
+ session . SendMessage ( Session . MessageDestination . IRC , result , msg . Author . Username ) ;
234
232
}
235
233
}
236
234
public static string MentionToNickname ( string input , SocketUserMessage message )
0 commit comments