zitadel-actions-manager 0.5.4

Sync v1 and v2 Zitadel IdP actions defined in a declarative way
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
// SPDX-FileCopyrightText: 2025 Famedly GmbH (info@famedly.com)
//
// SPDX-License-Identifier: Apache-2.0

//! [`reqwest`]-based simple client, with no reauth functionality. Used by the
//! CLI tool.

use famedly_rust_utils::{reqwest::*, BaseUrl, GenericCombinators};
use serde::{Deserialize, Serialize};
use snafu::{ResultExt, Snafu};

use crate::{instrument, zitadel::*, SpanTraceWrapper};

/// Header for Zitadel organization ID
const HEADER_ZITADEL_ORGANIZATION_ID: &str = "x-zitadel-orgid";

/// Simple client that requires access token. This client does not do oauth and
/// token renewal. Used by the CLI tool.
#[derive(Debug, Clone)]
pub struct SimpleZitadelClient {
    client: reqwest::Client,
    url: BaseUrl,
}

use reqwest::header::{HeaderMap, AUTHORIZATION};

#[derive(Debug, Snafu)]
#[snafu(visibility(pub), context(suffix(false)))]
pub enum SimpleZitadelClientCreationError {
    #[snafu(display("http request failed"))]
    Reqwest {
        source: reqwest::Error,
        #[snafu(implicit)]
        context: SpanTraceWrapper,
    },
    #[snafu(display("header parsing failed"))]
    HeaderParsing {
        source: reqwest::header::InvalidHeaderValue,
        #[snafu(implicit)]
        context: SpanTraceWrapper,
    },
}

impl SimpleZitadelClientCreationError {
    #[must_use]
    pub fn get_context(&self) -> &SpanTraceWrapper {
        match self {
            Self::Reqwest { context, .. } => context,
            Self::HeaderParsing { context, .. } => context,
        }
    }
}

impl SimpleZitadelClient {
    pub fn new(
        url: BaseUrl,
        token: &str,
        org_id: Option<String>,
    ) -> Result<Self, SimpleZitadelClientCreationError> {
        Ok(Self {
            client: reqwest::Client::builder()
                .timeout(std::time::Duration::from_secs(1))
                .default_headers({
                    let mut headers = HeaderMap::new();
                    headers.insert(
                        AUTHORIZATION,
                        format!("Bearer {token}").parse().context(HeaderParsing)?,
                    );
                    if let Some(org_id) = org_id {
                        headers.insert("x-zitadel-orgid", org_id.parse().context(HeaderParsing)?);
                    }
                    headers
                })
                .build()
                .context(Reqwest)?,
            url,
        })
    }
    #[doc(hidden)]
    /// Create an organization. Used in tests.
    pub async fn create_org(&self, org_name: &str) -> Result<String, SimpleZitadelClientError> {
        #[derive(Deserialize)]
        #[serde(rename_all = "camelCase")]
        struct Response {
            organization_id: String,
        }

        Ok(self
            .client
            .post(self.url.join("v2/organizations").context(Url)?)
            .json(&serde_json::json!({ "name": org_name }))
            .send()
            .await
            .context(ReqwestTransport)?
            .error_for_status_with_body()
            .await
            .context(ReqwestService)?
            .json::<Response>()
            .await
            .context(Serde)?
            .organization_id)
    }
    #[doc(hidden)]
    /// List targets id. Used in tests.
    pub async fn list_targets_id(&self) -> Result<Vec<String>, SimpleZitadelClientError> {
        #[derive(Deserialize)]
        struct Response {
            #[serde(default)]
            targets: Vec<Target>,
        }
        #[derive(Deserialize)]
        struct Target {
            id: String,
        }
        Ok(self
            .client
            .post(self.url.join("v2beta/actions/targets/search").context(Url)?)
            .json(&serde_json::json!({
                "pagination": { "limit": 1000 },
                "filters": []
            }))
            .send()
            .await
            .context(ReqwestTransport)?
            .error_for_status_with_body()
            .await
            .context(ReqwestService)?
            .json::<Response>()
            .await
            .context(Serde)?
            .targets
            .into_iter()
            .map(|target| target.id)
            .collect())
    }
}

#[derive(Debug, Snafu)]
#[snafu(visibility(pub), context(suffix(false)))]
pub enum SimpleZitadelClientError {
    #[snafu(display("serde failed"))]
    Serde {
        source: reqwest::Error,
        #[snafu(implicit)]
        context: SpanTraceWrapper,
    },
    #[snafu(display("http transport failure"))]
    ReqwestTransport {
        source: reqwest::Error,
        #[snafu(implicit)]
        context: SpanTraceWrapper,
    },
    #[snafu(display("http request failed"))]
    ReqwestService {
        source: ReqwestErrorWithBody,
        #[snafu(implicit)]
        context: SpanTraceWrapper,
    },
    #[snafu(display("url parsing failed"))]
    Url {
        source: url::ParseError,
        #[snafu(implicit)]
        context: SpanTraceWrapper,
    },
    #[snafu(display("jwt error"))]
    JWT {
        source: jsonwebtoken::errors::Error,
        #[snafu(implicit)]
        context: SpanTraceWrapper,
    },
}

impl SimpleZitadelClientError {
    #[must_use]
    pub fn get_context(&self) -> &SpanTraceWrapper {
        match self {
            Self::Serde { context, .. } => context,
            Self::ReqwestTransport { context, .. } => context,
            Self::ReqwestService { context, .. } => context,
            Self::Url { context, .. } => context,
            Self::JWT { context, .. } => context,
        }
    }
}

#[derive(Serialize)]
struct EmptyBody {}

#[derive(Debug, Clone, Deserialize, Serialize)]
struct GetTriggersRes {
    flow: GetTriggersResFlow,
}

#[derive(Debug, Clone, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
struct GetTriggersResFlow {
    r#type: Id,
    // state: FLOW_STATE_ACTIVE
    #[serde(default = "Vec::new")]
    trigger_actions: Vec<GetTriggersResFlowAction>,
}

impl ZitadelInterface for SimpleZitadelClient {
    type Err = SimpleZitadelClientError;
}

impl ZitadelHandleCreateOnly for SimpleZitadelClient {
    #[instrument(skip(self))]
    async fn create_action(
        &self,
        action: ActionCreate,
        org_id: Option<String>,
    ) -> Result<String, Self::Err> {
        #[derive(Deserialize)]
        struct Response {
            id: String,
        }
        Ok(self
            .client
            .post(self.url.join("management/v1/actions").context(Url)?)
            .chain_opt(org_id, |req, org_id| req.header(HEADER_ZITADEL_ORGANIZATION_ID, org_id))
            .json(&action)
            .send()
            .await
            .context(ReqwestTransport)?
            .error_for_status_with_body()
            .await
            .context(ReqwestService)?
            .json::<Response>()
            .await
            .context(Serde)?
            .id)
    }

    #[instrument(skip(self))]
    async fn set_trigger_actions(
        &self,
        flow_type: &str,
        trigger_type: &str,
        action_ids: Vec<String>,
        org_id: Option<String>,
    ) -> Result<(), Self::Err> {
        self.client
            .post(
                self.url
                    .join(&format!("management/v1/flows/{flow_type}/trigger/{trigger_type}"))
                    .context(Url)?,
            )
            .chain_opt(org_id, |req, org_id| req.header(HEADER_ZITADEL_ORGANIZATION_ID, org_id))
            .json(&serde_json::json!({"actionIds": action_ids}))
            .send()
            .await
            .context(ReqwestTransport)?
            .error_for_status_with_body()
            .await
            .context(ReqwestService)?;
        Ok(())
    }
}

impl ZitadelHandle for SimpleZitadelClient {
    #[instrument(skip(self))]
    async fn search_actions_by_name(
        &self,
        name: &str,
        org_id: Option<String>,
    ) -> Result<Option<ActionSearch>, Self::Err> {
        #[derive(Deserialize)]
        struct Response {
            result: Option<Vec<ActionSearch>>,
        }
        Ok(self
            .client
            .post(self.url.join("management/v1/actions/_search").context(Url)?)
            .chain_opt(org_id, |req, org_id| req.header(HEADER_ZITADEL_ORGANIZATION_ID, org_id))
            .json(&serde_json::json!({
              "query": { "limit": 1 },
              "queries": [
                {
                  "actionNameQuery": {
                    "name": name,
                    "method": "TEXT_QUERY_METHOD_EQUALS"
                  },
                }
              ]
            }))
            .send()
            .await
            .context(ReqwestTransport)?
            .error_for_status_with_body()
            .await
            .context(ReqwestService)?
            .json::<Response>()
            .await
            .context(Serde)?
            .result
            .and_then(|mut result| result.pop()))
    }

    #[instrument(skip(self))]
    async fn update_action(
        &self,
        id: &str,
        action: ActionUpdate,
        org_id: Option<String>,
    ) -> Result<(), Self::Err> {
        self.client
            .put(self.url.join("management/v1/actions/").and_then(|u| u.join(id)).context(Url)?)
            .chain_opt(org_id, |req, org_id| req.header(HEADER_ZITADEL_ORGANIZATION_ID, org_id))
            .json(&action)
            .send()
            .await
            .context(ReqwestTransport)?
            .error_for_status_with_body()
            .await
            .context(ReqwestService)?;
        Ok(())
    }

    #[instrument(skip(self))]
    async fn delete_action(&self, id: &str, org_id: Option<String>) -> Result<(), Self::Err> {
        self.client
            .delete(self.url.join("management/v1/actions/").and_then(|u| u.join(id)).context(Url)?)
            .chain_opt(org_id, |req, org_id| req.header(HEADER_ZITADEL_ORGANIZATION_ID, org_id))
            .json(&EmptyBody {})
            .send()
            .await
            .context(ReqwestTransport)?
            .error_for_status_with_body()
            .await
            .context(ReqwestService)?;
        Ok(())
    }

    #[instrument(skip(self))]
    async fn get_triggers(
        &self,
        flow_type: &str,
        org_id: Option<String>,
    ) -> Result<Vec<GetTriggersResFlowAction>, Self::Err> {
        Ok(self
            .client
            .get(
                self.url
                    .join("management/v1/flows/")
                    .and_then(|u| u.join(flow_type))
                    .context(Url)?,
            )
            .chain_opt(org_id, |req, org_id| req.header(HEADER_ZITADEL_ORGANIZATION_ID, org_id))
            .send()
            .await
            .context(ReqwestTransport)?
            .error_for_status_with_body()
            .await
            .context(ReqwestService)?
            .json::<GetTriggersRes>()
            .await
            .context(Serde)?
            .flow
            .trigger_actions)
    }
}

impl ZitadelHandleV2 for SimpleZitadelClient {
    #[instrument(skip(self))]
    async fn create_target(&self, req: CreateTarget) -> Result<TargetCreated, Self::Err> {
        self.client
            .post(self.url.join("v2beta/actions/targets").context(Url)?)
            .json(&req)
            .send()
            .await
            .context(ReqwestTransport)?
            .error_for_status_with_body()
            .await
            .context(ReqwestService)?
            .json::<TargetCreated>()
            .await
            .context(Serde)
    }

    #[instrument(skip(self))]
    async fn search_target_by_name(&self, name: &str) -> Result<Option<FoundTarget>, Self::Err> {
        #[derive(Deserialize)]
        struct Response {
            targets: Option<Vec<FoundTarget>>,
        }
        Ok(self
            .client
            .post(self.url.join("v2beta/actions/targets/search").context(Url)?)
            .json(&serde_json::json!({
                "pagination": { "limit": 1 },
                "filters": [{
                    "targetNameFilter": {
                        "targetName": name,
                        "method": "TEXT_FILTER_METHOD_EQUALS",
                    }
                }]
            }))
            .send()
            .await
            .context(ReqwestTransport)?
            .error_for_status_with_body()
            .await
            .context(ReqwestService)?
            .json::<Response>()
            .await
            .context(Serde)?
            .targets
            .and_then(|mut result| result.pop()))
    }

    #[instrument(skip(self))]
    async fn update_target(&self, id: &str, req: UpdateTarget) -> Result<TargetUpdated, Self::Err> {
        self.client
            .post(self.url.join("v2beta/actions/targets/").and_then(|u| u.join(id)).context(Url)?)
            .json(&req)
            .send()
            .await
            .context(ReqwestTransport)?
            .error_for_status_with_body()
            .await
            .context(ReqwestService)?
            .json::<TargetUpdated>()
            .await
            .context(Serde)
    }

    #[instrument(skip(self))]
    async fn delete_target(&self, id: &str) -> Result<(), Self::Err> {
        self.client
            .delete(self.url.join("v2beta/actions/targets/").and_then(|u| u.join(id)).context(Url)?)
            .send()
            .await
            .context(ReqwestTransport)?
            .error_for_status_with_body()
            .await
            .context(ReqwestService)?;
        Ok(())
    }

    #[instrument(skip(self))]
    async fn set_execution(&self, req: Execution) -> Result<(), Self::Err> {
        self.client
            .put(self.url.join("v2beta/actions/executions").context(Url)?)
            .json(&req)
            .send()
            .await
            .context(ReqwestTransport)?
            .error_for_status_with_body()
            .await
            .context(ReqwestService)?;
        Ok(())
    }

    #[instrument(skip(self))]
    async fn list_executions(&self) -> Result<Vec<Execution>, Self::Err> {
        #[derive(Deserialize)]
        struct Response {
            executions: Option<Vec<Execution>>,
        }
        Ok(self
            .client
            .post(self.url.join("v2beta/actions/executions/search").context(Url)?)
            .json(&serde_json::json!({
                "pagination": { "limit": 1000 }
            }))
            .send()
            .await
            .context(ReqwestTransport)?
            .error_for_status_with_body()
            .await
            .context(ReqwestService)?
            .json::<Response>()
            .await
            .context(Serde)?
            .executions
            .unwrap_or_default())
    }
}

/// Zitadel service account
#[derive(Debug, Clone, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct ServiceAccount {
    key_id: String,
    key: String,
    user_id: String,
}

/// Authenticates to zitadel given a service account returning an access token.
#[instrument(skip(sa, url), fields(%url))]
pub async fn auth_with_service_account(
    url: &BaseUrl,
    aud: &str,
    sa: &ServiceAccount,
) -> Result<String, SimpleZitadelClientError> {
    use jsonwebtoken::{encode, Algorithm, EncodingKey, Header};

    #[derive(Debug, Clone, Deserialize)]
    struct Response {
        access_token: String,
    }

    let now = time::OffsetDateTime::now_utc();
    let assertion = encode(
        &Header::new(Algorithm::RS256).mutate(|h| h.kid = Some(sa.key_id.clone())),
        &serde_json::json!({
            "aud": [aud],
            "sub": sa.user_id,
            "iss": sa.user_id,
            "exp": (now + std::time::Duration::from_secs(60)).unix_timestamp(),
            "iat": now.unix_timestamp(),
        }),
        &EncodingKey::from_rsa_pem(sa.key.as_bytes()).context(JWT)?,
    )
    .context(JWT)?;

    let client = reqwest::Client::builder()
        .timeout(std::time::Duration::from_secs(1))
        .build()
        .context(ReqwestTransport)?;

    Ok(client
        .post(url.join("oauth/v2/token").context(Url)?)
        .form(&[
            ("grant_type", "urn:ietf:params:oauth:grant-type:jwt-bearer"),
            ("scope", "openid urn:zitadel:iam:org:project:id:zitadel:aud"),
            ("assertion", &assertion),
        ])
        .send()
        .await
        .context(ReqwestTransport)?
        .error_for_status_with_body()
        .await
        .context(ReqwestService)?
        .json::<Response>()
        .await
        .context(Serde)?
        .access_token)
}

impl SimpleZitadelClient {
    #[instrument(skip(self))]
    pub async fn get_all_orgs(
        &self,
        offset: u64,
        limit: u64,
    ) -> Result<Option<Vec<String>>, SimpleZitadelClientError> {
        #[derive(Deserialize)]
        struct Response {
            result: Option<Vec<Id>>,
        }
        Ok(self
            .client
            .post(self.url.join("/v2/organizations/_search").context(Url)?)
            .json(&serde_json::json!({"query": {
              "offset": offset,
              "limit": limit,
            }}))
            .send()
            .await
            .context(ReqwestTransport)?
            .error_for_status_with_body()
            .await
            .context(ReqwestService)?
            .json::<Response>()
            .await
            .context(Serde)?
            .result
            .map(|result| result.into_iter().map(|id| id.id).collect()))
    }
}