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
// SPDX-License-Identifier: Apache-2.0
// Copyright 2024-2025 Dmytro Yemelianov
//! Project template management commands (v4.5+)
//!
//! Commands for managing project templates in ACC accounts.
use anyhow::Result;
use clap::Subcommand;
use colored::Colorize;
use serde::Serialize;
use raps_acc::admin::AccountAdminClient;
use crate::output::OutputFormat;
#[derive(Debug, Subcommand)]
pub enum TemplateCommands {
/// List project templates in an account
List {
/// Account ID (defaults to APS_ACCOUNT_ID env var)
#[arg(short, long)]
account: Option<String>,
/// Maximum templates to return
#[arg(long)]
limit: Option<usize>,
},
/// Get details of a specific template
Info {
/// Account ID
#[arg(short, long)]
account: Option<String>,
/// Template project ID
template_id: String,
},
/// Create a new project template
Create {
/// Account ID
#[arg(short, long)]
account: Option<String>,
/// Template name
#[arg(long)]
name: String,
},
/// Update an existing template
Update {
/// Account ID
#[arg(short, long)]
account: Option<String>,
/// Template project ID
template_id: String,
/// New template name
#[arg(long)]
name: Option<String>,
},
/// Archive a template
Archive {
/// Account ID
#[arg(short, long)]
account: Option<String>,
/// Template project ID
template_id: String,
},
}
#[derive(Serialize)]
struct TemplateOutput {
id: String,
name: String,
status: String,
}
impl TemplateCommands {
pub async fn execute(
self,
admin_client: &AccountAdminClient,
output_format: OutputFormat,
) -> Result<()> {
match self {
TemplateCommands::List { account, limit } => {
let account_id = get_account_id(account)?;
let limit = limit.unwrap_or(100);
if output_format.supports_colors() {
println!("{}", "Fetching templates...".dimmed());
}
let templates = admin_client.list_all_templates(&account_id).await?;
let templates: Vec<_> = templates.into_iter().take(limit).collect();
let outputs: Vec<TemplateOutput> = templates
.iter()
.map(|t| TemplateOutput {
id: t.id.clone(),
name: t.name.clone(),
status: t.status.clone().unwrap_or_else(|| "unknown".to_string()),
})
.collect();
if outputs.is_empty() {
match output_format {
OutputFormat::Table => {
println!("{}", "No templates found.".yellow());
}
_ => output_format.write(&Vec::<TemplateOutput>::new())?,
}
return Ok(());
}
match output_format {
OutputFormat::Table => {
println!("\n{}", "Templates:".bold());
println!("{}", "─".repeat(80));
for t in &outputs {
println!("{:<40} {:<30} {}", t.id.cyan(), t.name, t.status.green());
}
println!("{}", "─".repeat(80));
println!("{} {} template(s)", "→".cyan(), outputs.len());
}
_ => output_format.write(&outputs)?,
}
Ok(())
}
TemplateCommands::Info {
account,
template_id,
} => {
let account_id = get_account_id(account)?;
let project = admin_client.get_project(&account_id, &template_id).await?;
let output = TemplateOutput {
id: project.id.clone(),
name: project.name.clone(),
status: project
.status
.clone()
.unwrap_or_else(|| "unknown".to_string()),
};
match output_format {
OutputFormat::Table => {
println!("\n{}", "Template Details:".bold());
println!("{}", "─".repeat(60));
println!("{:<15} {}", "ID:".bold(), output.id.cyan());
println!("{:<15} {}", "Name:".bold(), output.name);
println!("{:<15} {}", "Status:".bold(), output.status);
println!("{}", "─".repeat(60));
}
_ => output_format.write(&output)?,
}
Ok(())
}
TemplateCommands::Create { account, name } => {
let account_id = get_account_id(account)?;
let request = raps_acc::admin::CreateProjectRequest {
name,
r#type: Some("Office".to_string()),
// Note: APS API rejects classification:"template" on creation.
// Template classification must be set via ACC admin UI after creation.
..Default::default()
};
let project = admin_client.create_project(&account_id, request).await?;
match output_format {
OutputFormat::Table => {
println!(
"\n{} Template created: {} ({})",
"✓".green().bold(),
project.name,
project.id.cyan()
);
}
_ => {
let output = TemplateOutput {
id: project.id,
name: project.name,
status: project.status.unwrap_or_else(|| "pending".to_string()),
};
output_format.write(&output)?;
}
}
Ok(())
}
TemplateCommands::Update {
account,
template_id,
name,
} => {
let account_id = get_account_id(account)?;
let request = raps_acc::admin::UpdateProjectRequest {
name,
..Default::default()
};
let project = admin_client
.update_project(&account_id, &template_id, request)
.await?;
match output_format {
OutputFormat::Table => {
println!(
"\n{} Template updated: {} ({})",
"✓".green().bold(),
project.name,
project.id.cyan()
);
}
_ => {
let output = TemplateOutput {
id: project.id,
name: project.name,
status: project.status.unwrap_or_else(|| "unknown".to_string()),
};
output_format.write(&output)?;
}
}
Ok(())
}
TemplateCommands::Archive {
account,
template_id,
} => {
let account_id = get_account_id(account)?;
admin_client
.archive_project(&account_id, &template_id)
.await?;
match output_format {
OutputFormat::Table => {
println!(
"\n{} Template archived: {}",
"✓".green().bold(),
template_id.cyan()
);
}
_ => {
let output = TemplateOutput {
id: template_id,
name: String::new(),
status: "archived".to_string(),
};
output_format.write(&output)?;
}
}
Ok(())
}
}
}
}
fn get_account_id(account: Option<String>) -> Result<String> {
let account_id = account.or_else(|| std::env::var("APS_ACCOUNT_ID").ok());
match account_id {
Some(id) if !id.is_empty() => Ok(id),
_ => {
anyhow::bail!(
"Account ID is required. Use --account or set APS_ACCOUNT_ID environment variable."
);
}
}
}