2022-10-30 12:42:30 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Casts;
|
|
|
|
|
|
|
|
use Illuminate\Contracts\Database\Eloquent\CastsAttributes;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
|
|
|
class CompressedString implements CastsAttributes
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Cast the given value.
|
|
|
|
*
|
2023-08-10 01:08:15 +00:00
|
|
|
* For postgresl bytea columns the value is a resource stream
|
|
|
|
*
|
2022-11-04 13:06:47 +00:00
|
|
|
* @param Model $model
|
|
|
|
* @param string $key
|
|
|
|
* @param mixed $value
|
|
|
|
* @param array $attributes
|
2023-06-18 13:33:26 +00:00
|
|
|
* @return string
|
2022-10-30 12:42:30 +00:00
|
|
|
*/
|
2023-08-10 01:08:15 +00:00
|
|
|
public function get($model,string $key,mixed $value,array $attributes): string
|
2022-10-30 12:42:30 +00:00
|
|
|
{
|
2023-08-10 01:08:15 +00:00
|
|
|
// For stream resources, we to fseek in case we've already read it.
|
|
|
|
if (is_resource($value))
|
|
|
|
fseek($value,0);
|
|
|
|
|
|
|
|
$value = is_resource($value)
|
|
|
|
? stream_get_contents($value)
|
|
|
|
: $value;
|
|
|
|
|
2024-05-13 05:29:29 +00:00
|
|
|
// If we get an error decompressing, it might not be zstd (or its already been done)
|
|
|
|
try {
|
|
|
|
return $value ? zstd_uncompress(base64_decode($value)) : '';
|
|
|
|
|
|
|
|
} catch (\ErrorException $e) {
|
|
|
|
return $value;
|
|
|
|
}
|
2022-10-30 12:42:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Prepare the given value for storage.
|
|
|
|
*
|
|
|
|
* @param Model $model
|
|
|
|
* @param string $key
|
|
|
|
* @param mixed $value
|
|
|
|
* @param array $attributes
|
2023-06-18 13:33:26 +00:00
|
|
|
* @return string
|
2022-10-30 12:42:30 +00:00
|
|
|
*/
|
2023-06-18 13:33:26 +00:00
|
|
|
public function set($model,string $key,$value,array $attributes): string
|
2022-10-30 12:42:30 +00:00
|
|
|
{
|
2023-06-18 13:33:26 +00:00
|
|
|
return $value ? base64_encode(zstd_compress($value)) : '';
|
2022-10-30 12:42:30 +00:00
|
|
|
}
|
|
|
|
}
|