@@ -76,7 +76,7 @@ impl Error for GenericRejectionError {}
76
76
77
77
impl GenericRejectionError {
78
78
/// Convert the [`GenericRejectionError`] to the corresponding [`StatusCode`]
79
- pub fn to_status_code ( self ) -> StatusCode {
79
+ pub fn to_status_code ( & self ) -> StatusCode {
80
80
match self {
81
81
Self :: BodyCollectionError => StatusCode :: INTERNAL_SERVER_ERROR ,
82
82
Self :: InvalidContentType => StatusCode :: UNSUPPORTED_MEDIA_TYPE ,
@@ -99,3 +99,69 @@ pub fn body_collection_error() -> ExtractBodyError {
99
99
pub fn invalid_content_type ( ) -> ExtractBodyError {
100
100
ExtractBodyError :: Generic ( GenericRejectionError :: InvalidContentType )
101
101
}
102
+
103
+ /// Rejection used for [`WebSocketUpgrade`](crate::server::utils::WebSocketUpgrade).
104
+ #[ derive( Debug ) ]
105
+ #[ non_exhaustive]
106
+ pub enum WebSocketUpgradeRejectionError {
107
+ /// The request method must be `GET`
108
+ MethodNotGet ,
109
+ /// The HTTP version is not supported
110
+ InvalidHttpVersion ,
111
+ /// The `Connection` header is invalid
112
+ InvalidConnectionHeader ,
113
+ /// The `Upgrade` header is invalid
114
+ InvalidUpgradeHeader ,
115
+ /// The `Sec-WebSocket-Version` header is invalid
116
+ InvalidWebSocketVersionHeader ,
117
+ /// The `Sec-WebSocket-Key` header is missing
118
+ WebSocketKeyHeaderMissing ,
119
+ /// The connection is not upgradable
120
+ ConnectionNotUpgradable ,
121
+ }
122
+
123
+ impl WebSocketUpgradeRejectionError {
124
+ /// Convert the [`WebSocketUpgradeRejectionError`] to the corresponding [`StatusCode`]
125
+ fn to_status_code ( & self ) -> StatusCode {
126
+ match self {
127
+ Self :: MethodNotGet => StatusCode :: METHOD_NOT_ALLOWED ,
128
+ Self :: InvalidHttpVersion => StatusCode :: HTTP_VERSION_NOT_SUPPORTED ,
129
+ Self :: InvalidConnectionHeader => StatusCode :: BAD_REQUEST ,
130
+ Self :: InvalidUpgradeHeader => StatusCode :: BAD_REQUEST ,
131
+ Self :: InvalidWebSocketVersionHeader => StatusCode :: BAD_REQUEST ,
132
+ Self :: WebSocketKeyHeaderMissing => StatusCode :: BAD_REQUEST ,
133
+ Self :: ConnectionNotUpgradable => StatusCode :: UPGRADE_REQUIRED ,
134
+ }
135
+ }
136
+ }
137
+
138
+ impl Error for WebSocketUpgradeRejectionError { }
139
+
140
+ impl fmt:: Display for WebSocketUpgradeRejectionError {
141
+ fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
142
+ match self {
143
+ Self :: MethodNotGet => write ! ( f, "Request method must be 'GET'" ) ,
144
+ Self :: InvalidHttpVersion => {
145
+ write ! ( f, "Http version not support, only support HTTP 1.1 for now" )
146
+ }
147
+ Self :: InvalidConnectionHeader => {
148
+ write ! ( f, "Connection header did not include 'upgrade'" )
149
+ }
150
+ Self :: InvalidUpgradeHeader => write ! ( f, "`Upgrade` header did not include 'websocket'" ) ,
151
+ Self :: InvalidWebSocketVersionHeader => {
152
+ write ! ( f, "`Sec-WebSocket-Version` header did not include '13'" )
153
+ }
154
+ Self :: WebSocketKeyHeaderMissing => write ! ( f, "`Sec-WebSocket-Key` header missing" ) ,
155
+ Self :: ConnectionNotUpgradable => write ! (
156
+ f,
157
+ "WebSocket request couldn't be upgraded since no upgrade state was present"
158
+ ) ,
159
+ }
160
+ }
161
+ }
162
+
163
+ impl IntoResponse for WebSocketUpgradeRejectionError {
164
+ fn into_response ( self ) -> ServerResponse {
165
+ self . to_status_code ( ) . into_response ( )
166
+ }
167
+ }
0 commit comments