mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-13 10:22:42 +01:00
cdbb1d5a03
Summary: Ref T2715. Moves Phriction to application PHIDs. Test Plan: Used `phid.query`; browsed Phriction. Reviewers: btrahan Reviewed By: btrahan CC: aran Maniphest Tasks: T2715 Differential Revision: https://secure.phabricator.com/D6553
90 lines
2.1 KiB
PHP
90 lines
2.1 KiB
PHP
<?php
|
|
|
|
/**
|
|
* @group search
|
|
*/
|
|
final class PhabricatorSearchAbstractDocument {
|
|
|
|
private $phid;
|
|
private $documentType;
|
|
private $documentTitle;
|
|
private $documentCreated;
|
|
private $documentModified;
|
|
private $fields = array();
|
|
private $relationships = array();
|
|
|
|
public static function getSupportedTypes() {
|
|
return array(
|
|
DifferentialPHIDTypeRevision::TYPECONST => 'Differential Revisions',
|
|
PhabricatorRepositoryPHIDTypeCommit::TYPECONST => 'Repository Commits',
|
|
ManiphestPHIDTypeTask::TYPECONST => 'Maniphest Tasks',
|
|
PhrictionPHIDTypeDocument::TYPECONST => 'Phriction Documents',
|
|
PhabricatorPHIDConstants::PHID_TYPE_USER => 'Phabricator Users',
|
|
PhabricatorPHIDConstants::PHID_TYPE_QUES => 'Ponder Questions',
|
|
);
|
|
}
|
|
|
|
public function setPHID($phid) {
|
|
$this->phid = $phid;
|
|
return $this;
|
|
}
|
|
|
|
public function setDocumentType($document_type) {
|
|
$this->documentType = $document_type;
|
|
return $this;
|
|
}
|
|
|
|
public function setDocumentTitle($title) {
|
|
$this->documentTitle = $title;
|
|
$this->addField(PhabricatorSearchField::FIELD_TITLE, $title);
|
|
return $this;
|
|
}
|
|
|
|
public function addField($field, $corpus, $aux_phid = null) {
|
|
$this->fields[] = array($field, $corpus, $aux_phid);
|
|
return $this;
|
|
}
|
|
|
|
public function addRelationship($type, $related_phid, $rtype, $time) {
|
|
$this->relationships[] = array($type, $related_phid, $rtype, $time);
|
|
return $this;
|
|
}
|
|
|
|
public function setDocumentCreated($date) {
|
|
$this->documentCreated = $date;
|
|
return $this;
|
|
}
|
|
|
|
public function setDocumentModified($date) {
|
|
$this->documentModified = $date;
|
|
return $this;
|
|
}
|
|
|
|
public function getPHID() {
|
|
return $this->phid;
|
|
}
|
|
|
|
public function getDocumentType() {
|
|
return $this->documentType;
|
|
}
|
|
|
|
public function getDocumentTitle() {
|
|
return $this->documentTitle;
|
|
}
|
|
|
|
public function getDocumentCreated() {
|
|
return $this->documentCreated;
|
|
}
|
|
|
|
public function getDocumentModified() {
|
|
return $this->documentModified;
|
|
}
|
|
|
|
public function getFieldData() {
|
|
return $this->fields;
|
|
}
|
|
|
|
public function getRelationshipData() {
|
|
return $this->relationships;
|
|
}
|
|
}
|