-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathclass-network-post-deleted.php
58 lines (49 loc) · 1.21 KB
/
class-network-post-deleted.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
<?php
/**
* Newspack Network Content Distribution Post Delete.
*
* @package Newspack
*/
namespace Newspack_Network\Incoming_Events;
use Newspack_Network\Debugger;
use Newspack_Network\Content_Distribution\Incoming_Post;
/**
* Class to handle the network post delete.
*/
class Network_Post_Deleted extends Abstract_Incoming_Event {
/**
* Processes the event
*
* @return void
*/
public function post_process_in_hub() {
$this->process_post_deleted();
}
/**
* Process event in Node
*
* @return void
*/
public function process_in_node() {
$this->process_post_deleted();
}
/**
* Process post deleted
*/
protected function process_post_deleted() {
$payload = (array) $this->get_data();
Debugger::log( 'Processing network_post_deleted ' . wp_json_encode( $payload['config'] ) );
$error = Incoming_Post::get_payload_error( $payload );
if ( is_wp_error( $error ) ) {
Debugger::log( 'Error processing network_post_deleted: ' . $error->get_error_message() );
return;
}
try {
$incoming_post = new Incoming_Post( $payload );
} catch ( \Exception $e ) {
Debugger::log( 'Error processing network_post_deleted: ' . $e->getMessage() );
return;
}
$incoming_post->delete();
}
}