Files
TouchSocket/RRQMSocket.Http/Common/HttpResponse.cs
若汝棋茗 1bc8e48431 整体更新
2021-08-13 21:00:37 +08:00

123 lines
4.1 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//------------------------------------------------------------------------------
// 此代码版权除特别声明或在RRQMCore.XREF命名空间的代码归作者本人若汝棋茗所有
// 源代码使用协议遵循本仓库的开源协议及附加协议若本仓库没有设置则按MIT开源协议授权
// CSDN博客https://blog.csdn.net/qq_40374647
// 哔哩哔哩视频https://space.bilibili.com/94253567
// Gitee源代码仓库https://gitee.com/RRQM_Home
// Github源代码仓库https://github.com/RRQM
// 交流QQ群234762506
// 感谢您的下载和使用
//------------------------------------------------------------------------------
//------------------------------------------------------------------------------
using RRQMCore.ByteManager;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
namespace RRQMSocket.Http
{
/// <summary>
/// Http响应
/// </summary>
public class HttpResponse : HttpBase
{
/// <summary>
/// 状态码
/// </summary>
public string StatusCode { get; set; }
/// <summary>
/// 获取头数据
/// </summary>
/// <param name="fieldName"></param>
/// <returns></returns>
public string GetHeader(string fieldName)
{
return GetHeaderByKey(fieldName);
}
/// <summary>
/// 设置头数据
/// </summary>
/// <param name="header"></param>
/// <param name="value"></param>
public void SetHeader(HttpHeaders header, string value)
{
SetHeaderByKey(header, value);
}
/// <summary>
/// 设置头数据
/// </summary>
/// <param name="fieldName"></param>
/// <param name="value"></param>
public void SetHeader(string fieldName, string value)
{
SetHeaderByKey(fieldName, value);
}
/// <summary>
/// 构建响应头部
/// </summary>
/// <returns></returns>
private void BuildHeader(ByteBlock byteBlock)
{
StringBuilder stringBuilder = new StringBuilder();
if (!string.IsNullOrEmpty(StatusCode))
stringBuilder.AppendLine($"HTTP/{this.ProtocolVersion} {StatusCode}");
if (!string.IsNullOrEmpty(this.Content_Type))
stringBuilder.AppendLine("Content-Type: " + this.Content_Type);
stringBuilder.AppendLine("Content-Length: " + this.Content_Length);
foreach (var headerkey in this.Headers.Keys)
{
stringBuilder.Append($"{headerkey}: ");
stringBuilder.AppendLine(this.Headers[headerkey]);
}
stringBuilder.AppendLine();
byteBlock.Write(Encoding.UTF8.GetBytes(stringBuilder.ToString()));
}
private void BuildContent(ByteBlock byteBlock)
{
if (this.Content_Length > 0)
{
byteBlock.Write(this.Content);
}
}
/// <summary>
/// 构建响应数据
/// </summary>
/// <param name="byteBlock"></param>
public override void Build(ByteBlock byteBlock)
{
BuildHeader(byteBlock);
BuildContent(byteBlock);
}
/// <summary>
/// 读取数据
/// </summary>
public override void ReadFromBase()
{
var first = Regex.Split(this.RequestLine, @"(\s+)").Where(e => e.Trim() != string.Empty).ToArray();
if (first.Length > 0)
{
string[] ps = first[0].Split('/');
if (ps.Length == 2)
{
this.Protocols = ps[0];
this.ProtocolVersion = ps[1];
}
}
if (first.Length > 1)
{
this.StatusCode = first[1];
}
string contentLength = this.GetHeader(HttpHeaders.ContentLength);
int.TryParse(contentLength, out int content_Length);
this.Content_Length = content_Length;
}
}
}