This repository was archived by the owner on Apr 7, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 73
/
Copy pathEncryptionDefaults.php
191 lines (167 loc) · 4.52 KB
/
EncryptionDefaults.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
<?php
/**
* src/EncryptionDefaults.php.
*
* @author Austin Heap <me@austinheap.com>
* @version v0.2.1
*/
declare(strict_types=1);
namespace AustinHeap\Database\Encryption;
use RuntimeException;
/**
* EncryptionDefaults.
*
* @link https://github.com/austinheap/laravel-database-encryption
* @link https://packagist.org/packages/austinheap/laravel-database-encryption
* @link https://austinheap.github.io/laravel-database-encryption/classes/AustinHeap.Database.Encryption.EncryptionDefaults.html
*/
abstract class EncryptionDefaults
{
/**
* Shared default enabled flag.
*
* @var bool
*/
public const DEFAULT_ENABLED = false;
/**
* Shared default versioning flag.
*
* @var bool
*/
public const DEFAULT_VERSIONING = true;
/**
* Shared default prefix.
*
* @var string
*/
public const DEFAULT_PREFIX = '__LARAVEL-DATABASE-ENCRYPTED-%VERSION%__';
/**
* Shared default control characters.
*
* @var array
*/
public const DEFAULT_CONTROL_CHARACTERS = [
'header' => [
'start' => 1,
'stop' => 4,
],
'prefix' => [
'start' => 2,
'stop' => 3,
],
'field' => [
'start' => 30,
'delimiter' => 25,
'stop' => 23,
],
];
/**
* Shared default helpers.
*
* @var array
*/
public const DEFAULT_HELPERS = [
'database_encryption',
'db_encryption',
'dbencryption',
'database_encrypt',
'db_encrypt',
'dbencrypt',
'database_decrypt',
'db_decrypt',
'dbdecrypt',
];
/**
* Private default control characters cache.
*
* @var null|array
*/
private static $defaultControlCharactersCache = null;
/**
* Private default prefix cache.
*
* @var null|string
*/
private static $defaultPrefixCache = null;
/**
* @return bool
*/
public static function isEnabledDefault(): bool
{
return static::DEFAULT_ENABLED;
}
/**
* @return bool
*/
public static function isDisabledDefault(): bool
{
return ! static::isEnabledDefault();
}
/**
* @return bool
*/
public static function isVersioningDefault(): bool
{
return static::DEFAULT_VERSIONING;
}
/**
* @return bool
*/
public static function isVersionlessDefault(): bool
{
return ! static::isVersioningDefault();
}
/**
* @return string
*/
public static function getPrefixDefault(): string
{
return static::DEFAULT_PREFIX;
}
/**
* @return array
*/
public static function getControlCharactersDefault(?string $type = null, bool $raw = false): array
{
if (is_null(self::$defaultControlCharactersCache)) {
$characters = [];
foreach (self::DEFAULT_CONTROL_CHARACTERS as $control => $config) {
$characters[$control] = [];
foreach (['start', 'delimiter', 'stop'] as $mode) {
if (isset($config[$mode])) {
$characters[$control][$mode] = self::buildCharacter($config[$mode], true);
}
}
}
self::$defaultControlCharactersCache = $characters;
}
if (! is_null($type)) {
throw_if(! array_key_exists($type, self::$defaultControlCharactersCache), RuntimeException::class,
'Default control characters do not exist for $type: "'.(empty($type) ? '(empty)' : $type).'".');
return self::$defaultControlCharactersCache[$type];
}
return self::$defaultControlCharactersCache;
}
/**
* @return array
*/
public static function getHelpersDefault(): array
{
return static::DEFAULT_HELPERS;
}
/**
* Builds array of character information from character.
*
* @return array
*/
public static function buildCharacter($character, bool $default = false): array
{
throw_if(! is_int($character) && ! is_string($character), RuntimeException::class,
'Cannot build character array from $character type: "'.gettype($character).'".');
return [
'int' => is_int($character) ? $character : ord($character),
'string' => is_string($character) ? $character : chr($character),
'default' => $default,
];
}
}