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
//! Functions containing the core business logic around parsing.
//!
//! All of these functions encapsulate the "what" of cenv,
//! including:
//!
//! - What constitutes a "keyword"
//! - Which lines within the .env file should be updated
//! - The format that should be returned to the callee

use crate::utils::{Config, EnvContents};
use regex::Regex;
use std::collections::HashMap;

lazy_static! {
    static ref KEYWORD_REGEX: Regex = Regex::new(r"^# \+\+ ([0-9A-Za-z_-]{1,100})").unwrap();
    static ref VAR_REGEX: Regex = Regex::new(r"^# ?([[:word:]]+=\S*)").unwrap();
}

#[derive(PartialEq)]
enum ParseStatus {
    Active,
    Inactive,
    Ignore,
}

fn parse_as_active(line: &str) -> String {
    match VAR_REGEX.captures(line).map(|caps| caps.extract()) {
        Some((_, [var])) => String::from(var),
        _ => String::from(line),
    }
}

fn parse_as_inactive(line: &str) -> String {
    let mut line_chars = line.chars();
    match line_chars.next() {
        Some('#') => String::from(line),
        Some(_) => format!("{}{}", "# ", line),
        None => String::from(line),
    }
}

/// Supplementary function which returns the keyword within the provided
/// line (if it exists)
///
/// This function accepts the EnvContents struct available in the
/// [utils](../utils/index.html) module.
pub fn resolve_keyword(line: &str) -> Option<&str> {
    match KEYWORD_REGEX.captures(line).map(|caps| caps.extract()) {
        Some((_, [keyword])) => Some(keyword),
        _ => None,
    }
}

/// Supplementary function which returns a Vec of all keywords within the env
///
/// This function accepts the EnvContents struct available in the
/// [utils](../utils/index.html) module.
pub fn list_available_keywords(env: &EnvContents) -> Vec<&str> {
    let mut cache = HashMap::new();

    for line in env.contents.lines() {
        if let Some(keyword) = resolve_keyword(line) {
            cache.insert(keyword, 1);
        }
    }

    cache.into_keys().collect()
}

/// Core function which performs all parsing and returns results
///
/// This function accepts and returns the structs available in the
/// [utils](../utils/index.html) module.
pub fn parse_env(env: &EnvContents, config: &Config) -> Result<EnvContents, String> {
    let lines = env.contents.lines();

    let mut parse_status = ParseStatus::Ignore;
    let mut keyword_found = false;

    let collected = lines.map(|line| {
        if line.is_empty() {
            parse_status = ParseStatus::Ignore;
            return String::from(line);
        }

        if let Some(keyword) = resolve_keyword(line) {
            if keyword == config.keyword {
                keyword_found = true;
                parse_status = ParseStatus::Active;
            } else {
                parse_status = ParseStatus::Inactive;
            }

            return String::from(line);
        };

        match parse_status {
            ParseStatus::Active => parse_as_active(line),
            ParseStatus::Inactive => parse_as_inactive(line),
            ParseStatus::Ignore => String::from(line),
        }
    });

    let collected: Vec<String> = collected.collect();
    let collected = collected.join("\n");
    // Ensure we have an end-of-file newline
    let collected = collected + "\n";

    match keyword_found {
        true => Ok(EnvContents::new(collected)),
        false => Err(format!(
            "keyword \"{}\" was not found in .env file",
            config.keyword
        )),
    }
}

#[cfg(test)]
mod parse_as_active_tests {
    use super::*;

    #[test]
    fn same_line_if_no_comment() {
        assert_eq!(parse_as_active("testing"), "testing");
    }

    #[test]
    fn same_line_if_empty() {
        assert_eq!(parse_as_active(""), "");
    }

    #[test]
    fn removes_hash_from_var_variant_1() {
        assert_eq!(parse_as_active("# VAR=true"), "VAR=true");
    }

    #[test]
    fn removes_hash_from_var_variant_2() {
        assert_eq!(
            parse_as_active("# TEST_VAR_ENTRY=some??weird__43££combo*~*😃*929100"),
            "TEST_VAR_ENTRY=some??weird__43££combo*~*😃*929100"
        );
    }

    #[test]
    fn removes_hash_from_complex_var() {
        assert_eq!(
            parse_as_active("# 0varl337=123-yrHks~\""),
            "0varl337=123-yrHks~\""
        );
    }

    #[test]
    fn keeps_hash_from_comment() {
        assert_eq!(
            parse_as_active("# this should be VAR=true"),
            "# this should be VAR=true"
        );
        assert_eq!(parse_as_active("# COMMENT-true"), "# COMMENT-true");
    }
}

#[cfg(test)]
mod parse_as_inactive_tests {
    use super::*;

    #[test]
    fn same_line_if_comment() {
        assert_eq!(parse_as_inactive("#testing"), String::from("#testing"));
    }

    #[test]
    fn same_line_if_empty() {
        assert_eq!(parse_as_inactive(""), String::from(""));
    }

    #[test]
    fn adds_hash() {
        assert_eq!(parse_as_inactive("testing"), String::from("# testing"));
    }
}

#[cfg(test)]
mod resolve_keyword_tests {
    use super::*;

    #[test]
    fn none_if_not_formatted() {
        assert_eq!(resolve_keyword("SOME=thing"), None);
    }

    #[test]
    fn none_if_no_word() {
        assert_eq!(resolve_keyword("# ++ ++"), None);
    }

    #[test]
    fn none_if_no_comment() {
        assert_eq!(resolve_keyword("++ keyword ++"), None);
    }

    #[test]
    fn none_if_invalid_formatted_variant_1() {
        assert_eq!(resolve_keyword("#++ keyword"), None);
    }

    #[test]
    fn none_if_invalid_formatted_variant_2() {
        assert_eq!(resolve_keyword("## ++ keyword ++"), None);
    }

    #[test]
    fn word_if_formatted_variant_1() {
        assert_eq!(resolve_keyword("# ++ keyword ++"), Some("keyword"));
    }

    #[test]
    fn word_if_formatted_variant_2() {
        assert_eq!(resolve_keyword("# ++ my-env ++"), Some("my-env"));
    }

    #[test]
    fn word_if_formatted_variant_3() {
        assert_eq!(
            resolve_keyword("# ++ prod_environment ++"),
            Some("prod_environment")
        );
    }
}

#[cfg(test)]
mod list_available_keywords_tests {
    use super::*;

    #[test]
    fn empty_if_no_keywords() {
        let provided = String::from(
            "
KEY=value
KEY=value

KEY=value
    ",
        );
        let env = EnvContents::new(provided);
        let expected = vec![""; 0];

        assert_eq!(list_available_keywords(&env), expected)
    }

    #[test]
    fn returns_all_keywords() {
        let provided = String::from(
            "
# ++ a ++
# ++ b ++
KEY=value
KEY=value

# ++ c ++
KEY=value
    ",
        );
        let env = EnvContents::new(provided);
        let mut expected = vec!["a", "b", "c"];
        let mut result = list_available_keywords(&env);

        // allow default sorting - if they're the same there'll be a match
        expected.sort();
        result.sort();

        assert_eq!(result, expected)
    }

    #[test]
    fn dedup_keywords() {
        let provided = String::from(
            "
# ++ a ++
# ++ a ++
# ++ a ++
# ++ b ++
# ++ b ++
KEY=value
KEY=value


# ++ c ++
# ++ c ++
KEY=value
    ",
        );
        let env = EnvContents::new(provided);
        let mut expected = vec!["a", "b", "c"];
        let mut result = list_available_keywords(&env);

        // allow default sorting - if they're the same there'll be a match
        expected.sort();
        result.sort();

        assert_eq!(result, expected)
    }
}

#[cfg(test)]
mod parse_env_tests {
    use super::*;

    #[test]
    fn err_if_keyword_not_found() {
        let provided = String::from(
            "
KEY=value
KEY=value

KEY=value
    ",
        );
        let env = EnvContents::new(provided);
        let args = vec![String::from("_"), String::from("keyword")];
        let config = Config::new_from_args(args.into_iter()).unwrap();

        assert_eq!(
            parse_env(&env, &config),
            Err(String::from(
                "keyword \"keyword\" was not found in .env file"
            ))
        );
    }

    #[test]
    fn comment_out_non_matches() {
        let provided = String::from(
            "
# ++ a ++
KEY=value
# ++ b ++
KEY=value

# ++ c ++
KEY=value
",
        );
        let env = EnvContents::new(provided);
        let args = vec![String::from("_"), String::from("b")];
        let config = Config::new_from_args(args.into_iter()).unwrap();

        let expected = String::from(
            "
# ++ a ++
# KEY=value
# ++ b ++
KEY=value

# ++ c ++
# KEY=value
",
        );
        assert_eq!(parse_env(&env, &config), Ok(EnvContents::new(expected)));
    }

    #[test]
    fn leave_matches_if_uncommented() {
        let provided = String::from(
            "
# ++ a ++
KEY=value
# ++ b ++
KEY=value

# ++ c ++
KEY=value
",
        );
        let env = EnvContents::new(provided);
        let args = vec![String::from("_"), String::from("b")];
        let config = Config::new_from_args(args.into_iter()).unwrap();

        let expected = String::from(
            "
# ++ a ++
# KEY=value
# ++ b ++
KEY=value

# ++ c ++
# KEY=value
",
        );
        assert_eq!(parse_env(&env, &config), Ok(EnvContents::new(expected)));
    }

    #[test]
    fn uncomment_matches() {
        let provided = String::from(
            "
# ++ a ++
# KEY=value
# ++ b ++
# KEY=value

# ++ c ++
KEY=value
",
        );
        let env = EnvContents::new(provided);
        let args = vec![String::from("_"), String::from("b")];
        let config = Config::new_from_args(args.into_iter()).unwrap();

        let expected = String::from(
            "
# ++ a ++
# KEY=value
# ++ b ++
KEY=value

# ++ c ++
# KEY=value
",
        );
        assert_eq!(parse_env(&env, &config), Ok(EnvContents::new(expected)));
    }
}