author | Anthony Ly <anthonyly.com@gmail.com> |
Tue, 12 Mar 2013 18:21:39 +0100 | |
changeset 206 | 919b4ddb13fa |
parent 204 | 09a1c134465b |
permissions | -rw-r--r-- |
136 | 1 |
<?php |
2 |
/** |
|
3 |
* XML-RPC protocol support for WordPress |
|
4 |
* |
|
5 |
* @package WordPress |
|
6 |
*/ |
|
7 |
||
8 |
/** |
|
9 |
* Whether this is a XMLRPC Request |
|
10 |
* |
|
11 |
* @var bool |
|
12 |
*/ |
|
13 |
define('XMLRPC_REQUEST', true); |
|
14 |
||
15 |
// Some browser-embedded clients send cookies. We don't want them. |
|
16 |
$_COOKIE = array(); |
|
17 |
||
18 |
// A bug in PHP < 5.2.2 makes $HTTP_RAW_POST_DATA not set by default, |
|
19 |
// but we can do it ourself. |
|
20 |
if ( !isset( $HTTP_RAW_POST_DATA ) ) { |
|
21 |
$HTTP_RAW_POST_DATA = file_get_contents( 'php://input' ); |
|
22 |
} |
|
23 |
||
24 |
// fix for mozBlog and other cases where '<?xml' isn't on the very first line |
|
25 |
if ( isset($HTTP_RAW_POST_DATA) ) |
|
26 |
$HTTP_RAW_POST_DATA = trim($HTTP_RAW_POST_DATA); |
|
27 |
||
28 |
/** Include the bootstrap for setting up WordPress environment */ |
|
29 |
include('./wp-load.php'); |
|
30 |
||
31 |
if ( isset( $_GET['rsd'] ) ) { // http://archipelago.phrasewise.com/rsd |
|
32 |
header('Content-Type: text/xml; charset=' . get_option('blog_charset'), true); |
|
33 |
?> |
|
34 |
<?php echo '<?xml version="1.0" encoding="'.get_option('blog_charset').'"?'.'>'; ?> |
|
35 |
<rsd version="1.0" xmlns="http://archipelago.phrasewise.com/rsd"> |
|
36 |
<service> |
|
37 |
<engineName>WordPress</engineName> |
|
38 |
<engineLink>http://wordpress.org/</engineLink> |
|
39 |
<homePageLink><?php bloginfo_rss('url') ?></homePageLink> |
|
40 |
<apis> |
|
41 |
<api name="WordPress" blogID="1" preferred="true" apiLink="<?php echo site_url('xmlrpc.php', 'rpc') ?>" /> |
|
42 |
<api name="Movable Type" blogID="1" preferred="false" apiLink="<?php echo site_url('xmlrpc.php', 'rpc') ?>" /> |
|
43 |
<api name="MetaWeblog" blogID="1" preferred="false" apiLink="<?php echo site_url('xmlrpc.php', 'rpc') ?>" /> |
|
44 |
<api name="Blogger" blogID="1" preferred="false" apiLink="<?php echo site_url('xmlrpc.php', 'rpc') ?>" /> |
|
204
09a1c134465b
man wordpress + plugins order post + slideshow
Anthony Ly <anthonyly.com@gmail.com>
parents:
194
diff
changeset
|
45 |
<?php do_action( 'xmlrpc_rsd_apis' ); ?> |
136 | 46 |
</apis> |
47 |
</service> |
|
48 |
</rsd> |
|
49 |
<?php |
|
50 |
exit; |
|
51 |
} |
|
52 |
||
53 |
include_once(ABSPATH . 'wp-admin/includes/admin.php'); |
|
54 |
include_once(ABSPATH . WPINC . '/class-IXR.php'); |
|
194
32102edaa81b
MAJ wordpress et ajout de plugin
Anthony Ly <anthonyly.com@gmail.com>
parents:
136
diff
changeset
|
55 |
include_once(ABSPATH . WPINC . '/class-wp-xmlrpc-server.php'); |
136 | 56 |
|
57 |
/** |
|
58 |
* Posts submitted via the xmlrpc interface get that title |
|
59 |
* @name post_default_title |
|
60 |
* @var string |
|
61 |
*/ |
|
62 |
$post_default_title = ""; |
|
63 |
||
194
32102edaa81b
MAJ wordpress et ajout de plugin
Anthony Ly <anthonyly.com@gmail.com>
parents:
136
diff
changeset
|
64 |
// Allow for a plugin to insert a different class to handle requests. |
32102edaa81b
MAJ wordpress et ajout de plugin
Anthony Ly <anthonyly.com@gmail.com>
parents:
136
diff
changeset
|
65 |
$wp_xmlrpc_server_class = apply_filters('wp_xmlrpc_server_class', 'wp_xmlrpc_server'); |
32102edaa81b
MAJ wordpress et ajout de plugin
Anthony Ly <anthonyly.com@gmail.com>
parents:
136
diff
changeset
|
66 |
$wp_xmlrpc_server = new $wp_xmlrpc_server_class; |
32102edaa81b
MAJ wordpress et ajout de plugin
Anthony Ly <anthonyly.com@gmail.com>
parents:
136
diff
changeset
|
67 |
|
32102edaa81b
MAJ wordpress et ajout de plugin
Anthony Ly <anthonyly.com@gmail.com>
parents:
136
diff
changeset
|
68 |
// Fire off the request |
32102edaa81b
MAJ wordpress et ajout de plugin
Anthony Ly <anthonyly.com@gmail.com>
parents:
136
diff
changeset
|
69 |
$wp_xmlrpc_server->serve_request(); |
32102edaa81b
MAJ wordpress et ajout de plugin
Anthony Ly <anthonyly.com@gmail.com>
parents:
136
diff
changeset
|
70 |
|
32102edaa81b
MAJ wordpress et ajout de plugin
Anthony Ly <anthonyly.com@gmail.com>
parents:
136
diff
changeset
|
71 |
exit; |
136 | 72 |
|
73 |
/** |
|
74 |
* logIO() - Writes logging info to a file. |
|
75 |
* |
|
194
32102edaa81b
MAJ wordpress et ajout de plugin
Anthony Ly <anthonyly.com@gmail.com>
parents:
136
diff
changeset
|
76 |
* @deprecated 3.4.0 |
32102edaa81b
MAJ wordpress et ajout de plugin
Anthony Ly <anthonyly.com@gmail.com>
parents:
136
diff
changeset
|
77 |
* @deprecated Use error_log() |
136 | 78 |
* |
79 |
* @param string $io Whether input or output |
|
80 |
* @param string $msg Information describing logging reason. |
|
81 |
*/ |
|
194
32102edaa81b
MAJ wordpress et ajout de plugin
Anthony Ly <anthonyly.com@gmail.com>
parents:
136
diff
changeset
|
82 |
function logIO( $io, $msg ) { |
32102edaa81b
MAJ wordpress et ajout de plugin
Anthony Ly <anthonyly.com@gmail.com>
parents:
136
diff
changeset
|
83 |
_deprecated_function( __FUNCTION__, '3.4', 'error_log()' ); |
32102edaa81b
MAJ wordpress et ajout de plugin
Anthony Ly <anthonyly.com@gmail.com>
parents:
136
diff
changeset
|
84 |
if ( ! empty( $GLOBALS['xmlrpc_logging'] ) ) |
32102edaa81b
MAJ wordpress et ajout de plugin
Anthony Ly <anthonyly.com@gmail.com>
parents:
136
diff
changeset
|
85 |
error_log( $io . ' - ' . $msg ); |
32102edaa81b
MAJ wordpress et ajout de plugin
Anthony Ly <anthonyly.com@gmail.com>
parents:
136
diff
changeset
|
86 |
} |