123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303 |
- <?php
- /**
- * [Discuz!] (C)2001-2099 Comsenz Inc.
- * This is NOT a freeware, use is subject to license terms
- *
- * $Id: modcp_member.php 33701 2013-08-06 05:04:36Z nemohou $
- */
- if(!defined('IN_DISCUZ') || !defined('IN_MODCP')) {
- exit('Access Denied');
- }
- if($op == 'edit') {
- $_GET['uid'] = isset($_GET['uid']) ? intval($_GET['uid']) : '';
- $_GET['username'] = isset($_GET['username']) ? trim($_GET['username']) : '';
- $member = loadmember($_GET['uid'], $_GET['username'], $error);
- $usernameenc = $member ? rawurlencode($member['username']) : '';
- if($member && submitcheck('editsubmit') && !$error) {
- if($_G['group']['allowedituser']) {
- if(!empty($_GET['clearavatar'])) {
- loaducenter();
- uc_user_deleteavatar($member['uid']);
- }
- require_once libfile('function/discuzcode');
- if($_GET['bionew']) {
- $biohtmlnew = nl2br(dhtmlspecialchars($_GET['bionew']));
- } else {
- $biohtmlnew = '';
- }
- if($_GET['signaturenew']) {
- $signaturenew = censor($_GET['signaturenew']);
- $sightmlnew = discuzcode($signaturenew, 1, 0, 0, 0, $member['allowsigbbcode'], $member['allowsigimgcode'], 0, 0, 1);
- } else {
- $sightmlnew = $signaturenew = '';
- }
- !empty($_GET['locationnew']) && $locationnew = dhtmlspecialchars($_GET['locationnew']);
- C::t('common_member_profile')->update($member['uid'], array('bio' => $biohtmlnew));
- C::t('common_member_field_forum')->update($member['uid'], array('sightml' => $sightmlnew));
- }
- acpmsg('members_edit_succeed', "$cpscript?mod=modcp&action=$_GET[action]&op=$op");
- } elseif($member) {
- require_once libfile('function/editor');
- $bio = explode("\t\t\t", $member['bio']);
- $member['bio'] = html2bbcode($bio[0]);
- $member['biotrade'] = !empty($bio[1]) ? html2bbcode($bio[1]) : '';
- $member['signature'] = html2bbcode($member['sightml']);
- $username = !empty($_GET['username']) ? $member['username'] : '';
- }
- } elseif($op == 'ban' && ($_G['group']['allowbanuser'] || $_G['group']['allowbanvisituser'])) {
- $_GET['uid'] = isset($_GET['uid']) ? intval($_GET['uid']) : '';
- $_GET['username'] = isset($_GET['username']) ? trim($_GET['username']) : '';
- $member = loadmember($_GET['uid'], $_GET['username'], $error);
- $usernameenc = $member ? rawurlencode($member['username']) : '';
- include_once libfile('function/member');
- $clist = crime('getactionlist', $member['uid']);
- if(($member['type'] == 'system' && in_array($member['groupid'], array(1, 2, 3, 6, 7, 8))) || $member['type'] == 'special') {
- acpmsg('modcp_member_ban_illegal');
- }
- if($member && submitcheck('bansubmit') && !$error) {
- $setarr = array();
- $reason = dhtmlspecialchars(trim($_GET['reason']));
- if(!$reason && ($_G['group']['reasonpm'] == 1 || $_G['group']['reasonpm'] == 3)) {
- acpmsg('admin_reason_invalid');
- }
- if($_GET['bannew'] == 4 || $_GET['bannew'] == 5) {
- if($_GET['bannew'] == 4 && !$_G['group']['allowbanuser'] || $_GET['bannew'] == 5 && !$_G['group']['allowbanvisituser']) {
- acpmsg('admin_nopermission');
- }
- $groupidnew = $_GET['bannew'];
- $banexpirynew = !empty($_GET['banexpirynew']) ? TIMESTAMP + $_GET['banexpirynew'] * 86400 : 0;
- $banexpirynew = $banexpirynew > TIMESTAMP ? $banexpirynew : 0;
- if($banexpirynew) {
- $member['groupterms'] = $member['groupterms'] && is_array($member['groupterms']) ? $member['groupterms'] : array();
- $member['groupterms']['main'] = array('time' => $banexpirynew, 'adminid' => $member['adminid'], 'groupid' => $member['groupid']);
- $member['groupterms']['ext'][$groupidnew] = $banexpirynew;
- $setarr['groupexpiry'] = groupexpiry($member['groupterms']);
- } else {
- $setarr['groupexpiry'] = 0;
- }
- if(!$member['adminid']) {
- $member_status = C::t('common_member_status')->fetch($member['uid']);
- if($member_status) {
- captcha::report($member_status['lastip']);
- }
- }
- $adminidnew = -1;
- C::t('forum_postcomment')->delete_by_authorid($member['uid'], false, true);
- } elseif($member['groupid'] == 4 || $member['groupid'] == 5) {
- if(!empty($member['groupterms']['main']['groupid'])) {
- $groupidnew = $member['groupterms']['main']['groupid'];
- $adminidnew = $member['groupterms']['main']['adminid'];
- unset($member['groupterms']['main']);
- unset($member['groupterms']['ext'][$member['groupid']]);
- $setarr['groupexpiry'] = groupexpiry($member['groupterms']);
- } else {
- $usergroup = C::t('common_usergroup')->fetch_by_credits($member['credits']);
- $groupidnew = $usergroup['groupid'];
- $adminidnew = 0;
- }
- } else {
- $groupidnew = $member['groupid'];
- $adminidnew = $member['adminid'];
- }
- $setarr['adminid'] = $adminidnew;
- $setarr['groupid'] = $groupidnew;
- C::t('common_member')->update($member['uid'], $setarr);
- if(DB::affected_rows()) {
- savebanlog($member['username'], $member['groupid'], $groupidnew, $banexpirynew, $reason);
- }
- C::t('common_member_field_forum')->update($member['uid'], array('groupterms' => serialize($member['groupterms'])));
- if($_GET['bannew'] == 4) {
- $notearr = array(
- 'user' => "<a href=\"home.php?mod=space&uid=$_G[uid]\">$_G[username]</a>",
- 'day' => $_GET['banexpirynew'],
- 'reason' => $reason,
- 'from_id' => 0,
- 'from_idtype' => 'banspeak'
- );
- notification_add($member['uid'], 'system', 'member_ban_speak', $notearr, 1);
- }
- if($_GET['bannew'] == 5) {
- $notearr = array(
- 'user' => "<a href=\"home.php?mod=space&uid=$_G[uid]\">$_G[username]</a>",
- 'day' => $_GET['banexpirynew'],
- 'reason' => $reason,
- 'from_id' => 0,
- 'from_idtype' => 'banvisit'
- );
- notification_add($member['uid'], 'system', 'member_ban_visit', $notearr, 1);
- }
- if($_GET['bannew'] == 4 || $_GET['bannew'] == 5) {
- crime('recordaction', $member['uid'], ($_GET['bannew'] == 4 ? 'crime_banspeak' : 'crime_banvisit'), $reason);
- }
- acpmsg('modcp_member_ban_succeed', "$cpscript?mod=modcp&action=$_GET[action]&op=$op");
- }
- } elseif($op == 'ipban' && $_G['group']['allowbanip']) {
- require_once libfile('function/misc');
- $iptoban = getgpc('ip') ? dhtmlspecialchars(explode('.', getgpc('ip'))) : array('','','','');
- $updatecheck = $addcheck = $deletecheck = $adderror = 0;
- if(submitcheck('ipbansubmit')) {
- $_GET['delete'] = isset($_GET['delete']) ? $_GET['delete'] : '';
- if($_GET['delete']) {
- $deletecheck = C::t('common_banned')->delete_by_id($_GET['delete'], $_G['adminid'], $_G['username']);
- }
- if($_GET['ip1new'] != '' && $_GET['ip2new'] != '' && $_GET['ip3new'] != '' && $_GET['ip4new'] != '') {
- $addcheck = ipbanadd($_GET['ip1new'], $_GET['ip2new'], $_GET['ip3new'], $_GET['ip4new'], $_GET['validitynew'], $adderror);
- if(!$addcheck) {
- $iptoban = array($_GET['ip1new'], $_GET['ip2new'], $_GET['ip3new'], $_GET['ip4new']);
- }
- }
- if(!empty($_GET['expirationnew']) && is_array($_GET['expirationnew'])) {
- foreach($_GET['expirationnew'] as $id => $expiration) {
- if($expiration == intval($expiration)) {
- $expiration = $expiration > 1 ? (TIMESTAMP + $expiration * 86400) : TIMESTAMP + 86400;
- $updatecheck = C::t('common_banned')->update_expiration_by_id($id, $expiration, $_G['adminid'], $_G['username']);
- }
- }
- }
- if($deletecheck || $addcheck || $updatecheck) {
- require_once(libfile('function/cache'));
- updatecache('ipbanned');
- }
- }
- $iplist = array();
- foreach(C::t('common_banned')->fetch_all_order_dateline() as $banned) {
- for($i = 1; $i <= 4; $i++) {
- if($banned["ip$i"] == -1) {
- $banned["ip$i"] = '*';
- }
- }
- $banned['disabled'] = $_G['adminid'] != 1 && $banned['admin'] != $_G['member']['username'] ? 'disabled' : '';
- $banned['dateline'] = dgmdate($banned['dateline'], 'd');
- $banned['expiration'] = dgmdate($banned['expiration'], 'd');
- $banned['theip'] = "$banned[ip1].$banned[ip2].$banned[ip3].$banned[ip4]";
- $banned['location'] = convertip($banned['theip']);
- $iplist[$banned['id']] = $banned;
- }
- } else {
- showmessage('undefined_action');
- }
- function loadmember(&$uid, &$username, &$error) {
- global $_G;
- $uid = !empty($_GET['uid']) && is_numeric($_GET['uid']) && $_GET['uid'] > 0 ? $_GET['uid'] : '';
- $username = isset($_GET['username']) && $_GET['username'] != '' ? dhtmlspecialchars(trim($_GET['username'])) : '';
- $member = array();
- if($uid || $username != '') {
- $member = $uid ? getuserbyuid($uid) : C::t('common_member')->fetch_by_username($username);
- if($member) {
- $uid = $member['uid'];
- $member = array_merge($member, C::t('common_member_field_forum')->fetch($uid), C::t('common_member_profile')->fetch($uid),
- C::t('common_usergroup')->fetch($member['groupid']), C::t('common_usergroup_field')->fetch($member['groupid']));
- }
- if(!$member) {
- $error = 2;
- } elseif(($member['grouptype'] == 'system' && in_array($member['groupid'], array(1, 2, 3, 6, 7, 8))) || in_array($member['adminid'], array(1,2,3))) {
- $error = 3;
- } else {
- $member['groupterms'] = dunserialize($member['groupterms']);
- $member['banexpiry'] = !empty($member['groupterms']['main']['time']) && ($member['groupid'] == 4 || $member['groupid'] == 5) ? dgmdate($member['groupterms']['main']['time'], 'Y-n-j') : '';
- $error = 0;
- }
- } else {
- $error = 1;
- }
- return $member;
- }
- function ipbanadd($ip1new, $ip2new, $ip3new, $ip4new, $validitynew, &$error) {
- global $_G;
- if($ip1new != '' && $ip2new != '' && $ip3new != '' && $ip4new != '') {
- $own = 0;
- $ip = explode('.', $_G['clientip']);
- for($i = 1; $i <= 4; $i++) {
- if(!is_numeric(${'ip'.$i.'new'}) || ${'ip'.$i.'new'} < 0) {
- if($_G['adminid'] != 1) {
- $error = 1;
- return FALSE;
- }
- ${'ip'.$i.'new'} = -1;
- $own++;
- } elseif(${'ip'.$i.'new'} == $ip[$i - 1]) {
- $own++;
- }
- ${'ip'.$i.'new'} = intval(${'ip'.$i.'new'}) > 255 ? 255 : intval(${'ip'.$i.'new'});
- }
- if($own == 4) {
- $error = 2;
- return FALSE;
- }
- $query = DB::query("SELECT * FROM ".DB::table('common_banned')." WHERE (ip1='$ip1new' OR ip1='-1') AND (ip2='$ip2new' OR ip2='-1') AND (ip3='$ip3new' OR ip3='-1') AND (ip4='$ip4new' OR ip4='-1')");
- if($banned = C::t('common_banned')->fetch_by_ip($ip1new, $ip2new, $ip3new, $ip4new)) {
- $error = 3;
- return FALSE;
- }
- $expiration = $validitynew > 1 ? (TIMESTAMP + $validitynew * 86400) : TIMESTAMP + 86400;
- C::app()->session->update_by_ipban($ip1new, $ip2new, $ip3new, $ip4new);
- $data = array(
- 'ip1' => $ip1new,
- 'ip2' => $ip2new,
- 'ip3' => $ip3new,
- 'ip4' => $ip4new,
- 'admin' => $_G['username'],
- 'dateline' => $_G['timestamp'],
- 'expiration' => $expiration
- );
- C::t('common_banned')->insert($data);
- captcha::report($ip1new.'.'.$ip2new.'.'.$ip3new.'.'.$ip4new);
- return TRUE;
- }
- return FALSE;
- }
- ?>
|