wikimedia/mediawiki-extensions-Wikibase

View on GitHub
lib/includes/Interactors/TermSearchResult.php

Summary

Maintainability
A
45 mins
Test Coverage
<?php

namespace Wikibase\Lib\Interactors;

use Wikibase\DataModel\Entity\EntityId;
use Wikibase\DataModel\Term\Term;

/**
 * @license GPL-2.0-or-later
 * @author Addshore
 */
class TermSearchResult {

    public const CONCEPTURI_META_DATA_KEY = 'concepturi';

    /**
     * @var Term
     */
    private $matchedTerm;

    /**
     * @var string
     */
    private $matchedTermType;

    /**
     * @var EntityId|null
     */
    private $entityId;

    /**
     * @var null|Term
     */
    private $displayLabel;

    /**
     * @var null|Term
     */
    private $displayDescription;

    /**
     * @var array
     */
    private $metaData;

    /**
     * @param Term $matchedTerm
     * @param string $matchedTermType
     * @param EntityId|null $entityId
     * @param Term|null $displayLabel
     * @param Term|null $displayDescription
     */
    public function __construct(
        Term $matchedTerm,
        string $matchedTermType,
        ?EntityId $entityId,
        Term $displayLabel = null,
        Term $displayDescription = null,
        array $metaData = []
    ) {
        $this->matchedTerm = $matchedTerm;
        $this->matchedTermType = $matchedTermType;
        $this->entityId = $entityId;
        $this->displayLabel = $displayLabel;
        $this->displayDescription = $displayDescription;
        $this->metaData = $metaData;
    }

    /**
     * @return Term
     */
    public function getMatchedTerm() {
        return $this->matchedTerm;
    }

    /**
     * @return string
     */
    public function getMatchedTermType() {
        return $this->matchedTermType;
    }

    /**
     * The entity ID of the search result.
     *
     * This should usually be an {@link EntityId};
     * to support search for additional entity types
     * that are not registered with Wikibase’s entity registration yet,
     * it may temporarily be null.
     * In that case, the {@link self::getMetaData() meta data}
     * must include the entity ID serialization and additional data
     * which would usually be added automatically based on the entity ID
     * (i.e., id, title, pageid, url, concepturi).
     *
     * @return EntityId|null
     */
    public function getEntityId() {
        return $this->entityId;
    }

    /**
     * @return Term|null
     */
    public function getDisplayLabel() {
        return $this->displayLabel;
    }

    /**
     * @return Term|null
     */
    public function getDisplayDescription() {
        return $this->displayDescription;
    }

    /**
     * @return array [ key => value ] map of meta data about the returned search result or its associated entity
     */
    public function getMetaData(): array {
        return $this->metaData;
    }

}