29 lines
1.1 KiB
C#
29 lines
1.1 KiB
C#
using System.Text;
|
|
using MCPForUnity.Editor.Services.AssetGen.Http;
|
|
|
|
namespace MCPForUnity.Editor.Services.AssetGen.Providers
|
|
{
|
|
/// <summary>
|
|
/// Shared HTTP-response helpers for provider adapters: read the response text (falling back to
|
|
/// a UTF-8 decode of the raw body) and truncate long bodies for inclusion in error messages.
|
|
/// </summary>
|
|
internal static class ProviderHttp
|
|
{
|
|
/// <summary>Response text, falling back to a UTF-8 decode of the raw body when Text is empty.</summary>
|
|
public static string BodyText(HttpResult res)
|
|
{
|
|
string text = res?.Text;
|
|
if (string.IsNullOrEmpty(text) && res?.Body != null)
|
|
text = Encoding.UTF8.GetString(res.Body);
|
|
return text;
|
|
}
|
|
|
|
/// <summary>Cap a (possibly null) string at 500 chars for inclusion in an error message.</summary>
|
|
public static string Truncate(string s)
|
|
{
|
|
if (string.IsNullOrEmpty(s)) return string.Empty;
|
|
return s.Length <= 500 ? s : s.Substring(0, 500) + "…";
|
|
}
|
|
}
|
|
}
|