Serializer.php
4.95 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
<?php
/*
* Copyright 2012 Facebook, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* This helper is based on code from Facebook's Phabricator project
*
* https://github.com/facebook/phabricator
*
* Specifically, it is an adaptation of the PhutilReadableSerializer class.
*
* @package raven
*/
class Raven_Serializer
{
/*
* The default mb detect order
*
* @see http://php.net/manual/en/function.mb-detect-encoding.php
*/
const DEFAULT_MB_DETECT_ORDER = 'auto';
/*
* Suggested detect order for western countries
*/
const WESTERN_MB_DETECT_ORDER = 'UTF-8, ASCII, ISO-8859-1, ISO-8859-2, ISO-8859-3, ISO-8859-4, ISO-8859-5, ISO-8859-6, ISO-8859-7, ISO-8859-8, ISO-8859-9, ISO-8859-10, ISO-8859-13, ISO-8859-14, ISO-8859-15, ISO-8859-16, Windows-1251, Windows-1252, Windows-1254';
/**
* This is the default mb detect order for the detection of encoding
*
* @var string
*/
protected $mb_detect_order = self::DEFAULT_MB_DETECT_ORDER;
/**
* The default maximum message lengths. Longer strings will be truncated
*
* @var int
*/
protected $message_limit = Raven_Client::MESSAGE_LIMIT;
/**
* @param null|string $mb_detect_order
* @param null|int $message_limit
*/
public function __construct($mb_detect_order = null, $message_limit = null)
{
if ($mb_detect_order != null) {
$this->mb_detect_order = $mb_detect_order;
}
if ($message_limit != null) {
$this->message_limit = (int) $message_limit;
}
}
/**
* Serialize an object (recursively) into something safe for data
* sanitization and encoding.
*
* @param mixed $value
* @param int $max_depth
* @param int $_depth
* @return string|bool|double|int|null|object|array
*/
public function serialize($value, $max_depth = 3, $_depth = 0)
{
$className = is_object($value) ? get_class($value) : null;
$toArray = is_array($value) || $className === 'stdClass';
if ($toArray && $_depth < $max_depth) {
$new = array();
foreach ($value as $k => $v) {
$new[$this->serializeValue($k)] = $this->serialize($v, $max_depth, $_depth + 1);
}
return $new;
}
return $this->serializeValue($value);
}
protected function serializeString($value)
{
$value = (string) $value;
if (function_exists('mb_detect_encoding')
&& function_exists('mb_convert_encoding')
) {
// we always guarantee this is coerced, even if we can't detect encoding
if ($currentEncoding = mb_detect_encoding($value, $this->mb_detect_order)) {
$value = mb_convert_encoding($value, 'UTF-8', $currentEncoding);
} else {
$value = mb_convert_encoding($value, 'UTF-8');
}
}
if (strlen($value) > $this->message_limit) {
$value = substr($value, 0, $this->message_limit - 10) . ' {clipped}';
}
return $value;
}
/**
* @param mixed $value
* @return string|bool|double|int|null
*/
protected function serializeValue($value)
{
if (is_null($value) || is_bool($value) || is_float($value) || is_integer($value)) {
return $value;
} elseif (is_object($value) || gettype($value) == 'object') {
return 'Object '.get_class($value);
} elseif (is_resource($value)) {
return 'Resource '.get_resource_type($value);
} elseif (is_array($value)) {
return 'Array of length ' . count($value);
} else {
return $this->serializeString($value);
}
}
/**
* @return string
* @codeCoverageIgnore
*/
public function getMbDetectOrder()
{
return $this->mb_detect_order;
}
/**
* @param string $mb_detect_order
*
* @return Raven_Serializer
* @codeCoverageIgnore
*/
public function setMbDetectOrder($mb_detect_order)
{
$this->mb_detect_order = $mb_detect_order;
return $this;
}
/**
* @return int
* @codeCoverageIgnore
*/
public function getMessageLimit()
{
return $this->message_limit;
}
/**
* @param int $message_limit
* @codeCoverageIgnore
*/
public function setMessageLimit($message_limit)
{
$this->message_limit = (int)$message_limit;
}
}