-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfeatures.go
More file actions
470 lines (387 loc) · 11.2 KB
/
features.go
File metadata and controls
470 lines (387 loc) · 11.2 KB
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
package main
import (
"encoding/json"
"fmt"
"io"
"os"
"path/filepath"
"strings"
"sync"
"time"
)
const (
configDir = ".api-client-tui"
envFile = "environments.json"
collectionsFile = "collections.json"
historyFile = "history.json"
configFile = "config.json"
defaultHistLimit = 100
)
type RequestItem struct {
ID string `json:"id"`
Name string `json:"name"`
URL string `json:"url"`
Method string `json:"method"`
Headers map[string]string `json:"headers"`
Body string `json:"body"`
CreatedAt time.Time `json:"created_at"`
LastUsed time.Time `json:"last_used"`
Collections []string `json:"collections,omitempty"`
}
type Collection struct {
Name string `json:"name"`
Requests []RequestItem `json:"requests"`
}
type Environment struct {
Name string `json:"name"`
Variables map[string]string `json:"variables"`
}
type Config struct {
Theme string `json:"theme"`
Timeout int `json:"timeout"`
HistoryLimit int `json:"history_limit"`
AutoFormatJSON bool `json:"auto_format_json"`
SaveHistory bool `json:"save_history"`
CurrentEnv string `json:"current_env"`
ShowResponseTime bool `json:"show_response_time"`
TruncateResponse int `json:"truncate_response"`
SyntaxHighlighting bool `json:"syntax_highlighting"`
}
type ConfigManager struct {
Config Config
History []RequestItem
Collections map[string]Collection
Environments map[string]Environment
configDir string
mu sync.RWMutex
}
func NewConfigManager() (*ConfigManager, error) {
homeDir, err := os.UserHomeDir()
if err != nil {
return nil, fmt.Errorf("failed to get home directory: %w", err)
}
configDir := filepath.Join(homeDir, configDir)
if err := os.MkdirAll(configDir, 0755); err != nil {
return nil, fmt.Errorf("failed to create config directory: %w", err)
}
cm := &ConfigManager{
configDir: configDir,
Collections: make(map[string]Collection),
Environments: make(map[string]Environment),
Config: Config{
Theme: "dark",
Timeout: 30,
HistoryLimit: defaultHistLimit,
AutoFormatJSON: true,
SaveHistory: true,
ShowResponseTime: true,
TruncateResponse: 1000,
SyntaxHighlighting: true,
},
}
cm.loadConfig()
cm.loadHistory()
cm.loadCollections()
cm.loadEnvironments()
return cm, nil
}
func (cm *ConfigManager) loadConfig() error {
cm.mu.Lock()
defer cm.mu.Unlock()
configPath := filepath.Join(cm.configDir, configFile)
if _, err := os.Stat(configPath); os.IsNotExist(err) {
// Create default config if it doesn't exist
return cm.saveConfigLocked()
}
file, err := os.Open(configPath)
if err != nil {
return err
}
defer file.Close()
bytes, err := io.ReadAll(file)
if err != nil {
return err
}
return json.Unmarshal(bytes, &cm.Config)
}
// saveConfig saves the application configuration
// Exported for use by external packages and UI components
func (cm *ConfigManager) saveConfig() error {
cm.mu.Lock()
defer cm.mu.Unlock()
return cm.saveConfigLocked()
}
func (cm *ConfigManager) saveConfigLocked() error {
configPath := filepath.Join(cm.configDir, configFile)
bytes, err := json.MarshalIndent(cm.Config, "", " ")
if err != nil {
return err
}
return os.WriteFile(configPath, bytes, 0644)
}
func (cm *ConfigManager) loadHistory() error {
cm.mu.Lock()
defer cm.mu.Unlock()
historyPath := filepath.Join(cm.configDir, historyFile)
if _, err := os.Stat(historyPath); os.IsNotExist(err) {
cm.History = []RequestItem{}
return nil
}
file, err := os.Open(historyPath)
if err != nil {
return err
}
defer file.Close()
bytes, err := io.ReadAll(file)
if err != nil {
return err
}
return json.Unmarshal(bytes, &cm.History)
}
func (cm *ConfigManager) saveHistory() error {
cm.mu.Lock()
defer cm.mu.Unlock()
if !cm.Config.SaveHistory {
return nil
}
if len(cm.History) > cm.Config.HistoryLimit {
cm.History = cm.History[:cm.Config.HistoryLimit]
}
historyPath := filepath.Join(cm.configDir, historyFile)
bytes, err := json.MarshalIndent(cm.History, "", " ")
if err != nil {
return err
}
return os.WriteFile(historyPath, bytes, 0644)
}
func (cm *ConfigManager) addToHistory(req RequestItem) error {
cm.mu.Lock()
defer cm.mu.Unlock()
for i, item := range cm.History {
if item.URL == req.URL && item.Method == req.Method {
cm.History[i].LastUsed = time.Now()
if i > 0 {
cm.History = append([]RequestItem{cm.History[i]}, append(cm.History[:i], cm.History[i+1:]...)...)
}
return cm.saveHistory()
}
}
req.CreatedAt = time.Now()
req.LastUsed = time.Now()
cm.History = append([]RequestItem{req}, cm.History...)
return cm.saveHistory()
}
func (cm *ConfigManager) loadCollections() error {
cm.mu.Lock()
defer cm.mu.Unlock()
collectionsPath := filepath.Join(cm.configDir, collectionsFile)
if _, err := os.Stat(collectionsPath); os.IsNotExist(err) {
cm.Collections = make(map[string]Collection)
return nil
}
file, err := os.Open(collectionsPath)
if err != nil {
return err
}
defer file.Close()
bytes, err := io.ReadAll(file)
if err != nil {
return err
}
return json.Unmarshal(bytes, &cm.Collections)
}
// saveCollections saves the request collections to disk
// Exported for use by external packages and UI components
func (cm *ConfigManager) saveCollections() error {
cm.mu.Lock()
defer cm.mu.Unlock()
collectionsPath := filepath.Join(cm.configDir, collectionsFile)
bytes, err := json.MarshalIndent(cm.Collections, "", " ")
if err != nil {
return err
}
return os.WriteFile(collectionsPath, bytes, 0644)
}
func (cm *ConfigManager) addToCollection(collectionName string, req RequestItem) error {
cm.mu.Lock()
defer cm.mu.Unlock()
collection, exists := cm.Collections[collectionName]
if !exists {
collection = Collection{
Name: collectionName,
Requests: []RequestItem{},
}
}
for i, item := range collection.Requests {
if item.URL == req.URL && item.Method == req.Method {
collection.Requests[i] = req
cm.Collections[collectionName] = collection
// Save without acquiring lock again
collectionsPath := filepath.Join(cm.configDir, collectionsFile)
bytes, err := json.MarshalIndent(cm.Collections, "", " ")
if err != nil {
return err
}
return os.WriteFile(collectionsPath, bytes, 0644)
}
}
collection.Requests = append(collection.Requests, req)
cm.Collections[collectionName] = collection
// Save without acquiring lock again
collectionsPath := filepath.Join(cm.configDir, collectionsFile)
bytes, err := json.MarshalIndent(cm.Collections, "", " ")
if err != nil {
return err
}
return os.WriteFile(collectionsPath, bytes, 0644)
}
func (cm *ConfigManager) loadEnvironments() error {
cm.mu.Lock()
defer cm.mu.Unlock()
envPath := filepath.Join(cm.configDir, envFile)
if _, err := os.Stat(envPath); os.IsNotExist(err) {
cm.Environments = map[string]Environment{
"development": {
Name: "development",
Variables: map[string]string{
"BASE_URL": "http://localhost:3000",
"API_KEY": "dev-key-123",
},
},
"production": {
Name: "production",
Variables: map[string]string{
"BASE_URL": "https://api.example.com",
"API_KEY": "prod-key-789",
},
},
}
// Save without acquiring lock again
envPath := filepath.Join(cm.configDir, envFile)
bytes, err := json.MarshalIndent(cm.Environments, "", " ")
if err != nil {
return err
}
return os.WriteFile(envPath, bytes, 0644)
}
file, err := os.Open(envPath)
if err != nil {
return err
}
defer file.Close()
bytes, err := io.ReadAll(file)
if err != nil {
return err
}
return json.Unmarshal(bytes, &cm.Environments)
}
// saveEnvironments saves the environment variables to disk
// Exported for use by external packages and UI components
func (cm *ConfigManager) saveEnvironments() error {
cm.mu.Lock()
defer cm.mu.Unlock()
envPath := filepath.Join(cm.configDir, envFile)
bytes, err := json.MarshalIndent(cm.Environments, "", " ")
if err != nil {
return err
}
return os.WriteFile(envPath, bytes, 0644)
}
func (cm *ConfigManager) getCurrentEnvironment() Environment {
cm.mu.RLock()
defer cm.mu.RUnlock()
env, exists := cm.Environments[cm.Config.CurrentEnv]
if !exists && len(cm.Environments) > 0 {
for _, e := range cm.Environments {
return e
}
}
return env
}
func (cm *ConfigManager) replaceEnvVars(input string) string {
// We use getCurrentEnvironment which already has RLock
env := cm.getCurrentEnvironment()
if env.Variables == nil {
return input
}
result := input
for key, value := range env.Variables {
placeholder := fmt.Sprintf("{{%s}}", key)
result = strings.ReplaceAll(result, placeholder, value)
}
return result
}
// SetCurrentEnv changes the current environment and saves the configuration
func (cm *ConfigManager) SetCurrentEnv(envName string) error {
cm.mu.Lock()
defer cm.mu.Unlock()
// Check if environment exists
if _, exists := cm.Environments[envName]; !exists {
return fmt.Errorf("environment %s not found", envName)
}
// Update current environment
cm.Config.CurrentEnv = envName
// Save configuration
return cm.saveConfigLocked()
}
// GetAvailableEnvironments returns a list of available environment names
func (cm *ConfigManager) GetAvailableEnvironments() []string {
cm.mu.RLock()
defer cm.mu.RUnlock()
envs := make([]string, 0, len(cm.Environments))
for name := range cm.Environments {
envs = append(envs, name)
}
return envs
}
// FindHistoryByURL searches the request history for items containing the given URL substring
func (cm *ConfigManager) FindHistoryByURL(url string) []RequestItem {
cm.mu.RLock()
defer cm.mu.RUnlock()
var results []RequestItem
for _, item := range cm.History {
if strings.Contains(item.URL, url) {
results = append(results, item)
}
}
return results
}
// FindHistoryByMethod searches the request history for items with the given HTTP method
func (cm *ConfigManager) FindHistoryByMethod(method string) []RequestItem {
cm.mu.RLock()
defer cm.mu.RUnlock()
var results []RequestItem
for _, item := range cm.History {
if strings.EqualFold(item.Method, method) {
results = append(results, item)
}
}
return results
}
// FindCollectionByName searches for collections with names containing the given substring
func (cm *ConfigManager) FindCollectionByName(name string) []Collection {
cm.mu.RLock()
defer cm.mu.RUnlock()
var results []Collection
for _, collection := range cm.Collections {
if strings.Contains(strings.ToLower(collection.Name), strings.ToLower(name)) {
results = append(results, collection)
}
}
return results
}
// FindRequestsInCollections searches for requests across all collections matching the given criteria
func (cm *ConfigManager) FindRequestsInCollections(urlSubstr, methodSubstr string) []RequestItem {
cm.mu.RLock()
defer cm.mu.RUnlock()
var results []RequestItem
for _, collection := range cm.Collections {
for _, req := range collection.Requests {
if (urlSubstr == "" || strings.Contains(req.URL, urlSubstr)) &&
(methodSubstr == "" || strings.EqualFold(req.Method, methodSubstr)) {
results = append(results, req)
}
}
}
return results
}