-
Notifications
You must be signed in to change notification settings - Fork 126
/
Reader.php
94 lines (84 loc) · 2.61 KB
/
Reader.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
<?php
namespace Sabre\VObject;
use Sabre\Xml\LibXMLException;
/**
* iCalendar/vCard/jCal/jCard/xCal/xCard reader object.
*
* This object provides a few (static) convenience methods to quickly access
* the parsers.
*
* @copyright Copyright (C) fruux GmbH (https://fruux.com/)
* @author Evert Pot (http://evertpot.com/)
* @license http://sabre.io/license/ Modified BSD License
*/
class Reader
{
/**
* If this option is passed to the reader, it will be less strict about the
* validity of the lines.
*/
public const OPTION_FORGIVING = 1;
/**
* If this option is turned on, any lines we cannot parse will be ignored
* by the reader.
*/
public const OPTION_IGNORE_INVALID_LINES = 2;
/**
* Parses a vCard or iCalendar object, and returns the top component.
*
* The options argument is a bitfield. Pass any of the OPTIONS constant to
* alter the parsers' behaviour.
*
* You can either supply a string, or a readable stream for input.
*
* @param string|resource $data
*
* @throws ParseException
*/
public static function read($data, int $options = 0, string $charset = 'UTF-8'): ?Document
{
$parser = new Parser\MimeDir();
$parser->setCharset($charset);
return $parser->parse($data, $options);
}
/**
* Parses a jCard or jCal object, and returns the top component.
*
* The options argument is a bitfield. Pass any of the OPTIONS constant to
* alter the parsers' behaviour.
*
* You can either a string, a readable stream, or an array for its input.
* Specifying the array is useful if json_decode was already called on the
* input.
*
* @param string|resource|array $data
*
* @throws EofException
* @throws ParseException|InvalidDataException
*/
public static function readJson($data, int $options = 0): ?Document
{
$parser = new Parser\Json();
return $parser->parse($data, $options);
}
/**
* Parses a xCard or xCal object, and returns the top component.
*
* The options argument is a bitfield. Pass any of the OPTIONS constant to
* alter the parsers' behaviour.
*
* You can either supply a string, or a readable stream for input.
*
* @param string|resource $data
*
* @throws EofException
* @throws InvalidDataException
* @throws ParseException
* @throws LibXMLException
*/
public static function readXML($data, int $options = 0): ?Document
{
$parser = new Parser\XML();
return $parser->parse($data, $options);
}
}