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
use std::str;
use futures::{future::BoxFuture, FutureExt};
use http::Response;
use hyper::Body;
use semver::Version;
use serde::{Deserialize, Serialize};
use warp_json_rpc::Builder;
use super::{ApiRequest, Error, ReactorEventT, RpcWithParams, RpcWithParamsExt};
use crate::{
components::api_server::CLIENT_API_VERSION,
effect::EffectBuilder,
reactor::QueueKind,
types::{Deploy, DeployHash},
};
#[derive(Serialize, Deserialize, Debug)]
pub struct PutDeployParams {
pub deploy: Deploy,
}
#[derive(Serialize, Deserialize, Debug)]
pub struct PutDeployResult {
pub api_version: Version,
pub deploy_hash: DeployHash,
}
pub struct PutDeploy {}
impl RpcWithParams for PutDeploy {
const METHOD: &'static str = "account_put_deploy";
type RequestParams = PutDeployParams;
type ResponseResult = PutDeployResult;
}
impl RpcWithParamsExt for PutDeploy {
fn handle_request<REv: ReactorEventT>(
effect_builder: EffectBuilder<REv>,
response_builder: Builder,
params: Self::RequestParams,
) -> BoxFuture<'static, Result<Response<Body>, Error>> {
async move {
let deploy_hash = *params.deploy.id();
effect_builder
.make_request(
|responder| ApiRequest::SubmitDeploy {
deploy: Box::new(params.deploy),
responder,
},
QueueKind::Api,
)
.await;
let result = Self::ResponseResult {
api_version: CLIENT_API_VERSION.clone(),
deploy_hash,
};
Ok(response_builder.success(result)?)
}
.boxed()
}
}