-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathclass-handler.php
131 lines (106 loc) · 3 KB
/
class-handler.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
<?php
namespace Webmention;
use Webmention\Response;
use Webmention\Entity\Item;
use Webmention\Handler\WP;
use Webmention\Handler\Mf2;
use Webmention\Handler\Meta;
use Webmention\Handler\Jsonld;
/**
* Class for handling Webmention handlers
*/
class Handler {
protected $handlers = array();
/**
* Must be instantiated with at least one handler.
*/
public function __construct() {
// MF2 Handler Class
require_once WEBMENTION_PLUGIN_DIR . '/includes/Handler/class-mf2.php';
$this->handlers[] = new MF2();
// WordPress Handler Class
require_once WEBMENTION_PLUGIN_DIR . '/includes/Handler/class-wp.php';
$this->handlers[] = new WP();
// Meta Handler Class
require_once WEBMENTION_PLUGIN_DIR . '/includes/Handler/class-meta.php';
$this->handlers[] = new Meta();
// JSON-LD Handler Class
require_once WEBMENTION_PLUGIN_DIR . '/includes/Handler/class-jsonld.php';
$this->handlers[] = new Jsonld();
}
/**
* Appends a Handler to the List.
*
* @param Webmention\Handler\Base $handler
*/
public function push( $handler ) {
array_push( $this->handlers, $handler );
}
/**
* Insert a Handler at the front of the list
*
* @param Webmention\Handler\Base $handler
*/
public function unshift( $handler ) {
array_unshift( $this->handlers[], $handler );
}
/**
* Iterate through a list of handlers and return an item.
*
* @param Webmention\Response $response Response Object.
* @param string $target_url The target URL
*
* @return Webmention\Entity\Item
*/
public function parse( Response $response, $target_url ) {
return $this->parse_aggregated( $response, $target_url );
}
/**
* Iterate through a list of handlers and return an aggregated item.
*
* @param Webmention\Response $response Response Object.
* @param string $target_url The target URL
*
* @return Webmention\Entity\Item
*/
public function parse_aggregated( Response $response, $target_url ) {
$item = new Item();
foreach ( $this->handlers as $handler ) {
$handler->set_webmention_item( $item );
$return = $handler->parse( $response, $target_url );
if ( is_wp_error( $return ) ) {
continue;
}
if ( ! is_wp_error( $handler->get_webmention_item() ) ) {
$item = $handler->get_webmention_item();
}
if ( $item->is_complete() ) {
break;
}
}
$item->add_url( $response->get_url() );
return $item;
}
/**
* Iterate through a list of handlers and return an array of items.
*
* @param Webmention\Response $response Respone Object.
* @param string $target_url The target URL
*
* @return Webmention\Entity\Item
*/
public function parse_grouped( Response $response, $target_url ) {
$result = array();
foreach ( $this->handlers as $handler ) {
$return = $handler->parse( $response, $target_url );
if ( is_wp_error( $return ) ) {
continue;
}
$item = $handler->get_webmention_item();
if ( ! is_wp_error( $item ) ) {
$result[ $handler->get_slug() ] = $item->to_array();
}
}
return $result;
}
}