2023-05-16 10:00:39 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Casts;
|
|
|
|
|
|
|
|
use Illuminate\Contracts\Database\Eloquent\CastsAttributes;
|
|
|
|
|
|
|
|
class EncryptedCast implements CastsAttributes
|
|
|
|
{
|
|
|
|
public function get($model, string $key, $value, array $attributes)
|
2023-10-26 04:57:44 +02:00
|
|
|
{
|
2023-07-12 11:15:52 +02:00
|
|
|
return is_string($value) && strlen($value) > 1 ? decrypt($value) : null;
|
2023-05-16 10:00:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function set($model, string $key, $value, array $attributes)
|
2023-10-26 04:57:44 +02:00
|
|
|
{
|
2023-05-16 10:00:39 +02:00
|
|
|
return [$key => ! is_null($value) ? encrypt($value) : null];
|
|
|
|
}
|
|
|
|
}
|