blob: 4049c5ad74032184e2560756fc545bf267af9b46 (
plain)
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
|
<?php
// Icinga Web 2 X.509 Module | (c) 2020 Icinga GmbH | GPLv2
namespace Icinga\Module\X509;
use ipl\Sql\Connection;
class DbTool
{
protected $pgsql = false;
public function __construct(Connection $db)
{
$this->pgsql = $db->getConfig()->db === 'pgsql';
}
/**
* @param string $binary
*
* @return string
*/
public function marshalBinary($binary)
{
if ($this->pgsql) {
return sprintf('\\x%s', bin2hex(static::unmarshalBinary($binary)));
}
return $binary;
}
/**
* @param resource|string $binary
*
* @return string
*/
public static function unmarshalBinary($binary)
{
if (is_resource($binary)) {
return stream_get_contents($binary);
}
return $binary;
}
}
|