greentic-pack-dev 1.2.29076003389

Greentic pack builder CLI
Documentation
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
#![forbid(unsafe_code)]
//! Extract translatable strings from Adaptive Cards.
//!
//! This module provides the recursive extraction logic for translatable text fields
//! and generates i18n key-value pairs for translation bundles.
//!
//! Ported from `greentic-cards2pack/src/i18n_extract/extractor.rs`
//! so that `greentic-pack` has no cross-crate dependency on `greentic-cards2pack`.
//!
//! # Extractable Fields
//!
//! - `text` - TextBlock, RichTextBlock text content
//! - `title` - Action titles, card titles
//! - `placeholder` - Input placeholders
//! - `label` - Input labels
//! - `altText` - Image alt text
//! - `errorMessage` - Validation error messages
//! - `inlineAction.title` - Inline action titles
//!
//! # Generated Key Format
//!
//! Keys follow the pattern: `{card_id}.{json_path}.{field}`
//!
//! Examples:
//! - `incident.body_0.text`
//! - `incident.actions_0.title`
//! - `greeting.body_1_items_0.text`

use std::path::Path;

use serde_json::Value;

// ---------------------------------------------------------------------------
// Public types
// ---------------------------------------------------------------------------

/// An extracted translatable string.
#[derive(Debug, Clone)]
pub struct ExtractedString {
    /// Generated i18n key.
    pub key: String,
    /// Original text value.
    pub value: String,
    /// Source file path.
    pub source_file: std::path::PathBuf,
    /// JSON path to the field (e.g., "body[0].text").
    pub json_path: String,
}

// ---------------------------------------------------------------------------
// Constants
// ---------------------------------------------------------------------------

/// Text fields that should be extracted for translation.
const TRANSLATABLE_FIELDS: &[&str] = &[
    "text",
    "title",
    "placeholder",
    "label",
    "altText",
    "errorMessage",
    "value", // For TextBlock with value
    "fallbackText",
    "speak",
];

/// Fields that contain nested elements with translatable content.
/// Note: "facts" and "choices" are excluded here because they have
/// dedicated extraction logic below (FactSet, ChoiceSet).
const CONTAINER_FIELDS: &[&str] = &[
    "body",
    "actions",
    "items",
    "columns",
    "inlines",
    "card", // For Action.ShowCard
    "inlineAction",
];

// ---------------------------------------------------------------------------
// Recursive extractor (from extractor.rs)
// ---------------------------------------------------------------------------

/// Extract strings from a JSON value recursively.
pub fn extract_from_value(
    value: &Value,
    prefix: &str,
    path: &str,
    source_file: &Path,
    skip_i18n_patterns: bool,
) -> Vec<ExtractedString> {
    let mut strings = Vec::new();

    match value {
        Value::Object(obj) => {
            extract_translatable_fields(
                obj,
                prefix,
                path,
                source_file,
                skip_i18n_patterns,
                &mut strings,
            );
            extract_container_fields(
                obj,
                prefix,
                path,
                source_file,
                skip_i18n_patterns,
                &mut strings,
            );
            extract_factset(
                obj,
                prefix,
                path,
                source_file,
                skip_i18n_patterns,
                &mut strings,
            );
            extract_choiceset(
                obj,
                prefix,
                path,
                source_file,
                skip_i18n_patterns,
                &mut strings,
            );
        }
        Value::Array(arr) => {
            for (i, item) in arr.iter().enumerate() {
                let item_path = format!("{}_{}", path, i);
                strings.extend(extract_from_value(
                    item,
                    prefix,
                    &item_path,
                    source_file,
                    skip_i18n_patterns,
                ));
            }
        }
        _ => {}
    }

    strings
}

fn extract_translatable_fields(
    obj: &serde_json::Map<String, Value>,
    prefix: &str,
    path: &str,
    source_file: &Path,
    skip_i18n_patterns: bool,
    strings: &mut Vec<ExtractedString>,
) {
    for field in TRANSLATABLE_FIELDS {
        if let Some(Value::String(text)) = obj.get(*field)
            && should_extract(text, skip_i18n_patterns)
        {
            strings.push(ExtractedString {
                key: build_key(prefix, path, field),
                value: text.clone(),
                source_file: source_file.to_path_buf(),
                json_path: build_json_path(path, field),
            });
        }
    }
}

fn extract_container_fields(
    obj: &serde_json::Map<String, Value>,
    prefix: &str,
    path: &str,
    source_file: &Path,
    skip_i18n_patterns: bool,
    strings: &mut Vec<ExtractedString>,
) {
    for field in CONTAINER_FIELDS {
        if let Some(child) = obj.get(*field) {
            let child_path = if path.is_empty() {
                field.to_string()
            } else {
                format!("{}_{}", path, field)
            };
            strings.extend(extract_from_value(
                child,
                prefix,
                &child_path,
                source_file,
                skip_i18n_patterns,
            ));
        }
    }
}

fn extract_factset(
    obj: &serde_json::Map<String, Value>,
    prefix: &str,
    path: &str,
    source_file: &Path,
    skip_i18n_patterns: bool,
    strings: &mut Vec<ExtractedString>,
) {
    let Some(facts) = obj.get("facts").and_then(|v| v.as_array()) else {
        return;
    };
    for (i, fact) in facts.iter().enumerate() {
        let fact_path = format!("{}_facts_{}", path, i);
        if let Some(fact_obj) = fact.as_object() {
            for field in ["title", "value"] {
                if let Some(Value::String(text)) = fact_obj.get(field)
                    && should_extract(text, skip_i18n_patterns)
                {
                    strings.push(ExtractedString {
                        key: build_key(prefix, &fact_path, field),
                        value: text.clone(),
                        source_file: source_file.to_path_buf(),
                        json_path: build_json_path(&fact_path, field),
                    });
                }
            }
        }
    }
}

fn extract_choiceset(
    obj: &serde_json::Map<String, Value>,
    prefix: &str,
    path: &str,
    source_file: &Path,
    skip_i18n_patterns: bool,
    strings: &mut Vec<ExtractedString>,
) {
    let Some(choices) = obj.get("choices").and_then(|v| v.as_array()) else {
        return;
    };
    for (i, choice) in choices.iter().enumerate() {
        let choice_path = format!("{}_choices_{}", path, i);
        if let Some(choice_obj) = choice.as_object()
            && let Some(Value::String(title)) = choice_obj.get("title")
            && should_extract(title, skip_i18n_patterns)
        {
            strings.push(ExtractedString {
                key: build_key(prefix, &choice_path, "title"),
                value: title.clone(),
                source_file: source_file.to_path_buf(),
                json_path: build_json_path(&choice_path, "title"),
            });
        }
    }
}

// ---------------------------------------------------------------------------
// Key / path helpers (private)
// ---------------------------------------------------------------------------

/// Check if a string should be extracted.
pub fn should_extract(text: &str, skip_i18n_patterns: bool) -> bool {
    let trimmed = text.trim();

    if trimmed.is_empty() {
        return false;
    }

    // Skip existing i18n patterns
    if skip_i18n_patterns && (trimmed.contains("$t(") || trimmed.contains("$tp(")) {
        return false;
    }

    // Skip pure template expressions (Handlebars)
    if trimmed.starts_with("{{") && trimmed.ends_with("}}") {
        return false;
    }

    // Skip variable references
    if trimmed.starts_with("${") && trimmed.ends_with('}') {
        return false;
    }

    true
}

/// Build an i18n key from prefix, path, and field.
pub fn build_key(prefix: &str, path: &str, field: &str) -> String {
    if path.is_empty() {
        format!("{}.{}", prefix, field)
    } else {
        format!("{}.{}.{}", prefix, path, field)
    }
}

/// Build a JSON path string for documentation.
pub fn build_json_path(path: &str, field: &str) -> String {
    if path.is_empty() {
        return field.to_string();
    }

    let parts: Vec<&str> = path.split('_').collect();
    let mut result = String::new();
    for (i, part) in parts.iter().enumerate() {
        if part.parse::<usize>().is_ok() {
            result.push_str(&format!("[{}]", part));
        } else {
            if i > 0 {
                result.push('.');
            }
            result.push_str(part);
        }
    }
    format!("{}.{}", result, field)
}

// ---------------------------------------------------------------------------
// Tests — from extractor.rs
// ---------------------------------------------------------------------------

#[cfg(test)]
mod tests {
    use serde_json::json;

    use super::*;

    #[test]
    fn test_should_extract() {
        assert!(should_extract("Hello World", false));
        assert!(!should_extract("", false));
        assert!(!should_extract("   ", false));
        assert!(!should_extract("$t(key)", true));
        assert!(!should_extract("{{variable}}", false));
        assert!(!should_extract("${var}", false));
        assert!(should_extract("$t(key)", false));
    }

    #[test]
    fn test_build_key() {
        assert_eq!(build_key("card", "", "text"), "card.text");
        assert_eq!(build_key("card", "body_0", "text"), "card.body_0.text");
    }

    #[test]
    fn test_build_json_path() {
        assert_eq!(build_json_path("", "text"), "text");
        assert_eq!(build_json_path("body_0", "text"), "body[0].text");
        assert_eq!(
            build_json_path("body_1_items_0", "text"),
            "body[1].items[0].text"
        );
    }

    #[test]
    fn test_extract_from_simple_card() {
        let card = json!({
            "type": "AdaptiveCard",
            "body": [
                { "type": "TextBlock", "text": "Hello World" }
            ],
            "actions": [
                { "type": "Action.Submit", "title": "Submit" }
            ]
        });

        let strings = extract_from_value(&card, "test", "", Path::new("test.json"), true);

        assert_eq!(strings.len(), 2);
        assert!(
            strings
                .iter()
                .any(|s| s.key == "test.body_0.text" && s.value == "Hello World")
        );
        assert!(
            strings
                .iter()
                .any(|s| s.key == "test.actions_0.title" && s.value == "Submit")
        );
    }

    #[test]
    fn test_extract_skips_i18n_patterns() {
        let card = json!({
            "type": "AdaptiveCard",
            "body": [
                { "type": "TextBlock", "text": "$t(card.greeting)" },
                { "type": "TextBlock", "text": "Regular text" }
            ]
        });

        let strings = extract_from_value(&card, "test", "", Path::new("test.json"), true);
        assert_eq!(strings.len(), 1);
        assert_eq!(strings[0].value, "Regular text");
    }

    #[test]
    fn test_extract_input_fields() {
        let card = json!({
            "type": "AdaptiveCard",
            "body": [{
                "type": "Input.Text",
                "id": "name",
                "label": "Your Name",
                "placeholder": "Enter your name",
                "errorMessage": "Name is required"
            }]
        });

        let strings = extract_from_value(&card, "test", "", Path::new("test.json"), true);
        assert_eq!(strings.len(), 3);
        assert!(strings.iter().any(|s| s.key.ends_with(".label")));
        assert!(strings.iter().any(|s| s.key.ends_with(".placeholder")));
        assert!(strings.iter().any(|s| s.key.ends_with(".errorMessage")));
    }

    #[test]
    fn test_extract_factset() {
        let card = json!({
            "type": "AdaptiveCard",
            "body": [{
                "type": "FactSet",
                "facts": [
                    {"title": "Name", "value": "John Doe"},
                    {"title": "Email", "value": "john@example.com"}
                ]
            }]
        });

        let strings = extract_from_value(&card, "test", "", Path::new("test.json"), true);
        assert_eq!(strings.len(), 4);
    }

    #[test]
    fn test_extract_choice_set() {
        let card = json!({
            "type": "AdaptiveCard",
            "body": [{
                "type": "Input.ChoiceSet",
                "id": "choice",
                "label": "Select an option",
                "choices": [
                    {"title": "Option A", "value": "a"},
                    {"title": "Option B", "value": "b"}
                ]
            }]
        });

        let strings = extract_from_value(&card, "test", "", Path::new("test.json"), true);
        assert_eq!(strings.len(), 3); // label + 2 choice titles
    }

    #[test]
    fn test_extract_nested_column_items() {
        let card = json!({
            "type": "AdaptiveCard",
            "body": [{
                "type": "ColumnSet",
                "columns": [
                    { "type": "Column", "items": [{ "type": "TextBlock", "text": "Left column" }] },
                    { "type": "Column", "items": [{ "type": "TextBlock", "text": "Right column" }] }
                ]
            }]
        });

        let strings = extract_from_value(&card, "test", "", Path::new("test.json"), true);
        assert!(strings.iter().any(|s| s.value == "Left column"));
        assert!(strings.iter().any(|s| s.value == "Right column"));
    }

    #[test]
    fn test_extract_show_card_action() {
        let card = json!({
            "type": "AdaptiveCard",
            "actions": [{
                "type": "Action.ShowCard",
                "title": "Show Details",
                "card": {
                    "type": "AdaptiveCard",
                    "body": [{ "type": "TextBlock", "text": "Hidden detail" }]
                }
            }]
        });

        let strings = extract_from_value(&card, "test", "", Path::new("test.json"), true);
        assert!(strings.iter().any(|s| s.value == "Show Details"));
        assert!(strings.iter().any(|s| s.value == "Hidden detail"));
    }

    #[test]
    fn test_extract_skips_pure_handlebars() {
        let card = json!({
            "type": "AdaptiveCard",
            "body": [
                { "type": "TextBlock", "text": "{{variable}}" },
                { "type": "TextBlock", "text": "Hello {{name}}" }
            ]
        });

        let strings = extract_from_value(&card, "test", "", Path::new("test.json"), true);
        assert!(!strings.iter().any(|s| s.value == "{{variable}}"));
        assert!(strings.iter().any(|s| s.value == "Hello {{name}}"));
    }
}