aboutsummaryrefslogtreecommitdiff
path: root/lib/Net.Http/src/ConnectionInfo.cs
blob: 6e1660db1561df85b24626db4a763b04c60604bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
/*
* Copyright (c) 2022 Vaughn Nugent
* 
* Library: VNLib
* Package: VNLib.Net.Http
* File: ConnectionInfo.cs 
*
* ConnectionInfo.cs is part of VNLib.Net.Http which is part of the larger 
* VNLib collection of libraries and utilities.
*
* VNLib.Net.Http is free software: you can redistribute it and/or modify 
* it under the terms of the GNU Affero General Public License as 
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* VNLib.Net.Http is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program.  If not, see https://www.gnu.org/licenses/.
*/

using System;
using System.Net;
using System.Linq;
using System.Text;
using System.Collections.Generic;
using System.Security.Authentication;

using VNLib.Net.Http.Core;
using VNLib.Utils.Extensions;

namespace VNLib.Net.Http
{
    ///<inheritdoc/>
    internal sealed class ConnectionInfo : IConnectionInfo
    {
        private HttpContext Context;

        ///<inheritdoc/>
        public Uri RequestUri => Context.Request.Location;
        ///<inheritdoc/>
        public string Path => RequestUri.LocalPath;
        ///<inheritdoc/>
        public string? UserAgent => Context.Request.UserAgent;
        ///<inheritdoc/>
        public IHeaderCollection Headers { get; private set; }
        ///<inheritdoc/>
        public bool CrossOrigin { get; }
        ///<inheritdoc/>
        public bool IsWebSocketRequest { get; }
        ///<inheritdoc/>
        public ContentType ContentType => Context.Request.ContentType;
        ///<inheritdoc/>
        public HttpMethod Method => Context.Request.Method;
        ///<inheritdoc/>
        public HttpVersion ProtocolVersion => Context.Request.HttpVersion;
        ///<inheritdoc/>
        public bool IsSecure => Context.Request.EncryptionVersion != SslProtocols.None;
        ///<inheritdoc/>
        public SslProtocols SecurityProtocol => Context.Request.EncryptionVersion;
        ///<inheritdoc/>
        public Uri? Origin => Context.Request.Origin;
        ///<inheritdoc/>
        public Uri? Referer => Context.Request.Referrer;
        ///<inheritdoc/>
        public Tuple<long, long>? Range => Context.Request.Range;
        ///<inheritdoc/>
        public IPEndPoint LocalEndpoint => Context.Request.LocalEndPoint;
        ///<inheritdoc/>
        public IPEndPoint RemoteEndpoint => Context.Request.RemoteEndPoint;
        ///<inheritdoc/>
        public Encoding Encoding => Context.ParentServer.Config.HttpEncoding;
        ///<inheritdoc/>
        public IReadOnlyDictionary<string, string> RequestCookies => Context.Request.Cookies;
        ///<inheritdoc/>
        public IEnumerable<string> Accept => Context.Request.Accept;
        ///<inheritdoc/>
        public TransportSecurityInfo? TransportSecurity => Context.GetSecurityInfo();

        ///<inheritdoc/>
        public bool Accepts(ContentType type)
        {
            //Get the content type string from he specified content type
            string contentType = HttpHelpers.GetContentTypeString(type);
            return Accepts(contentType);
        }
        ///<inheritdoc/>
        public bool Accepts(string contentType)
        {
            if (AcceptsAny())
            {
                return true;
            }

            //If client accepts exact requested encoding 
            if (Accept.Contains(contentType))
            {
                return true;
            }
            
            //Search accept types to determine if the content type is acceptable
            bool accepted = Accept
                .Where(ctype =>
                {
                    //Get prinary side of mime type
                    ReadOnlySpan<char> primary = contentType.AsSpan().SliceBeforeParam('/');
                    ReadOnlySpan<char> ctSubType = ctype.AsSpan().SliceBeforeParam('/');
                    //See if accepts any subtype, or the primary sub-type matches
                    return ctSubType[0] == '*' || ctSubType.Equals(primary, StringComparison.OrdinalIgnoreCase);
                }).Any();
            return accepted;
        }
        /// <summary>
        /// Determines if the connection accepts any content type
        /// </summary>
        /// <returns>true if the connection accepts any content typ, false otherwise</returns>
        private bool AcceptsAny()
        {
            //Accept any if no accept header was present, or accept all value */*
            return Context.Request.Accept.Count == 0 || Accept.Where(static t => t.StartsWith("*/*", StringComparison.OrdinalIgnoreCase)).Any();
        }
        ///<inheritdoc/>
        public void SetCookie(string name, string value, string? domain, string? path, TimeSpan Expires, CookieSameSite sameSite, bool httpOnly, bool secure)
        {
            //Create the new cookie
            HttpCookie cookie = new(name)
            {
                Value = value,
                Domain = domain,
                Path = path,
                MaxAge = Expires,
                //Set the session lifetime flag if the timeout is max value
                IsSession = Expires == TimeSpan.MaxValue,
                //If the connection is cross origin, then we need to modify the secure and samsite values
                SameSite = CrossOrigin ? CookieSameSite.None : sameSite,
                Secure = secure | CrossOrigin,
                HttpOnly = httpOnly
            };
            //Set the cookie
            Context.Response.AddCookie(cookie);
        }
       
        internal ConnectionInfo(HttpContext ctx)
        {
            //Create new header collection
            Headers = new VnHeaderCollection(ctx);
            //set co value
            CrossOrigin = ctx.Request.IsCrossOrigin();
            //Set websocket status
            IsWebSocketRequest = ctx.Request.IsWebSocketRequest();
            //Update the context referrence
            Context = ctx;
        }

#nullable disable
        internal void Clear()
        {
            Context = null;
            (Headers as VnHeaderCollection).Clear();
            Headers = null;
        }
    }
}