Subversion Repositories SmartDukaan

Rev

Blame | Last modification | View Log | RSS feed

<?php
/**
 * OAuth2 Token
 *
 * @package    OAuth2
 * @category   Token
 * @author     Phil Sturgeon
 * @copyright  (c) 2011 HappyNinjas Ltd
 */

class OAuth2_Token_Authorize extends OAuth2_Token
{
        /**
         * @var  string  code
         */
        protected $code;

        /**
         * @var  string  redirect_uri
         */
        protected $redirect_uri;

        /**
         * Sets the token, expiry, etc values.
         *
         * @param   array   token options
         * @return  void
         */
        
        public function __construct(array $options)
        {
                if ( ! isset($options['code']))
            {
            throw new Exception('Required option not passed: code');
        }

        elseif ( ! isset($options['redirect_uri']))
        {
            throw new Exception('Required option not passed: redirect_uri');
        }
                
                $this->code = $options['code'];
                $this->redirect_uri = $options['redirect_uri'];
        }

        /**
         * Returns the token key.
         *
         * @return  string
         */
        public function __toString()
        {
                return (string) $this->code;
        }

} // End OAuth2_Token_Access