You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.3 KiB
PHTML
54 lines
1.3 KiB
PHTML
2 years ago
|
<?php
|
||
|
|
||
|
namespace App\Casts;
|
||
|
|
||
|
use Illuminate\Contracts\Database\Eloquent\CastsAttributes;
|
||
|
use Illuminate\Support\Facades\Crypt;
|
||
|
|
||
|
class EncryptString implements CastsAttributes
|
||
|
{
|
||
|
/**
|
||
|
* Cast the given value.
|
||
|
*
|
||
|
* @param \Illuminate\Database\Eloquent\Model $model
|
||
|
* @param string $key
|
||
|
* @param mixed $value
|
||
|
* @param array $attributes
|
||
|
* @return mixed
|
||
|
*/
|
||
|
public function get($model, string $key, $value, array $attributes)
|
||
|
{
|
||
|
if ($value !== '' && !is_null($value)) {
|
||
|
try {
|
||
|
$value = Crypt::decryptString($value);
|
||
|
} catch (\Exception $e) {
|
||
|
$value = null;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return $value;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Prepare the given value for storage.
|
||
|
*
|
||
|
* @param \Illuminate\Database\Eloquent\Model $model
|
||
|
* @param string $key
|
||
|
* @param mixed $value
|
||
|
* @param array $attributes
|
||
|
* @return mixed
|
||
|
*/
|
||
|
public function set($model, string $key, $value, array $attributes)
|
||
|
{
|
||
|
if ($value !== '' && !is_null($value)) {
|
||
|
try {
|
||
|
$value = Crypt::encryptString($value);
|
||
|
} catch (\Exception $e) {
|
||
|
logger($e->getTraceAsString());
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return $value;
|
||
|
}
|
||
|
}
|