mirror of
https://we.phorge.it/source/phorge.git
synced 2025-02-23 03:59:25 +01:00
Summary: Ref T1191. This fixes nearly every remaining blocker for utf8mb4 -- primarily, overlong keys. Remaining issue is https://secure.phabricator.com/T1191#77467 Test Plan: I'll annotate inline. Reviewers: btrahan Reviewed By: btrahan Subscribers: epriestley, hach-que Maniphest Tasks: T6099, T6129, T6133, T6134, T6150, T6148, T6147, T6146, T6105, T1191 Differential Revision: https://secure.phabricator.com/D10601
59 lines
1.3 KiB
PHP
59 lines
1.3 KiB
PHP
<?php
|
|
|
|
final class PhabricatorConduitMethodCallLog
|
|
extends PhabricatorConduitDAO
|
|
implements PhabricatorPolicyInterface {
|
|
|
|
protected $callerPHID;
|
|
protected $connectionID;
|
|
protected $method;
|
|
protected $error;
|
|
protected $duration;
|
|
|
|
public function getConfiguration() {
|
|
return array(
|
|
self::CONFIG_COLUMN_SCHEMA => array(
|
|
'id' => 'id64',
|
|
'connectionID' => 'id64?',
|
|
'method' => 'text64',
|
|
'error' => 'text255',
|
|
'duration' => 'uint64',
|
|
'callerPHID' => 'phid?',
|
|
),
|
|
self::CONFIG_KEY_SCHEMA => array(
|
|
'key_date' => array(
|
|
'columns' => array('dateCreated'),
|
|
),
|
|
'key_method' => array(
|
|
'columns' => array('method'),
|
|
),
|
|
'key_callermethod' => array(
|
|
'columns' => array('callerPHID', 'method'),
|
|
),
|
|
),
|
|
) + parent::getConfiguration();
|
|
}
|
|
|
|
|
|
/* -( PhabricatorPolicyInterface )----------------------------------------- */
|
|
|
|
|
|
public function getCapabilities() {
|
|
return array(
|
|
PhabricatorPolicyCapability::CAN_VIEW,
|
|
);
|
|
}
|
|
|
|
public function getPolicy($capability) {
|
|
return PhabricatorPolicies::POLICY_USER;
|
|
}
|
|
|
|
public function hasAutomaticCapability($capability, PhabricatorUser $viewer) {
|
|
return false;
|
|
}
|
|
|
|
public function describeAutomaticCapability($capability) {
|
|
return null;
|
|
}
|
|
|
|
}
|