mirror of
https://github.com/chirpstack/chirpstack.git
synced 2025-06-01 23:40:45 +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.
|
||||
// The FUOTA payload to send.
|
||||
bytes payload = 21;
|
||||
|
||||
// Set device tags on complete.
|
||||
map<string, string> on_complete_set_device_tags = 22;
|
||||
}
|
||||
|
||||
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.
|
||||
// The FUOTA payload to send.
|
||||
bytes payload = 21;
|
||||
|
||||
// Set device tags on complete.
|
||||
map<string, string> on_complete_set_device_tags = 22;
|
||||
}
|
||||
|
||||
message FuotaDeploymentListItem {
|
||||
|
@ -23,7 +23,8 @@ create table fuota_deployment (
|
||||
fragmentation_block_ack_delay smallint not null,
|
||||
fragmentation_descriptor bytea 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 (
|
||||
|
@ -23,7 +23,8 @@ create table fuota_deployment (
|
||||
fragmentation_block_ack_delay smallint not null,
|
||||
fragmentation_descriptor blob 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 (
|
||||
|
@ -77,6 +77,9 @@ impl FuotaService for Fuota {
|
||||
.request_fragmentation_session_status()
|
||||
.from_proto(),
|
||||
payload: req_dp.payload.clone(),
|
||||
on_complete_set_device_tags: fields::KeyValue::new(
|
||||
req_dp.on_complete_set_device_tags.clone(),
|
||||
),
|
||||
..Default::default()
|
||||
};
|
||||
if req_dp.calculate_fragmentation_fragment_size {
|
||||
@ -152,6 +155,7 @@ impl FuotaService for Fuota {
|
||||
payload: dp.payload.clone(),
|
||||
calculate_multicast_timeout: 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)),
|
||||
updated_at: Some(helpers::datetime_to_prost_timestamp(&dp.updated_at)),
|
||||
@ -227,6 +231,9 @@ impl FuotaService for Fuota {
|
||||
.request_fragmentation_session_status()
|
||||
.from_proto(),
|
||||
payload: req_dp.payload.clone(),
|
||||
on_complete_set_device_tags: fields::KeyValue::new(
|
||||
req_dp.on_complete_set_device_tags.clone(),
|
||||
),
|
||||
..Default::default()
|
||||
};
|
||||
if req_dp.calculate_fragmentation_fragment_size {
|
||||
|
@ -1,3 +1,4 @@
|
||||
use std::ops::DerefMut;
|
||||
use std::time::Duration;
|
||||
|
||||
use anyhow::Result;
|
||||
@ -11,7 +12,7 @@ use crate::config;
|
||||
use crate::downlink;
|
||||
use crate::gpstime::ToGpsTime;
|
||||
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 {
|
||||
scheduler_interval: Duration,
|
||||
@ -569,7 +570,7 @@ impl Flow {
|
||||
return Ok(None);
|
||||
}
|
||||
|
||||
info!("Complete FUOTA deployment");
|
||||
info!("Completing FUOTA deployment");
|
||||
self.job.attempt_count += 1;
|
||||
|
||||
if self.fuota_deployment.request_fragmentation_session_status
|
||||
@ -590,6 +591,20 @@ impl Flow {
|
||||
.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();
|
||||
d.completed_at = Some(Utc::now());
|
||||
let _ = fuota::update_deployment(d).await?;
|
||||
|
@ -1,3 +1,5 @@
|
||||
use std::collections::HashMap;
|
||||
|
||||
use anyhow::{Context, Result};
|
||||
use chrono::{DateTime, Duration, Utc};
|
||||
use diesel::{dsl, prelude::*};
|
||||
@ -43,6 +45,7 @@ pub struct FuotaDeployment {
|
||||
pub fragmentation_descriptor: Vec<u8>,
|
||||
pub request_fragmentation_session_status: fields::RequestFragmentationSessionStatus,
|
||||
pub payload: Vec<u8>,
|
||||
pub on_complete_set_device_tags: fields::KeyValue,
|
||||
}
|
||||
|
||||
impl Default for FuotaDeployment {
|
||||
@ -76,6 +79,7 @@ impl Default for FuotaDeployment {
|
||||
request_fragmentation_session_status:
|
||||
fields::RequestFragmentationSessionStatus::NoRequest,
|
||||
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
|
||||
.eq(&d.request_fragmentation_session_status),
|
||||
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?)
|
||||
.await
|
||||
|
@ -213,6 +213,7 @@ diesel::table! {
|
||||
#[max_length = 20]
|
||||
request_fragmentation_session_status -> Varchar,
|
||||
payload -> Bytea,
|
||||
on_complete_set_device_tags -> Jsonb,
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -189,6 +189,7 @@ diesel::table! {
|
||||
fragmentation_descriptor -> Binary,
|
||||
request_fragmentation_session_status -> Text,
|
||||
payload -> Binary,
|
||||
on_complete_set_device_tags -> Text,
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
import { useEffect, useState } from "react";
|
||||
|
||||
import { Form, Input, InputNumber, Select, Row, Col, Button, Upload, UploadFile, Switch } from "antd";
|
||||
import { UploadOutlined } from "@ant-design/icons";
|
||||
import { Tabs, Form, Input, InputNumber, Select, Row, Col, Button, Upload, UploadFile, Switch } from "antd";
|
||||
import { UploadOutlined, MinusCircleOutlined, PlusOutlined } from "@ant-design/icons";
|
||||
|
||||
import type { Tenant } from "@chirpstack/chirpstack-api-grpc-web/api/tenant_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.setPayload(v.payload);
|
||||
|
||||
// on complete set device tags
|
||||
for (const elm of v.onCompleteSetDeviceTagsMap) {
|
||||
d.getOnCompleteSetDeviceTagsMap().set(elm[0], elm[1]);
|
||||
}
|
||||
|
||||
props.onFinish(d);
|
||||
};
|
||||
|
||||
@ -152,6 +157,8 @@ function FuotaDeploymentForm(props: IProps) {
|
||||
onFinishFailed={onFinishFailed}
|
||||
form={form}
|
||||
>
|
||||
<Tabs>
|
||||
<Tabs.TabPane tab="Deployment" key="1">
|
||||
<Form.Item label="Name" name="name" rules={[{ required: true, message: "Please enter a name!" }]}>
|
||||
<Input disabled={props.disabled} />
|
||||
</Form.Item>
|
||||
@ -352,6 +359,48 @@ function FuotaDeploymentForm(props: IProps) {
|
||||
</Button>
|
||||
</Upload>
|
||||
</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>
|
||||
<Button type="primary" htmlType="submit" disabled={props.disabled}>
|
||||
Submit
|
||||
|
Loading…
x
Reference in New Issue
Block a user