29class Site implements Serializable {
49 const SERIAL_VERSION_ID =
'2013-01-23';
155 throw new MWException(
'$globalId needs to be string or null' );
193 if ( !is_string(
$group ) ) {
194 throw new MWException(
'$group needs to be a string' );
222 throw new MWException(
'$source needs to be a string' );
251 if ( !is_bool( $shouldForward ) ) {
252 throw new MWException(
'$shouldForward needs to be a boolean' );
255 $this->forward = $shouldForward;
269 if ( $path ===
null ) {
273 return parse_url( $path, PHP_URL_HOST );
287 if ( $path ===
null ) {
291 $protocol = parse_url( $path, PHP_URL_SCHEME );
294 if ( $protocol ===
false ) {
295 throw new MWException(
"failed to parse URL '$path'" );
299 if ( $protocol ===
null ) {
320 if (
$type ===
null ) {
321 throw new MWException(
"This Site does not support link paths." );
373 if ( $url ===
false ) {
377 if ( $pageName !==
false ) {
378 $url = str_replace(
'$1', rawurlencode( $pageName ), $url );
467 throw new InvalidArgumentException(
"$languageCode is not a valid language code." );
504 if ( $this->localIds ===
false ) {
505 $this->localIds = [];
508 if ( !array_key_exists(
$type, $this->localIds ) ) {
509 $this->localIds[
$type] = [];
512 if ( !in_array( $identifier, $this->localIds[
$type] ) ) {
513 $this->localIds[
$type][] = $identifier;
525 $this->
addLocalId( self::ID_INTERWIKI, $identifier );
536 $this->
addLocalId( self::ID_EQUIVALENT, $identifier );
547 return array_key_exists( self::ID_INTERWIKI, $this->localIds )
561 return array_key_exists( self::ID_EQUIVALENT, $this->localIds )
588 public function setPath( $pathType, $fullUrl ) {
589 if ( !is_string( $fullUrl ) ) {
590 throw new MWException(
'$fullUrl needs to be a string' );
593 if ( !array_key_exists(
'paths', $this->extraData ) ) {
594 $this->extraData[
'paths'] = [];
597 $this->extraData[
'paths'][$pathType] = $fullUrl;
611 return array_key_exists( $pathType, $paths ) ? $paths[$pathType] :
null;
623 return array_key_exists(
'paths', $this->extraData ) ? $this->extraData[
'paths'] : [];
634 if ( array_key_exists(
'paths', $this->extraData ) ) {
635 unset( $this->extraData[
'paths'][$pathType] );
694 $this->
setGroup( $fields[
'group'] );
697 $this->localIds = $fields[
'localids'];
$wgSiteTypes
Register handlers for specific types of sites.
no text was provided for refs named< code > blankwithnoreference</code ></span ></li ></ol ></div > !end !test with< references/> in group !wikitext Wikipedia rocks< ref > Proceeds of vol XXI</ref > Wikipedia rocks< ref group=note > Proceeds of vol XXI</ref >< references/>< references group=note/> ! html< p > Wikipedia rocks< sup id="cite_ref-1" class="reference">< a href="#cite_note-1"> &Wikipedia rocks< sup id="cite_ref-2" class="reference">< a href="#cite_note-2"> &</p >< div class="mw-references-wrap">< ol class="references">< li id="cite_note-1">< span class="mw-cite-backlink">< a href="#cite_ref-1"> ↑</a ></span >< span class="reference-text"> Proceeds of vol XXI</span ></li ></ol ></div >< div class="mw-references-wrap">< ol class="references">< li id="cite_note-2">< span class="mw-cite-backlink">< a href="#cite_ref-2"> ↑</a ></span >< span class="reference-text"> Proceeds of vol XXI</span ></li ></ol ></div > !end !test with< references/> in group
normalizePageName( $pageName)
Attempt to normalize the page name in some fashion.
shouldForward()
Gets if site.tld/path/key:pageTitle should forward users to the page on the actual site,...
setPath( $pathType, $fullUrl)
Sets the path used to construct links with.
getExtraData()
Returns the type specific fields.
setGroup( $group)
Sets the group of the site (ie wikipedia).
addInterwikiId( $identifier)
Adds an interwiki id to the site.
getPath( $pathType)
Returns the path of the provided type or false if there is no such path.
setForward( $shouldForward)
Sets if site.tld/path/key:pageTitle should forward users to the page on the actual site,...
setSource( $source)
Sets the source of the site data (ie 'local', 'wikidata', 'my-magical-repo').
getSource()
Returns the source of the site data (ie 'local', 'wikidata', 'my-magical-repo').
static newForType( $siteType)
getProtocol()
Returns the protocol of the site.
getType()
Returns the type of the site (ie mediawiki).
removePath( $pathType)
Removes the path of the provided type if it's set.
addLocalId( $type, $identifier)
Adds a local identifier.
setLanguageCode( $languageCode)
Sets language code of the sites primary language.
getGlobalId()
Returns the global site identifier (ie enwiktionary).
setGlobalId( $globalId)
Sets the global site identifier (ie enwiktionary).
getLinkPathType()
Returns the main path type, that is the type of the path that should generally be used to construct l...
getExtraConfig()
Returns the type specific config.
addNavigationId( $identifier)
Adds a navigation id to the site.
getPageUrl( $pageName=false)
Returns the full URL for the given page on the site.
string null $languageCode
getAllPaths()
Returns the paths as associative array.
getLocalIds()
Returns all local ids.
unserialize( $serialized)
getGroup()
Gets the group of the site (ie wikipedia).
setInternalId( $internalId=null)
Sets the internal identifier for the site.
getLanguageCode()
Returns language code of the sites primary language.
getInternalId()
Returns the set internal identifier for the site.
setExtraConfig(array $extraConfig)
Sets the type specific config.
__construct( $type=self::TYPE_UNKNOWN)
getNavigationIds()
Returns the equivalent link identifiers that can be used to make the site show up in interfaces such ...
getDomain()
Returns the domain of the site, ie en.wikipedia.org Or false if it's not known.
getLinkPath()
Returns the path used to construct links with or false if there is no such path.
setLinkPath( $fullUrl)
Sets the path used to construct links with.
array[] $localIds
Holds the local ids for this site.
getInterwikiIds()
Returns the interwiki link identifiers that can be used for this site.
setExtraData(array $extraData)
Sets the type specific fields.
This document describes the state of Postgres support in and is fairly well maintained The main code is very well while extensions are very hit and miss it is probably the most supported database after MySQL Much of the work in making MediaWiki database agnostic came about through the work of creating Postgres but without copying over all the usage comments General notes on the but these can almost always be programmed around *Although Postgres has a true BOOLEAN type
foreach( $res as $row) $serialized