3 * The "Categoryfinder" class takes a list of articles, creates an internal
4 * representation of all their parent categories (as well as parents of
5 * parents etc.). From this representation, it determines which of these
6 * articles are in one or all of a given subset of categories.
10 * # Determines whether the article with the page_id 12345 is in both
11 * # "Category 1" and "Category 2" or their subcategories, respectively
13 * $cf = new Categoryfinder;
16 * array( 'Category 1', 'Category 2' ),
20 * print implode( ',' , $a );
24 class Categoryfinder
{
25 var $articles = array(); # The original article IDs passed to the seed function
26 var $deadend = array(); # Array of DBKEY category names for categories that don't have a page
27 var $parents = array(); # Array of [ID => array()]
28 var $next = array(); # Array of article/category IDs
29 var $targets = array(); # Array of DBKEY category names
30 var $name2id = array();
31 var $mode; # "AND" or "OR"
36 var $dbr; # Read-DB slave
39 * Constructor (currently empty).
41 function __construct() {
45 * Initializes the instance. Do this prior to calling run().
46 * @param $article_ids Array of article IDs
47 * @param $categories FIXME
48 * @param $mode String: FIXME, default 'AND'.
49 * @todo FIXME: $categories/$mode
51 function seed( $article_ids, $categories, $mode = 'AND' ) {
52 $this->articles
= $article_ids;
53 $this->next
= $article_ids;
56 # Set the list of target categories; convert them to DBKEY form first
57 $this->targets
= array();
58 foreach ( $categories as $c ) {
59 $ct = Title
::makeTitleSafe( NS_CATEGORY
, $c );
62 $this->targets
[$c] = $c;
68 * Iterates through the parent tree starting with the seed values,
69 * then checks the articles if they match the conditions
70 * @return array of page_ids (those given to seed() that match the conditions)
73 $this->dbr
= wfGetDB( DB_SLAVE
);
74 while ( count( $this->next
) > 0 ) {
75 $this->scan_next_layer();
78 # Now check if this applies to the individual articles
81 foreach ( $this->articles
as $article ) {
82 $conds = $this->targets
;
83 if ( $this->check( $article, $conds ) ) {
84 # Matches the conditions
92 * This functions recurses through the parent representation, trying to match the conditions
93 * @param $id int The article/category to check
94 * @param $conds array The array of categories to match
95 * @param $path array used to check for recursion loops
96 * @return bool Does this match the conditions?
98 function check( $id, &$conds, $path = array() ) {
99 // Check for loops and stop!
100 if ( in_array( $id, $path ) ) {
106 # Shortcut (runtime paranoia): No contitions=all matched
107 if ( count( $conds ) == 0 ) {
111 if ( !isset( $this->parents
[$id] ) ) {
115 # iterate through the parents
116 foreach ( $this->parents
[$id] as $p ) {
119 # Is this a condition?
120 if ( isset( $conds[$pname] ) ) {
121 # This key is in the category list!
122 if ( $this->mode
== 'OR' ) {
123 # One found, that's enough!
127 # Assuming "AND" as default
128 unset( $conds[$pname] );
129 if ( count( $conds ) == 0 ) {
130 # All conditions met, done
136 # Not done yet, try sub-parents
137 if ( !isset( $this->name2id
[$pname] ) ) {
141 $done = $this->check( $this->name2id
[$pname], $conds, $path );
142 if ( $done ||
count( $conds ) == 0 ) {
143 # Subparents have done it!
151 * Scans a "parent layer" of the articles/categories in $this->next
153 function scan_next_layer() {
154 # Find all parents of the article currently in $this->next
156 $res = $this->dbr
->select(
157 /* FROM */ 'categorylinks',
159 /* WHERE */ array( 'cl_from' => $this->next
),
162 foreach ( $res as $o ) {
166 if ( !isset( $this->parents
[$o->cl_from
] ) ) {
167 $this->parents
[$o->cl_from
] = array();
169 $this->parents
[$o->cl_from
][$k] = $o;
171 # Ignore those we already have
172 if ( in_array( $k, $this->deadend
) ) {
176 if ( isset( $this->name2id
[$k] ) ) {
184 $this->next
= array();
186 # Find the IDs of all category pages in $layer, if they exist
187 if ( count( $layer ) > 0 ) {
188 $res = $this->dbr
->select(
190 /* SELECT */ array( 'page_id', 'page_title' ),
191 /* WHERE */ array( 'page_namespace' => NS_CATEGORY
, 'page_title' => $layer ),
194 foreach ( $res as $o ) {
196 $name = $o->page_title
;
197 $this->name2id
[$name] = $id;
199 unset( $layer[$name] );
204 foreach ( $layer as $v ) {
205 $this->deadend
[$v] = $v;