MediaWiki  1.33.0
CategoriesRdf.php
Go to the documentation of this file.
1 <?php
19 use Wikimedia\Purtle\RdfWriter;
20 
28  const ONTOLOGY_PREFIX = 'mediawiki';
32  const ONTOLOGY_URL = 'https://www.mediawiki.org/ontology#';
36  const OWL_URL = 'https://www.mediawiki.org/ontology/ontology.owl';
40  const FORMAT_VERSION = "1.1";
46  const SPECIAL_DUMP = 'Special:CategoryDump';
50  private $rdfWriter;
51 
52  public function __construct( RdfWriter $writer ) {
53  $this->rdfWriter = $writer;
54  }
55 
59  public function setupPrefixes() {
60  $this->rdfWriter->prefix( self::ONTOLOGY_PREFIX, self::ONTOLOGY_URL );
61  $this->rdfWriter->prefix( 'rdfs', 'http://www.w3.org/2000/01/rdf-schema#' );
62  $this->rdfWriter->prefix( 'owl', 'http://www.w3.org/2002/07/owl#' );
63  $this->rdfWriter->prefix( 'schema', 'http://schema.org/' );
64  $this->rdfWriter->prefix( 'cc', 'http://creativecommons.org/ns#' );
65  }
66 
72  public function writeCategoryLinkData( $fromName, $toName ) {
73  $titleFrom = Title::makeTitle( NS_CATEGORY, $fromName );
74  $titleTo = Title::makeTitle( NS_CATEGORY, $toName );
75  $this->rdfWriter->about( $this->titleToUrl( $titleFrom ) )
76  ->say( self::ONTOLOGY_PREFIX, 'isInCategory' )
77  ->is( $this->titleToUrl( $titleTo ) );
78  }
79 
87  public function writeCategoryData( $categoryName, $isHidden, $pages, $subcategories ) {
88  if ( $pages < 0 ) {
89  // Bugfix for T201119
90  $pages = 0;
91  }
92  $title = Title::makeTitle( NS_CATEGORY, $categoryName );
93  $this->rdfWriter->about( $this->titleToUrl( $title ) )
94  ->say( 'a' )
95  ->is( self::ONTOLOGY_PREFIX, 'Category' );
96  if ( $isHidden ) {
97  $this->rdfWriter->is( self::ONTOLOGY_PREFIX, 'HiddenCategory' );
98  }
99  $titletext = $title->getText();
100  $this->rdfWriter->say( 'rdfs', 'label' )->value( $titletext );
101  $this->rdfWriter->say( self::ONTOLOGY_PREFIX, 'pages' )->value( $pages );
102  $this->rdfWriter->say( self::ONTOLOGY_PREFIX, 'subcategories' )->value( $subcategories );
103  // TODO: do we want files too here? Easy to add, but don't have use case so far.
104  }
105 
111  public function labelToUrl( $titleLabel ) {
112  return $this->titleToUrl( Title::makeTitle( NS_CATEGORY, $titleLabel ) );
113  }
114 
120  private function titleToUrl( Title $title ) {
121  return $title->getFullURL( '', false, PROTO_CANONICAL );
122  }
123 
128  public function getDumpURI() {
129  return $this->titleToUrl( Title::makeTitle( NS_MAIN, self::SPECIAL_DUMP ) );
130  }
131 
132 }
PROTO_CANONICAL
const PROTO_CANONICAL
Definition: Defines.php:223
CategoriesRdf
Helper class to produce RDF representation of categories.
Definition: CategoriesRdf.php:24
CategoriesRdf\OWL_URL
const OWL_URL
OWL description of the ontology.
Definition: CategoriesRdf.php:36
CategoriesRdf\ONTOLOGY_URL
const ONTOLOGY_URL
Base URL for Mediawiki ontology.
Definition: CategoriesRdf.php:32
CategoriesRdf\labelToUrl
labelToUrl( $titleLabel)
Make URL from title label.
Definition: CategoriesRdf.php:111
CategoriesRdf\$rdfWriter
RdfWriter $rdfWriter
Definition: CategoriesRdf.php:50
php
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
NS_MAIN
const NS_MAIN
Definition: Defines.php:64
$title
namespace and then decline to actually register it file or subcat img or subcat $title
Definition: hooks.txt:925
CategoriesRdf\FORMAT_VERSION
const FORMAT_VERSION
Current version of the dump format.
Definition: CategoriesRdf.php:40
CategoriesRdf\writeCategoryLinkData
writeCategoryLinkData( $fromName, $toName)
Write RDF data for link between categories.
Definition: CategoriesRdf.php:72
use
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
Definition: MIT-LICENSE.txt:10
Title\makeTitle
static makeTitle( $ns, $title, $fragment='', $interwiki='')
Create a new Title from a namespace index and a DB key.
Definition: Title.php:576
NS_CATEGORY
const NS_CATEGORY
Definition: Defines.php:78
CategoriesRdf\titleToUrl
titleToUrl(Title $title)
Convert Title to link to target page.
Definition: CategoriesRdf.php:120
CategoriesRdf\SPECIAL_DUMP
const SPECIAL_DUMP
Special page for Dump identification.
Definition: CategoriesRdf.php:46
CategoriesRdf\writeCategoryData
writeCategoryData( $categoryName, $isHidden, $pages, $subcategories)
Write out the data for single category.
Definition: CategoriesRdf.php:87
CategoriesRdf\setupPrefixes
setupPrefixes()
Setup prefixes relevant for the dump.
Definition: CategoriesRdf.php:59
Title
Represents a title within MediaWiki.
Definition: Title.php:40
CategoriesRdf\__construct
__construct(RdfWriter $writer)
Definition: CategoriesRdf.php:52
CategoriesRdf\ONTOLOGY_PREFIX
const ONTOLOGY_PREFIX
Prefix used for Mediawiki ontology in the dump.
Definition: CategoriesRdf.php:28
CategoriesRdf\getDumpURI
getDumpURI()
Get URI of the dump for this particular wiki.
Definition: CategoriesRdf.php:128