1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68:
<?php
namespace Baguette\Mastodon\Service;
use Baguette\Mastodon;
use Baguette\Mastodon\Service;
class SessionStorage
{
use \Teto\Object\PrivateGetter;
private $auth_factory;
private $scope;
private $authorization;
public function __construct(AuthFactory $auth_factory, Scope $scope)
{
$this->auth_factory = $auth_factory;
$this->scope = $scope;
}
public function getAccessToken()
{
$this->authorize();
return $this->authorization->access_token;
}
public function authorize($force = false)
{
if ($force || $this->authorization === null) {
$this->authorization = $this->auth_factory->authorize($this->scope);
}
return $this->authorization;
}
public function setAuthorization(Authorization $authorization)
{
$this->authorization = $authorization;
}
}