Skip to content

Commit bfd67c0

Browse files
committed
Add get/set functions
1 parent d35e822 commit bfd67c0

File tree

4 files changed

+192
-5
lines changed

4 files changed

+192
-5
lines changed

src/EnvFile.php

+64
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
use EnvEditor\EnvFile\Visitor;
66
use EnvEditor\EnvFile\EOLType;
7+
use EnvEditor\EnvFile\Block\Variable as VariableBlock;
78

89
class EnvFile {
910

@@ -23,6 +24,66 @@ public function visitBlocks(Visitor $visitor) {
2324
}
2425
}
2526

27+
/**
28+
* @return VariableBlock[]
29+
*/
30+
public function getVariableBlocks(): array {
31+
return array_values(array_filter($this->blocks, function($block){
32+
return $block instanceof \EnvEditor\EnvFile\Block\Variable;
33+
}));
34+
}
35+
36+
public function findVariable(string $key): ?VariableBlock {
37+
foreach($this->getVariableBlocks() as $block) {
38+
if($block->key == $key) {
39+
return $block;
40+
}
41+
}
42+
43+
return null;
44+
}
45+
46+
public function putVariable(VariableBlock $variable) {
47+
foreach($this->blocks as $i => $block) {
48+
49+
if(!$block instanceof \EnvEditor\EnvFile\Block\Variable) continue;
50+
51+
if($block->key->content == $variable->key->content) {
52+
$this->blocks[$i] = $variable;
53+
return;
54+
}
55+
}
56+
57+
$this->blocks[] = $variable;
58+
}
59+
60+
public function removeVariableKey(string $key): ?VariableBlock {
61+
$variable = $this->findVariable($key);
62+
if(!$variable) return null;
63+
64+
$index = array_search($variable, $this->blocks);
65+
array_splice($this->blocks, $index, 1);
66+
return $variable;
67+
}
68+
69+
public function getValue(string $key): string {
70+
$variable = $this->findVariable($key);
71+
72+
return $variable ? $variable->value->content : "";
73+
}
74+
75+
public function setValue(string $key, string $content) {
76+
$variable = $this->findVariable($key);
77+
if(!$variable) {
78+
$variable = new VariableBlock();
79+
$variable->key->content = $key;
80+
81+
$this->blocks[] = $variable;
82+
}
83+
84+
$variable->value->setContent($content);
85+
}
86+
2687
// Utility methods
2788

2889
public static function loadFrom(string $path): EnvFile {
@@ -39,4 +100,7 @@ public function saveTo(string $path): void {
39100
file_put_contents($path, $content);
40101
}
41102

103+
// Private methods
104+
105+
42106
}

src/EnvFile/Block/Variable.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ class Variable extends Block {
1515
/** @var Value */
1616
public $value;
1717

18-
function __construct() {
19-
$this->key = new Key();
20-
$this->value = new Value();
18+
function __construct(Key $key = null, Value $value = null) {
19+
$this->key = $key ?? new Key();
20+
$this->value = $value ?? new Value();
2121
}
2222

2323
public function visit(Visitor $visitor) {

src/EnvFile/Block/Variable/Value.php

+11-2
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,23 @@ class Value {
1212
/** @var string */
1313
public $quote="";
1414

15-
function __construct($content = "") {
16-
$this->content = $content;
15+
function __construct(string $content = "") {
16+
$this->setContent($content);
1717
}
1818

1919
public function __toString() {
2020
return $this->content;
2121
}
2222

23+
/** Adds quotes if necessary */
24+
public function setContent(string $content) {
25+
$this->content = $content;
26+
27+
if(preg_match('/\s/s', $content)) {
28+
$this->quote = '"';
29+
}
30+
}
31+
2332
public function getContentWithQuotes(): string {
2433
return "{$this->quote}{$this->content}{$this->quote}";
2534
}

tests/Unit/EnvFileTest.php

+114
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,114 @@
1+
<?php
2+
3+
namespace Tests\Unit;
4+
5+
use Tests\TestCase;
6+
7+
use EnvEditor\EnvFile;
8+
use EnvEditor\EnvFile\Block\Variable as VariableBlock;
9+
use EnvEditor\EnvFile\Block\Variable\Key;
10+
use EnvEditor\EnvFile\Block\Variable\Value;
11+
12+
class EnvFileTest extends TestCase {
13+
14+
public function testFindVariable() {
15+
16+
$file = new EnvFile();
17+
18+
$v1 = new VariableBlock(new Key("A"), new Value("B"));
19+
$v2 = new VariableBlock(new Key("C"), new Value("D"));
20+
21+
$file->blocks = [$v1, $v2];
22+
23+
$this->assertEquals($v1, $file->findVariable("A"));
24+
$this->assertEquals($v2, $file->findVariable("C"));
25+
$this->assertEquals(null, $file->findVariable("X"));
26+
27+
}
28+
29+
/**
30+
* @depends testFindVariable
31+
*/
32+
public function testPutVariable() {
33+
34+
$file = new EnvFile();
35+
36+
$v1 = new VariableBlock(new Key("A"), new Value("B"));
37+
$file->putVariable($v1);
38+
$this->assertEquals($v1, $file->findVariable("A"));
39+
40+
$v2 = new VariableBlock(new Key("A"), new Value("C"));
41+
$file->putVariable($v2);
42+
$this->assertEquals($v2, $file->findVariable("A"));
43+
$this->assertEquals(1, count($file->blocks));
44+
45+
}
46+
47+
/**
48+
* @depends testFindVariable
49+
*/
50+
public function testRemoveVariable() {
51+
52+
$file = new EnvFile();
53+
54+
$v1 = new VariableBlock(new Key("A"), new Value("B"));
55+
$v2 = new VariableBlock(new Key("C"), new Value("D"));
56+
57+
$file->blocks = [$v1, $v2];
58+
59+
$file->removeVariableKey("A");
60+
61+
$this->assertEquals(null, $file->findVariable("A"));
62+
$this->assertEquals($v2, $file->findVariable("C"));
63+
$this->assertEquals(1, count($file->blocks));
64+
65+
}
66+
67+
/**
68+
* @depends testFindVariable
69+
*/
70+
public function testGetValue() {
71+
72+
$file = new EnvFile();
73+
74+
$v1 = new VariableBlock(new Key("A"), new Value("B"));
75+
$v2 = new VariableBlock(new Key("C"), new Value("D"));
76+
77+
$file->blocks = [$v1, $v2];
78+
79+
$this->assertEquals("D", $file->getValue("C"));
80+
$this->assertEquals("", $file->getValue("X"));
81+
82+
}
83+
84+
/**
85+
* @depends testPutVariable
86+
*/
87+
public function testSetValue() {
88+
89+
$file = new EnvFile();
90+
91+
$file->setValue("A", "B");
92+
$this->assertEquals("B", $file->getValue("A"));
93+
$file->setValue("A", "C");
94+
$this->assertEquals("C", $file->getValue("A"));
95+
96+
}
97+
98+
/**
99+
* @depends testSetValue
100+
*/
101+
public function testSetValueQuoted() {
102+
103+
$file = new EnvFile();
104+
105+
$file->setValue("A", "foo bar");
106+
$v1 = $file->findVariable("A");
107+
$this->assertNotEquals("", $v1->value->quote);
108+
109+
$file->setValue("B", "foo\nbar");
110+
$v2 = $file->findVariable("B");
111+
$this->assertEquals('"', $v2->value->quote);
112+
113+
}
114+
}

0 commit comments

Comments
 (0)