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
use futures::future::{BoxFuture, FutureExt};
use hyper::{self, Body, Response, StatusCode, Uri};

use crate::{
    pointer,
    tlv::{self, Encodable},
    transport::http::{status_response, tlv_response},
    Error,
    Result,
};

pub mod accessories;
pub mod characteristics;
pub mod identify;
pub mod pair_setup;
pub mod pair_verify;
pub mod pairings;

pub trait HandlerExt {
    fn handle(
        &mut self,
        uri: Uri,
        body: Body,
        controller_id: pointer::ControllerId,
        event_subscriptions: pointer::EventSubscriptions,
        config: pointer::Config,
        storage: pointer::Storage,
        accessory_database: pointer::AccessoryDatabase,
        event_emitter: pointer::EventEmitter,
    ) -> BoxFuture<Result<Response<Body>>>;
}

pub trait TlvHandlerExt {
    type ParseResult: Send;
    type Result: Encodable;

    fn parse(&self, body: Body) -> BoxFuture<std::result::Result<Self::ParseResult, tlv::ErrorContainer>>;
    fn handle(
        &mut self,
        step: Self::ParseResult,
        controller_id: pointer::ControllerId,
        config: pointer::Config,
        storage: pointer::Storage,
        event_emitter: pointer::EventEmitter,
    ) -> BoxFuture<std::result::Result<Self::Result, tlv::ErrorContainer>>;
}

#[derive(Debug)]
pub struct TlvHandler<T: TlvHandlerExt + Send + Sync>(T);

impl<T: TlvHandlerExt + Send + Sync> From<T> for TlvHandler<T> {
    fn from(inst: T) -> TlvHandler<T> { TlvHandler(inst) }
}

impl<T: TlvHandlerExt + Send + Sync> HandlerExt for TlvHandler<T> {
    fn handle(
        &mut self,
        _: Uri,
        body: Body,
        controller_id: pointer::ControllerId,
        _: pointer::EventSubscriptions,
        config: pointer::Config,
        storage: pointer::Storage,
        _: pointer::AccessoryDatabase,
        event_emitter: pointer::EventEmitter,
    ) -> BoxFuture<Result<Response<Body>>> {
        async move {
            let response = match self.0.parse(body).await {
                Err(e) => e.encode(),
                Ok(step) => match self.0.handle(step, controller_id, config, storage, event_emitter).await {
                    Err(e) => e.encode(),
                    Ok(res) => res.encode(),
                },
            };
            tlv_response(response, StatusCode::OK)
        }
        .boxed()
    }
}

pub trait JsonHandlerExt {
    fn handle(
        &mut self,
        uri: Uri,
        body: Body,
        controller_id: pointer::ControllerId,
        event_subscriptions: pointer::EventSubscriptions,
        config: pointer::Config,
        storage: pointer::Storage,
        accessory_database: pointer::AccessoryDatabase,
        event_emitter: pointer::EventEmitter,
    ) -> BoxFuture<Result<Response<Body>>>;
}

#[derive(Debug)]
pub struct JsonHandler<T: JsonHandlerExt + Send + Sync>(T);

impl<T: JsonHandlerExt + Send + Sync> From<T> for JsonHandler<T> {
    fn from(inst: T) -> JsonHandler<T> { JsonHandler(inst) }
}

impl<T: JsonHandlerExt + Send + Sync> HandlerExt for JsonHandler<T> {
    fn handle(
        &mut self,
        uri: Uri,
        body: Body,
        controller_id: pointer::ControllerId,
        event_subscriptions: pointer::EventSubscriptions,
        config: pointer::Config,
        storage: pointer::Storage,
        accessory_database: pointer::AccessoryDatabase,
        event_emitter: pointer::EventEmitter,
    ) -> BoxFuture<Result<Response<Body>>> {
        async move {
            match self
                .0
                .handle(
                    uri,
                    body,
                    controller_id,
                    event_subscriptions,
                    config,
                    storage,
                    accessory_database,
                    event_emitter,
                )
                .await
            {
                Ok(res) => Ok(res),
                Err(e) => match e {
                    Error::HttpStatus(status) => status_response(status),
                    _ => status_response(StatusCode::INTERNAL_SERVER_ERROR),
                },
            }
        }
        .boxed()
    }
}