PHP code example of oire / osst

1. Go to this page and download the library: Download oire/osst library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

oire / osst example snippets


use Oire\Osst\Osst;

// You should have set your $dbConnection first as a PDO instance
$osst = (new Osst($dbConnection))
    ->createToken()
    ->setUserId(123)
    ->setExpirationTime(time() + 3600)
    ->setTokenType(3)
    ->setAdditionalInfo('{"some": "data"}')
    ->persist();

use Oire\Osst\Exception\OsstInvalidTokenException as tokenError;
use Oire\Osst\Osst;

try {
    $osst = (new Osst($dbConnection))->setToken($token);
} catch (TokenError $e) {
    // Something went wrong with the token: either it is invalid, not found or has been tampered with
}

if ($osst->tokenIsExpired()) {
    // The token is correct but expired
}

// Given that $osst contains a valid token
$osst->invalidateToken(true);

$deletedTokens = Osst::clearExpiredTokens($dbConnection);

use Oire\Colloportus\Colloportus;
use Oire\Osst\Osst;

$key = Colloportus::createKey();
// Store the key somewhere safe, i.e., in an environment variable
$additionalInfo = '{"oldEmail": "[email protected]", "newEmail": "[email protected]"}';
$osst = (new Osst($dbConnection))
    ->createToken()
    ->setUserId(123)
    ->setExpirationOffset('+30 minutes')
    ->setTokenType(3)
    ->setAdditionalInfo($additionalInfo, $key)
    ->persist();