Completed
Push — master ( 642d66...e52cb9 )
by Joschi
02:37
created

Microdata   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 29
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 4

Test Coverage

Coverage 100%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 2
c 1
b 0
f 0
lcom 1
cbo 4
dl 0
loc 29
ccs 9
cts 9
cp 1
rs 10

2 Methods

Rating   Name   Duplication   Size   Complexity  
A parseHtmlFile() 0 4 1
A parseHtml() 0 9 1
1
<?php
2
3
/**
4
 * rdfa-lite-microdata
5
 *
6
 * @category Jkphl
7
 * @package Jkphl\RdfaLiteMicrodata
8
 * @subpackage Jkphl\RdfaLiteMicrodata\Ports
9
 * @author Joschi Kuphal <[email protected]> / @jkphl
10
 * @copyright Copyright © 2017 Joschi Kuphal <[email protected]> / @jkphl
11
 * @license http://opensource.org/licenses/MIT The MIT License (MIT)
12
 */
13
14
/***********************************************************************************
15
 *  The MIT License (MIT)
16
 *
17
 *  Copyright © 2017 Joschi Kuphal <[email protected]> / @jkphl
18
 *
19
 *  Permission is hereby granted, free of charge, to any person obtaining a copy of
20
 *  this software and associated documentation files (the "Software"), to deal in
21
 *  the Software without restriction, including without limitation the rights to
22
 *  use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
23
 *  the Software, and to permit persons to whom the Software is furnished to do so,
24
 *  subject to the following conditions:
25
 *
26
 *  The above copyright notice and this permission notice shall be included in all
27
 *  copies or substantial portions of the Software.
28
 *
29
 *  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
30
 *  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
31
 *  FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
32
 *  COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
33
 *  IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
34
 *  CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
35
 ***********************************************************************************/
36
37
namespace Jkphl\RdfaLiteMicrodata\Ports\Parser;
38
39
use Jkphl\RdfaLiteMicrodata\Application\Context\MicrodataContext;
40
use Jkphl\RdfaLiteMicrodata\Infrastructure\Factories\HtmlDocumentFactory;
41
use Jkphl\RdfaLiteMicrodata\Infrastructure\Parser\MicrodataElementProcessor;
42
43
/**
44
 * RDFa Lite 1.1 parser
45
 *
46
 * @package Jkphl\RdfaLiteMicrodata
47
 * @subpackage Jkphl\RdfaLiteMicrodata\Ports
48
 * @see https://www.w3.org/TR/microdata/
49
 * @see https://www.w3.org/TR/microdata/#json
50
 */
51
class Microdata extends AbstractParser
52
{
53
    /**
54
     * Parse an HTML file
55
     *
56
     * @param string $file HTML file path
57
     * @return \stdClass Extracted things
58
     */
59 4
    public function parseHtmlFile($file)
60
    {
61 4
        return $this->parseHtml($this->getFileContents($file));
62
    }
63
64
    /**
65
     * Parse an HTML string
66
     *
67
     * @param string $string HTML string
68
     * @return \stdClass Extracted things
69
     */
70 3
    public function parseHtml($string)
71
    {
72 3
        return $this->parseString(
73 3
            $string,
74 3
            new HtmlDocumentFactory(),
75 3
            new MicrodataElementProcessor(),
76 3
            new MicrodataContext()
77 3
        );
78
    }
79
}
80