Files
2010-03-30 13:17:11 -04:00

64 lines
2.0 KiB
PHP

<?php
/*
* This script redirects AtD AJAX requests to the AtD service
*/
/* this function directly from akismet.php by Matt Mullenweg. *props* */
function AtD_http_post( $request, $host, $path, $port = 80 ) {
$http_request = "POST $path HTTP/1.0\r\n";
$http_request .= "Host: $host\r\n";
$http_request .= "Content-Type: application/x-www-form-urlencoded\r\n";
$http_request .= "Content-Length: " . strlen($request) . "\r\n";
$http_request .= "User-Agent: AtD/0.1\r\n";
$http_request .= "\r\n";
$http_request .= $request;
$response = '';
if( false != ( $fs = @fsockopen($host, $port, $errno, $errstr, 10) ) ) {
fwrite( $fs, $http_request );
while ( ! feof( $fs ) )
$response .= fgets( $fs );
fclose( $fs );
$response = explode( "\r\n\r\n", $response, 2 );
}
return $response;
}
/*
* This function is called as an action handler to admin-ajax.php
*/
function AtD_redirect_call() {
if ( $_SERVER['REQUEST_METHOD'] === 'POST' )
$postText = trim( file_get_contents( 'php://input' ) );
$url = $_GET['url'];
$service = 'service.afterthedeadline.com';
if (defined('WPLANG')) {
if (strpos(WPLANG, 'pt') !== false) {
$service = 'pt.service.afterthedeadline.com';
}
else if (strpos(WPLANG, 'de') !== false) {
$service = 'de.service.afterthedeadline.com';
}
else if (strpos(WPLANG, 'es') !== false) {
$service = 'es.service.afterthedeadline.com';
}
else if (strpos(WPLANG, 'fr') !== false) {
$service = 'fr.service.afterthedeadline.com';
}
}
$user = wp_get_current_user();
$guess = strcmp(AtD_get_setting( $user->ID, 'AtD_guess_lang' ), "true") == 0 ? "true" : "false";
$data = AtD_http_post( $postText . "&guess=$guess", defined('ATD_HOST') ? ATD_HOST : $service, $url, defined('ATD_PORT') ? ATD_PORT : 80 );
header( 'Content-Type: text/xml' );
echo $data[1];
die();
}