2012-09-08 10:49:58 -05:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @package notifications
|
|
|
|
* @copyright (c) 2012 phpBB Group
|
|
|
|
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2012-09-08 11:40:02 -05:00
|
|
|
use Symfony\Component\DependencyInjection\ContainerBuilder;
|
|
|
|
|
2012-09-08 10:49:58 -05:00
|
|
|
/**
|
|
|
|
* @ignore
|
|
|
|
*/
|
|
|
|
if (!defined('IN_PHPBB'))
|
|
|
|
{
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Notifications service class
|
|
|
|
* @package notifications
|
|
|
|
*/
|
|
|
|
class phpbb_notifications_service
|
|
|
|
{
|
|
|
|
protected $phpbb_container;
|
|
|
|
protected $db;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Users loaded from the DB
|
|
|
|
*
|
|
|
|
* @var array Array of user data that we've loaded from the DB
|
|
|
|
*/
|
|
|
|
protected $users;
|
|
|
|
|
2012-09-08 11:40:02 -05:00
|
|
|
public function __construct(ContainerBuilder $phpbb_container)
|
2012-09-08 10:49:58 -05:00
|
|
|
{
|
|
|
|
$this->phpbb_container = $phpbb_container;
|
|
|
|
|
|
|
|
// Some common things we're going to use
|
|
|
|
$this->db = $phpbb_container->get('dbal.conn');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Load the user's notifications
|
|
|
|
*
|
|
|
|
* @param array $options Optional options to control what notifications are loaded
|
2012-09-08 11:40:02 -05:00
|
|
|
* user_id User id to load notifications for (Default: $user->data['user_id'])
|
2012-09-08 17:28:13 -05:00
|
|
|
* order_by Order by (Default: time)
|
|
|
|
* order_dir Order direction (Default: DESC)
|
2012-09-08 11:40:02 -05:00
|
|
|
* limit Number of notifications to load (Default: 5)
|
|
|
|
* start Notifications offset (Default: 0)
|
2012-09-08 10:49:58 -05:00
|
|
|
*/
|
|
|
|
public function load_notifications($options = array())
|
|
|
|
{
|
|
|
|
$user = $this->phpbb_container->get('user');
|
|
|
|
|
|
|
|
// Merge default options
|
|
|
|
$options = array_merge(array(
|
|
|
|
'user_id' => $user->data['user_id'],
|
|
|
|
'limit' => 5,
|
|
|
|
'start' => 0,
|
2012-09-08 17:28:13 -05:00
|
|
|
'order_by' => 'time',
|
|
|
|
'order_dir' => 'DESC',
|
2012-09-08 10:49:58 -05:00
|
|
|
), $options);
|
|
|
|
|
|
|
|
$notifications = $user_ids = array();
|
|
|
|
|
|
|
|
$sql = 'SELECT * FROM ' . NOTIFICATIONS_TABLE . '
|
2012-09-08 17:28:13 -05:00
|
|
|
WHERE user_id = ' . (int) $options['user_id'] . '
|
|
|
|
ORDER BY ' . $this->db->sql_escape($options['order_by']) . ' ' . $this->db->sql_escape($options['order_dir']);
|
2012-09-08 10:49:58 -05:00
|
|
|
$result = $this->db->sql_query_limit($sql, $options['limit'], $options['start']);
|
|
|
|
|
|
|
|
while ($row = $this->db->sql_fetchrow($result))
|
|
|
|
{
|
2012-09-08 12:28:58 -05:00
|
|
|
$item_type_class_name = $this->get_item_type_class_name($row['item_type'], true);
|
2012-09-08 10:49:58 -05:00
|
|
|
|
2012-09-08 12:28:58 -05:00
|
|
|
$notification = new $item_type_class_name($this->phpbb_container, $row);
|
2012-09-08 10:49:58 -05:00
|
|
|
$notification->users($this->users);
|
|
|
|
|
|
|
|
$user_ids = array_merge($user_ids, $notification->users_to_query());
|
|
|
|
|
2012-09-08 12:05:55 -05:00
|
|
|
$notifications[] = $notification;
|
2012-09-08 10:49:58 -05:00
|
|
|
}
|
|
|
|
$this->db->sql_freeresult($result);
|
|
|
|
|
|
|
|
// Load the users
|
|
|
|
$user_ids = array_unique($user_ids);
|
|
|
|
|
|
|
|
// @todo do not load users we already have in $this->users
|
|
|
|
|
|
|
|
if (sizeof($user_ids))
|
|
|
|
{
|
|
|
|
// @todo do not select everything
|
|
|
|
$sql = 'SELECT * FROM ' . USERS_TABLE . '
|
|
|
|
WHERE ' . $this->db->sql_in_set('user_id', $user_ids);
|
|
|
|
$result = $this->db->sql_query($sql);
|
|
|
|
|
|
|
|
while ($row = $this->db->sql_fetchrow($result))
|
|
|
|
{
|
|
|
|
$this->users[$row['user_id']] = $row;
|
|
|
|
}
|
|
|
|
$this->db->sql_freeresult($result);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $notifications;
|
|
|
|
}
|
|
|
|
|
2012-09-08 11:40:02 -05:00
|
|
|
/**
|
|
|
|
* Add a notification
|
|
|
|
*
|
2012-09-08 12:28:58 -05:00
|
|
|
* @param string $item_type Type identifier
|
|
|
|
* @param int $item_id Identifier within the type
|
2012-09-08 11:40:02 -05:00
|
|
|
* @param array $data Data specific for this type that will be inserted
|
|
|
|
*/
|
2012-09-08 12:28:58 -05:00
|
|
|
public function add_notifications($item_type, $data)
|
2012-09-08 10:49:58 -05:00
|
|
|
{
|
2012-09-08 12:28:58 -05:00
|
|
|
$item_type_class_name = $this->get_item_type_class_name($item_type);
|
|
|
|
|
|
|
|
$item_id = $item_type_class_name::get_item_id($data);
|
|
|
|
|
|
|
|
// Update any existing notifications for this item
|
|
|
|
$this->update_notifications($item_type, $item_id, $data);
|
2012-09-08 10:49:58 -05:00
|
|
|
|
2012-09-08 11:40:02 -05:00
|
|
|
$notify_users = array();
|
|
|
|
$notification_objects = $notification_methods = array();
|
|
|
|
$new_rows = array();
|
2012-09-08 10:49:58 -05:00
|
|
|
|
2012-09-08 13:09:34 -05:00
|
|
|
/**
|
|
|
|
* Desired notifications
|
|
|
|
* unique by (type, type_id, user_id, method)
|
|
|
|
* if multiple methods are desired, multiple rows will exist.
|
|
|
|
*
|
|
|
|
* method of "none" will over-ride any other options
|
|
|
|
*
|
|
|
|
* item_type
|
|
|
|
* item_id
|
|
|
|
* user_id
|
|
|
|
* method
|
|
|
|
* none (will never receive notifications)
|
|
|
|
* standard (listed in notifications window
|
|
|
|
* popup?
|
|
|
|
* email
|
|
|
|
* jabber
|
|
|
|
* sms?
|
|
|
|
*/
|
|
|
|
|
2012-09-08 10:49:58 -05:00
|
|
|
// find out which users want to receive this type of notification
|
2012-09-08 16:02:32 -05:00
|
|
|
$notify_users = $item_type_class_name::find_users_for_notification($this->phpbb_container, $data);
|
2012-09-08 10:49:58 -05:00
|
|
|
|
2012-09-08 12:28:58 -05:00
|
|
|
// Make sure not to send new notifications to users who've already been notified about this item
|
|
|
|
// This may happen when an item was added, but now new users are able to see the item
|
|
|
|
$sql = 'SELECT user_id FROM ' . NOTIFICATIONS_TABLE . "
|
|
|
|
WHERE item_type = '" . $this->db->sql_escape($item_type) . "'
|
|
|
|
AND item_id = " . (int) $item_id;
|
|
|
|
$result = $this->db->sql_query($sql);
|
|
|
|
while ($row = $this->db->sql_fetchrow($result))
|
|
|
|
{
|
|
|
|
unset($notify_users[$row['user_id']]);
|
|
|
|
}
|
|
|
|
$this->db->sql_freeresult($result);
|
|
|
|
|
2012-09-08 16:02:32 -05:00
|
|
|
if (!sizeof($notify_users))
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-09-08 11:40:02 -05:00
|
|
|
// Go through each user so we can insert a row in the DB and then notify them by their desired means
|
|
|
|
foreach ($notify_users as $user => $methods)
|
|
|
|
{
|
2012-09-08 12:28:58 -05:00
|
|
|
$notification = new $item_type_class_name($this->phpbb_container);
|
2012-09-08 10:49:58 -05:00
|
|
|
|
2012-09-08 11:40:02 -05:00
|
|
|
$notification->user_id = (int) $user;
|
2012-09-08 10:49:58 -05:00
|
|
|
|
|
|
|
$new_rows[] = $notification->create_insert_array($data);
|
|
|
|
|
2012-09-08 11:40:02 -05:00
|
|
|
foreach ($methods as $method)
|
2012-09-08 10:49:58 -05:00
|
|
|
{
|
2012-09-08 11:40:02 -05:00
|
|
|
// setup the notification methods and add the notification to the queue
|
2012-09-08 16:12:20 -05:00
|
|
|
if ($method)
|
2012-09-08 10:49:58 -05:00
|
|
|
{
|
2012-09-08 16:12:20 -05:00
|
|
|
if (!isset($notification_methods[$method]))
|
2012-09-08 11:40:02 -05:00
|
|
|
{
|
2012-09-08 16:12:20 -05:00
|
|
|
$method_class_name = 'phpbb_notifications_method_' . $method;
|
|
|
|
$notification_methods[$method] = new $method_class_name($this->phpbb_container);
|
2012-09-08 11:40:02 -05:00
|
|
|
}
|
2012-09-08 16:12:20 -05:00
|
|
|
$notification_methods[$method]->add_to_queue($notification);
|
2012-09-08 11:40:02 -05:00
|
|
|
}
|
2012-09-08 10:49:58 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// insert into the db
|
|
|
|
$this->db->sql_multi_insert(NOTIFICATIONS_TABLE, $new_rows);
|
|
|
|
|
|
|
|
// run the queue for each method to send notifications
|
2012-09-08 11:40:02 -05:00
|
|
|
foreach ($notification_methods as $method)
|
2012-09-08 10:49:58 -05:00
|
|
|
{
|
|
|
|
$method->run_queue();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-08 11:40:02 -05:00
|
|
|
/**
|
|
|
|
* Update a notification
|
|
|
|
*
|
2012-09-08 12:28:58 -05:00
|
|
|
* @param string $item_type Type identifier
|
|
|
|
* @param int $item_id Identifier within the type
|
2012-09-08 11:40:02 -05:00
|
|
|
* @param array $data Data specific for this type that will be updated
|
|
|
|
*/
|
2012-09-08 12:28:58 -05:00
|
|
|
public function update_notifications($item_type, $item_id, $data)
|
2012-09-08 10:49:58 -05:00
|
|
|
{
|
2012-09-08 12:28:58 -05:00
|
|
|
$item_type_class_name = $this->get_item_type_class_name($item_type);
|
2012-09-08 10:49:58 -05:00
|
|
|
|
2012-09-08 12:28:58 -05:00
|
|
|
$notification = new $item_type_class_name($this->phpbb_container);
|
2012-09-08 11:40:02 -05:00
|
|
|
$update_array = $notification->create_update_array($data);
|
2012-09-08 10:49:58 -05:00
|
|
|
|
|
|
|
$sql = 'UPDATE ' . NOTIFICATIONS_TABLE . '
|
2012-09-08 11:40:02 -05:00
|
|
|
SET ' . $this->db->sql_build_array('UPDATE', $update_array) . "
|
2012-09-08 12:28:58 -05:00
|
|
|
WHERE item_type = '" . $this->db->sql_escape($item_type) . "'
|
|
|
|
AND item_id = " . (int) $item_id;
|
|
|
|
$this->db->sql_query($sql);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Delete a notification
|
|
|
|
*
|
|
|
|
* @param string $item_type Type identifier
|
|
|
|
* @param int $item_id Identifier within the type
|
|
|
|
* @param array $data Data specific for this type that will be updated
|
|
|
|
*/
|
|
|
|
public function delete_notifications($item_type, $item_id)
|
|
|
|
{
|
|
|
|
$sql = 'DELETE FROM ' . NOTIFICATIONS_TABLE . "
|
|
|
|
WHERE item_type = '" . $this->db->sql_escape($item_type) . "'
|
|
|
|
AND item_id = " . (int) $item_id;
|
2012-09-08 11:40:02 -05:00
|
|
|
$this->db->sql_query($sql);
|
|
|
|
}
|
2012-09-08 10:49:58 -05:00
|
|
|
|
2012-09-08 11:40:02 -05:00
|
|
|
/**
|
2012-09-08 12:28:58 -05:00
|
|
|
* Helper to get the notifications item type class name and clean it if unsafe
|
2012-09-08 11:40:02 -05:00
|
|
|
*/
|
2012-09-08 12:28:58 -05:00
|
|
|
private function get_item_type_class_name(&$item_type, $safe = false)
|
2012-09-08 11:40:02 -05:00
|
|
|
{
|
|
|
|
if (!$safe)
|
2012-09-08 10:49:58 -05:00
|
|
|
{
|
2012-09-08 12:28:58 -05:00
|
|
|
$item_type = preg_replace('#[^a-z]#', '', $item_type);
|
2012-09-08 10:49:58 -05:00
|
|
|
}
|
2012-09-08 11:40:02 -05:00
|
|
|
|
2012-09-08 12:28:58 -05:00
|
|
|
return 'phpbb_notifications_type_' . $item_type;
|
2012-09-08 10:49:58 -05:00
|
|
|
}
|
|
|
|
}
|