Files
Phraseanet/lib/classes/media/Permalink/Adapter.php
2013-01-18 17:47:25 +01:00

405 lines
9.9 KiB
PHP

<?php
/*
* This file is part of Phraseanet
*
* (c) 2005-2012 Alchemy
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
use Alchemy\Phrasea\Application;
/**
*
* @package subdefs
* @license http://opensource.org/licenses/gpl-3.0 GPLv3
* @link www.phraseanet.com
*/
class media_Permalink_Adapter implements media_Permalink_Interface, cache_cacheableInterface
{
/**
*
* @var databox
*/
protected $databox;
/**
*
* @var media_subdef
*/
protected $media_subdef;
/**
*
* @var int
*/
protected $id;
/**
*
* @var string
*/
protected $token;
/**
*
* @var boolean
*/
protected $is_activated;
/**
*
* @var DateTime
*/
protected $created_on;
/**
*
* @var DateTime
*/
protected $last_modified;
/**
*
* @var string
*/
protected $label;
protected $app;
/**
*
* @param databox $databox
* @param media_subdef $media_subdef
* @return media_Permalink_Adapter
*/
protected function __construct(Application $app, databox $databox, media_subdef $media_subdef)
{
$this->app = $app;
$this->databox = $databox;
$this->media_subdef = $media_subdef;
$this->load();
return $this;
}
/**
*
* @return int
*/
public function get_id()
{
return $this->id;
}
/**
*
* @return string
*/
public function get_token()
{
return $this->token;
}
/**
*
* @return boolean
*/
public function get_is_activated()
{
return $this->is_activated;
}
/**
*
* @return DateTime
*/
public function get_created_on()
{
return $this->created_on;
}
/**
*
* @return DateTime
*/
public function get_last_modified()
{
return $this->last_modified;
}
/**
*
* @return string
*/
public function get_label()
{
return $this->label;
}
/**
*
* @return string
*/
public function get_url()
{
return sprintf('%spermalink/v1/%s/%d/%d/%s/%s/'
, $this->app['phraseanet.registry']->get('GV_ServerName')
, $this->get_label()
, $this->media_subdef->get_sbas_id()
, $this->media_subdef->get_record_id()
, $this->get_token()
, $this->media_subdef->get_name()
);
}
/**
*
* @param registryInterface $registry
* @return string
*/
public function get_page(registryInterface $registry)
{
return sprintf('%spermalink/v1/%s/%d/%d/%s/%s/view/'
, $registry->get('GV_ServerName')
, $this->get_label()
, $this->media_subdef->get_sbas_id()
, $this->media_subdef->get_record_id()
, $this->get_token()
, $this->media_subdef->get_name()
);
}
/**
*
* @param string $token
* @return media_Permalink_Adapter
*/
protected function set_token($token)
{
$this->token = $token;
$sql = 'UPDATE permalinks SET token = :token, last_modified = NOW()
WHERE id = :id';
$stmt = $this->databox->get_connection()->prepare($sql);
$stmt->execute(array(':token' => $this->token, ':id' => $this->get_id()));
$stmt->closeCursor();
$this->delete_data_from_cache();
return $this;
}
/**
*
* @param string $is_activated
* @return media_Permalink_Adapter
*/
public function set_is_activated($is_activated)
{
$this->is_activated = ! ! $is_activated;
$sql = 'UPDATE permalinks SET activated = :activated, last_modified = NOW()
WHERE id = :id';
$stmt = $this->databox->get_connection()->prepare($sql);
$params = array(
':activated' => $this->is_activated,
':id' => $this->get_id()
);
$stmt->execute($params);
$stmt->closeCursor();
$this->delete_data_from_cache();
return $this;
}
/**
*
* @param string $label
* @return media_Permalink_Adapter
*/
public function set_label($label)
{
$label = trim($label);
while (strpos($label, ' ') !== false)
$label = str_replace(' ', ' ', $label);
$this->label = $this->app['unicode']->remove_nonazAZ09(
str_replace(' ', '-', $label)
);
$sql = 'UPDATE permalinks SET label = :label, last_modified = NOW()
WHERE id = :id';
$stmt = $this->databox->get_connection()->prepare($sql);
$stmt->execute(array(':label' => $this->label, ':id' => $this->get_id()));
$stmt->closeCursor();
$this->delete_data_from_cache();
return $this;
}
/**
*
* @return media_Permalink_Adapter
*/
protected function load()
{
try {
$datas = $this->get_data_from_cache();
$this->id = $datas['id'];
$this->token = $datas['token'];
$this->is_activated = $datas['is_activated'];
$this->created_on = $datas['created_on'];
$this->last_modified = $datas['last_modified'];
$this->label = $datas['label'];
return $this;
} catch (Exception $e) {
}
$sql = 'SELECT p.id, p.token, p.activated, p.created_on, p.last_modified
, p.label
FROM permalinks p
WHERE p.subdef_id = :subdef_id';
$stmt = $this->databox->get_connection()->prepare($sql);
$stmt->execute(array(':subdef_id' => $this->media_subdef->get_subdef_id()));
$row = $stmt->fetch(PDO::FETCH_ASSOC);
$stmt->closeCursor();
if ( ! $row)
throw new Exception_Media_SubdefNotFound ();
$this->id = (int) $row['id'];
$this->token = $row['token'];
$this->is_activated = ! ! $row['activated'];
$this->created_on = new DateTime($row['created_on']);
$this->last_modified = new DateTime($row['last_modified']);
$this->label = $row['label'];
$datas = array(
'id' => $this->id
, 'token' => $this->token
, 'is_activated' => $this->is_activated
, 'created_on' => $this->created_on
, 'last_modified' => $this->last_modified
, 'label' => $this->label
);
$this->set_data_to_cache($datas);
return $this;
}
/**
*
* @param databox $databox
* @param media_subdef $media_subdef
* @return media_Permalink_Adapter
*/
public static function getPermalink(Application $app, databox $databox, media_subdef $media_subdef)
{
try {
return new self($app, $databox, $media_subdef);
} catch (Exception $e) {
}
return self::create($app, $databox, $media_subdef);
}
/**
*
* @param databox $databox
* @param media_subdef $media_subdef
* @return media_Permalink_Adapter
*/
public static function create(Application $app, databox $databox, media_subdef $media_subdef)
{
$sql = 'INSERT INTO permalinks
(id, subdef_id, token, activated, created_on, last_modified, label)
VALUES (null, :subdef_id, :token, :activated, NOW(), NOW(), "")';
$params = array(
':subdef_id' => $media_subdef->get_subdef_id()
, ':token' => random::generatePassword(8, random::LETTERS_AND_NUMBERS)
, ':activated' => '1'
);
$stmt = $databox->get_connection()->prepare($sql);
$stmt->execute($params);
$stmt->closeCursor();
unset($stmt);
$permalink = self::getPermalink($app, $databox, $media_subdef);
$permalink->set_label(strip_tags($media_subdef->get_record()->get_title()));
return $permalink;
}
/**
*
* @param databox $databox
* @param string $token
* @param int $record_id
* @param string $name
* @return record_adapter
*/
public static function challenge_token(Application $app, databox $databox, $token, $record_id, $name)
{
$sql = 'SELECT p.id
FROM permalinks p, subdef s
WHERE s.record_id = :record_id
AND s.name = :name
AND s.subdef_id = p.subdef_id
AND activated = "1"
AND token = :token';
$params = array(
':record_id' => $record_id
, ':token' => $token
, ':name' => $name
);
$stmt = $databox->get_connection()->prepare($sql);
$stmt->execute($params);
$row = $stmt->fetch(PDO::FETCH_ASSOC);
$stmt->closeCursor();
unset($stmt);
if ($row) {
return new record_adapter($app, $databox->get_sbas_id(), $record_id);
}
return null;
}
public function get_cache_key($option = null)
{
return 'permalink_' . $this->media_subdef->get_subdef_id() . ($option ? '_' . $option : '');
}
public function get_data_from_cache($option = null)
{
return $this->databox->get_data_from_cache($this->get_cache_key($option));
}
public function set_data_to_cache($value, $option = null, $duration = 0)
{
return $this->databox->set_data_to_cache($value, $this->get_cache_key($option), $duration);
}
public function delete_data_from_cache($option = null)
{
return $this->databox->delete_data_from_cache($this->get_cache_key($option));
}
}