removed token files

This commit is contained in:
Steffen Vogel 2010-12-12 14:37:29 +01:00
parent 043b390fd9
commit b0f7c14c82
2 changed files with 0 additions and 143 deletions

View file

@ -1,47 +0,0 @@
<?php
namespace Volkszaehler\Model\Proxy;
/**
* THIS CLASS WAS GENERATED BY THE DOCTRINE ORM. DO NOT EDIT THIS FILE.
*/
class VolkszaehlerModelTokenProxy extends \Volkszaehler\Model\Token implements \Doctrine\ORM\Proxy\Proxy
{
private $_entityPersister;
private $_identifier;
public $__isInitialized__ = false;
public function __construct($entityPersister, $identifier)
{
$this->_entityPersister = $entityPersister;
$this->_identifier = $identifier;
}
private function _load()
{
if (!$this->__isInitialized__ && $this->_entityPersister) {
$this->__isInitialized__ = true;
if ($this->_entityPersister->load($this->_identifier, $this) === null) {
throw new \Doctrine\ORM\EntityNotFoundException();
}
unset($this->_entityPersister, $this->_identifier);
}
}
public function __toString()
{
$this->_load();
return parent::__toString();
}
public function getToken()
{
$this->_load();
return parent::getToken();
}
public function __sleep()
{
return array('__isInitialized__', 'id', 'token', 'valid', 'entity');
}
}

View file

@ -1,96 +0,0 @@
<?php
/**
* @copyright Copyright (c) 2010, The volkszaehler.org project
* @package default
* @license http://www.opensource.org/licenses/gpl-license.php GNU Public License
*/
/*
* This file is part of volkzaehler.org
*
* volkzaehler.org is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* any later version.
*
* volkzaehler.org is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with volkszaehler.org. If not, see <http://www.gnu.org/licenses/>.
*/
namespace Volkszaehler\Model;
use Volkszaehler\Util;
/**
* Token entity
*
* @author Steffen Vogel <info@steffenvogel.de>
* @package default
* @todo this is a draft! has to be discussed and implemented
*
* @Entity
* @Table(name="tokens")
*/
class Token {
/**
* @Id
* @Column(type="integer", nullable=false)
* @GeneratedValue(strategy="AUTO")
*
* @todo wait until DDC-117 is fixed (PKs on FKs)
*/
protected $id;
/**
* @Column(type="string", nullable=false, unique=true)
*/
protected $token;
/**
* var integer timestamp until token is valid
*
* @Column(type="bigint")
* @todo to be implemented
*/
protected $valid;
/**
* @ManyToOne(targetEntity="Entity", inversedBy="tokens")
*/
protected $entity;
const LENGTH = 10;
protected static $chars = array(
'0', '1', '2', '3', '4', '5', '6', '7', '8', '9',
'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'v', 'u', 'w', 'x', 'y', 'z',
'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'V', 'U', 'W', 'X', 'Y', 'Z'
);
/**
* Constructor
*
* @param integer $length of the token
*/
public function __construct() {
$this->token = self::generate();
}
protected static function generate($length = Token::LENGTH) {
return Util\Random::getString(self::$chars, $length);
}
public function __toString() {
return $this->getToken();
}
public function getToken() {
return $this->token;
}
}
?>