mithril_aggregator/database/query/signed_entity/
update_signed_entity.rs

1use sqlite::Value;
2
3use mithril_common::StdResult;
4use mithril_persistence::sqlite::{Query, SourceAlias, SqLiteEntity, WhereCondition};
5
6use crate::database::record::SignedEntityRecord;
7
8/// Query to update [SignedEntityRecord] in the sqlite database
9pub struct UpdateSignedEntityQuery {
10    condition: WhereCondition,
11}
12
13impl UpdateSignedEntityQuery {
14    pub fn one(signed_entity_record: SignedEntityRecord) -> StdResult<Self> {
15        let expression =
16            "signed_entity_type_id = ?*, certificate_id = ?*, beacon = ?*, artifact = ?*, \
17created_at = ?* \
18where signed_entity_id = ?*";
19        let parameters = vec![
20            Value::Integer(signed_entity_record.signed_entity_type.index() as i64),
21            Value::String(signed_entity_record.certificate_id),
22            Value::String(signed_entity_record.signed_entity_type.get_json_beacon()?),
23            Value::String(signed_entity_record.artifact),
24            Value::String(signed_entity_record.created_at.to_rfc3339()),
25            Value::String(signed_entity_record.signed_entity_id),
26        ];
27
28        Ok(Self {
29            condition: WhereCondition::new(expression, parameters),
30        })
31    }
32}
33
34impl Query for UpdateSignedEntityQuery {
35    type Entity = SignedEntityRecord;
36
37    fn filters(&self) -> WhereCondition {
38        self.condition.clone()
39    }
40
41    fn get_definition(&self, condition: &str) -> String {
42        let projection = Self::Entity::get_projection()
43            .expand(SourceAlias::new(&[("{:signed_entity:}", "signed_entity")]));
44
45        format!("update signed_entity set {condition} returning {projection}")
46    }
47}