repo
stringlengths
7
63
file_url
stringlengths
81
284
file_path
stringlengths
5
200
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
7 values
commit_sha
stringlengths
40
40
retrieved_at
stringdate
2026-01-04 15:02:33
2026-01-05 05:24:06
truncated
bool
2 classes
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/config/check/PhabricatorWebServerSetupCheck.php
src/applications/config/check/PhabricatorWebServerSetupCheck.php
<?php final class PhabricatorWebServerSetupCheck extends PhabricatorSetupCheck { public function getDefaultGroup() { return self::GROUP_OTHER; } protected function executeChecks() { // The documentation says these headers exist, but it's not clear if they // are entirely reliable in practice. i...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/config/check/PhabricatorSecuritySetupCheck.php
src/applications/config/check/PhabricatorSecuritySetupCheck.php
<?php final class PhabricatorSecuritySetupCheck extends PhabricatorSetupCheck { public function getDefaultGroup() { return self::GROUP_OTHER; } protected function executeChecks() { // This checks for a version of bash with the "Shellshock" vulnerability. // For details, see T6185. $payload = ...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/config/check/PhabricatorExtensionsSetupCheck.php
src/applications/config/check/PhabricatorExtensionsSetupCheck.php
<?php final class PhabricatorExtensionsSetupCheck extends PhabricatorSetupCheck { public function getDefaultGroup() { return self::GROUP_PHP; } public function isPreflightCheck() { return true; } protected function executeChecks() { // TODO: Make 'mbstring' a soft requirement. $required =...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/config/check/PhabricatorDaemonsSetupCheck.php
src/applications/config/check/PhabricatorDaemonsSetupCheck.php
<?php final class PhabricatorDaemonsSetupCheck extends PhabricatorSetupCheck { public function getDefaultGroup() { return self::GROUP_IMPORTANT; } protected function executeChecks() { try { $task_daemons = id(new PhabricatorDaemonLogQuery()) ->setViewer(PhabricatorUser::getOmnipotentUser...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/config/check/PhabricatorRepositoriesSetupCheck.php
src/applications/config/check/PhabricatorRepositoriesSetupCheck.php
<?php final class PhabricatorRepositoriesSetupCheck extends PhabricatorSetupCheck { public function getDefaultGroup() { return self::GROUP_OTHER; } protected function executeChecks() { $cluster_services = id(new AlmanacServiceQuery()) ->setViewer(PhabricatorUser::getOmnipotentUser()) ->wit...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/config/check/PhabricatorExtraConfigSetupCheck.php
src/applications/config/check/PhabricatorExtraConfigSetupCheck.php
<?php final class PhabricatorExtraConfigSetupCheck extends PhabricatorSetupCheck { public function getDefaultGroup() { return self::GROUP_OTHER; } protected function executeChecks() { $ancient_config = self::getAncientConfig(); $all_keys = PhabricatorEnv::getAllConfigKeys(); $all_keys = array_...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/config/check/PhabricatorZipSetupCheck.php
src/applications/config/check/PhabricatorZipSetupCheck.php
<?php final class PhabricatorZipSetupCheck extends PhabricatorSetupCheck { public function getDefaultGroup() { return self::GROUP_OTHER; } protected function executeChecks() { if (!extension_loaded('zip')) { $message = pht( 'The PHP "zip" extension is not installed. This extension is '. ...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/config/check/PhabricatorSetupCheck.php
src/applications/config/check/PhabricatorSetupCheck.php
<?php abstract class PhabricatorSetupCheck extends Phobject { private $issues; abstract protected function executeChecks(); const GROUP_OTHER = 'other'; const GROUP_MYSQL = 'mysql'; const GROUP_PHP = 'php'; const GROUP_IMPORTANT = 'important'; public function getExecutionOrder()...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/config/check/__tests__/PhabricatorSetupCheckTestCase.php
src/applications/config/check/__tests__/PhabricatorSetupCheckTestCase.php
<?php final class PhabricatorSetupCheckTestCase extends PhabricatorTestCase { public function testLoadAllChecks() { PhabricatorSetupCheck::loadAllChecks(); $this->assertTrue(true); } }
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/config/view/PhabricatorHTTPParameterTypeTableView.php
src/applications/config/view/PhabricatorHTTPParameterTypeTableView.php
<?php final class PhabricatorHTTPParameterTypeTableView extends AphrontView { private $types; public function setHTTPParameterTypes(array $types) { assert_instances_of($types, 'AphrontHTTPParameterType'); $this->types = $types; return $this; } public function getHTTPParameterTypes() { retu...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/config/view/PhabricatorSetupIssueView.php
src/applications/config/view/PhabricatorSetupIssueView.php
<?php final class PhabricatorSetupIssueView extends AphrontView { private $issue; public function setIssue(PhabricatorSetupIssue $issue) { $this->issue = $issue; return $this; } public function getIssue() { return $this->issue; } public function renderInFlight() { $issue = $this->getIss...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/config/view/PhabricatorInFlightErrorView.php
src/applications/config/view/PhabricatorInFlightErrorView.php
<?php final class PhabricatorInFlightErrorView extends AphrontView { private $message; public function setMessage($message) { $this->message = $message; return $this; } public function getMessage() { return $this->message; } public function render() { return phutil_tag( 'div', ...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/config/issue/PhabricatorSetupIssue.php
src/applications/config/issue/PhabricatorSetupIssue.php
<?php final class PhabricatorSetupIssue extends Phobject { private $issueKey; private $name; private $message; private $isFatal; private $summary; private $shortName; private $group; private $databaseRef; private $isIgnored = false; private $phpExtensions = array(); private $phabricatorConfig =...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/config/phid/PhabricatorConfigConfigPHIDType.php
src/applications/config/phid/PhabricatorConfigConfigPHIDType.php
<?php final class PhabricatorConfigConfigPHIDType extends PhabricatorPHIDType { const TYPECONST = 'CONF'; public function getTypeName() { return pht('Config'); } public function newObject() { return new PhabricatorConfigEntry(); } public function getPHIDTypeApplicationClass() { return 'Phab...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/config/module/PhabricatorConfigSiteModule.php
src/applications/config/module/PhabricatorConfigSiteModule.php
<?php final class PhabricatorConfigSiteModule extends PhabricatorConfigModule { public function getModuleKey() { return 'site'; } public function getModuleName() { return pht('Sites'); } public function renderModuleStatus(AphrontRequest $request) { $viewer = $request->getViewer(); $sites ...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/config/module/PhabricatorConfigSetupCheckModule.php
src/applications/config/module/PhabricatorConfigSetupCheckModule.php
<?php final class PhabricatorConfigSetupCheckModule extends PhabricatorConfigModule { public function getModuleKey() { return 'setup'; } public function getModuleName() { return pht('Setup Checks'); } public function renderModuleStatus(AphrontRequest $request) { $viewer = $request->getViewer...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/config/module/PhabricatorConfigHTTPParameterTypesModule.php
src/applications/config/module/PhabricatorConfigHTTPParameterTypesModule.php
<?php final class PhabricatorConfigHTTPParameterTypesModule extends PhabricatorConfigModule { public function getModuleKey() { return 'httpparameter'; } public function getModuleName() { return pht('HTTP Parameter Types'); } public function renderModuleStatus(AphrontRequest $request) { $view...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/config/module/PhabricatorConfigModule.php
src/applications/config/module/PhabricatorConfigModule.php
<?php abstract class PhabricatorConfigModule extends Phobject { abstract public function getModuleKey(); abstract public function getModuleName(); abstract public function renderModuleStatus(AphrontRequest $request); final public static function getAllModules() { return id(new PhutilClassMapQuery()) ...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/config/module/PhabricatorConfigEdgeModule.php
src/applications/config/module/PhabricatorConfigEdgeModule.php
<?php final class PhabricatorConfigEdgeModule extends PhabricatorConfigModule { public function getModuleKey() { return 'edge'; } public function getModuleName() { return pht('Edge Types'); } public function renderModuleStatus(AphrontRequest $request) { $viewer = $request->getViewer(); $t...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/config/module/PhabricatorConfigCollectorsModule.php
src/applications/config/module/PhabricatorConfigCollectorsModule.php
<?php final class PhabricatorConfigCollectorsModule extends PhabricatorConfigModule { public function getModuleKey() { return 'collectors'; } public function getModuleName() { return pht('Garbage Collectors'); } public function renderModuleStatus(AphrontRequest $request) { $viewer = $request->...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/config/module/PhabricatorConfigRequestExceptionHandlerModule.php
src/applications/config/module/PhabricatorConfigRequestExceptionHandlerModule.php
<?php final class PhabricatorConfigRequestExceptionHandlerModule extends PhabricatorConfigModule { public function getModuleKey() { return 'exception-handler'; } public function getModuleName() { return pht('Exception Handlers'); } public function renderModuleStatus(AphrontRequest $request) { ...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/config/module/PhabricatorConfigPHIDModule.php
src/applications/config/module/PhabricatorConfigPHIDModule.php
<?php final class PhabricatorConfigPHIDModule extends PhabricatorConfigModule { public function getModuleKey() { return 'phid'; } public function getModuleName() { return pht('PHID Types'); } public function renderModuleStatus(AphrontRequest $request) { $viewer = $request->getViewer(); $t...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/config/engine/PhabricatorSetupEngine.php
src/applications/config/engine/PhabricatorSetupEngine.php
<?php final class PhabricatorSetupEngine extends Phobject { private $issues; public function getIssues() { if ($this->issues === null) { throw new PhutilInvalidStateException('execute'); } return $this->issues; } public function getUnresolvedIssues() { $issues = $this->getIssues(); ...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/config/response/PhabricatorConfigResponse.php
src/applications/config/response/PhabricatorConfigResponse.php
<?php final class PhabricatorConfigResponse extends AphrontStandaloneHTMLResponse { private $view; public function setView(PhabricatorSetupIssueView $view) { $this->view = $view; return $this; } public function getHTTPResponseCode() { return 500; } protected function getResources() { re...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/config/schema/PhabricatorConfigSchemaSpec.php
src/applications/config/schema/PhabricatorConfigSchemaSpec.php
<?php abstract class PhabricatorConfigSchemaSpec extends Phobject { private $server; private $utf8Charset; private $utf8BinaryCollation; private $utf8SortingCollation; const DATATYPE_UNKNOWN = '<unknown>'; public function setUTF8SortingCollation($utf8_sorting_collation) { $this->utf8SortingCollation...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/config/schema/PhabricatorConfigTableSchema.php
src/applications/config/schema/PhabricatorConfigTableSchema.php
<?php final class PhabricatorConfigTableSchema extends PhabricatorConfigStorageSchema { private $collation; private $engine; private $columns = array(); private $keys = array(); private $persistenceType = self::PERSISTENCE_DATA; const PERSISTENCE_DATA = 'data'; const PERSISTENCE_CACHE = 'cache'; co...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/config/schema/PhabricatorConfigColumnSchema.php
src/applications/config/schema/PhabricatorConfigColumnSchema.php
<?php final class PhabricatorConfigColumnSchema extends PhabricatorConfigStorageSchema { private $characterSet; private $collation; private $columnType; private $dataType; private $nullable; private $autoIncrement; public function setAutoIncrement($auto_increment) { $this->autoIncrement = $auto_i...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/config/schema/PhabricatorConfigDatabaseSchema.php
src/applications/config/schema/PhabricatorConfigDatabaseSchema.php
<?php final class PhabricatorConfigDatabaseSchema extends PhabricatorConfigStorageSchema { private $characterSet; private $collation; private $tables = array(); private $accessDenied; public function addTable(PhabricatorConfigTableSchema $table) { $key = $table->getName(); if (isset($this->tables...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/config/schema/PhabricatorConfigSchemaQuery.php
src/applications/config/schema/PhabricatorConfigSchemaQuery.php
<?php final class PhabricatorConfigSchemaQuery extends Phobject { private $refs; private $apis; public function setRefs(array $refs) { $this->refs = $refs; return $this; } public function getRefs() { if (!$this->refs) { return PhabricatorDatabaseRef::getMasterDatabaseRefs(); } re...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/config/schema/PhabricatorConfigCoreSchemaSpec.php
src/applications/config/schema/PhabricatorConfigCoreSchemaSpec.php
<?php /** * Builds schemata definitions for core infrastructure. */ final class PhabricatorConfigCoreSchemaSpec extends PhabricatorConfigSchemaSpec { public function buildSchemata() { // Build all Lisk table schemata. $lisk_objects = id(new PhutilClassMapQuery()) ->setAncestorClass('PhabricatorLi...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/config/schema/PhabricatorConfigKeySchema.php
src/applications/config/schema/PhabricatorConfigKeySchema.php
<?php final class PhabricatorConfigKeySchema extends PhabricatorConfigStorageSchema { const MAX_INNODB_KEY_LENGTH = 767; private $columnNames; private $unique; private $table; private $indexType; private $property; public function setIndexType($index_type) { $this->indexType = $index_type; r...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/config/schema/PhabricatorConfigStorageSchema.php
src/applications/config/schema/PhabricatorConfigStorageSchema.php
<?php abstract class PhabricatorConfigStorageSchema extends Phobject { const ISSUE_MISSING = 'missing'; const ISSUE_MISSINGKEY = 'missingkey'; const ISSUE_SURPLUS = 'surplus'; const ISSUE_SURPLUSKEY = 'surpluskey'; const ISSUE_CHARSET = 'charset'; const ISSUE_COLLATION = 'collation'; const ISSUE_COLUMNT...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/config/schema/PhabricatorConfigServerSchema.php
src/applications/config/schema/PhabricatorConfigServerSchema.php
<?php final class PhabricatorConfigServerSchema extends PhabricatorConfigStorageSchema { private $ref; private $databases = array(); public function setRef(PhabricatorDatabaseRef $ref) { $this->ref = $ref; return $this; } public function getRef() { return $this->ref; } public function a...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/config/constants/PhabricatorConfigGroupConstants.php
src/applications/config/constants/PhabricatorConfigGroupConstants.php
<?php abstract class PhabricatorConfigGroupConstants extends PhabricatorConfigConstants { const GROUP_CORE = 'core'; const GROUP_APPLICATION = 'apps'; const GROUP_DEVELOPER = 'developer'; public static function getGroupName($group) { $map = array( self::GROUP_CORE => pht('Core Settings'), ...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/config/constants/PhabricatorConfigConstants.php
src/applications/config/constants/PhabricatorConfigConstants.php
<?php abstract class PhabricatorConfigConstants extends Phobject {}
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/conduit/controller/PhabricatorConduitAPIController.php
src/applications/conduit/controller/PhabricatorConduitAPIController.php
<?php final class PhabricatorConduitAPIController extends PhabricatorConduitController { public function shouldRequireLogin() { return false; } public function handleRequest(AphrontRequest $request) { $method = $request->getURIData('method'); $time_start = microtime(true); $api_request = nul...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/conduit/controller/PhabricatorConduitController.php
src/applications/conduit/controller/PhabricatorConduitController.php
<?php abstract class PhabricatorConduitController extends PhabricatorController { protected function buildSideNavView() { $viewer = $this->getRequest()->getUser(); $nav = new AphrontSideNavFilterView(); $nav->setBaseURI(new PhutilURI($this->getApplicationURI())); id(new PhabricatorConduitSearchEng...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/conduit/controller/PhabricatorConduitTokenController.php
src/applications/conduit/controller/PhabricatorConduitTokenController.php
<?php final class PhabricatorConduitTokenController extends PhabricatorConduitController { public function handleRequest(AphrontRequest $request) { $viewer = $request->getViewer(); id(new PhabricatorAuthSessionEngine())->requireHighSecuritySession( $viewer, $this->getRequest(), '/'); ...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/conduit/controller/PhabricatorConduitTokenTerminateController.php
src/applications/conduit/controller/PhabricatorConduitTokenTerminateController.php
<?php final class PhabricatorConduitTokenTerminateController extends PhabricatorConduitController { public function handleRequest(AphrontRequest $request) { $viewer = $request->getViewer(); $object_phid = $request->getStr('objectPHID'); $id = $request->getURIData('id'); if ($id) { $token = ...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/conduit/controller/PhabricatorConduitLogController.php
src/applications/conduit/controller/PhabricatorConduitLogController.php
<?php final class PhabricatorConduitLogController extends PhabricatorConduitController { public function handleRequest(AphrontRequest $request) { return id(new PhabricatorConduitLogSearchEngine()) ->setController($this) ->buildResponse(); } }
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/conduit/controller/PhabricatorConduitConsoleController.php
src/applications/conduit/controller/PhabricatorConduitConsoleController.php
<?php final class PhabricatorConduitConsoleController extends PhabricatorConduitController { public function shouldAllowPublic() { return true; } public function handleRequest(AphrontRequest $request) { $viewer = $this->getViewer(); $method_name = $request->getURIData('method'); $method = id...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/conduit/controller/PhabricatorConduitTokenHandshakeController.php
src/applications/conduit/controller/PhabricatorConduitTokenHandshakeController.php
<?php final class PhabricatorConduitTokenHandshakeController extends PhabricatorConduitController { public function handleRequest(AphrontRequest $request) { $viewer = $request->getViewer(); id(new PhabricatorAuthSessionEngine())->requireHighSecuritySession( $viewer, $request, '/'); ...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/conduit/controller/PhabricatorConduitTokenEditController.php
src/applications/conduit/controller/PhabricatorConduitTokenEditController.php
<?php final class PhabricatorConduitTokenEditController extends PhabricatorConduitController { public function handleRequest(AphrontRequest $request) { $viewer = $request->getViewer(); $id = $request->getURIData('id'); if ($id) { $token = id(new PhabricatorConduitTokenQuery()) ->setView...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/conduit/controller/PhabricatorConduitListController.php
src/applications/conduit/controller/PhabricatorConduitListController.php
<?php final class PhabricatorConduitListController extends PhabricatorConduitController { public function shouldAllowPublic() { return true; } public function handleRequest(AphrontRequest $request) { $controller = id(new PhabricatorApplicationSearchController()) ->setQueryKey($request->getURIDa...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/conduit/storage/PhabricatorConduitCertificateToken.php
src/applications/conduit/storage/PhabricatorConduitCertificateToken.php
<?php final class PhabricatorConduitCertificateToken extends PhabricatorConduitDAO { protected $userPHID; protected $token; protected function getConfiguration() { return array( self::CONFIG_COLUMN_SCHEMA => array( 'token' => 'text64?', ), self::CONFIG_KEY_SCHEMA => array( ...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/conduit/storage/PhabricatorConduitDAO.php
src/applications/conduit/storage/PhabricatorConduitDAO.php
<?php abstract class PhabricatorConduitDAO extends PhabricatorLiskDAO { public function getApplicationName() { return 'conduit'; } }
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/conduit/storage/PhabricatorConduitToken.php
src/applications/conduit/storage/PhabricatorConduitToken.php
<?php final class PhabricatorConduitToken extends PhabricatorConduitDAO implements PhabricatorPolicyInterface { protected $objectPHID; protected $tokenType; protected $token; protected $expires; private $object = self::ATTACHABLE; const TYPE_STANDARD = 'api'; const TYPE_COMMANDLINE = 'cli'; cons...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/conduit/storage/PhabricatorConduitMethodCallLog.php
src/applications/conduit/storage/PhabricatorConduitMethodCallLog.php
<?php final class PhabricatorConduitMethodCallLog extends PhabricatorConduitDAO implements PhabricatorPolicyInterface { protected $callerPHID; protected $connectionID; protected $method; protected $error; protected $duration; protected function getConfiguration() { return array( self::CONFI...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/conduit/management/PhabricatorConduitManagementWorkflow.php
src/applications/conduit/management/PhabricatorConduitManagementWorkflow.php
<?php abstract class PhabricatorConduitManagementWorkflow extends PhabricatorManagementWorkflow {}
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/conduit/management/PhabricatorConduitCallManagementWorkflow.php
src/applications/conduit/management/PhabricatorConduitCallManagementWorkflow.php
<?php final class PhabricatorConduitCallManagementWorkflow extends PhabricatorConduitManagementWorkflow { protected function didConstruct() { $this ->setName('call') ->setSynopsis(pht('Call a Conduit method..')) ->setArguments( array( array( 'name' => 'method', ...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/conduit/query/PhabricatorConduitLogSearchEngine.php
src/applications/conduit/query/PhabricatorConduitLogSearchEngine.php
<?php final class PhabricatorConduitLogSearchEngine extends PhabricatorApplicationSearchEngine { public function getResultTypeDescription() { return pht('Conduit Logs'); } public function getApplicationClassName() { return 'PhabricatorConduitApplication'; } public function canUseInPanelContext()...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/conduit/query/PhabricatorConduitLogQuery.php
src/applications/conduit/query/PhabricatorConduitLogQuery.php
<?php final class PhabricatorConduitLogQuery extends PhabricatorCursorPagedPolicyAwareQuery { private $ids; private $callerPHIDs; private $methods; private $methodStatuses; private $epochMin; private $epochMax; public function withIDs(array $ids) { $this->ids = $ids; return $this; } publ...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/conduit/query/ConduitResultSearchEngineExtension.php
src/applications/conduit/query/ConduitResultSearchEngineExtension.php
<?php final class ConduitResultSearchEngineExtension extends PhabricatorSearchEngineExtension { const EXTENSIONKEY = 'conduit'; public function isExtensionEnabled() { return true; } public function getExtensionOrder() { return 1500; } public function getExtensionName() { return pht('Suppo...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/conduit/query/PhabricatorConduitMethodQuery.php
src/applications/conduit/query/PhabricatorConduitMethodQuery.php
<?php final class PhabricatorConduitMethodQuery extends PhabricatorCursorPagedPolicyAwareQuery { private $isDeprecated; private $isStable; private $isUnstable; private $applicationNames; private $nameContains; private $methods; private $isInternal; public function withMethods(array $methods) { ...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/conduit/query/PhabricatorConduitTokenQuery.php
src/applications/conduit/query/PhabricatorConduitTokenQuery.php
<?php final class PhabricatorConduitTokenQuery extends PhabricatorCursorPagedPolicyAwareQuery { private $ids; private $objectPHIDs; private $expired; private $tokens; private $tokenTypes; public function withExpired($expired) { $this->expired = $expired; return $this; } public function wit...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/conduit/query/PhabricatorConduitSearchEngine.php
src/applications/conduit/query/PhabricatorConduitSearchEngine.php
<?php final class PhabricatorConduitSearchEngine extends PhabricatorApplicationSearchEngine { public function getResultTypeDescription() { return pht('Conduit Methods'); } public function getApplicationClassName() { return 'PhabricatorConduitApplication'; } public function canUseInPanelContext()...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/conduit/call/ConduitCall.php
src/applications/conduit/call/ConduitCall.php
<?php /** * Run a conduit method in-process, without requiring HTTP requests. Usage: * * $call = new ConduitCall('method.name', array('param' => 'value')); * $call->setUser($user); * $result = $call->execute(); * */ final class ConduitCall extends Phobject { private $method; private $handler; priva...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/conduit/call/__tests__/ConduitCallTestCase.php
src/applications/conduit/call/__tests__/ConduitCallTestCase.php
<?php final class ConduitCallTestCase extends PhabricatorTestCase { public function testConduitPing() { $call = new ConduitCall('conduit.ping', array()); $result = $call->execute(); $this->assertFalse(empty($result)); } public function testConduitAuth() { $call = new ConduitCall('user.whoami',...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/conduit/interface/PhabricatorConduitResultInterface.php
src/applications/conduit/interface/PhabricatorConduitResultInterface.php
<?php interface PhabricatorConduitResultInterface extends PhabricatorPHIDInterface { public function getFieldSpecificationsForConduit(); public function getFieldValuesForConduit(); public function getConduitSearchAttachments(); } // TEMPLATE IMPLEMENTATION ///////////////////////////////////////////////////...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/conduit/interface/PhabricatorConduitSearchFieldSpecification.php
src/applications/conduit/interface/PhabricatorConduitSearchFieldSpecification.php
<?php final class PhabricatorConduitSearchFieldSpecification extends Phobject { private $key; private $type; private $description; public function setKey($key) { $this->key = $key; return $this; } public function getKey() { return $this->key; } public function setType($type) { $th...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/conduit/settings/PhabricatorConduitTokensSettingsPanel.php
src/applications/conduit/settings/PhabricatorConduitTokensSettingsPanel.php
<?php final class PhabricatorConduitTokensSettingsPanel extends PhabricatorSettingsPanel { public function isManagementPanel() { if ($this->getUser()->getIsMailingList()) { return false; } return true; } public function getPanelKey() { return 'apitokens'; } public function getPane...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/conduit/ssh/ConduitSSHWorkflow.php
src/applications/conduit/ssh/ConduitSSHWorkflow.php
<?php final class ConduitSSHWorkflow extends PhabricatorSSHWorkflow { protected function didConstruct() { $this->setName('conduit'); $this->setArguments( array( array( 'name' => 'method', 'wildcard' => true, ), )); } public function execute(PhutilAr...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/conduit/application/PhabricatorConduitApplication.php
src/applications/conduit/application/PhabricatorConduitApplication.php
<?php final class PhabricatorConduitApplication extends PhabricatorApplication { public function getBaseURI() { return '/conduit/'; } public function getIcon() { return 'fa-tty'; } public function canUninstall() { return false; } public function getHelpDocumentationArticles(PhabricatorUse...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/conduit/method/ConduitGetCapabilitiesConduitAPIMethod.php
src/applications/conduit/method/ConduitGetCapabilitiesConduitAPIMethod.php
<?php final class ConduitGetCapabilitiesConduitAPIMethod extends ConduitAPIMethod { public function getAPIMethodName() { return 'conduit.getcapabilities'; } public function shouldRequireAuthentication() { return false; } public function getMethodDescription() { return pht( 'List capabili...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/conduit/method/ConduitQueryConduitAPIMethod.php
src/applications/conduit/method/ConduitQueryConduitAPIMethod.php
<?php final class ConduitQueryConduitAPIMethod extends ConduitAPIMethod { public function getAPIMethodName() { return 'conduit.query'; } public function getMethodDescription() { return pht('Returns the parameters of the Conduit methods.'); } protected function defineParamTypes() { return array...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/conduit/method/ConduitConnectConduitAPIMethod.php
src/applications/conduit/method/ConduitConnectConduitAPIMethod.php
<?php final class ConduitConnectConduitAPIMethod extends ConduitAPIMethod { public function getAPIMethodName() { return 'conduit.connect'; } public function shouldRequireAuthentication() { return false; } public function shouldAllowUnguardedWrites() { return true; } public function getMet...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/conduit/method/ConduitAPIMethod.php
src/applications/conduit/method/ConduitAPIMethod.php
<?php /** * @task info Method Information * @task status Method Status * @task pager Paging Results */ abstract class ConduitAPIMethod extends Phobject implements PhabricatorPolicyInterface { private $viewer; const METHOD_STATUS_STABLE = 'stable'; const METHOD_STATUS_UNSTABLE = 'unstable'; const METH...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/conduit/method/ConduitPingConduitAPIMethod.php
src/applications/conduit/method/ConduitPingConduitAPIMethod.php
<?php final class ConduitPingConduitAPIMethod extends ConduitAPIMethod { public function getAPIMethodName() { return 'conduit.ping'; } public function shouldRequireAuthentication() { return false; } public function getMethodDescription() { return pht('Basic ping for monitoring or a health-chec...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/conduit/method/ConduitGetCertificateConduitAPIMethod.php
src/applications/conduit/method/ConduitGetCertificateConduitAPIMethod.php
<?php final class ConduitGetCertificateConduitAPIMethod extends ConduitAPIMethod { public function getAPIMethodName() { return 'conduit.getcertificate'; } public function shouldRequireAuthentication() { return false; } public function shouldAllowUnguardedWrites() { // This method performs logg...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/conduit/method/__tests__/ConduitAPIMethodTestCase.php
src/applications/conduit/method/__tests__/ConduitAPIMethodTestCase.php
<?php final class ConduitAPIMethodTestCase extends PhabricatorTestCase { public function testLoadAllConduitMethods() { ConduitAPIMethod::loadAllConduitMethods(); $this->assertTrue(true); } }
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/conduit/parametertype/ConduitStringParameterType.php
src/applications/conduit/parametertype/ConduitStringParameterType.php
<?php final class ConduitStringParameterType extends ConduitParameterType { protected function getParameterValue(array $request, $key, $strict) { $value = parent::getParameterValue($request, $key, $strict); return $this->parseStringValue($request, $key, $value, $strict); } protected function getParam...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/conduit/parametertype/ConduitPointsParameterType.php
src/applications/conduit/parametertype/ConduitPointsParameterType.php
<?php final class ConduitPointsParameterType extends ConduitParameterType { protected function getParameterValue(array $request, $key, $strict) { $value = parent::getParameterValue($request, $key, $strict); if (($value !== null) && !is_numeric($value)) { $this->raiseValidationException( $re...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/conduit/parametertype/ConduitUserParameterType.php
src/applications/conduit/parametertype/ConduitUserParameterType.php
<?php final class ConduitUserParameterType extends ConduitParameterType { protected function getParameterValue(array $request, $key, $strict) { $value = parent::getParameterValue($request, $key, $strict); if ($value === null) { return null; } if (!is_string($value)) { $this->raiseVal...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/conduit/parametertype/ConduitIntParameterType.php
src/applications/conduit/parametertype/ConduitIntParameterType.php
<?php final class ConduitIntParameterType extends ConduitParameterType { protected function getParameterValue(array $request, $key, $strict) { $value = parent::getParameterValue($request, $key, $strict); return $this->parseIntValue($request, $key, $value, $strict); } protected function getParameterTy...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/conduit/parametertype/ConduitEpochParameterType.php
src/applications/conduit/parametertype/ConduitEpochParameterType.php
<?php final class ConduitEpochParameterType extends ConduitParameterType { private $allowNull; public function setAllowNull($allow_null) { $this->allowNull = $allow_null; return $this; } public function getAllowNull() { return $this->allowNull; } protected function getParameterValue(array...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/conduit/parametertype/ConduitParameterType.php
src/applications/conduit/parametertype/ConduitParameterType.php
<?php /** * Defines how to read a value from a Conduit request. * * This class behaves like @{class:AphrontHTTPParameterType}, but for Conduit. */ abstract class ConduitParameterType extends Phobject { private $viewer; final public function setViewer(PhabricatorUser $viewer) { $this->viewer = $viewer; ...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/conduit/parametertype/ConduitListParameterType.php
src/applications/conduit/parametertype/ConduitListParameterType.php
<?php abstract class ConduitListParameterType extends ConduitParameterType { private $allowEmptyList = true; public function setAllowEmptyList($allow_empty_list) { $this->allowEmptyList = $allow_empty_list; return $this; } public function getAllowEmptyList() { return $this->allowEmptyList; }...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/conduit/parametertype/ConduitStringListParameterType.php
src/applications/conduit/parametertype/ConduitStringListParameterType.php
<?php final class ConduitStringListParameterType extends ConduitListParameterType { protected function getParameterValue(array $request, $key, $strict) { $list = parent::getParameterValue($request, $key, $strict); return $this->parseStringList($request, $key, $list, $strict); } protected function get...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/conduit/parametertype/ConduitProjectListParameterType.php
src/applications/conduit/parametertype/ConduitProjectListParameterType.php
<?php final class ConduitProjectListParameterType extends ConduitListParameterType { protected function getParameterValue(array $request, $key, $strict) { $list = parent::getParameterValue($request, $key, $strict); $list = $this->parseStringList($request, $key, $list, $strict); return id(new Phabricat...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/conduit/parametertype/ConduitIntListParameterType.php
src/applications/conduit/parametertype/ConduitIntListParameterType.php
<?php final class ConduitIntListParameterType extends ConduitListParameterType { protected function getParameterValue(array $request, $key, $strict) { $list = parent::getParameterValue($request, $key, $strict); foreach ($list as $idx => $item) { $list[$idx] = $this->parseIntValue( $request,...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/conduit/parametertype/ConduitWildParameterType.php
src/applications/conduit/parametertype/ConduitWildParameterType.php
<?php final class ConduitWildParameterType extends ConduitParameterType { protected function getParameterTypeName() { return 'wild'; } protected function getParameterFormatDescriptions() { return array( pht('Any mixed or complex value. Check the documentation for details.'), ); } prote...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/conduit/parametertype/ConduitPHIDParameterType.php
src/applications/conduit/parametertype/ConduitPHIDParameterType.php
<?php final class ConduitPHIDParameterType extends ConduitParameterType { private $isNullable; public function setIsNullable($is_nullable) { $this->isNullable = $is_nullable; return $this; } public function getIsNullable() { return $this->isNullable; } protected function getParameterValue...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/conduit/parametertype/ConduitUserListParameterType.php
src/applications/conduit/parametertype/ConduitUserListParameterType.php
<?php final class ConduitUserListParameterType extends ConduitListParameterType { protected function getParameterValue(array $request, $key, $strict) { $list = parent::getParameterValue($request, $key, $strict); $list = $this->parseStringList($request, $key, $list, $strict); return id(new PhabricatorU...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/conduit/parametertype/ConduitBoolParameterType.php
src/applications/conduit/parametertype/ConduitBoolParameterType.php
<?php final class ConduitBoolParameterType extends ConduitParameterType { protected function getParameterValue(array $request, $key, $strict) { $value = parent::getParameterValue($request, $key, $strict); return $this->parseBoolValue($request, $key, $value, $strict); } protected function getParameter...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/conduit/parametertype/ConduitPHIDListParameterType.php
src/applications/conduit/parametertype/ConduitPHIDListParameterType.php
<?php final class ConduitPHIDListParameterType extends ConduitListParameterType { protected function getParameterValue(array $request, $key, $strict) { $list = parent::getParameterValue($request, $key, $strict); return $this->parseStringList($request, $key, $list, $strict); } protected function getPa...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/conduit/parametertype/ConduitColumnsParameterType.php
src/applications/conduit/parametertype/ConduitColumnsParameterType.php
<?php final class ConduitColumnsParameterType extends ConduitParameterType { protected function getParameterValue(array $request, $key, $strict) { // We don't do any meaningful validation here because the transaction // itself validates everything and the input format is flexible. return parent::getPa...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/conduit/garbagecollector/ConduitTokenGarbageCollector.php
src/applications/conduit/garbagecollector/ConduitTokenGarbageCollector.php
<?php final class ConduitTokenGarbageCollector extends PhabricatorGarbageCollector { const COLLECTORCONST = 'conduit.tokens'; public function getCollectorName() { return pht('Conduit Tokens'); } public function hasAutomaticPolicy() { return true; } protected function collectGarbage() { $t...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/conduit/garbagecollector/ConduitLogGarbageCollector.php
src/applications/conduit/garbagecollector/ConduitLogGarbageCollector.php
<?php final class ConduitLogGarbageCollector extends PhabricatorGarbageCollector { const COLLECTORCONST = 'conduit.logs'; public function getCollectorName() { return pht('Conduit Logs'); } public function getDefaultRetentionPolicy() { return phutil_units('180 days in seconds'); } protected fu...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/conduit/data/ConduitAPIDocumentationPage.php
src/applications/conduit/data/ConduitAPIDocumentationPage.php
<?php final class ConduitAPIDocumentationPage extends Phobject { private $name; private $anchor; private $iconIcon; private $content = array(); public function setName($name) { $this->name = $name; return $this; } public function getName() { return $this->name; } public function set...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/conduit/data/ConduitConstantDescription.php
src/applications/conduit/data/ConduitConstantDescription.php
<?php final class ConduitConstantDescription extends Phobject { private $key; private $value; private $isDeprecated; public function setKey($key) { $this->key = $key; return $this; } public function getKey() { return $this->key; } public function setValue($value) { $this->value = $v...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/conduit/protocol/ConduitAPIResponse.php
src/applications/conduit/protocol/ConduitAPIResponse.php
<?php final class ConduitAPIResponse extends Phobject { private $result; private $errorCode; private $errorInfo; public function setResult($result) { $this->result = $result; return $this; } public function getResult() { return $this->result; } public function setErrorCode($error_code) ...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/conduit/protocol/ConduitAPIRequest.php
src/applications/conduit/protocol/ConduitAPIRequest.php
<?php final class ConduitAPIRequest extends Phobject { protected $params; private $user; private $isClusterRequest = false; private $oauthToken; private $isStrictlyTyped = true; public function __construct(array $params, $strictly_typed) { $this->params = $params; $this->isStrictlyTyped = $strict...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/conduit/protocol/exception/ConduitMethodDoesNotExistException.php
src/applications/conduit/protocol/exception/ConduitMethodDoesNotExistException.php
<?php final class ConduitMethodDoesNotExistException extends ConduitMethodNotFoundException { public function __construct($method_name) { parent::__construct( pht( 'Conduit API method "%s" does not exist.', $method_name)); } }
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/conduit/protocol/exception/ConduitMethodNotFoundException.php
src/applications/conduit/protocol/exception/ConduitMethodNotFoundException.php
<?php abstract class ConduitMethodNotFoundException extends ConduitException {}
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/conduit/protocol/exception/ConduitException.php
src/applications/conduit/protocol/exception/ConduitException.php
<?php /** * @concrete-extensible */ class ConduitException extends Exception { private $errorDescription; /** * Set a detailed error description. If omitted, the generic error description * will be used instead. This is useful to provide specific information about * an exception (e.g., which values we...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/conduit/protocol/exception/ConduitApplicationNotInstalledException.php
src/applications/conduit/protocol/exception/ConduitApplicationNotInstalledException.php
<?php final class ConduitApplicationNotInstalledException extends ConduitMethodNotFoundException { public function __construct(ConduitAPIMethod $method, $application) { parent::__construct( pht( "Method '%s' belongs to application '%s', which is not installed.", $method->getAPIMethodName...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/search/controller/PhabricatorSearchOrderController.php
src/applications/search/controller/PhabricatorSearchOrderController.php
<?php final class PhabricatorSearchOrderController extends PhabricatorSearchBaseController { public function handleRequest(AphrontRequest $request) { $viewer = $this->getViewer(); $engine_class = $request->getURIData('engine'); $request->validateCSRF(); $base_class = 'PhabricatorApplicationSearc...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/search/controller/PhabricatorApplicationSearchController.php
src/applications/search/controller/PhabricatorApplicationSearchController.php
<?php final class PhabricatorApplicationSearchController extends PhabricatorSearchBaseController { private $searchEngine; private $navigation; private $queryKey; private $preface; private $activeQuery; public function setPreface($preface) { $this->preface = $preface; return $this; } public...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/search/controller/PhabricatorSearchEditController.php
src/applications/search/controller/PhabricatorSearchEditController.php
<?php final class PhabricatorSearchEditController extends PhabricatorSearchBaseController { public function handleRequest(AphrontRequest $request) { $viewer = $this->getViewer(); $id = $request->getURIData('id'); if ($id) { $named_query = id(new PhabricatorNamedQueryQuery()) ->setViewer...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false
phacility/phabricator
https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/search/controller/PhabricatorSearchBaseController.php
src/applications/search/controller/PhabricatorSearchBaseController.php
<?php abstract class PhabricatorSearchBaseController extends PhabricatorController { protected function loadRelationshipObject() { $request = $this->getRequest(); $viewer = $this->getViewer(); $phid = $request->getURIData('sourcePHID'); return id(new PhabricatorObjectQuery()) ->setViewer($vi...
php
Apache-2.0
5720a38cfe95b00ca4be5016dd0d2f3195f4fa04
2026-01-04T15:03:23.651835Z
false