aboutsummaryrefslogtreecommitdiff
path: root/src/routes/device.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/routes/device.rs')
-rw-r--r--src/routes/device.rs49
1 files changed, 21 insertions, 28 deletions
diff --git a/src/routes/device.rs b/src/routes/device.rs
index d01d9f0..40b5cd8 100644
--- a/src/routes/device.rs
+++ b/src/routes/device.rs
@@ -20,7 +20,7 @@ use utoipa::ToSchema;
20 security(("api_key" = [])) 20 security(("api_key" = []))
21)] 21)]
22#[deprecated] 22#[deprecated]
23pub async fn get( 23pub async fn get_payload(
24 State(state): State<Arc<crate::AppState>>, 24 State(state): State<Arc<crate::AppState>>,
25 Json(payload): Json<GetDevicePayload>, 25 Json(payload): Json<GetDevicePayload>,
26) -> Result<Json<Value>, Error> { 26) -> Result<Json<Value>, Error> {
@@ -49,11 +49,11 @@ pub async fn get(
49 (status = 200, description = "Get `Device` information", body = [Device]) 49 (status = 200, description = "Get `Device` information", body = [Device])
50 ), 50 ),
51 params( 51 params(
52 ("id" = String, Path, description = "Device id") 52 ("id" = String, Path, description = "device id")
53 ), 53 ),
54 security(("api_key" = [])) 54 security((), ("api_key" = []))
55)] 55)]
56pub async fn get_path( 56pub async fn get(
57 State(state): State<Arc<crate::AppState>>, 57 State(state): State<Arc<crate::AppState>>,
58 Path(path): Path<String>, 58 Path(path): Path<String>,
59) -> Result<Json<Value>, Error> { 59) -> Result<Json<Value>, Error> {
@@ -76,22 +76,31 @@ pub async fn get_path(
76} 76}
77 77
78#[derive(Deserialize, ToSchema)] 78#[derive(Deserialize, ToSchema)]
79#[deprecated]
79pub struct GetDevicePayload { 80pub struct GetDevicePayload {
80 id: String, 81 id: String,
81} 82}
82 83
84#[derive(Deserialize, ToSchema)]
85pub struct DevicePayload {
86 id: String,
87 mac: String,
88 broadcast_addr: String,
89 ip: String,
90}
91
83#[utoipa::path( 92#[utoipa::path(
84 put, 93 put,
85 path = "/device", 94 path = "/device",
86 request_body = PutDevicePayload, 95 request_body = DevicePayload,
87 responses( 96 responses(
88 (status = 200, description = "List matching todos by query", body = [DeviceSchema]) 97 (status = 200, description = "add device to storage", body = [DeviceSchema])
89 ), 98 ),
90 security(("api_key" = [])) 99 security((), ("api_key" = []))
91)] 100)]
92pub async fn put( 101pub async fn put(
93 State(state): State<Arc<crate::AppState>>, 102 State(state): State<Arc<crate::AppState>>,
94 Json(payload): Json<PutDevicePayload>, 103 Json(payload): Json<DevicePayload>,
95) -> Result<Json<Value>, Error> { 104) -> Result<Json<Value>, Error> {
96 info!( 105 info!(
97 "add device {} ({}, {}, {})", 106 "add device {} ({}, {}, {})",
@@ -118,26 +127,18 @@ pub async fn put(
118 Ok(Json(json!(device))) 127 Ok(Json(json!(device)))
119} 128}
120 129
121#[derive(Deserialize, ToSchema)]
122pub struct PutDevicePayload {
123 id: String,
124 mac: String,
125 broadcast_addr: String,
126 ip: String,
127}
128
129#[utoipa::path( 130#[utoipa::path(
130 post, 131 post,
131 path = "/device", 132 path = "/device",
132 request_body = PostDevicePayload, 133 request_body = DevicePayload,
133 responses( 134 responses(
134 (status = 200, description = "List matching todos by query", body = [DeviceSchema]) 135 (status = 200, description = "update device in storage", body = [DeviceSchema])
135 ), 136 ),
136 security(("api_key" = [])) 137 security((), ("api_key" = []))
137)] 138)]
138pub async fn post( 139pub async fn post(
139 State(state): State<Arc<crate::AppState>>, 140 State(state): State<Arc<crate::AppState>>,
140 Json(payload): Json<PostDevicePayload>, 141 Json(payload): Json<DevicePayload>,
141) -> Result<Json<Value>, Error> { 142) -> Result<Json<Value>, Error> {
142 info!( 143 info!(
143 "edit device {} ({}, {}, {})", 144 "edit device {} ({}, {}, {})",
@@ -162,11 +163,3 @@ pub async fn post(
162 163
163 Ok(Json(json!(device))) 164 Ok(Json(json!(device)))
164} 165}
165
166#[derive(Deserialize, ToSchema)]
167pub struct PostDevicePayload {
168 id: String,
169 mac: String,
170 broadcast_addr: String,
171 ip: String,
172}