mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-13 09:06:14 +01:00
45 lines
970 B
PHP
45 lines
970 B
PHP
|
<?php
|
||
|
|
||
|
final class PhabricatorDaemonLog extends PhabricatorDaemonDAO
|
||
|
implements PhabricatorPolicyInterface {
|
||
|
|
||
|
const STATUS_UNKNOWN = 'unknown';
|
||
|
const STATUS_RUNNING = 'run';
|
||
|
const STATUS_DEAD = 'dead';
|
||
|
const STATUS_WAIT = 'wait';
|
||
|
const STATUS_EXITED = 'exit';
|
||
|
|
||
|
protected $daemon;
|
||
|
protected $host;
|
||
|
protected $pid;
|
||
|
protected $argv;
|
||
|
protected $status;
|
||
|
|
||
|
public function getConfiguration() {
|
||
|
return array(
|
||
|
self::CONFIG_SERIALIZATION => array(
|
||
|
'argv' => self::SERIALIZATION_JSON,
|
||
|
),
|
||
|
) + parent::getConfiguration();
|
||
|
}
|
||
|
|
||
|
|
||
|
/* -( PhabricatorPolicyInterface )----------------------------------------- */
|
||
|
|
||
|
|
||
|
public function getCapabilities() {
|
||
|
return array(
|
||
|
PhabricatorPolicyCapability::CAN_VIEW,
|
||
|
);
|
||
|
}
|
||
|
|
||
|
public function getPolicy($capability) {
|
||
|
return PhabricatorPolicies::POLICY_ADMIN;
|
||
|
}
|
||
|
|
||
|
public function hasAutomaticCapability($capability, PhabricatorUser $viewer) {
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
}
|