-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathJson.php
227 lines (201 loc) · 4.3 KB
/
Json.php
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
<?php
namespace Pingpong\Support;
use Illuminate\Filesystem\Filesystem;
use Illuminate\Support\Collection;
class Json
{
/**
* The file path.
*
* @var string
*/
protected $path;
/**
* The laravel filesystem instance.
*
* @var \Illuminate\Filesystem\Filesystem
*/
protected $filesystem;
/**
* The attributes collection.
*
* @var \Illuminate\Support\Collection
*/
protected $attributes;
/**
* The constructor.
*
* @param mixed $path
* @param \Illuminate\Filesystem\Filesystem $filesystem
*/
public function __construct($path, Filesystem $filesystem = null)
{
$this->path = (string) $path;
$this->filesystem = $filesystem ?: new Filesystem();
$this->attributes = Collection::make($this->getAttributes());
}
/**
* Get filesystem.
*
* @return Filesystem
*/
public function getFilesystem()
{
return $this->filesystem;
}
/**
* Set filesystem.
*
* @param Filesystem $filesystem
*
* @return $this
*/
public function setFilesystem(Filesystem $filesystem)
{
$this->filesystem = $filesystem;
return $this;
}
/**
* Get path.
*
* @return string
*/
public function getPath()
{
return $this->path;
}
/**
* Set path.
*
* @param mixed $path
*
* @return $this
*/
public function setPath($path)
{
$this->path = (string) $path;
return $this;
}
/**
* Make new instance.
*
* @param string $path
* @param \Illuminate\Filesystem\Filesystem $filesystem
*
* @return static
*/
public static function make($path, Filesystem $filesystem = null)
{
return new static($path, $filesystem);
}
/**
* Get file content.
*
* @return string
*/
public function getContents()
{
return $this->filesystem->get($this->getPath());
}
/**
* Get file contents as array.
*
* @return array
*/
public function getAttributes()
{
return json_decode($this->getContents(), 1);
}
/**
* Convert the given array data to pretty json.
*
* @param array $data
*
* @return string
*/
public function toJsonPretty(array $data = null)
{
return json_encode($data ?: $this->attributes, JSON_PRETTY_PRINT);
}
/**
* Update json contents from array data.
*
* @param array $data
*
* @return bool
*/
public function update(array $data)
{
$this->attributes = new Collection(array_merge($this->attributes->toArray(), $data));
return $this->save();
}
/**
* Set a specific key & value.
*
* @param string $key
* @param mixed $value
*
* @return $this
*/
public function set($key, $value)
{
$this->attributes->offsetSet($key, $value);
return $this;
}
/**
* Save the current attributes array to the file storage.
*
* @return bool
*/
public function save()
{
return $this->filesystem->put($this->getPath(), $this->toJsonPretty());
}
/**
* Handle magic method __get.
*
* @param string $key
*
* @return mixed
*/
public function __get($key)
{
return $this->get($key);
}
/**
* Get the specified attribute from json file.
*
* @param $key
* @param null $default
*
* @return mixed
*/
public function get($key, $default = null)
{
return $this->attributes->get($key, $default);
}
/**
* Handle call to __call method.
*
* @param string $method
* @param array $arguments
*
* @return mixed
*/
public function __call($method, $arguments = [])
{
if (method_exists($this, $method)) {
return call_user_func_array([$this, $method], $arguments);
}
return call_user_func_array([$this->attributes, $method], $arguments);
}
/**
* Handle call to __toString method.
*
* @return string
*/
public function __toString()
{
return $this->getContents();
}
}