1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 17:31:35 +02:00
invoiceninja/app/Casts/EncryptedCast.php

28 lines
734 B
PHP
Raw Normal View History

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];
}
}