core23/FacebookBundle

View on GitHub
src/Session/Session.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

declare(strict_types=1);

/*
 * (c) Christian Gripp <mail@core23.de>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace Core23\FacebookBundle\Session;

use DateTime;
use Facebook\Authentication\AccessToken;
use Facebook\GraphNodes\GraphUser;

final class Session implements SessionInterface
{
    /**
     * @var string
     */
    private $facebookId;

    /**
     * @var string
     */
    private $name;

    /**
     * @var string
     */
    private $token;

    /**
     * @var DateTime|null
     */
    private $expireDate;

    public function __construct(string $facebookId, string $name, string $token, ?DateTime $expireDate)
    {
        $this->facebookId = $facebookId;
        $this->name       = $name;
        $this->token      = $token;
        $this->expireDate = $expireDate;
    }

    public function getFacebookId(): string
    {
        return $this->facebookId;
    }

    public function getName(): string
    {
        return $this->name;
    }

    public function getToken(): string
    {
        return $this->token;
    }

    public function getExpireDate(): ?DateTime
    {
        return $this->expireDate;
    }

    public static function fromFacebookApi(AccessToken $token, GraphUser $graphUser): SessionInterface
    {
        return new self($graphUser->getId() ?: '', $graphUser->getName() ?: '', $token->getValue(), $token->getExpiresAt());
    }
}