mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-28 09:42:41 +01:00
a04e138ae2
Summary: Ref T4398. Add some documentation and use `phutil_units()`. Test Plan: - Established a web session. - Established a conduit session. - Entered and exited hisec. - Used "Sessions" panel to examine results. Reviewers: btrahan Reviewed By: btrahan Subscribers: epriestley Maniphest Tasks: T4398 Differential Revision: https://secure.phabricator.com/D8924
87 lines
2.2 KiB
PHP
87 lines
2.2 KiB
PHP
<?php
|
|
|
|
final class PhabricatorAuthSession extends PhabricatorAuthDAO
|
|
implements PhabricatorPolicyInterface {
|
|
|
|
const TYPE_WEB = 'web';
|
|
const TYPE_CONDUIT = 'conduit';
|
|
|
|
protected $userPHID;
|
|
protected $type;
|
|
protected $sessionKey;
|
|
protected $sessionStart;
|
|
protected $sessionExpires;
|
|
protected $highSecurityUntil;
|
|
protected $isPartial;
|
|
|
|
private $identityObject = self::ATTACHABLE;
|
|
|
|
public function getConfiguration() {
|
|
return array(
|
|
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);
|
|
}
|
|
|
|
public static function getSessionTypeTTL($session_type) {
|
|
switch ($session_type) {
|
|
case self::TYPE_WEB:
|
|
return phutil_units('30 days in seconds');
|
|
case self::TYPE_CONDUIT:
|
|
return phutil_units('24 hours in seconds');
|
|
default:
|
|
throw new Exception(pht('Unknown session type "%s".', $session_type));
|
|
}
|
|
}
|
|
|
|
/* -( 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.');
|
|
}
|
|
|
|
}
|