Skip to content

Commit

Permalink
src: support multi-line values for .env file
Browse files Browse the repository at this point in the history
  • Loading branch information
ilyasShabiCS committed Dec 26, 2023
1 parent 89ddc98 commit 3ca8625
Show file tree
Hide file tree
Showing 4 changed files with 53 additions and 48 deletions.
77 changes: 30 additions & 47 deletions src/node_dotenv.cc
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#include "node_dotenv.h"
#include <regex> // NOLINT(build/c++11)
#include "env-inl.h"
#include "node_file.h"
#include "uv.h"
Expand All @@ -8,6 +9,12 @@ namespace node {
using v8::NewStringType;
using v8::String;

std::regex LINE(
"(?:^|^)\\s*(?:export\\s+)?([\\w.-]+)(?:\\s*=\\s*?|:\\s+?)(\\s*'(?:\\\\'|"
"[^'])*'|\\s*\"(?:\\\\\"|[^\"])*\"|\\s*`(?:\\\\`|[^`])*`|[^#\\r\\n]+)?"
"\\s*(?:#.*)?(?:$|$)",
std::regex::multiline);

std::vector<std::string> Dotenv::GetPathFromArgs(
const std::vector<std::string>& args) {
const auto find_match = [](const std::string& arg) {
Expand Down Expand Up @@ -98,12 +105,7 @@ bool Dotenv::ParsePath(const std::string_view path) {
result.append(buf.base, r);
}

using std::string_view_literals::operator""sv;
auto lines = SplitString(result, "\n"sv);

for (const auto& line : lines) {
ParseLine(line);
}
Parse(result);
return true;
}

Expand All @@ -115,56 +117,37 @@ void Dotenv::AssignNodeOptionsIfAvailable(std::string* node_options) {
}
}

void Dotenv::ParseLine(const std::string_view line) {
auto equal_index = line.find('=');

if (equal_index == std::string_view::npos) {
return;
}

auto key = line.substr(0, equal_index);
void Dotenv::Parse(const std::string& src) {
// Convert line breaks to the same format
std::string lines = src;
std::regex_replace(lines, std::regex("\r\n?"), "\n");

// Remove leading and trailing space characters from key.
while (!key.empty() && std::isspace(key.front())) key.remove_prefix(1);
while (!key.empty() && std::isspace(key.back())) key.remove_suffix(1);
std::smatch match;
while (std::regex_search(lines, match, LINE)) {
const std::string key = match[1].str();

// Omit lines with comments
if (key.front() == '#' || key.empty()) {
return;
}
// Default undefined or null to an empty string
std::string value = match[2].str();

auto value = std::string(line.substr(equal_index + 1));
// Remove whitespace
value = std::regex_replace(value, std::regex("^\\s+|\\s+$"), "");

// Might start and end with `"' characters.
auto quotation_index = value.find_first_of("`\"'");
// Check if double-quoted
const char maybeQuote = value[0];

if (quotation_index == 0) {
auto quote_character = value[quotation_index];
value.erase(0, 1);
// Remove surrounding quotes
value =
std::regex_replace(value, std::regex("^(['\"`])([\\s\\S]*)\\1$"), "$2");

auto end_quotation_index = value.find_last_of(quote_character);

// We couldn't find the closing quotation character. Terminate.
if (end_quotation_index == std::string::npos) {
return;
// Expand newlines if double quoted
if (maybeQuote == '"') {
value = std::regex_replace(value, std::regex("\\\\n"), "\n");
value = std::regex_replace(value, std::regex("\\\\r"), "\r");
}

value.erase(end_quotation_index);
} else {
auto hash_index = value.find('#');

// Remove any inline comments
if (hash_index != std::string::npos) {
value.erase(hash_index);
}

// Remove any leading/trailing spaces from unquoted values.
while (!value.empty() && std::isspace(value.front())) value.erase(0, 1);
while (!value.empty() && std::isspace(value.back()))
value.erase(value.size() - 1);
store_.insert_or_assign(std::string(key), value);
lines = match.suffix();
}

store_.insert_or_assign(std::string(key), value);
}

} // namespace node
2 changes: 1 addition & 1 deletion src/node_dotenv.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class Dotenv {
const std::vector<std::string>& args);

private:
void ParseLine(const std::string_view line);
void Parse(const std::string& src);
std::map<std::string, std::string> store_;
};

Expand Down
18 changes: 18 additions & 0 deletions test/fixtures/dotenv/valid.env
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,21 @@ RETAIN_INNER_QUOTES_AS_BACKTICKS=`{"foo": "bar's"}`
TRIM_SPACE_FROM_UNQUOTED= some spaced out string
EMAIL=[email protected]
SPACED_KEY = parsed

MULTI_DOUBLE_QUOTED="THIS
IS
A
MULTILINE
STRING"

MULTI_SINGLE_QUOTED='THIS
IS
A
MULTILINE
STRING'

MULTI_BACKTICKED=`THIS
IS
A
"MULTILINE'S"
STRING`
4 changes: 4 additions & 0 deletions test/parallel/test-dotenv.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,3 +68,7 @@ assert.strictEqual(process.env.TRIM_SPACE_FROM_UNQUOTED, 'some spaced out string
assert.strictEqual(process.env.EMAIL, '[email protected]');
// Parses keys and values surrounded by spaces
assert.strictEqual(process.env.SPACED_KEY, 'parsed');
// Test multiple-line value
assert.strictEqual(process.env.MULTI_DOUBLE_QUOTED, 'THIS\nIS\nA\nMULTILINE\nSTRING');
assert.strictEqual(process.env.MULTI_SINGLE_QUOTED, 'THIS\nIS\nA\nMULTILINE\nSTRING');
assert.strictEqual(process.env.MULTI_BACKTICKED, 'THIS\nIS\nA\n"MULTILINE\'S"\nSTRING');

0 comments on commit 3ca8625

Please sign in to comment.