Move MemcachedBagOStuff b/c logic to ObjectCache
[mediawiki.git] / includes / site / SiteExporter.php
blob294f1dba8206be7b0a834df2853a1eb86be1f1f9
1 <?php
3 /**
4 * Utility for exporting site entries to XML.
5 * For the output file format, see docs/sitelist.txt and docs/sitelist-1.0.xsd.
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 * http://www.gnu.org/copyleft/gpl.html
22 * @since 1.25
24 * @file
25 * @ingroup Site
27 * @license GNU GPL v2+
28 * @author Daniel Kinzler
30 class SiteExporter {
32 /**
33 * @var resource
35 private $sink;
37 /**
38 * @param resource $sink A file handle open for writing
40 public function __construct( $sink ) {
41 if ( !is_resource( $sink ) || get_resource_type( $sink ) !== 'stream' ) {
42 throw new InvalidArgumentException( '$sink must be a file handle' );
45 $this->sink = $sink;
48 /**
49 * Writes a <site> tag for each Site object in $sites, and encloses the entire list
50 * between <sites> tags.
52 * @param Site[]|SiteList $sites
54 public function exportSites( $sites ) {
55 $attributes = array(
56 'version' => '1.0',
57 'xmlns' => 'http://www.mediawiki.org/xml/sitelist-1.0/',
60 fwrite( $this->sink, Xml::openElement( 'sites', $attributes ) . "\n" );
62 foreach ( $sites as $site ) {
63 $this->exportSite( $site );
66 fwrite( $this->sink, Xml::closeElement( 'sites' ) . "\n" );
67 fflush( $this->sink );
70 /**
71 * Writes a <site> tag representing the given Site object.
73 * @param Site $site
75 private function exportSite( Site $site ) {
76 if ( $site->getType() !== Site::TYPE_UNKNOWN ) {
77 $siteAttr = array( 'type' => $site->getType() );
78 } else {
79 $siteAttr = null;
82 fwrite( $this->sink, "\t" . Xml::openElement( 'site', $siteAttr ) . "\n" );
84 fwrite( $this->sink, "\t\t" . Xml::element( 'globalid', null, $site->getGlobalId() ) . "\n" );
86 if ( $site->getGroup() !== Site::GROUP_NONE ) {
87 fwrite( $this->sink, "\t\t" . Xml::element( 'group', null, $site->getGroup() ) . "\n" );
90 if ( $site->getSource() !== Site::SOURCE_LOCAL ) {
91 fwrite( $this->sink, "\t\t" . Xml::element( 'source', null, $site->getSource() ) . "\n" );
94 if ( $site->shouldForward() ) {
95 fwrite( $this->sink, "\t\t" . Xml::element( 'forward', null, '' ) . "\n" );
98 foreach ( $site->getAllPaths() as $type => $path ) {
99 fwrite( $this->sink, "\t\t" . Xml::element( 'path', array( 'type' => $type ), $path ) . "\n" );
102 foreach ( $site->getLocalIds() as $type => $ids ) {
103 foreach ( $ids as $id ) {
104 fwrite( $this->sink, "\t\t" . Xml::element( 'localid', array( 'type' => $type ), $id ) . "\n" );
108 // @todo: export <data>
109 // @todo: export <config>
111 fwrite( $this->sink, "\t" . Xml::closeElement( 'site' ) . "\n" );