-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathKVOption.php
More file actions
180 lines (163 loc) · 3.99 KB
/
KVOption.php
File metadata and controls
180 lines (163 loc) · 3.99 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
<?php
namespace SoftinkLab\LaravelKeyvalueStorage;
use Illuminate\Database\Eloquent\Model;
class KVOption extends Model
{
/**
* Indicates if the model should be timestamped.
*
* @var bool
*/
public $timestamps = false;
/**
* The table associated with the model.
*
* @var string
*/
public function getTable()
{
return config('kvstorage.table_name');
}
/**
* The attributes that are mass assignable.
*
* @var [type]
*/
protected $fillable = [
'key',
'value',
'comment',
];
/**
* Determine if the given key exists.
*
* @param string $key
* @return bool
*/
public function exists($key)
{
return $this->where('key', $key)->exists();
}
/**
* Get the specified option by key.
*
* @param string $key
* @param mixed $default
* @return mixed
*/
public function get($key, $default = null)
{
if ($option = $this->where('key', $key)->first()) {
return $option->value;
}
return $default;
}
/**
* Set a given option.
*
* @param string $key
* @param string $comment
* @param mixed $value
* @return void
*/
public function set($key, $value, $comment = null)
{
if ($comment == null) {
$this->updateOrCreate(
['key' => $key],
['value' => $value]
);
} else {
$this->updateOrCreate(
['key' => $key],
['value' => $value, 'comment' => $comment]
);
}
}
/**
* Set given options of array.
*
* @param array $array
* @return void
*/
public function setArray($array)
{
// Multiple elements are present
if (is_array($array[0])) {
foreach ($array as $option) {
// Check if comment is available.
if (count($option) == 2) {
$this->updateOrCreate(
['key' => $option[0]],
['value' => $option[1]]
);
} else {
$this->updateOrCreate(
['key' => $option[0]],
['value' => $option[1], 'comment' => $option[2]]
);
}
}
} else {
$option = $array;
// Check if comment is available.
if (count($option) == 2) {
$this->updateOrCreate(
['key' => $option[0]],
['value' => $option[1]]
);
} else {
$this->updateOrCreate(
['key' => $option[0]],
['value' => $option[1], 'comment' => $option[2]]
);
}
}
}
/**
* Increment a value from the options.
*
* @param string $key
* @param int $factor
*
* @return int|null|string
*/
public function incrementValue($key, int $factor = 1)
{
$currentValue = $this->get($key) ?? 0;
$newValue = $currentValue + $factor;
$this->updateOrCreate(
['key' => $key],
['value' => $newValue]
);
return $newValue;
}
/**
* Decrement a value from the options.
*
* @param string $key
* @param int $factor
*
* @return int|null|string
*/
public function decrementValue($key, int $factor = 1)
{
$currentValue = $this->get($key) ?? 0;
$newValue = $currentValue - $factor;
$this->updateOrCreate(
['key' => $key],
['value' => $newValue]
);
return $newValue;
}
/**
* Delete the specified option.
*
* @param string $key
* @return bool
*/
public function remove($key)
{
return (bool) $this->where('key', $key)->delete();
}
}