<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" /><style type="text/css"><!--
#msg dl { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:':';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt;  }
#msg dl a { font-weight: bold}
#msg dl a:link    { color:#fc3; }
#msg dl a:active  { color:#ff0; }
#msg dl a:visited { color:#cc6; }
h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; }
#msg pre { overflow: auto; background: #ffc; border: 1px #fc0 solid; padding: 6px; }
#msg ul, pre { overflow: auto; }
#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; }
#patch { width: 100%; }
#patch h4 {font-family: verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;}
#patch .propset h4, #patch .binary h4 {margin:0;}
#patch pre {padding:0;line-height:1.2em;margin:0;}
#patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;}
#patch .propset .diff, #patch .binary .diff  {padding:10px 0;}
#patch span {display:block;padding:0 10px;}
#patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;}
#patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<title>[14760] trunk/wp-admin/includes/class-wp-importer.php: WP_Importer class.</title>
</head>
<body>

<div id="msg">
<dl>
<dt>Revision</dt> <dd><a href="http://trac.wordpress.org/changeset/14760">14760</a></dd>
<dt>Author</dt> <dd>ryan</dd>
<dt>Date</dt> <dd>2010-05-20 19:22:38 +0000 (Thu, 20 May 2010)</dd>
</dl>

<h3>Log Message</h3>
<pre>WP_Importer class. Props briancolinger. see <a href="http://trac.wordpress.org/ticket/13034">#13034</a></pre>

<h3>Added Paths</h3>
<ul>
<li><a href="#trunkwpadminincludesclasswpimporterphp">trunk/wp-admin/includes/class-wp-importer.php</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkwpadminincludesclasswpimporterphp"></a>
<div class="addfile"><h4>Added: trunk/wp-admin/includes/class-wp-importer.php (0 => 14760)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-admin/includes/class-wp-importer.php                                (rev 0)
+++ trunk/wp-admin/includes/class-wp-importer.php        2010-05-20 19:22:38 UTC (rev 14760)
</span><span class="lines">@@ -0,0 +1,310 @@
</span><ins>+&lt;?php
+/**
+ * WP_Importer base class
+ */
+class WP_Importer {
+        /**
+         * Class Constructor
+         *
+         * @return void
+         */
+        function __construct() {}
+
+        function WP_Importer() {
+                $this-&gt;__construct();
+        }
+
+        /**
+         * Returns array with imported permalinks from WordPress database
+         *
+         * @param string $bid
+         * @return array
+         */
+        function get_imported_posts( $importer_name, $bid ) {
+                global $wpdb;
+
+                $hashtable = array();
+
+                $limit = 100;
+                $offset = 0;
+
+                // Grab all posts in chunks
+                do {
+                        $meta_key = $importer_name . '_' . $bid . '_permalink';
+                        $sql = $wpdb-&gt;prepare( &quot;SELECT post_id, meta_value FROM $wpdb-&gt;postmeta WHERE meta_key = '%s' LIMIT %d,%d&quot;, $meta_key, $offset, $limit );
+                        $results = $wpdb-&gt;get_results( $sql );
+
+                        // Increment offset
+                        $offset = ( $limit + $offset );
+
+                        if ( !empty( $results ) ) {
+                                foreach ( $results as $r ) {
+                                        // Set permalinks into array
+                                        $hashtable[$r-&gt;meta_value] = intval( $r-&gt;post_id );
+                                }
+                        }
+                } while ( count( $results ) == $limit );
+
+                // unset to save memory
+                unset( $results, $r );
+
+                return $hashtable;
+        }
+
+        /**
+         * Return count of imported permalinks from WordPress database
+         *
+         * @param string $bid
+         * @return int
+         */
+        function count_imported_posts( $importer_name, $bid ) {
+                global $wpdb;
+
+                $count = 0;
+
+                // Get count of permalinks
+                $meta_key = $importer_name . '_' . $bid . '_permalink';
+                $sql = $wpdb-&gt;prepare( &quot;SELECT COUNT( post_id ) AS cnt FROM $wpdb-&gt;postmeta WHERE meta_key = '%s'&quot;, $meta_key );
+
+                $result = $wpdb-&gt;get_results( $sql );
+
+                if ( !empty( $result ) )
+                        $count = intval( $result[0]-&gt;cnt );
+
+                // unset to save memory
+                unset( $results );
+
+                return $count;
+        }
+
+        /**
+         * Set array with imported comments from WordPress database
+         *
+         * @param string $bid
+         * @return array
+         */
+        function get_imported_comments( $bid ) {
+                global $wpdb;
+
+                $hashtable = array();
+
+                $limit = 100;
+                $offset = 0;
+
+                // Grab all comments in chunks
+                do {
+                        $sql = $wpdb-&gt;prepare( &quot;SELECT comment_ID, comment_agent FROM $wpdb-&gt;comments LIMIT %d,%d&quot;, $offset, $limit );
+                        $results = $wpdb-&gt;get_results( $sql );
+
+                        // Increment offset
+                        $offset = ( $limit + $offset );
+
+                        if ( !empty( $results ) ) {
+                                foreach ( $results as $r ) {
+                                        // Explode comment_agent key
+                                        list ( $ca_bid, $source_comment_id ) = explode( '-', $r-&gt;comment_agent );
+                                        $source_comment_id = intval( $source_comment_id );
+
+                                        // Check if this comment came from this blog
+                                        if ( $bid == $ca_bid ) {
+                                                $hashtable[$source_comment_id] = intval( $r-&gt;comment_ID );
+                                        }
+                                }
+                        }
+                } while ( count( $results ) == $limit );
+
+                // unset to save memory
+                unset( $results, $r );
+
+                return $hashtable;
+        }
+
+        function set_blog( $blog_id ) {
+                if ( is_numeric( $blog_id ) ) {
+                        $blog_id = (int) $blog_id;
+                } else {
+                        $blog = 'http://' . preg_replace( '#^https?://#', '', $blog_id );
+                        if ( ( !$parsed = parse_url( $blog ) ) || empty( $parsed['host'] ) ) {
+                                fwrite( STDERR, &quot;Error: can not determine blog_id from $blog_id\n&quot; );
+                                exit();
+                        }
+                        if ( empty( $parsed['path'] ) )
+                                $parsed['path'] = '/';
+                        if ( !$blog = get_blog_info( $parsed['host'], $parsed['path'] ) ) {
+                                fwrite( STDERR, &quot;Error: Could not find blog\n&quot; );
+                                exit();
+                        }
+                        $blog_id = (int) $blog-&gt;blog_id;
+                        // Restore global $current_blog
+                        global $current_blog;
+                        $current_blog = $blog;
+                }
+
+                if ( function_exists( 'is_multisite' ) ) {
+                        if ( is_multisite() )
+                                switch_to_blog( $blog_id );
+                }
+
+                return $blog_id;
+        }
+
+        function set_user( $user_id ) {
+                if ( is_numeric( $user_id ) ) {
+                        $user_id = (int) $user_id;
+                } else {
+                        $user_id = (int) username_exists( $user_id );
+                }
+
+                if ( !$user_id || !wp_set_current_user( $user_id ) ) {
+                        fwrite( STDERR, &quot;Error: can not find user\n&quot; );
+                        exit();
+                }
+
+                return $user_id;
+        }
+
+        /**
+         * Sort by strlen, longest string first
+         *
+         * @param string $a
+         * @param string $b
+         * @return int
+         */
+        function cmpr_strlen( $a, $b ) {
+                return strlen( $b ) - strlen( $a );
+        }
+
+        /**
+         * GET URL
+         *
+         * @param string $url
+         * @param string $username
+         * @param string $password
+         * @param bool $head
+         * @return array
+         */
+        function get_page( $url, $username = '', $password = '', $head = false ) {
+                // Increase the timeout
+                add_filter( 'http_request_timeout', array( &amp;$this, 'bump_request_timeout' ) );
+
+                $headers = array();
+                $args = array();
+                if ( true === $head )
+                        $args['method'] = 'HEAD';
+                if ( !empty( $username ) &amp;&amp; !empty( $password ) )
+                        $headers['Authorization'] = 'Basic ' . base64_encode( &quot;$username:$password&quot; );
+
+                $args['headers'] = $headers;
+
+                return wp_remote_request( $url, $args );
+        }
+
+        /**
+         * Bump up the request timeout for http requests
+         *
+         * @param int $val
+         * @return int
+         */
+        function bump_request_timeout( $val ) {
+                return 60;
+        }
+
+        /**
+         * Check if user has exceeded disk quota
+         *
+         * @return bool
+         */
+        function is_user_over_quota() {
+                global $current_user, $current_blog;
+
+                if ( function_exists( 'upload_is_user_over_quota' ) ) {
+                        if ( upload_is_user_over_quota( 1 ) ) {
+                                echo &quot;Sorry, you have used your upload quota.\n&quot;;
+                                return true;
+                        }
+                }
+
+                return false;
+        }
+
+        /**
+         * Replace newlines, tabs, and multiple spaces with a single space
+         *
+         * @param string $string
+         * @return string
+         */
+        function min_whitespace( $string ) {
+                return preg_replace( '|[\r\n\t ]+|', ' ', $string );
+        }
+
+        /**
+         * Reset global variables that grow out of control during imports
+         *
+         * @return void
+         */
+        function stop_the_insanity() {
+                global $wpdb, $wp_actions;
+                // Or define( 'WP_IMPORTING', true );
+                $wpdb-&gt;queries = array();
+                // Reset $wp_actions to keep it from growing out of control
+                $wp_actions = array();
+        }
+}
+
+/**
+ * Returns value of command line params.
+ * Exits when a required param is not set.
+ *
+ * @param string $param
+ * @param bool $required
+ * @return mixed
+ */
+function get_cli_args( $param, $required = false ) {
+        $args = $_SERVER['argv'];
+
+        $out = array();
+
+        $last_arg = null;
+        $return = null;
+
+        $il = sizeof( $args );
+
+        for ( $i = 1, $il; $i &lt; $il; $i++ ) {
+                if ( (bool) preg_match( &quot;/^--(.+)/&quot;, $args[$i], $match ) ) {
+                        $parts = explode( &quot;=&quot;, $match[1] );
+                        $key = preg_replace( &quot;/[^a-z0-9]+/&quot;, &quot;&quot;, $parts[0] );
+
+                        if ( isset( $parts[1] ) ) {
+                                $out[$key] = $parts[1];
+                        } else {
+                                $out[$key] = true;
+                        }
+
+                        $last_arg = $key;
+                } else if ( (bool) preg_match( &quot;/^-([a-zA-Z0-9]+)/&quot;, $args[$i], $match ) ) {
+                        for ( $j = 0, $jl = strlen( $match[1] ); $j &lt; $jl; $j++ ) {
+                                $key = $match[1]{$j};
+                                $out[$key] = true;
+                        }
+
+                        $last_arg = $key;
+                } else if ( $last_arg !== null ) {
+                        $out[$last_arg] = $args[$i];
+                }
+        }
+
+        // Check array for specified param
+        if ( isset( $out[$param] ) ) {
+                // Set return value
+                $return = $out[$param];
+        }
+
+        // Check for missing required param
+        if ( !isset( $out[$param] ) &amp;&amp; $required ) {
+                // Display message and exit
+                echo &quot;\&quot;$param\&quot; parameter is required but was not specified\n&quot;;
+                exit();
+        }
+
+        return $return;
+}
</ins><span class="cx">Property changes on: trunk/wp-admin/includes/class-wp-importer.php
</span><span class="cx">___________________________________________________________________
</span><span class="cx">Name: svn:eol-style
</span><span class="cx">   + native
</span></span></pre>
</div>
</div>

</body>
</html>