forked from mAAdhaTTah/wordpress-github-sync
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwordpress-github-sync.php
More file actions
238 lines (195 loc) · 6.01 KB
/
Copy pathwordpress-github-sync.php
File metadata and controls
238 lines (195 loc) · 6.01 KB
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
<?php
/**
* Plugin Name: WordPress GitHub Sync
* Plugin URI: https://github.com/benbalter/wordpress-github-sync
* Description: A WordPress plugin to sync content with a GitHub repository (or Jekyll site)
* Version: 0.0.1
* Author: Ben Balter
* Author URI: http://ben.balter.com
* License: GPLv2
* Domain Path: /languages
* Text Domain: wordpress-github-sync
*/
/* Copyright 2014 Ben Balter (email : ben@balter.com)
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License, version 2, as
published by the Free Software Foundation.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
require_once dirname( __FILE__ ) . '/vendor/autoload.php';
class WordPress_GitHub_Sync {
/**
* Object instance
* @var self
*/
public static $instance;
/**
* Language text domain
* @var string
*/
public static $text_domain = 'wordpress-github-sync';
/**
* Current version
* @var string
*/
public static $version = '0.0.1';
/**
* Controller object
* @var WordPress_GitHub_Sync_Controller
*/
public $controller;
/**
* Controller object
* @var WordPress_GitHub_Sync_Admin
*/
public $admin;
/**
* Locked when receiving payload
* @var boolean
*/
public $push_lock = false;
/**
* Called at load time, hooks into WP core
*/
public function __construct() {
self::$instance = &$this;
if ( is_admin() ) {
$this->admin = new WordPress_GitHub_Sync_Admin;
}
$this->controller = new WordPress_GitHub_Sync_Controller;
add_action( 'init', array( &$this, 'l10n' ) );
add_action( 'save_post', array( &$this, 'save_post_callback' ) );
add_action( 'delete_post', array( &$this, 'delete_post_callback' ) );
add_action( 'wp_ajax_nopriv_wpghs_sync_request', array( &$this, 'pull_posts' ) );
add_action( 'wpghs_export', array( &$this->controller, 'export_all' ) );
add_action( 'wpghs_import', array( &$this->controller, 'import_master' ) );
if ( defined( 'WP_CLI' ) && WP_CLI ) {
WP_CLI::add_command( 'wpghs', 'WordPress_GitHub_Sync_CLI' );
}
}
/**
* Init i18n files
*/
public function l10n() {
load_plugin_textdomain( self::$text_domain, false, plugin_basename( dirname( __FILE__ ) ) . '/languages/' );
}
/**
* Returns the Webhook secret
*/
public function secret() {
return get_option( 'wpghs_secret' );
}
/**
* Callback triggered on post save, used to initiate an outbound sync
*
* $post_id - (int) the post to sync
*/
public function save_post_callback($post_id) {
if ( wp_is_post_revision( $post_id ) || wp_is_post_autosave( $post_id ) ) {
return;
}
// Right now CPTs are not supported
if ( 'page' !== get_post_type( $post_id ) && 'post' !== get_post_type( $post_id ) ) {
return;
}
// Not yet published
if ( 'publish' !== get_post_status( $post_id ) ) {
return;
}
$this->controller->export_post( $post_id );
}
/**
* Callback triggered on post delete, used to initiate an outbound sync
*
* $post_id - (int) the post to delete
*/
public function delete_post_callback( $post_id ) {
$post = get_post( $post_id );
// Right now CPTs are not supported
if ( 'page' !== $post->post_type && 'post' !== $post->post_type ) {
return;
}
$this->controller->delete_post( $post_id );
}
/**
* Webhook callback as trigered from GitHub push
*/
public function pull_posts() {
# Prevent pushes on update
$this->push_lock = true;
$raw_data = file_get_contents( 'php://input' );
$headers = $this->headers();
// validate secret
$hash = hash_hmac( 'sha1', $raw_data, $this->secret() );
if ( 'sha1=' . $hash !== $headers['X-Hub-Signature'] ) {
self::write_log( __( 'Failed to validate secret.', WordPress_GitHub_Sync::$text_domain ) );
die();
}
$this->controller->pull( json_decode( $raw_data ) );
die();
}
/**
* Cross-server header support
* Returns an array of the request's headers
*/
public function headers() {
if ( function_exists( 'getallheaders' ) ) {
return getallheaders();
}
// Nginx and pre 5.4 workaround
// http://www.php.net/manual/en/function.getallheaders.php
$headers = array();
foreach ( $_SERVER as $name => $value ) {
if ( 'HTTP_' === substr( $name, 0, 5 ) ) {
$headers[ str_replace( ' ', '-', ucwords( strtolower( str_replace( '_', ' ', substr( $name, 5 ) ) ) ) ) ] = $value;
}
}
return $headers;
}
/**
* Sets and kicks off the export cronjob
*/
public function start_export() {
update_option( '_wpghs_export_user_id', get_current_user_id() );
update_option( '_wpghs_export_started', 'yes' );
WordPress_GitHub_Sync::write_log( __( 'Starting full export to GitHub.', WordPress_GitHub_Sync::$text_domain ) );
wp_schedule_single_event( time(), 'wpghs_export' );
spawn_cron();
}
/**
* Sets and kicks off the import cronjob
*/
public function start_import() {
update_option( '_wpghs_import_started', 'yes' );
WordPress_GitHub_Sync::write_log( __( 'Starting import from GitHub.', WordPress_GitHub_Sync::$text_domain ) );
wp_schedule_single_event( time(), 'wpghs_import' );
spawn_cron();
}
/**
* Print to WP_CLI if in CLI environment or
* write to debug.log if WP_DEBUG is enabled
* @source http://www.stumiller.me/sending-output-to-the-wordpress-debug-log/
*/
public static function write_log($msg, $write = 'line') {
if ( defined( 'WP_CLI' ) && WP_CLI ) {
if ( is_array( $msg ) || is_object( $msg ) ) {
WP_CLI::print_value( $msg );
} else {
WP_CLI::$write( $msg );
}
} elseif ( true === WP_DEBUG ) {
if ( is_array( $msg ) || is_object( $msg ) ) {
error_log( print_r( $msg, true ) );
} else {
error_log( $msg );
}
}
}
}
$wpghs = new WordPress_GitHub_Sync;