mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-13 18:32:41 +01:00
73 lines
1.8 KiB
PHP
73 lines
1.8 KiB
PHP
|
<?php
|
||
|
|
||
|
final class PhabricatorAuthSession extends PhabricatorAuthDAO
|
||
|
implements PhabricatorPolicyInterface {
|
||
|
|
||
|
protected $userPHID;
|
||
|
protected $type;
|
||
|
protected $sessionKey;
|
||
|
protected $sessionStart;
|
||
|
|
||
|
private $identityObject = self::ATTACHABLE;
|
||
|
|
||
|
public function getConfiguration() {
|
||
|
return array(
|
||
|
self::CONFIG_IDS => self::IDS_MANUAL,
|
||
|
self::CONFIG_TIMESTAMPS => false,
|
||
|
) + parent::getConfiguration();
|
||
|
}
|
||
|
|
||
|
public function getApplicationName() {
|
||
|
// This table predates the "Auth" application, and really all applications.
|
||
|
return 'user';
|
||
|
}
|
||
|
|
||
|
public function getTableName() {
|
||
|
// This is a very old table with a nonstandard name.
|
||
|
return PhabricatorUser::SESSION_TABLE;
|
||
|
}
|
||
|
|
||
|
public function attachIdentityObject($identity_object) {
|
||
|
$this->identityObject = $identity_object;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
public function getIdentityObject() {
|
||
|
return $this->assertAttached($this->identityObject);
|
||
|
}
|
||
|
|
||
|
|
||
|
/* -( PhabricatorPolicyInterface )----------------------------------------- */
|
||
|
|
||
|
|
||
|
public function getCapabilities() {
|
||
|
return array(
|
||
|
PhabricatorPolicyCapability::CAN_VIEW,
|
||
|
);
|
||
|
}
|
||
|
|
||
|
public function getPolicy($capability) {
|
||
|
return PhabricatorPolicies::POLICY_NOONE;
|
||
|
}
|
||
|
|
||
|
public function hasAutomaticCapability($capability, PhabricatorUser $viewer) {
|
||
|
if (!$viewer->getPHID()) {
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
$object = $this->getIdentityObject();
|
||
|
if ($object instanceof PhabricatorUser) {
|
||
|
return ($object->getPHID() == $viewer->getPHID());
|
||
|
} else if ($object instanceof PhabricatorExternalAccount) {
|
||
|
return ($object->getUserPHID() == $viewer->getPHID());
|
||
|
}
|
||
|
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
public function describeAutomaticCapability($capability) {
|
||
|
return pht('A session is visible only to its owner.');
|
||
|
}
|
||
|
|
||
|
}
|