-
Notifications
You must be signed in to change notification settings - Fork 2
/
class.qrcode.php
executable file
·282 lines (248 loc) · 6.42 KB
/
class.qrcode.php
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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
<?php
/**
* QR Code Model
*
* This class is a model of a qr code that implements the Google Chart API for
* code generation.
*/
/**
* QrCode
*
* @author Eric Famiglietti <[email protected]>
*/
class QrCode
{
/**
* $_size - the size of the qr code
*
* @var int
*/
private $_size = null;
/**
* $_data - the data to be encoded
*
* @var string
*/
private $_data = null;
/**
* $_outputEncoding
*
* @var string
*/
private $_outputEncoding = null;
/**
* $_errorCorrectionLevel
*
* @var string
*/
private $_errorCorrectionLevel = null;
/**
* $_margin - the margin of the qr code
*
* @var int
*/
private $_margin = null;
/**
* MINIMUM_SIZE - the minimum size in pixels of a qr code
*
* @var int
*/
const MINIMUM_SIZE = 100;
/**
* MAXIMUM_SIZE - the maximum sizr in pixels of a qr coee
*
* @var int
*/
const MAXIMUM_SIZE = 545;
/**
* $_validOutputEncodings - the valid output encodings that are accepted
*
* @var array
*/
private static $_validOutputEncodings = array(
'UTF-8',
'Shift_JIS',
'ISO-8859-1',
);
/**
* $_validErrorCorrectionLevels - the valid error corrections levels that are accepted
*
* @var array
*/
private static $_validErrorCorrectionLevels = array(
'L',
'M',
'Q',
'H',
);
/**
* __construct() - create a qr code
*
* @param int $sized
* @param string $data
* @param string $outputEncoding
* @param string $errorCorrectionLevel
* @param int $margin
* @return void
*/
public function __construct($size, $data, $outputEncoding = null,
$errorCorrectionLevel = null, $margin = null)
{
$this->setSize($size);
$this->setData($data);
if (null !== $outputEncoding) {
$this->setOutputEncoding($outputEncoding);
}
if (null !== $errorCorrectionLevel) {
$this->setErrorCorrectionLevel($errorCorrectionLevel);
}
if (null !== $margin) {
$this->setMargin($margin);
}
}
/**
* setSize() - set the size of the qr code
*
* @param int $size
* @return QrCode Provides a fluent interface
* @throws Exception
*/
public function setSize($size)
{
if (!ctype_digit((string) $size)) {
throw new Exception('Size must be of type integer.');
} elseif (((int) $size < self::MINIMUM_SIZE) || ((int) $size > self::MAXIMUM_SIZE)) {
throw new Exception('Size must be between ' . self::MINIMUM_SIZE . ' and ' . self::MAXIMUM_SIZE . '.');
}
$this->_size = (int) $size;
return $this;
}
/**
* getSize() - returns the size of the qr code
*
* @return int
*/
public function getSize()
{
return (int) $this->_size;
}
/**
* setData() - sets the data to be encoded
*
* @param string $data
* @return QrCode Provides a fluent interface
*/
public function setData($data)
{
$this->_data = (string) $data;
return $this;
}
/**
* getData() - gets the encoded data of the qr code
*
* @return string
*/
public function getData()
{
return (string) $this->_data;
}
/**
* setOutputEncoding() - sets the output encoding if valid
*
* @param string $outputEncoding
* @return QrCode Provides a fluent interface
* @throws Exception
*/
public function setOutputEncoding($outputEncoding)
{
if (!in_array($outputEncoding, self::$_validOutputEncodings)) {
throw new Exception('Output encoding must be a valid value.');
}
$this->_outputEncoding = (string) $outputEncoding;
return $this;
}
/**
* getOutputEncoding() - gets the output encoding
*
* @return null|string
*/
public function getOutputEncoding()
{
return $this->_outputEncoding;
}
/**
* setErrorCorrectionLevel() - sets the error correction level if valid
*
* @param string $errorCorrectionLevel
* @return QrCode Provides a fluent interface
* @throws Exception
*/
public function setErrorCorrectionLevel($errorCorrectionLevel)
{
if (!in_array($errorCorrectionLevel, self::$_validErrorCorrectionLevels)) {
throw new Exception('Error correction level must be a valid value.');
}
$this->_errorCorrectionLevel = (string) $errorCorrectionLevel;
return $this;
}
/**
* getErrorCorrectionLevel() - gets the error correction level
*
* @return null|string
*/
public function getErrorCorrectionLevel()
{
return $this->_errorCorrectionLevel;
}
/**
* setMargin() - sets the margin of the qr code
*
* @param int $margin
* @return QrCode Provides a fluent interface
* @throws Exception
*/
public function setMargin($margin)
{
if (!ctype_digit((string) $margin)) {
throw new Exception('Margin must be of type integer.');
}
$this->_margin = (int) $margin;
return $this;
}
/**
* getMargin() - returns the margin of the qr code
*
* @return null|int
*/
public function getMargin()
{
return $this->_margin;
}
/**
* getQrCodeUrl() - returns the url that generates the qr code
*
* @return string
*/
public function getUrl()
{
$url = 'http://chart.googleapis.com/chart?cht=qr';
$url .= '&chs=' . $this->getSize() . 'x' . $this->getSize();
$url .= '&chl=' . $this->getData();
if (null !== ($outputEncoding = $this->getOutputEncoding())) {
$url .= '&choe=' . $outputEncoding;
}
// max() is used to execute both clauses so both variables get assigned
if (max(null !== ($errorCorrectionLevel = $this->getErrorCorrectionLevel()),
null !== ($margin = $this->getMargin())))
{
$url .= '&chld=';
if (null !== $errorCorrectionLevel) {
$url .= $errorCorrectionLevel;
}
if (null !== $margin) {
$url .= '|' . $margin;
}
}
return (string) $url;
}
}