toss-api 0.1.5

A Vim-inspired TUI and CLI API client for exploring and testing endpoints
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
use crate::cli::args::Method;
use serde::{Deserialize, Serialize};

#[derive(Debug, Serialize, Deserialize, Clone)]
pub struct Collection {
    pub id: String,
    pub name: String,
    pub items: Vec<CollectionItem>,
    #[serde(default)]
    pub expanded: bool,
    #[serde(default)]
    pub env_vars: Vec<KVParam>,
}

#[derive(Debug, Serialize, Deserialize, Clone)]
#[serde(tag = "type")]
pub enum CollectionItem {
    Folder(Folder),
    Request(Request),
}

#[derive(Debug, Serialize, Deserialize, Clone)]
pub struct Folder {
    pub id: String,
    pub name: String,
    pub items: Vec<CollectionItem>,
    #[serde(default)]
    pub expanded: bool,
}

#[derive(Debug, Serialize, Deserialize, Clone)]
pub struct KVParam {
    pub key: String,
    pub value: String,
    pub enabled: bool,
    pub description: Option<String>,
}

#[derive(Debug, Serialize, Deserialize, Clone, Copy, PartialEq, Eq)]
pub enum AuthType {
    None,
    Bearer,
    Basic,
    ApiKey,
}

#[derive(Debug, Serialize, Deserialize, Clone, Default)]
pub struct BearerAuth {
    pub token: String,
}

#[derive(Debug, Serialize, Deserialize, Clone, Default)]
pub struct BasicAuth {
    pub username: String,
    pub password: String,
}

#[derive(Debug, Serialize, Deserialize, Clone, Default)]
pub struct ApiKeyAuth {
    pub key: String,
    pub value: String,
    pub in_header: bool,
}

#[derive(Debug, Serialize, Deserialize, Clone, Default)]
pub struct Auth {
    pub selected: AuthType,
    pub bearer: BearerAuth,
    pub basic: BasicAuth,
    pub api_key: ApiKeyAuth,
}

impl Default for AuthType {
    fn default() -> Self {
        Self::None
    }
}

impl Auth {
    pub fn new() -> Self {
        Self::default()
    }

    pub fn bearer(token: String) -> Self {
        Self {
            selected: AuthType::Bearer,
            bearer: BearerAuth { token },
            ..Default::default()
        }
    }

    pub fn basic(username: String, password: String) -> Self {
        Self {
            selected: AuthType::Basic,
            basic: BasicAuth { username, password },
            ..Default::default()
        }
    }

    pub fn api_key(key: String, value: String, in_header: bool) -> Self {
        Self {
            selected: AuthType::ApiKey,
            api_key: ApiKeyAuth {
                key,
                value,
                in_header,
            },
            ..Default::default()
        }
    }

    pub fn auto_select(&mut self) {
        if self.selected != AuthType::None {
            return;
        }

        if !self.bearer.token.is_empty() {
            self.selected = AuthType::Bearer;
        } else if !self.basic.username.is_empty() || !self.basic.password.is_empty() {
            self.selected = AuthType::Basic;
        } else if !self.api_key.key.is_empty() || !self.api_key.value.is_empty() {
            self.selected = AuthType::ApiKey;
        }
    }
}

#[derive(Debug, Serialize, Deserialize, Clone, Copy, PartialEq, Eq)]
pub enum BodyType {
    None,
    Raw,
    FormData,
    XWwwFormUrlEncoded,
}

impl Default for BodyType {
    fn default() -> Self {
        Self::None
    }
}

#[derive(Debug, Serialize, Deserialize, Clone, Default)]
pub struct RawBody {
    pub content: String,
    pub content_type: String,
}

#[derive(Debug, Serialize, Deserialize, Clone, Default)]
pub struct FormDataBody {
    pub items: Vec<KVParam>,
}

#[derive(Debug, Serialize, Deserialize, Clone, Default)]
pub struct RequestBody {
    pub selected: BodyType,
    pub raw: RawBody,
    pub form_data: FormDataBody,
    pub x_www_form_urlencoded: FormDataBody,
}

impl RequestBody {
    pub fn new() -> Self {
        Self::default()
    }

    pub fn raw(content: String, content_type: String) -> Self {
        Self {
            selected: BodyType::Raw,
            raw: RawBody {
                content,
                content_type,
            },
            ..Default::default()
        }
    }

    pub fn form_data(items: Vec<KVParam>) -> Self {
        Self {
            selected: BodyType::FormData,
            form_data: FormDataBody { items },
            ..Default::default()
        }
    }

    pub fn x_www_form_urlencoded(items: Vec<KVParam>) -> Self {
        Self {
            selected: BodyType::XWwwFormUrlEncoded,
            x_www_form_urlencoded: FormDataBody { items },
            ..Default::default()
        }
    }

    pub fn auto_select(&mut self) {
        if self.selected != BodyType::None {
            return;
        }

        if !self.raw.content.is_empty() {
            self.selected = BodyType::Raw;
        } else if !self.form_data.items.is_empty() {
            self.selected = BodyType::FormData;
        } else if !self.x_www_form_urlencoded.items.is_empty() {
            self.selected = BodyType::XWwwFormUrlEncoded;
        }
    }
}

#[derive(Debug, Serialize, Deserialize, Clone)]
pub struct Request {
    pub id: String,
    pub name: String,
    pub method: Method,
    pub url: String,
    pub params: Vec<KVParam>,
    pub headers: Vec<KVParam>,
    pub auth: Auth,
    pub body: RequestBody,
    pub pre_request_script: Option<String>,
    pub post_response_script: Option<String>,
}

impl Collection {
    pub fn new(name: String) -> Self {
        Self {
            id: uuid::Uuid::new_v4().to_string(),
            name,
            items: Vec::new(),
            expanded: false,
            env_vars: Vec::new(),
        }
    }

    pub fn find_request_mut(&mut self, id: &str) -> Option<&mut Request> {
        for item in &mut self.items {
            if let Some(req) = item.find_request_mut(id) {
                return Some(req);
            }
        }
        None
    }

    pub fn find_request(&self, id: &str) -> Option<&Request> {
        for item in &self.items {
            if let Some(req) = item.find_request(id) {
                return Some(req);
            }
        }
        None
    }

    pub fn find_request_by_name(&self, name: &str) -> Option<&Request> {
        for item in &self.items {
            if let Some(req) = item.find_request_by_name(name) {
                return Some(req);
            }
        }
        None
    }

    pub fn replace_urls_with_placeholder(
        &mut self,
        base_url: &str,
        placeholder: &str,
    ) -> Vec<(String, String)> {
        let mut changed_ids = Vec::new();
        Self::recursive_replace(&mut self.items, base_url, placeholder, &mut changed_ids);
        changed_ids
    }

    pub fn detect_base_url(&self) -> Option<String> {
        let mut urls = Vec::new();
        self.collect_urls(&self.items, &mut urls);

        if urls.is_empty() {
            return None;
        }

        // Find the shortest URL as a starting candidate for common prefix
        let mut shortest = urls.iter().min_by_key(|u| u.len()).unwrap().clone();

        // Refine it to be just the domain part
        if let Some(pos) = shortest.find("://") {
            if let Some(slash_pos) = shortest[pos + 3..].find('/') {
                shortest = shortest[..pos + 3 + slash_pos].to_string();
            }
        }

        // Check if all URLs start with this prefix
        let all_match = urls.iter().all(|u| u.starts_with(&shortest));

        if all_match && shortest.contains("://") {
            Some(shortest)
        } else {
            None
        }
    }

    fn collect_urls(&self, items: &[CollectionItem], urls: &mut Vec<String>) {
        for item in items {
            match item {
                CollectionItem::Request(r) => urls.push(r.url.clone()),
                CollectionItem::Folder(f) => self.collect_urls(&f.items, urls),
            }
        }
    }

    pub fn apply_base_url(&mut self, base_url: &str) {
        // Add or update baseUrl in env_vars
        if let Some(var) = self.env_vars.iter_mut().find(|v| v.key == "baseUrl") {
            var.value = base_url.to_string();
        } else {
            self.env_vars.push(KVParam {
                key: "baseUrl".to_string(),
                value: base_url.to_string(),
                enabled: true,
                description: Some("Auto-generated base URL".to_string()),
            });
        }

        // Replace occurrences in all request URLs
        self.replace_urls_with_placeholder(base_url, "{{baseUrl}}");
    }

    fn recursive_replace(
        items: &mut [CollectionItem],
        base_url: &str,
        placeholder: &str,
        changed: &mut Vec<(String, String)>,
    ) {
        for item in items {
            match item {
                CollectionItem::Request(r) => {
                    if r.url.starts_with(base_url) {
                        r.url = r.url.replace(base_url, placeholder);
                        changed.push((r.id.clone(), r.url.clone()));
                    }
                }
                CollectionItem::Folder(f) => {
                    Self::recursive_replace(&mut f.items, base_url, placeholder, changed)
                }
            }
        }
    }
}

impl Folder {
    pub fn new(name: String) -> Self {
        Self {
            id: uuid::Uuid::new_v4().to_string(),
            name,
            items: Vec::new(),
            expanded: false,
        }
    }
}

impl CollectionItem {
    pub fn find_request_mut(&mut self, id: &str) -> Option<&mut Request> {
        match self {
            CollectionItem::Request(req) => {
                if req.id == id {
                    Some(req)
                } else {
                    None
                }
            }
            CollectionItem::Folder(f) => {
                for item in &mut f.items {
                    if let Some(req) = item.find_request_mut(id) {
                        return Some(req);
                    }
                }
                None
            }
        }
    }

    pub fn find_request(&self, id: &str) -> Option<&Request> {
        match self {
            CollectionItem::Request(req) => {
                if req.id == id {
                    Some(req)
                } else {
                    None
                }
            }
            CollectionItem::Folder(f) => {
                for item in &f.items {
                    if let Some(req) = item.find_request(id) {
                        return Some(req);
                    }
                }
                None
            }
        }
    }

    pub fn find_request_by_name(&self, name: &str) -> Option<&Request> {
        match self {
            CollectionItem::Request(req) => {
                if req.name == name {
                    Some(req)
                } else {
                    None
                }
            }
            CollectionItem::Folder(f) => {
                for item in &f.items {
                    if let Some(req) = item.find_request_by_name(name) {
                        return Some(req);
                    }
                }
                None
            }
        }
    }

    #[allow(dead_code)]
    pub fn name(&self) -> &str {
        match self {
            CollectionItem::Folder(f) => &f.name,
            CollectionItem::Request(r) => &r.name,
        }
    }

    #[allow(dead_code)]
    pub fn set_name(&mut self, name: String) {
        match self {
            CollectionItem::Folder(f) => f.name = name,
            CollectionItem::Request(r) => r.name = name,
        }
    }
}

impl Request {
    pub fn new(name: String, method: Method, url: String) -> Self {
        Self {
            id: uuid::Uuid::new_v4().to_string(),
            name,
            method,
            url,
            params: Vec::new(),
            headers: Vec::new(),
            auth: Auth::default(),
            body: RequestBody::default(),
            pre_request_script: None,
            post_response_script: None,
        }
    }
}