Files
Phraseanet/lib/classes/eventsmanager/notify/validationreminder.class.php
2012-02-17 16:08:00 +01:00

248 lines
5.5 KiB
PHP

<?php
/*
* This file is part of Phraseanet
*
* (c) 2005-2010 Alchemy
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/**
*
*
* @license http://opensource.org/licenses/gpl-3.0 GPLv3
* @link www.phraseanet.com
*/
class eventsmanager_notify_validationreminder extends eventsmanager_notifyAbstract
{
/**
*
* @var string
*/
public $events = array('__VALIDATION_REMINDER__');
/**
*
* @return notify_validationreminder
*/
function __construct(appbox &$appbox, \Alchemy\Phrasea\Core $core, eventsmanager_broker &$broker)
{
$this->group = _('Validation');
parent::__construct($appbox, $core, $broker);
return $this;
}
/**
*
* @return string
*/
public function icon_url()
{
return '/skins/icons/push16.png';
}
/**
*
* @param string $event
* @param Array $params
* @param mixed content $object
* @return boolean
*/
public function fire($event, $params, &$object)
{
$default = array(
'from' => ''
, 'to' => ''
, 'ssel_id' => ''
, 'url' => ''
);
$params = array_merge($default, $params);
$dom_xml = new DOMDocument('1.0', 'UTF-8');
$dom_xml->preserveWhiteSpace = false;
$dom_xml->formatOutput = true;
$root = $dom_xml->createElement('datas');
$from = $dom_xml->createElement('from');
$to = $dom_xml->createElement('to');
$ssel_id = $dom_xml->createElement('ssel_id');
$from->appendChild($dom_xml->createTextNode($params['from']));
$to->appendChild($dom_xml->createTextNode($params['to']));
$ssel_id->appendChild($dom_xml->createTextNode($params['ssel_id']));
$root->appendChild($from);
$root->appendChild($to);
$root->appendChild($ssel_id);
$dom_xml->appendChild($root);
$datas = $dom_xml->saveXml();
$mailed = false;
try
{
$user_from = User_Adapter::getInstance($params['from'], $this->appbox);
$user_to = User_Adapter::getInstance($params['to'], $this->appbox);
}
catch (Exception $e)
{
return false;
}
$send_notif = ($this->get_prefs(__CLASS__, $params['to']) != '0');
if ($send_notif)
{
$to = array(
'email' => $user_to->get_email(),
'name' => $user_to->get_display_name()
);
$from = array(
'email' => $user_from->get_email(),
'name' => $user_from->get_display_name()
);
$url = $params['url'];
if (self::mail($to, $from, $url))
$mailed = true;
}
try
{
$sql = 'UPDATE validate SET last_reminder=NOW() WHERE id = :validate_id';
$stmt = $this->appbox->get_connection()->prepare($sql);
$stmt->execute(array(':validate_id' => $params['validate_id']));
$stmt->closeCursor();
}
catch (Exception $e)
{
}
return $this->broker->notify($params['to'], __CLASS__, $datas, $mailed);
}
/**
*
* @param string $datas
* @param boolean $unread
* @return Array
*/
public function datas($datas, $unread)
{
$sx = simplexml_load_string($datas);
$from = (string) $sx->from;
$ssel_id = (string) $sx->ssel_id;
try
{
$registered_user = User_Adapter::getInstance($from, $this->appbox);
}
catch (Exception $e)
{
return array();
}
$sender = User_Adapter::getInstance($from, $this->appbox)->get_display_name();
try
{
$em = $this->core->getEntityManager();
$repository = $em->getRepository('\Entities\Basket');
$basket = $repository->findUserBasket($ssel_id, $this->core->getAuthenticatedUser(), false);
$basket_name = trim($basket->getName()) ? : _('Une selection');
}
catch (Exception $e)
{
$basket_name = _('Une selection');
}
$bask_link = '<a href="#" onclick="openPreview(\'BASK\',1,\''
. (string) $sx->ssel_id . '\');return false;">'
. $basket_name . '</a>';
$ret = array(
'text' => sprintf(
_('Rappel : Il vous reste %1$d jours pour valider %2$s de %3$s'), $this->registry->get('GV_validation_reminder'), $bask_link, $sender
)
, 'class' => ($unread == 1 ? 'reload_baskets' : '')
);
return $ret;
}
/**
*
* @return string
*/
public function get_name()
{
return _('Validation');
}
/**
*
* @return string
*/
public function get_description()
{
return _('Rappel pour une demande de validation');
}
/**
*
* @param Array $to
* @param Array $from
* @param string $url
* @return boolean
*/
function mail($to, $from, $url)
{
$subject = _('push::mail:: Rappel de demande de validation de documents');
$body = "<div>"
. sprintf(
_('Il ne vous reste plus que %d jours pour terminer votre validation'), $this->registry->get('GV_validation_reminder'))
. "</div>\n";
if (trim($url) != '')
{
$body = '<div>'
. sprintf(
_('Le lien suivant vous propose de valider une selection faite par %s'), $from['name']
) . "</div>\n";
$body .= "<br/>\n";
$body .= '<div><a href="' . $url
. '" target="_blank">' . $url . "</a></div>\n";
}
$body .= "<br/>\n<br/>\n<br/>\n"
. _('push::atention: ce lien est unique et son contenu confidentiel, ne divulguez pas');
return mail::send_mail($subject, $body, $to, $from, array());
}
/**
*
* @return string
*/
function is_available()
{
return true;
}
}