Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Class that implements MemCache support, MemCache is a prerequisite #608

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 51 additions & 0 deletions src/OAuth2/Storage/MemCacheToken.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
<?php
namespace OAuth2\Storage;

use Memcache;

class MemCacheToken implements AccessTokenInterface
{
protected $storage;
protected $memcache;

public function __construct(AccessTokenInterface $storage)
{
$this->storage = $storage;

$this->memcache = new Memcache;
$this->memcache->connect('localhost', 11211);
}

public function getAccessToken($access_token)
{
$cacheKey = 'storage-'.$access_token;

# Try and get from memory
$accessToken = $this->memcache->get($cacheKey);

# We have some data
if(!empty($accessToken)) {
return $accessToken;
}

$accessToken = $this->storage->getAccessToken('access_token');
$this->memcache->set($cacheKey, $accessToken, 0, strtotime($accessToken['expires']));

return $accessToken;
}

public function setAccessToken($oauth_token, $client_id, $user_id, $expires, $scope = null)
{
$cacheKey = 'storage-'.$oauth_token;

$this->storage->setAccessToken($oauth_token, $client_id, $user_id, $expires, $scope);
$updatedAccessToken = $this->storage->getAccessToken($oauth_token);

$result = $this->memcache->replace($cacheKey, $updatedAccessToken, 0, $expires);
if( $result == false )
{
$result = $this->memcache->set($cacheKey, $updatedAccessToken, 0, $expires);
}

}
}