summaryrefslogtreecommitdiff
path: root/src/SMAPI.Web/Framework
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2019-07-18 15:13:29 -0400
committerJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2019-09-14 18:52:47 -0400
commitbe1f09f5f9d3318a4bbdf593f671f4eacdd4395d (patch)
tree433ef474e5da94fda6e6eee9c524f2c969f434c1 /src/SMAPI.Web/Framework
parent8700084300e7bea240693312b6e99d1c9482d57d (diff)
downloadSMAPI-be1f09f5f9d3318a4bbdf593f671f4eacdd4395d.tar.gz
SMAPI-be1f09f5f9d3318a4bbdf593f671f4eacdd4395d.tar.bz2
SMAPI-be1f09f5f9d3318a4bbdf593f671f4eacdd4395d.zip
update obsolete code
Diffstat (limited to 'src/SMAPI.Web/Framework')
-rw-r--r--src/SMAPI.Web/Framework/Clients/Pastebin/PastebinClient.cs32
1 files changed, 8 insertions, 24 deletions
diff --git a/src/SMAPI.Web/Framework/Clients/Pastebin/PastebinClient.cs b/src/SMAPI.Web/Framework/Clients/Pastebin/PastebinClient.cs
index 12c3e83f..1e46f2dc 100644
--- a/src/SMAPI.Web/Framework/Clients/Pastebin/PastebinClient.cs
+++ b/src/SMAPI.Web/Framework/Clients/Pastebin/PastebinClient.cs
@@ -1,11 +1,8 @@
using System;
-using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Net.Http;
-using System.Text;
using System.Threading.Tasks;
-using System.Web;
using Pathoschild.Http.Client;
namespace StardewModdingAPI.Web.Framework.Clients.Pastebin
@@ -82,15 +79,15 @@ namespace StardewModdingAPI.Web.Framework.Clients.Pastebin
// post to API
string response = await this.Client
.PostAsync("api/api_post.php")
- .WithBodyContent(this.GetFormUrlEncodedContent(new Dictionary<string, string>
+ .WithBody(p => p.FormUrlEncoded(new
{
- ["api_option"] = "paste",
- ["api_user_key"] = this.UserKey,
- ["api_dev_key"] = this.DevKey,
- ["api_paste_private"] = "1", // unlisted
- ["api_paste_name"] = $"SMAPI log {DateTime.UtcNow:s}",
- ["api_paste_expire_date"] = "N", // never expire
- ["api_paste_code"] = content
+ api_option = "paste",
+ api_user_key = this.UserKey,
+ api_dev_key = this.DevKey,
+ api_paste_private = 1, // unlisted
+ api_paste_name = $"SMAPI log {DateTime.UtcNow:s}",
+ api_paste_expire_date = "N", // never expire
+ api_paste_code = content
}))
.AsString();
@@ -117,18 +114,5 @@ namespace StardewModdingAPI.Web.Framework.Clients.Pastebin
{
this.Client.Dispose();
}
-
-
- /*********
- ** Private methods
- *********/
- /// <summary>Build an HTTP content body with form-url-encoded content.</summary>
- /// <param name="data">The content to encode.</param>
- /// <remarks>This bypasses an issue where <see cref="FormUrlEncodedContent"/> restricts the body length to the maximum size of a URL, which isn't applicable here.</remarks>
- private HttpContent GetFormUrlEncodedContent(IDictionary<string, string> data)
- {
- string body = string.Join("&", from arg in data select $"{HttpUtility.UrlEncode(arg.Key)}={HttpUtility.UrlEncode(arg.Value)}");
- return new StringContent(body, Encoding.UTF8, "application/x-www-form-urlencoded");
- }
}
}