mirror of
https://github.com/chirpstack/chirpstack.git
synced 2025-06-05 17:21:36 +00:00
Set device tags after FUOTA complete.
This commit is contained in:
parent
bbdf2dd781
commit
98ba2f3198
3
api/proto/api/fuota.proto
vendored
3
api/proto/api/fuota.proto
vendored
@ -156,6 +156,9 @@ message FuotaDeployment {
|
|||||||
// Payload.
|
// Payload.
|
||||||
// The FUOTA payload to send.
|
// The FUOTA payload to send.
|
||||||
bytes payload = 21;
|
bytes payload = 21;
|
||||||
|
|
||||||
|
// Set device tags on complete.
|
||||||
|
map<string, string> on_complete_set_device_tags = 22;
|
||||||
}
|
}
|
||||||
|
|
||||||
message FuotaDeploymentListItem {
|
message FuotaDeploymentListItem {
|
||||||
|
3
api/rust/proto/chirpstack/api/fuota.proto
vendored
3
api/rust/proto/chirpstack/api/fuota.proto
vendored
@ -156,6 +156,9 @@ message FuotaDeployment {
|
|||||||
// Payload.
|
// Payload.
|
||||||
// The FUOTA payload to send.
|
// The FUOTA payload to send.
|
||||||
bytes payload = 21;
|
bytes payload = 21;
|
||||||
|
|
||||||
|
// Set device tags on complete.
|
||||||
|
map<string, string> on_complete_set_device_tags = 22;
|
||||||
}
|
}
|
||||||
|
|
||||||
message FuotaDeploymentListItem {
|
message FuotaDeploymentListItem {
|
||||||
|
@ -23,7 +23,8 @@ create table fuota_deployment (
|
|||||||
fragmentation_block_ack_delay smallint not null,
|
fragmentation_block_ack_delay smallint not null,
|
||||||
fragmentation_descriptor bytea not null,
|
fragmentation_descriptor bytea not null,
|
||||||
request_fragmentation_session_status varchar(20) not null,
|
request_fragmentation_session_status varchar(20) not null,
|
||||||
payload bytea not null
|
payload bytea not null,
|
||||||
|
on_complete_set_device_tags jsonb not null
|
||||||
);
|
);
|
||||||
|
|
||||||
create table fuota_deployment_device (
|
create table fuota_deployment_device (
|
||||||
|
@ -23,7 +23,8 @@ create table fuota_deployment (
|
|||||||
fragmentation_block_ack_delay smallint not null,
|
fragmentation_block_ack_delay smallint not null,
|
||||||
fragmentation_descriptor blob not null,
|
fragmentation_descriptor blob not null,
|
||||||
request_fragmentation_session_status varchar(20) not null,
|
request_fragmentation_session_status varchar(20) not null,
|
||||||
payload blob not null
|
payload blob not null,
|
||||||
|
on_complete_set_device_tags text not null
|
||||||
);
|
);
|
||||||
|
|
||||||
create table fuota_deployment_device (
|
create table fuota_deployment_device (
|
||||||
|
@ -77,6 +77,9 @@ impl FuotaService for Fuota {
|
|||||||
.request_fragmentation_session_status()
|
.request_fragmentation_session_status()
|
||||||
.from_proto(),
|
.from_proto(),
|
||||||
payload: req_dp.payload.clone(),
|
payload: req_dp.payload.clone(),
|
||||||
|
on_complete_set_device_tags: fields::KeyValue::new(
|
||||||
|
req_dp.on_complete_set_device_tags.clone(),
|
||||||
|
),
|
||||||
..Default::default()
|
..Default::default()
|
||||||
};
|
};
|
||||||
if req_dp.calculate_fragmentation_fragment_size {
|
if req_dp.calculate_fragmentation_fragment_size {
|
||||||
@ -152,6 +155,7 @@ impl FuotaService for Fuota {
|
|||||||
payload: dp.payload.clone(),
|
payload: dp.payload.clone(),
|
||||||
calculate_multicast_timeout: false,
|
calculate_multicast_timeout: false,
|
||||||
calculate_fragmentation_fragment_size: false,
|
calculate_fragmentation_fragment_size: false,
|
||||||
|
on_complete_set_device_tags: dp.on_complete_set_device_tags.into_hashmap(),
|
||||||
}),
|
}),
|
||||||
created_at: Some(helpers::datetime_to_prost_timestamp(&dp.created_at)),
|
created_at: Some(helpers::datetime_to_prost_timestamp(&dp.created_at)),
|
||||||
updated_at: Some(helpers::datetime_to_prost_timestamp(&dp.updated_at)),
|
updated_at: Some(helpers::datetime_to_prost_timestamp(&dp.updated_at)),
|
||||||
@ -227,6 +231,9 @@ impl FuotaService for Fuota {
|
|||||||
.request_fragmentation_session_status()
|
.request_fragmentation_session_status()
|
||||||
.from_proto(),
|
.from_proto(),
|
||||||
payload: req_dp.payload.clone(),
|
payload: req_dp.payload.clone(),
|
||||||
|
on_complete_set_device_tags: fields::KeyValue::new(
|
||||||
|
req_dp.on_complete_set_device_tags.clone(),
|
||||||
|
),
|
||||||
..Default::default()
|
..Default::default()
|
||||||
};
|
};
|
||||||
if req_dp.calculate_fragmentation_fragment_size {
|
if req_dp.calculate_fragmentation_fragment_size {
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
use std::ops::DerefMut;
|
||||||
use std::time::Duration;
|
use std::time::Duration;
|
||||||
|
|
||||||
use anyhow::Result;
|
use anyhow::Result;
|
||||||
@ -11,7 +12,7 @@ use crate::config;
|
|||||||
use crate::downlink;
|
use crate::downlink;
|
||||||
use crate::gpstime::ToGpsTime;
|
use crate::gpstime::ToGpsTime;
|
||||||
use crate::storage::fields::{FuotaJob, RequestFragmentationSessionStatus};
|
use crate::storage::fields::{FuotaJob, RequestFragmentationSessionStatus};
|
||||||
use crate::storage::{device_keys, device_profile, device_queue, fuota, multicast};
|
use crate::storage::{device, device_keys, device_profile, device_queue, fuota, multicast};
|
||||||
|
|
||||||
pub struct Flow {
|
pub struct Flow {
|
||||||
scheduler_interval: Duration,
|
scheduler_interval: Duration,
|
||||||
@ -569,7 +570,7 @@ impl Flow {
|
|||||||
return Ok(None);
|
return Ok(None);
|
||||||
}
|
}
|
||||||
|
|
||||||
info!("Complete FUOTA deployment");
|
info!("Completing FUOTA deployment");
|
||||||
self.job.attempt_count += 1;
|
self.job.attempt_count += 1;
|
||||||
|
|
||||||
if self.fuota_deployment.request_fragmentation_session_status
|
if self.fuota_deployment.request_fragmentation_session_status
|
||||||
@ -590,6 +591,20 @@ impl Flow {
|
|||||||
.await?;
|
.await?;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
let fuota_devices = fuota::get_devices(self.job.fuota_deployment_id.into(), -1, 0).await?;
|
||||||
|
let fuota_devices: Vec<fuota::FuotaDeploymentDevice> = fuota_devices
|
||||||
|
.into_iter()
|
||||||
|
.filter(|d| d.completed_at.is_some() && d.error_msg.is_empty())
|
||||||
|
.collect();
|
||||||
|
|
||||||
|
for fuota_device in &fuota_devices {
|
||||||
|
let mut d = device::get(&fuota_device.dev_eui).await?;
|
||||||
|
for (k, v) in self.fuota_deployment.on_complete_set_device_tags.iter() {
|
||||||
|
d.tags.deref_mut().insert(k.to_string(), v.to_string());
|
||||||
|
}
|
||||||
|
let _ = device::update(d).await?;
|
||||||
|
}
|
||||||
|
|
||||||
let mut d = self.fuota_deployment.clone();
|
let mut d = self.fuota_deployment.clone();
|
||||||
d.completed_at = Some(Utc::now());
|
d.completed_at = Some(Utc::now());
|
||||||
let _ = fuota::update_deployment(d).await?;
|
let _ = fuota::update_deployment(d).await?;
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
use std::collections::HashMap;
|
||||||
|
|
||||||
use anyhow::{Context, Result};
|
use anyhow::{Context, Result};
|
||||||
use chrono::{DateTime, Duration, Utc};
|
use chrono::{DateTime, Duration, Utc};
|
||||||
use diesel::{dsl, prelude::*};
|
use diesel::{dsl, prelude::*};
|
||||||
@ -43,6 +45,7 @@ pub struct FuotaDeployment {
|
|||||||
pub fragmentation_descriptor: Vec<u8>,
|
pub fragmentation_descriptor: Vec<u8>,
|
||||||
pub request_fragmentation_session_status: fields::RequestFragmentationSessionStatus,
|
pub request_fragmentation_session_status: fields::RequestFragmentationSessionStatus,
|
||||||
pub payload: Vec<u8>,
|
pub payload: Vec<u8>,
|
||||||
|
pub on_complete_set_device_tags: fields::KeyValue,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Default for FuotaDeployment {
|
impl Default for FuotaDeployment {
|
||||||
@ -76,6 +79,7 @@ impl Default for FuotaDeployment {
|
|||||||
request_fragmentation_session_status:
|
request_fragmentation_session_status:
|
||||||
fields::RequestFragmentationSessionStatus::NoRequest,
|
fields::RequestFragmentationSessionStatus::NoRequest,
|
||||||
payload: Vec::new(),
|
payload: Vec::new(),
|
||||||
|
on_complete_set_device_tags: fields::KeyValue::new(HashMap::new()),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -227,6 +231,7 @@ pub async fn update_deployment(d: FuotaDeployment) -> Result<FuotaDeployment, Er
|
|||||||
fuota_deployment::request_fragmentation_session_status
|
fuota_deployment::request_fragmentation_session_status
|
||||||
.eq(&d.request_fragmentation_session_status),
|
.eq(&d.request_fragmentation_session_status),
|
||||||
fuota_deployment::payload.eq(&d.payload),
|
fuota_deployment::payload.eq(&d.payload),
|
||||||
|
fuota_deployment::on_complete_set_device_tags.eq(&d.on_complete_set_device_tags),
|
||||||
))
|
))
|
||||||
.get_result(&mut get_async_db_conn().await?)
|
.get_result(&mut get_async_db_conn().await?)
|
||||||
.await
|
.await
|
||||||
|
@ -213,6 +213,7 @@ diesel::table! {
|
|||||||
#[max_length = 20]
|
#[max_length = 20]
|
||||||
request_fragmentation_session_status -> Varchar,
|
request_fragmentation_session_status -> Varchar,
|
||||||
payload -> Bytea,
|
payload -> Bytea,
|
||||||
|
on_complete_set_device_tags -> Jsonb,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -189,6 +189,7 @@ diesel::table! {
|
|||||||
fragmentation_descriptor -> Binary,
|
fragmentation_descriptor -> Binary,
|
||||||
request_fragmentation_session_status -> Text,
|
request_fragmentation_session_status -> Text,
|
||||||
payload -> Binary,
|
payload -> Binary,
|
||||||
|
on_complete_set_device_tags -> Text,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
import { useEffect, useState } from "react";
|
import { useEffect, useState } from "react";
|
||||||
|
|
||||||
import { Form, Input, InputNumber, Select, Row, Col, Button, Upload, UploadFile, Switch } from "antd";
|
import { Tabs, Form, Input, InputNumber, Select, Row, Col, Button, Upload, UploadFile, Switch } from "antd";
|
||||||
import { UploadOutlined } from "@ant-design/icons";
|
import { UploadOutlined, MinusCircleOutlined, PlusOutlined } from "@ant-design/icons";
|
||||||
|
|
||||||
import type { Tenant } from "@chirpstack/chirpstack-api-grpc-web/api/tenant_pb";
|
import type { Tenant } from "@chirpstack/chirpstack-api-grpc-web/api/tenant_pb";
|
||||||
import { FuotaDeployment, RequestFragmentationSessionStatus } from "@chirpstack/chirpstack-api-grpc-web/api/fuota_pb";
|
import { FuotaDeployment, RequestFragmentationSessionStatus } from "@chirpstack/chirpstack-api-grpc-web/api/fuota_pb";
|
||||||
@ -79,6 +79,11 @@ function FuotaDeploymentForm(props: IProps) {
|
|||||||
d.setFragmentationFragmentSize(v.fragmentationFragmentSize);
|
d.setFragmentationFragmentSize(v.fragmentationFragmentSize);
|
||||||
d.setPayload(v.payload);
|
d.setPayload(v.payload);
|
||||||
|
|
||||||
|
// on complete set device tags
|
||||||
|
for (const elm of v.onCompleteSetDeviceTagsMap) {
|
||||||
|
d.getOnCompleteSetDeviceTagsMap().set(elm[0], elm[1]);
|
||||||
|
}
|
||||||
|
|
||||||
props.onFinish(d);
|
props.onFinish(d);
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -152,6 +157,8 @@ function FuotaDeploymentForm(props: IProps) {
|
|||||||
onFinishFailed={onFinishFailed}
|
onFinishFailed={onFinishFailed}
|
||||||
form={form}
|
form={form}
|
||||||
>
|
>
|
||||||
|
<Tabs>
|
||||||
|
<Tabs.TabPane tab="Deployment" key="1">
|
||||||
<Form.Item label="Name" name="name" rules={[{ required: true, message: "Please enter a name!" }]}>
|
<Form.Item label="Name" name="name" rules={[{ required: true, message: "Please enter a name!" }]}>
|
||||||
<Input disabled={props.disabled} />
|
<Input disabled={props.disabled} />
|
||||||
</Form.Item>
|
</Form.Item>
|
||||||
@ -352,6 +359,48 @@ function FuotaDeploymentForm(props: IProps) {
|
|||||||
</Button>
|
</Button>
|
||||||
</Upload>
|
</Upload>
|
||||||
</Form.Item>
|
</Form.Item>
|
||||||
|
</Tabs.TabPane>
|
||||||
|
<Tabs.TabPane tab="Set device tags (on complete)" key="2">
|
||||||
|
<Form.List name="onCompleteSetDeviceTagsMap">
|
||||||
|
{(fields, { add, remove }) => (
|
||||||
|
<>
|
||||||
|
{fields.map(({ key, name, ...restField }) => (
|
||||||
|
<Row gutter={24}>
|
||||||
|
<Col span={6}>
|
||||||
|
<Form.Item
|
||||||
|
{...restField}
|
||||||
|
name={[name, 0]}
|
||||||
|
fieldKey={[name, 0]}
|
||||||
|
rules={[{ required: true, message: "Please enter a key!" }]}
|
||||||
|
>
|
||||||
|
<Input placeholder="Key" />
|
||||||
|
</Form.Item>
|
||||||
|
</Col>
|
||||||
|
<Col span={16}>
|
||||||
|
<Form.Item
|
||||||
|
{...restField}
|
||||||
|
name={[name, 1]}
|
||||||
|
fieldKey={[name, 1]}
|
||||||
|
rules={[{ required: true, message: "Please enter a value!" }]}
|
||||||
|
>
|
||||||
|
<Input placeholder="Value" />
|
||||||
|
</Form.Item>
|
||||||
|
</Col>
|
||||||
|
<Col span={2}>
|
||||||
|
<MinusCircleOutlined onClick={() => remove(name)} />
|
||||||
|
</Col>
|
||||||
|
</Row>
|
||||||
|
))}
|
||||||
|
<Form.Item>
|
||||||
|
<Button type="dashed" onClick={() => add()} block icon={<PlusOutlined />}>
|
||||||
|
Add tag
|
||||||
|
</Button>
|
||||||
|
</Form.Item>
|
||||||
|
</>
|
||||||
|
)}
|
||||||
|
</Form.List>
|
||||||
|
</Tabs.TabPane>
|
||||||
|
</Tabs>
|
||||||
<Form.Item>
|
<Form.Item>
|
||||||
<Button type="primary" htmlType="submit" disabled={props.disabled}>
|
<Button type="primary" htmlType="submit" disabled={props.disabled}>
|
||||||
Submit
|
Submit
|
||||||
|
Loading…
x
Reference in New Issue
Block a user