mirror of
https://github.com/torrentpier/torrentpier.git
synced 2024-11-21 04:50:19 -08:00
fad09cf0eb
* Updated copyright year * Updated
55 lines
1.7 KiB
PHP
55 lines
1.7 KiB
PHP
<?php
|
||
/**
|
||
* TorrentPier – Bull-powered BitTorrent tracker engine
|
||
*
|
||
* @copyright Copyright (c) 2005-2024 TorrentPier (https://torrentpier.com)
|
||
* @link https://github.com/torrentpier/torrentpier for the canonical source repository
|
||
* @license https://github.com/torrentpier/torrentpier/blob/master/LICENSE MIT License
|
||
*/
|
||
|
||
if (!defined('IN_AJAX')) {
|
||
die(basename(__FILE__));
|
||
}
|
||
|
||
global $bb_cfg, $userdata, $lang;
|
||
|
||
if (!$group_id = (int)$this->request['group_id'] or !$group_info = \TorrentPier\Legacy\Group::get_group_data($group_id)) {
|
||
$this->ajax_die($lang['NO_GROUP_ID_SPECIFIED']);
|
||
}
|
||
if (!$mode = (string)$this->request['mode']) {
|
||
$this->ajax_die('No mode specified');
|
||
}
|
||
|
||
$value = $this->request['value'] = (string)(isset($this->request['value'])) ? $this->request['value'] : 0;
|
||
|
||
if (!IS_ADMIN && $userdata['user_id'] != $group_info['group_moderator']) {
|
||
$this->ajax_die($lang['ONLY_FOR_MOD']);
|
||
}
|
||
|
||
switch ($mode) {
|
||
case 'group_name':
|
||
case 'group_signature':
|
||
case 'group_description':
|
||
$value = htmlCHR($value, false, ENT_NOQUOTES);
|
||
$this->response['new_value'] = $value;
|
||
break;
|
||
|
||
case 'release_group':
|
||
case 'group_type':
|
||
$this->response['new_value'] = $value;
|
||
break;
|
||
|
||
case 'delete_avatar':
|
||
delete_avatar(GROUP_AVATAR_MASK . $group_id, $group_info['avatar_ext_id']);
|
||
$value = 0;
|
||
$mode = 'avatar_ext_id';
|
||
$this->response['remove_avatar'] = get_avatar(GROUP_AVATAR_MASK . $group_id, $value);
|
||
break;
|
||
|
||
default:
|
||
$this->ajax_die('Unknown mode');
|
||
}
|
||
|
||
$value_sql = DB()->escape($value, true);
|
||
DB()->query("UPDATE " . BB_GROUPS . " SET $mode = $value_sql WHERE group_id = $group_id");
|