50 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			50 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/*  Copyright 2014-2016 Presslabs SRL <ping@presslabs.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
 | 
						|
*/
 | 
						|
 | 
						|
header( 'Content-Type: text/html' );
 | 
						|
define( 'SHORTINIT', true );
 | 
						|
//$wordpress_loader = $_SERVER['DOCUMENT_ROOT'] . '/wp-load.php';
 | 
						|
$wordpress_loader = filter_input(INPUT_SERVER, 'DOCUMENT_ROOT', FILTER_SANITIZE_FULL_SPECIAL_CHARS) . '/wp-load.php';
 | 
						|
 | 
						|
require_once $wordpress_loader;
 | 
						|
require_once __DIR__ . '/functions.php';
 | 
						|
require_once __DIR__ . '/inc/class-git-wrapper.php';
 | 
						|
 | 
						|
$webhook_key = get_option( 'gitium_webhook_key', '' );
 | 
						|
$get_key = filter_input(INPUT_GET, 'key', FILTER_SANITIZE_FULL_SPECIAL_CHARS);
 | 
						|
if ( ! empty ( $webhook_key ) && isset( $get_key ) && $webhook_key == $get_key ) :
 | 
						|
	( '1.7' <= substr( $git->get_version(), 0, 3 ) ) or wp_die( 'Gitium plugin require minimum `git version 1.7`!' );
 | 
						|
 | 
						|
	list( $git_public_key, $git_private_key ) = gitium_get_keypair();
 | 
						|
	if ( ! $git_public_key || ! $git_private_key )
 | 
						|
		wp_die('Not ready.', 'Not ready.', array( 'response' => 403 ));
 | 
						|
	else
 | 
						|
		$git->set_key( $git_private_key );
 | 
						|
 | 
						|
	$commits   = array();
 | 
						|
	$commitmsg = sprintf( 'Merged changes from %s on %s', $_SERVER['SERVER_NAME'], date( 'm.d.Y' ) );
 | 
						|
	
 | 
						|
	if ( $git->is_dirty() && $git->add() > 0 ) {
 | 
						|
		$commits[] = $git->commit( $commitmsg ) or trigger_error( 'Could not commit local changes!', E_USER_ERROR );
 | 
						|
	}
 | 
						|
	gitium_merge_and_push( $commits ) or trigger_error( 'Failed merge & push: ' . serialize( $git->get_last_error() ), E_USER_ERROR );
 | 
						|
 | 
						|
	wp_die( $commitmsg , 'Pull done!', array( 'response' => 200 ) );
 | 
						|
else :
 | 
						|
	wp_die( 'Cheating uh?', 'Cheating uh?', array( 'response' => 403 ) );
 | 
						|
endif;
 |