aboutsummaryrefslogtreecommitdiff
path: root/lib/Plugins.Essentials/src/FileProcessArgs.cs
blob: 0f90160bc5f7a7d1f6fd822a83fbd00517ebc5f3 (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
/*
* Copyright (c) 2023 Vaughn Nugent
* 
* Library: VNLib
* Package: VNLib.Plugins.Essentials
* File: FileProcessArgs.cs 
*
* FileProcessArgs.cs is part of VNLib.Plugins.Essentials which is part of the larger 
* VNLib collection of libraries and utilities.
*
* VNLib.Plugins.Essentials 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.Plugins.Essentials 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.Net;

namespace VNLib.Plugins.Essentials
{
    /// <summary>
    /// Server routine to follow after processing selector 
    /// </summary>
    public enum FpRoutine
    {
        /// <summary>
        /// There was an error during processing and the server should immediatly respond with a <see cref="HttpStatusCode.InternalServerError"/> error code
        /// </summary>
        Error,
        /// <summary>
        /// The server should continue the file read operation with the current information
        /// </summary>
        Continue,
        /// <summary>
        /// The server should redirect the conneciton to an alternate location
        /// </summary>
        Redirect,
        /// <summary>
        /// The server should immediatly respond with a <see cref="HttpStatusCode.Forbidden"/> error code
        /// </summary>
        Deny,
        /// <summary>
        /// The server should fulfill the reqeest by sending the contents of an alternate file location (if it exists) with the existing connection
        /// </summary>
        ServeOther,
        /// <summary>
        /// The server should immediatly respond with a <see cref="HttpStatusCode.NotFound"/> error code
        /// </summary>
        NotFound,
        /// <summary>
        /// Serves another file location that must be a trusted fully qualified location
        /// </summary>
        ServeOtherFQ,
        /// <summary>
        /// The connection does not require a file to be processed
        /// </summary>
        VirtualSkip,
    }

    /// <summary>
    /// Specifies operations the file processor will follow during request handling
    /// </summary>
    /// <param name="Alternate">
    /// The routine the file processor should execute
    /// </param>
    /// <param name="Routine">
    /// An optional alternate path for the given routine
    /// </param>
    public readonly record struct FileProcessArgs(FpRoutine Routine, string Alternate)
    {
        /// <summary>
        /// Signals the file processor should complete with a <see cref="FpRoutine.Deny"/> routine
        /// </summary>
        public static readonly FileProcessArgs Deny = new (FpRoutine.Deny);
        /// <summary>
        /// Signals the file processor should continue with intended/normal processing of the request
        /// </summary>
        public static readonly FileProcessArgs Continue = new (FpRoutine.Continue);
        /// <summary>
        /// Signals the file processor should complete with a <see cref="FpRoutine.Error"/> routine
        /// </summary>
        public static readonly FileProcessArgs Error = new (FpRoutine.Error);
        /// <summary>
        /// Signals the file processor should complete with a <see cref="FpRoutine.NotFound"/> routine
        /// </summary>
        public static readonly FileProcessArgs NotFound = new (FpRoutine.NotFound);
        /// <summary>
        /// Signals the file processor should not process the connection
        /// </summary>
        public static readonly FileProcessArgs VirtualSkip = new (FpRoutine.VirtualSkip);
      

        /// <summary>
        /// Initializes a new <see cref="FileProcessArgs"/> with the specified routine
        /// and empty <see cref="Alternate"/> path
        /// </summary>
        /// <param name="routine">The file processing routine to execute</param>
        public FileProcessArgs(FpRoutine routine):this(routine, string.Empty)
        {
        }
    }
}