169 lines
4.2 KiB
PHP
169 lines
4.2 KiB
PHP
<?php
|
|
/**
|
|
*
|
|
* @package Board3 Portal v2.3
|
|
* @copyright (c) 2023 Board3 Group ( www.board3.de )
|
|
* @license GNU General Public License, version 2 (GPL-2.0-only)
|
|
*
|
|
*/
|
|
|
|
namespace board3\portal\modules;
|
|
|
|
/**
|
|
* @package Friends
|
|
*/
|
|
class friends extends module_base
|
|
{
|
|
/**
|
|
* Allowed columns: Just sum up your options (Exp: left + right = 10)
|
|
* top 1
|
|
* left 2
|
|
* center 4
|
|
* right 8
|
|
* bottom 16
|
|
*/
|
|
public $columns = 10;
|
|
|
|
/**
|
|
* Default modulename
|
|
*/
|
|
public $name = 'FRIENDS';
|
|
|
|
/**
|
|
* Default module-image:
|
|
* file must be in "{T_THEME_PATH}/images/portal/"
|
|
*/
|
|
public $image_src = 'portal_friends.png';
|
|
|
|
/**
|
|
* module-language file
|
|
* file must be in "language/{$user->lang}/mods/portal/"
|
|
*/
|
|
public $language = 'portal_friends_module';
|
|
|
|
/** @var \phpbb\auth\auth */
|
|
protected $auth;
|
|
|
|
/** @var \phpbb\config\config */
|
|
protected $config;
|
|
|
|
/** @var \phpbb\db\driver */
|
|
protected $db;
|
|
|
|
/** @var \phpbb\template */
|
|
protected $template;
|
|
|
|
/** @var \phpbb\user */
|
|
protected $user;
|
|
|
|
/**
|
|
* Construct a friends object
|
|
*
|
|
* @param \phpbb\auth\auth $auth phpBB auth service
|
|
* @param \phpbb\config\config $config phpBB config
|
|
* @param \phpbb\db\driver $db phpBB db driver
|
|
* @param \phpbb\template $template phpBB template
|
|
* @param \phpbb\user $user phpBB user object
|
|
*/
|
|
public function __construct($auth, $config, $db, $template, $user)
|
|
{
|
|
$this->auth = $auth;
|
|
$this->config = $config;
|
|
$this->db = $db;
|
|
$this->template = $template;
|
|
$this->user = $user;
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function get_template_side($module_id)
|
|
{
|
|
$s_display_friends = false;
|
|
|
|
// Output listing of friends online
|
|
$update_time = $this->config['load_online_time'] * 60;
|
|
|
|
$sql = $this->db->sql_build_query('SELECT_DISTINCT', array(
|
|
'SELECT' => 'u.user_id, u.username, u.username_clean, u.user_colour, u.user_allow_viewonline, MAX(s.session_time) as online_time, MIN(s.session_viewonline) AS viewonline',
|
|
'FROM' => array(
|
|
USERS_TABLE => 'u',
|
|
ZEBRA_TABLE => 'z'
|
|
),
|
|
|
|
'LEFT_JOIN' => array(
|
|
array(
|
|
'FROM' => array(SESSIONS_TABLE => 's'),
|
|
'ON' => 's.session_user_id = z.zebra_id'
|
|
)
|
|
),
|
|
|
|
'WHERE' => 'z.user_id = ' . (int) $this->user->data['user_id'] . '
|
|
AND z.friend = 1
|
|
AND u.user_id = z.zebra_id',
|
|
'GROUP_BY' => 'z.zebra_id, u.user_id, u.username, u.username_clean, u.user_allow_viewonline, u.user_colour',
|
|
'ORDER_BY' => 'u.username_clean ASC',
|
|
));
|
|
|
|
$result = $this->db->sql_query_limit($sql, $this->config['board3_max_online_friends_' . $module_id]);
|
|
|
|
while ($row = $this->db->sql_fetchrow($result))
|
|
{
|
|
$which = (time() - $update_time < $row['online_time'] && ($row['viewonline'] || $this->auth->acl_get('u_viewonline'))) ? 'online' : 'offline';
|
|
$s_display_friends = ($row['user_id']) ? true : false;
|
|
|
|
$this->template->assign_block_vars("b3p_friends_{$which}", array(
|
|
'USER_ID' => $row['user_id'],
|
|
'U_PROFILE' => get_username_string('profile', $row['user_id'], $row['username'], $row['user_colour']),
|
|
'USER_COLOUR' => get_username_string('colour', $row['user_id'], $row['username'], $row['user_colour']),
|
|
'USERNAME' => get_username_string('username', $row['user_id'], $row['username'], $row['user_colour']),
|
|
'USERNAME_FULL' => get_username_string('full', $row['user_id'], $row['username'], $row['user_colour']))
|
|
);
|
|
}
|
|
$this->db->sql_freeresult($result);
|
|
|
|
// Assign specific vars
|
|
$this->template->assign_vars(array(
|
|
'S_DISPLAY_FRIENDS' => $s_display_friends,
|
|
));
|
|
|
|
return 'friends_side.html';
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function get_template_acp($module_id)
|
|
{
|
|
return array(
|
|
'title' => 'ACP_PORTAL_FRIENDS_SETTINGS',
|
|
'vars' => array(
|
|
'legend1' => 'ACP_PORTAL_FRIENDS_SETTINGS',
|
|
'board3_max_online_friends_' . $module_id => array('lang' => 'PORTAL_MAX_ONLINE_FRIENDS', 'validate' => 'int', 'type' => 'number:1:999', 'explain' => true),
|
|
)
|
|
);
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function install($module_id)
|
|
{
|
|
$this->config->set('board3_max_online_friends_' . $module_id, 8);
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function uninstall($module_id, $db)
|
|
{
|
|
$del_config = array(
|
|
'board3_max_online_friends_' . $module_id,
|
|
);
|
|
$sql = 'DELETE FROM ' . CONFIG_TABLE . '
|
|
WHERE ' . $db->sql_in_set('config_name', $del_config);
|
|
return $db->sql_query($sql);
|
|
}
|
|
}
|