ptth/src/http_serde.rs

95 lines
1.9 KiB
Rust

use std::{
collections::*,
convert::{TryFrom},
};
use serde::{Deserialize, Serialize};
pub enum Error {
Unsupported,
InvalidHeaderName,
}
impl From <hyper::header::InvalidHeaderName> for Error {
fn from (_x: hyper::header::InvalidHeaderName) -> Self {
Self::InvalidHeaderName
}
}
#[derive (Deserialize, Serialize)]
pub enum Method {
// Only GET is supported for now
Get,
}
impl TryFrom <hyper::Method> for Method {
type Error = Error;
fn try_from (x: hyper::Method) -> Result <Self, Error> {
match x {
hyper::Method::GET => Ok (Self::Get),
_ => Err (Error::Unsupported),
}
}
}
impl From <Method> for hyper::Method {
fn from (x: Method) -> Self {
match x {
Method::Get => Self::GET,
}
}
}
#[derive (Deserialize, Serialize)]
pub struct RequestParts {
pub id: String,
pub method: Method,
// Technically URIs are subtle and complex but I don't care
pub uri: String,
// Technically Hyper has headers in a multi-map
// but I don't feel like doing that right now.
// Headers are _kinda_ ASCII but they can also be binary.
// HTTP is nutty.
pub headers: HashMap <String, Vec <u8>>,
}
#[derive (Deserialize, Serialize)]
pub enum StatusCode {
Ok,
NotFound,
}
/*
impl TryFrom <hyper::StatusCode> for StatusCode {
type Error = Error;
fn try_from (x: hyper::StatusCode) -> Result <Self, Error> {
match x {
hyper::StatusCode::OK => Ok (Self::Ok),
hyper::StatusCode::NOT_FOUND => Ok (Self::NotFound),
_ => Err (Error::Unsupported),
}
}
}
*/
impl From <StatusCode> for hyper::StatusCode {
fn from (x: StatusCode) -> Self {
match x {
StatusCode::Ok => Self::OK,
StatusCode::NotFound => Self::NOT_FOUND,
}
}
}
#[derive (Deserialize, Serialize)]
pub struct Response {
pub status_code: String,
// Technically Hyper has headers in a multi-map
// but I don't feel like doing that right now.
pub headers: HashMap <String, String>,
}