mirror of
https://we.phorge.it/source/phorge.git
synced 2025-02-12 23:08:37 +01:00
Summary: This has been replaced by `PolicyCodex` after D16830. Also: - Rebuild Celerity map to fix grumpy unit test. - Fix one issue on the policy exception workflow to accommodate the new code. Test Plan: - `arc unit --everything` - Viewed policy explanations. - Viewed policy errors. Reviewers: chad Reviewed By: chad Subscribers: hach-que, PHID-OPKG-gm6ozazyms6q6i22gyam Differential Revision: https://secure.phabricator.com/D16831
133 lines
3.4 KiB
PHP
133 lines
3.4 KiB
PHP
<?php
|
|
|
|
final class PhabricatorAuthProviderConfig
|
|
extends PhabricatorAuthDAO
|
|
implements
|
|
PhabricatorApplicationTransactionInterface,
|
|
PhabricatorPolicyInterface {
|
|
|
|
protected $providerClass;
|
|
protected $providerType;
|
|
protected $providerDomain;
|
|
|
|
protected $isEnabled;
|
|
protected $shouldAllowLogin = 0;
|
|
protected $shouldAllowRegistration = 0;
|
|
protected $shouldAllowLink = 0;
|
|
protected $shouldAllowUnlink = 0;
|
|
protected $shouldTrustEmails = 0;
|
|
protected $shouldAutoLogin = 0;
|
|
|
|
protected $properties = array();
|
|
|
|
private $provider;
|
|
|
|
public function generatePHID() {
|
|
return PhabricatorPHID::generateNewPHID(
|
|
PhabricatorAuthAuthProviderPHIDType::TYPECONST);
|
|
}
|
|
|
|
protected function getConfiguration() {
|
|
return array(
|
|
self::CONFIG_AUX_PHID => true,
|
|
self::CONFIG_SERIALIZATION => array(
|
|
'properties' => self::SERIALIZATION_JSON,
|
|
),
|
|
self::CONFIG_COLUMN_SCHEMA => array(
|
|
'isEnabled' => 'bool',
|
|
'providerClass' => 'text128',
|
|
'providerType' => 'text32',
|
|
'providerDomain' => 'text128',
|
|
'shouldAllowLogin' => 'bool',
|
|
'shouldAllowRegistration' => 'bool',
|
|
'shouldAllowLink' => 'bool',
|
|
'shouldAllowUnlink' => 'bool',
|
|
'shouldTrustEmails' => 'bool',
|
|
'shouldAutoLogin' => 'bool',
|
|
),
|
|
self::CONFIG_KEY_SCHEMA => array(
|
|
'key_provider' => array(
|
|
'columns' => array('providerType', 'providerDomain'),
|
|
'unique' => true,
|
|
),
|
|
'key_class' => array(
|
|
'columns' => array('providerClass'),
|
|
),
|
|
),
|
|
) + parent::getConfiguration();
|
|
}
|
|
|
|
public function getProperty($key, $default = null) {
|
|
return idx($this->properties, $key, $default);
|
|
}
|
|
|
|
public function setProperty($key, $value) {
|
|
$this->properties[$key] = $value;
|
|
return $this;
|
|
}
|
|
|
|
public function getProvider() {
|
|
if (!$this->provider) {
|
|
$base = PhabricatorAuthProvider::getAllBaseProviders();
|
|
$found = null;
|
|
foreach ($base as $provider) {
|
|
if (get_class($provider) == $this->providerClass) {
|
|
$found = $provider;
|
|
break;
|
|
}
|
|
}
|
|
if ($found) {
|
|
$this->provider = id(clone $found)->attachProviderConfig($this);
|
|
}
|
|
}
|
|
return $this->provider;
|
|
}
|
|
|
|
|
|
/* -( PhabricatorApplicationTransactionInterface )------------------------- */
|
|
|
|
|
|
public function getApplicationTransactionEditor() {
|
|
return new PhabricatorAuthProviderConfigEditor();
|
|
}
|
|
|
|
public function getApplicationTransactionObject() {
|
|
return $this;
|
|
}
|
|
|
|
public function getApplicationTransactionTemplate() {
|
|
return new PhabricatorAuthProviderConfigTransaction();
|
|
}
|
|
|
|
public function willRenderTimeline(
|
|
PhabricatorApplicationTransactionView $timeline,
|
|
AphrontRequest $request) {
|
|
|
|
return $timeline;
|
|
}
|
|
|
|
|
|
/* -( PhabricatorPolicyInterface )----------------------------------------- */
|
|
|
|
|
|
public function getCapabilities() {
|
|
return array(
|
|
PhabricatorPolicyCapability::CAN_VIEW,
|
|
PhabricatorPolicyCapability::CAN_EDIT,
|
|
);
|
|
}
|
|
|
|
public function getPolicy($capability) {
|
|
switch ($capability) {
|
|
case PhabricatorPolicyCapability::CAN_VIEW:
|
|
return PhabricatorPolicies::POLICY_USER;
|
|
case PhabricatorPolicyCapability::CAN_EDIT:
|
|
return PhabricatorPolicies::POLICY_ADMIN;
|
|
}
|
|
}
|
|
|
|
public function hasAutomaticCapability($capability, PhabricatorUser $viewer) {
|
|
return false;
|
|
}
|
|
|
|
}
|