4 * Utility for importing site entries from XML.
5 * For the expected format of the input, 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
27 * @license GNU GPL v2+
28 * @author Daniel Kinzler
40 private $exceptionCallback;
43 * @param SiteStore $store
45 public function __construct( SiteStore
$store ) {
46 $this->store
= $store;
52 public function getExceptionCallback() {
53 return $this->exceptionCallback
;
57 * @param callable $exceptionCallback
59 public function setExceptionCallback( $exceptionCallback ) {
60 $this->exceptionCallback
= $exceptionCallback;
66 public function importFromFile( $file ) {
67 $xml = file_get_contents( $file );
69 if ( $xml === false ) {
70 throw new RuntimeException( 'Failed to read ' . $file . '!' );
73 $this->importFromXML( $xml );
79 * @throws InvalidArgumentException
81 public function importFromXML( $xml ) {
82 $document = new DOMDocument();
84 $oldLibXmlErrors = libxml_use_internal_errors( true );
85 $ok = $document->loadXML( $xml, LIBXML_NONET
);
88 $errors = libxml_get_errors();
89 libxml_use_internal_errors( $oldLibXmlErrors );
91 foreach ( $errors as $error ) {
92 /** @var LibXMLError $error */
93 throw new InvalidArgumentException(
94 'Malformed XML: ' . $error->message
. ' in line ' . $error->line
98 throw new InvalidArgumentException( 'Malformed XML!' );
101 libxml_use_internal_errors( $oldLibXmlErrors );
102 $this->importFromDOM( $document->documentElement
);
106 * @param DOMElement $root
108 private function importFromDOM( DOMElement
$root ) {
109 $sites = $this->makeSiteList( $root );
110 $this->store
->saveSites( $sites );
114 * @param DOMElement $root
118 private function makeSiteList( DOMElement
$root ) {
121 // Old sites, to get the row IDs that correspond to the global site IDs.
122 // TODO: Get rid of internal row IDs, they just get in the way. Get rid of ORMRow, too.
123 $oldSites = $this->store
->getSites();
125 $current = $root->firstChild
;
127 if ( $current instanceof DOMElement
&& $current->tagName
=== 'site' ) {
129 $site = $this->makeSite( $current );
130 $key = $site->getGlobalId();
132 if ( $oldSites->hasSite( $key ) ) {
133 $oldSite = $oldSites->getSite( $key );
134 $site->setInternalId( $oldSite->getInternalId() );
137 $sites[$key] = $site;
138 } catch ( Exception
$ex ) {
139 $this->handleException( $ex );
143 $current = $current->nextSibling
;
150 * @param DOMElement $siteElement
153 * @throws InvalidArgumentException
155 public function makeSite( DOMElement
$siteElement ) {
156 if ( $siteElement->tagName
!== 'site' ) {
157 throw new InvalidArgumentException( 'Expected <site> tag, found ' . $siteElement->tagName
);
160 $type = $this->getAttributeValue( $siteElement, 'type', Site
::TYPE_UNKNOWN
);
161 $site = Site
::newForType( $type );
163 $site->setForward( $this->hasChild( $siteElement, 'forward' ) );
164 $site->setGlobalId( $this->getChildText( $siteElement, 'globalid' ) );
165 $site->setGroup( $this->getChildText( $siteElement, 'group', Site
::GROUP_NONE
) );
166 $site->setSource( $this->getChildText( $siteElement, 'source', Site
::SOURCE_LOCAL
) );
168 $pathTags = $siteElement->getElementsByTagName( 'path' );
169 for ( $i = 0; $i < $pathTags->length
; $i++
) {
170 $pathElement = $pathTags->item( $i );
171 $pathType = $this->getAttributeValue( $pathElement, 'type' );
172 $path = $pathElement->textContent
;
174 $site->setPath( $pathType, $path );
177 $idTags = $siteElement->getElementsByTagName( 'localid' );
178 for ( $i = 0; $i < $idTags->length
; $i++
) {
179 $idElement = $idTags->item( $i );
180 $idType = $this->getAttributeValue( $idElement, 'type' );
181 $id = $idElement->textContent
;
183 $site->addLocalId( $idType, $id );
186 // @todo: import <data>
187 // @todo: import <config>
193 * @param DOMElement $element
195 * @param string|null|bool $default
197 * @return null|string
198 * @throws MWException If the attribute is not found and no default is provided
200 private function getAttributeValue( DOMElement
$element, $name, $default = false ) {
201 $node = $element->getAttributeNode( $name );
204 if ( $default !== false ) {
207 throw new MWException(
208 'Required ' . $name . ' attribute not found in <' . $element->tagName
. '> tag'
213 return $node->textContent
;
217 * @param DOMElement $element
218 * @param string $name
219 * @param string|null|bool $default
221 * @return null|string
222 * @throws MWException If the child element is not found and no default is provided
224 private function getChildText( DOMElement
$element, $name, $default = false ) {
225 $elements = $element->getElementsByTagName( $name );
227 if ( $elements->length
< 1 ) {
228 if ( $default !== false ) {
231 throw new MWException(
232 'Required <' . $name . '> tag not found inside <' . $element->tagName
. '> tag'
237 $node = $elements->item( 0 );
238 return $node->textContent
;
242 * @param DOMElement $element
243 * @param string $name
246 * @throws MWException
248 private function hasChild( DOMElement
$element, $name ) {
249 return $this->getChildText( $element, $name, null ) !== null;
253 * @param Exception $ex
255 private function handleException( Exception
$ex ) {
256 if ( $this->exceptionCallback
) {
257 call_user_func( $this->exceptionCallback
, $ex );
259 wfLogWarning( $ex->getMessage() );