FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
uhttpsharp/uhttpsharp/Controllers/IControllerResponse.cs at master · bonesoul/uhttpsharp · GitHub
bonesoul
/
uhttpsharp
Public
Notifications
You must be signed in to change notification settings
Fork
98
Star
178
Code
Issues
11
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
uhttpsharp
/
uhttpsharp
/
Controllers
/
IControllerResponse.cs
Copy path
More file actions
More file actions
Latest commit
History
History
History
106 lines (98 loc) · 3.16 KB
Breadcrumbs
uhttpsharp
/
uhttpsharp
/
Controllers
/
IControllerResponse.cs
Copy path
File metadata and controls
106 lines (98 loc) · 3.16 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
using
System
;
using
System
.
Collections
.
Generic
;
using
System
.
Threading
.
Tasks
;
using
uhttpsharp
.
Controllers
;
namespace
uhttpsharp
.
Handlers
{
public
interface
IControllerResponse
{
Task
<
IHttpResponse
>
Respond
(
IHttpContext
context
,
IView
view
)
;
}
public
class
CustomResponse
:
IControllerResponse
{
private
readonly
IHttpResponse
_httpResponse
;
public
CustomResponse
(
IHttpResponse
httpResponse
)
{
_httpResponse
=
httpResponse
;
}
public
Task
<
IHttpResponse
>
Respond
(
IHttpContext
context
,
IView
view
)
{
return
Task
.
FromResult
(
_httpResponse
)
;
}
}
public
class
RenderResponse
:
IControllerResponse
{
private
readonly
HttpResponseCode
_code
;
private
readonly
object
_state
;
public
RenderResponse
(
HttpResponseCode
code
,
object
state
)
{
_code
=
code
;
_state
=
state
;
}
public
object
State
{
get
{
return
_state
;
}
}
public
HttpResponseCode
Code
{
get
{
return
_code
;
}
}
public
async
Task
<
IHttpResponse
>
Respond
(
IHttpContext
context
,
IView
view
)
{
var
output
=
await
view
.
Render
(
context
,
_state
)
.
ConfigureAwait
(
false
)
;
return
StringHttpResponse
.
Create
(
output
.
Body
,
_code
,
output
.
ContentType
)
;
}
}
public
class
RedirectResponse
:
IControllerResponse
{
private
readonly
Uri
_newLocation
;
public
RedirectResponse
(
Uri
newLocation
)
{
_newLocation
=
newLocation
;
}
public
Task
<
IHttpResponse
>
Respond
(
IHttpContext
context
,
IView
view
)
{
var
headers
=
new
[
]
{
new
KeyValuePair
<
string
,
string
>
(
"Location"
,
_newLocation
.
ToString
(
)
)
}
;
return
Task
.
FromResult
<
IHttpResponse
>
(
new
HttpResponse
(
HttpResponseCode
.
Found
,
String
.
Empty
,
headers
,
false
)
)
;
}
}
public
static
class
Response
{
public
static
Task
<
IControllerResponse
>
Create
(
IControllerResponse
response
)
{
return
Task
.
FromResult
(
response
)
;
}
public
static
Task
<
IControllerResponse
>
Custom
(
IHttpResponse
httpResponse
)
{
return
Create
(
new
CustomResponse
(
httpResponse
)
)
;
}
public
static
Task
<
IControllerResponse
>
Render
(
HttpResponseCode
code
,
object
state
)
{
return
Create
(
new
RenderResponse
(
code
,
state
)
)
;
}
public
static
Task
<
IControllerResponse
>
Render
(
HttpResponseCode
code
)
{
return
Create
(
new
RenderResponse
(
code
,
null
)
)
;
}
public
static
Task
<
IControllerResponse
>
Redirect
(
Uri
newLocation
)
{
return
Create
(
new
RedirectResponse
(
newLocation
)
)
;
}
}
public
static
class
Pipeline
{
private
class
EmptyPipeline
:
IPipeline
{
public
Task
<
IControllerResponse
>
Go
(
Func
<
Task
<
IControllerResponse
>
>
injectedTask
,
IHttpContext
context
)
{
return
injectedTask
(
)
;
}
}
public
static
IPipeline
Empty
=
new
EmptyPipeline
(
)
;
}
}
Back
|
FazBrowse Home
|
New Git URL