⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 space.func.php

📁 极限网络智能办公系统 Office Automation V3.0官方100%源代码.
💻 PHP
字号:
<?php

/*
	[Discuz!] (C)2001-2007 Comsenz Inc.
	This is NOT a freeware, use is subject to license terms

	$RCSfile: space.func.php,v $
	$Revision: 1.22.2.15 $
	$Date: 2007/03/21 15:52:38 $
*/

if(!defined('IN_DISCUZ')) {
	exit('Access Denied');
}

$modulesettings = array(
	'userinfo'	=> array('1', 0, 1),
	'calendar'	=> array('1', 0),
	'myblogs'	=> array('', 1),
	'mythreads'	=> array('', 1),
	'myreplies'	=> array('', 1),
	'myrewards'	=> array('', 1),
	'mytrades'	=> array('', 1),
	'myfriends'	=> array('1', 2),
	'myfavforums'	=> array('1', 2),
	'myfavthreads'	=> array('1', 2)
);

$listmodule = array(
	'myblogs' => 1,
	'mythreads' => 2,
	'myreplies' => 3,
	'myrewards' => 4,
	'mytrades' => 5,
	'myfavforums' => 6,
	'myfavthreads' => 7
);

function getspacesettings($uid) {
	global $db, $tablepre, $discuz_uid;

	$query = $db->query("SELECT * FROM {$tablepre}memberspaces WHERE uid='$uid'");
	if($spacesettings = $db->fetch_array($query)) {
		$spacesettings['style'] = empty($spacesettings['style']) ? 'default' : str_replace('/', '', $spacesettings['style']);
		if(!file_exists(DISCUZ_ROOT.'./mspace/'.$spacesettings['style'].'/style.ini')) {
			showmessage('space_style_nofound', NULL, 'HALTED');
		}
	} else {
		$spacesettings['style'] = 'default';
		$spacesettings['layout'] = "[userinfo][calendar][myreplies][myfavforums]\t[myblogs][mythreads]\t";
		$spacesettings['side'] = 1;
		$db->query("INSERT INTO {$tablepre}memberspaces (uid, style, description, layout, side) VALUES ('$uid', '$spacesettings[style]', '', '$spacesettings[layout]', '$spacesettings[side]')");
	}

	return $spacesettings;
}

/** note
* Space用的剪切文字
*
* @parm string $str 字串
* @parm string $length 长度
**/
function spacecutstr($str, $length) {
	global $language, $_DCACHE;
	include_once DISCUZ_ROOT.'./forumdata/cache/cache_post.php';
	$bbcodes = 'b|i|u|color|size|font|align|list|indent|url|email|code|free|table|tr|td|img|swf|payto|float'.($_DCACHE['bbcodes_display'] ? '|'.implode('|', array_keys($_DCACHE['bbcodes_display'])) : '');
	$str = dhtmlspecialchars(cutstr(strip_tags(preg_replace(array(
			"/\[hide=?\d*\](.+?)\[\/hide\]/is",
			"/\[quote](.*)\[\/quote]/siU",
			$language['post_edit_regexp'],
			"/\[($bbcodes)=?.*\]/iU",
			"/\[\/($bbcodes)\]/i",
			"/\[attach\](\d+)\[\/attach\]/i"
		), array(
			"[b]$language[post_hidden][/b]",
			'',
			'',
			'',
			'',
			''
		), $str)), $length));
	$find = array("/http:\/\/[a-z0-9\/\-_+=.~!%@?#%&;:$\\()|]+?\.(jpg|gif|png|bmp)/is", "/(\n|\r|\r\n){2,}/", "/\s{2,}/");
	$replace = array("<img onload=\"if(this.width>320) {this.resized=true;this.width=320;}\" src=\"\\0\">", "\r\n", '');
	$str = preg_replace($find, $replace, $str);
	return trim(nl2br($str));
}

function updatespacecache($uid, $module, $list = FALSE) {
	global $_DCOOKIE, $language, $db, $tablepre, $timestamp, $tpp, $page, $multipage, $starttime, $endtime, $spacecachelife, $spacetextlength, $lastvisit;

	if(!file_exists(DISCUZ_ROOT.'./forumdata/cache/cache_spacesettings.php')) {
		require_once DISCUZ_ROOT.'./include/cache.func.php';
		updatespacesettings();
	}
	require DISCUZ_ROOT.'./forumdata/cache/cache_spacesettings.php';

	if($list) {
		$page = max(1, intval($page));
		$start_limit = ($page - 1) * $tpp;
		$parms['items'] = "$start_limit, $tpp";
	} else {
		$spacelimit = 'spacelimit'.$module;
		$parms['items'] = intval($GLOBALS[$spacelimit]);
	}
	$parms['list'] = $list;
	$parms['conditions'] = $parms['extraquery'] = '';
	$parms['cols'] = '*';

	call_user_func('module_'.$module, &$parms);

	$tids = $datalist = array();
	$query = $db->query("SELECT $parms[cols] FROM {$tablepre}$parms[table] $parms[conditions] LIMIT $parms[items]");
	while($data = $db->fetch_array($query)) {
		include_once language('misc');
		if(!empty($data['message'])) {
			$data['message'] = spacecutstr($data['message'], $spacetextlength, $language);
		}
		if($data['tid'] && $lastvisit < $data['lastpost'] && (empty($_DCOOKIE['oldtopics']) || strpos($_DCOOKIE['oldtopics'], 'D'.$data['tid'].'D') === FALSE)) {
			$data['subject'] .= ' <a href="redirect.php?tid='.$data['tid'].'&amp;goto=newpost#newpost" target="_blank"><img src="'.IMGDIR.'/firstnew.gif" border="0" alt="" /></a>';
		}
		if($parms['extraquery']) {
			$tids[] = $data['tid'];
			$datalist[$data['tid']] = $data;
		} else {
			$datalist[] = $data;
		}
	}

	if($tids) {
		$query = $db->query($parms['extraquery'].'('.implodeids($tids).')');
		while($data = $db->fetch_array($query)) {
			$datalist[$data['tid']] = array_merge($datalist[$data['tid']], $data);
		}
	}

	if(!$list) {
		$db->query("REPLACE INTO {$tablepre}spacecaches (uid, variable, value, expiration) VALUES ('$uid', '$module', '".addslashes(serialize($datalist))."', '".($timestamp + $spacecachelife)."')");
	} else {
		$query = $db->query("SELECT count(*) FROM {$tablepre}$parms[table] $parms[conditions]");
		$num = $db->result($query, 0);
		$multipage = multi($num, $tpp, $page, "space.php?uid=$uid&amp;mod=$module".($starttime ? "&amp;starttime=$starttime" : '').($endtime ? "&amp;endtime=$endtime" : ''));
	}
	return $datalist;
}

function calendar() {
	global $db, $tablepre, $uid, $starttime, $timestamp, $timeoffset, $dateformat;

	$starttime = isset($starttime) ? intval($starttime) : 0;
	$starttime = $starttime ? $starttime : $timestamp;

	$pendtime = $starttime - (gmdate('j', $starttime + $timeoffset * 3600) - 1) * 86400 - ($starttime + $timeoffset * 3600) % 86400;
	$pstarttime = $pendtime - gmdate('t', $pendtime + $timeoffset * 3600 - 1) * 86400;

	$nstarttime = $pendtime + gmdate('t', $pendtime + $timeoffset * 3600 + 1) * 86400;
	$nendtime = $nstarttime + gmdate('t', $nstarttime + $timeoffset * 3600 + 1) * 86400;

	list($skip, $dim) = explode('-', gmdate('w-t', $pendtime + $timeoffset * 3600 + 1));
	$rows = ceil(($skip + $dim) / 7);

	$blogs = array();
	$query = $db->query("SELECT dateline FROM {$tablepre}threads WHERE blog='1' AND authorid='$uid' AND dateline BETWEEN '$pendtime' AND '$nstarttime' AND displayorder>='0'");
	while($blog = $db->fetch_array($query)) {
		$day = gmdate('j', $blog['dateline'] + $timeoffset * 3600);
		!isset($blogs[$day]) ? $blogs[$day] = array('num' => 1, 'dateline' => $blog['dateline'] - $blog['dateline'] % 86400) : $blogs[$day]['num']++;
	}

	$cal = '';
	for($row = 0; $row < $rows; $row++) {
		$cal .= '<tr class="row" align="center">';
		for($col = 0; $col < 7; $col++) {
			$cur = $row * 7 + $col - $skip + 1;
			$curtd = $row * 7 + $col < $skip || $cur > $dim ? '&nbsp;' : $cur;
			if(!isset($blogs[$cur])) {
				$cal .= '<td>'.$curtd.'</td>';
			} else {
				$cal .= '<td><a href="space.php?'.$uid.'/myblogs/'.$blogs[$cur]['dateline'].'/'.($blogs[$cur]['dateline'] + 86400).'" title=" '.$blogs[$cur]['num'].' ">'.$cur.'</a></td>';
			}
		}
		$cal .= '</tr>';
	}

	$calendar = array('curtime' => gmdate('Y-m', $starttime + $timeoffset * 3600), 'pstarttime' => $pstarttime, 'pendtime' => $pendtime, 'nstarttime' => $nstarttime, 'nendtime' => $nendtime, 'html' => $cal);
	viewcalendar($calendar);
}

function spacecaches($uid, $modulelist = '') {
	global $db, $tablepre, $timestamp;
	$allmodules = array(
		'mythreads',
		'myreplies',
		'myrewards',
		'mytrades',
		'myfriends',
		'myfavforums',
		'myfavthreads',
		'myblogs',
		'hotblog'
		);

	$modulelist = empty($modulelist) ? $allmodules : array_intersect($modulelist, $allmodules);
	$modules = implode('\',\'', $allmodules);
	$moduledata = array();
	$query = $db->query("SELECT * FROM {$tablepre}spacecaches WHERE uid='$uid'");
	while($module = $db->fetch_array($query)) {
		$moduledata[$module['variable']]['expiration'] = $module['expiration'];
		$moduledata[$module['variable']]['value'] = unserialize($module['value']);
	}
	unset($module);
	foreach($allmodules as $module) {
		if(empty($moduledata[$module]) || $timestamp > $moduledata[$module]['expiration']) {
			$moduledata[$module]['value'] = updatespacecache($uid, $module);
		}
		if(!empty($modulelist) && !in_array($module, $modulelist)) {
			unset($moduledata[$module]);
		}
	}
	return $moduledata;
}

function module_mythreads(&$parms) {
	global $uid, $tablepre;
	$parms['table'] = 'mythreads m';
	if(!$parms['list']) {
		$parms['cols'] = 't.tid, t.subject, t.special, t.price, t.fid, t.views, t.replies, t.author, t.authorid, t.lastpost, t.lastposter, t.attachment, p.pid, p.message';
		$parms['conditions'] = "INNER JOIN {$tablepre}posts p ON p.tid=m.tid AND p.first='1'
			INNER JOIN {$tablepre}threads t ON t.blog='0' AND t.authorid='$uid' AND t.author!='' AND t.price='0' AND t.fid IN ($parms[infids]) AND t.displayorder>='0' AND t.readperm<='$parms[readaccess]'
			WHERE m.uid='$uid' AND m.tid=t.tid ORDER BY t.lastpost DESC";
	} else {
		$parms['cols'] = 't.tid, t.subject, t.special, t.fid, t.views, t.replies, t.author, t.authorid, t.lastpost, t.lastposter, t.attachment';
		$parms['conditions'] = "INNER JOIN {$tablepre}threads t ON t.blog='0' AND t.authorid='$uid' AND t.author!='' AND t.price='0' AND t.fid IN ($parms[infids]) AND t.displayorder>='0' AND t.readperm<='$parms[readaccess]'
			WHERE m.uid='$uid' AND m.tid=t.tid ORDER BY t.lastpost DESC";
	}
}

function module_myreplies(&$parms) {
	global $uid, $tablepre;
	$parms['table'] = 'myposts m';
	$parms['cols'] = 't.tid, t.subject, t.special, t.price, t.fid, t.views, t.replies, t.author, t.authorid, t.lastpost, t.lastposter, t.attachment, p.pid, p.message';
	$parms['conditions'] = "INNER JOIN {$tablepre}posts p ON p.pid=m.pid AND p.anonymous='0'
		INNER JOIN {$tablepre}threads t ON t.tid=m.tid AND t.fid IN ($parms[infids]) AND t.displayorder>='0' AND t.readperm<='$parms[readaccess]'
		WHERE m.uid='$uid' ORDER BY m.dateline DESC";
}

function module_myrewards(&$parms) {
	global $uid, $tablepre;
	$parms['table'] = 'threads t';
	if(!$parms['list']) {
		$parms['cols'] = 't.tid, t.fid, t.views, t.replies, t.price, t.subject, p.pid, p.message';
		$parms['conditions'] = "INNER JOIN {$tablepre}posts p ON p.tid=t.tid AND p.first='1'
			WHERE (t.blog='0' OR t.blog='1') AND t.authorid='$uid' AND t.author!='' AND t.special='3' AND t.fid IN ($parms[infids]) AND t.displayorder>='0' AND t.readperm<='$parms[readaccess]' ORDER BY t.lastpost DESC";
	} else {
		$parms['cols'] = 't.tid, t.fid, t.views, t.replies, t.price, t.subject';
		$parms['conditions'] = "WHERE (t.blog='0' OR t.blog='1') AND t.authorid='$uid' AND t.author!='' AND t.special='3' AND t.fid IN ($parms[infids]) AND t.displayorder>='0' AND t.readperm<='$parms[readaccess]' ORDER BY t.lastpost DESC";
	}
	$parms['extraquery'] = "SELECT r.tid, r.answererid, m.username FROM {$tablepre}rewardlog r LEFT JOIN {$tablepre}members m ON m.uid=r.answererid WHERE r.authorid='$uid' AND r.tid IN ";
}

function module_mytrades(&$parms) {
	global $uid, $tablepre;
	$parms['table'] = 'threads t';
	if(!$parms['list']) {
		$parms['cols'] = 't.tid, t.subject, p.pid, p.message';
		$parms['conditions'] = "INNER JOIN {$tablepre}posts p ON t.tid=p.tid AND p.first='1'
			WHERE (t.blog='0' OR t.blog='1') AND t.authorid='$uid' AND t.author!='' AND special='2' AND t.fid IN ($parms[infids]) AND t.displayorder>='0' AND t.readperm<='$parms[readaccess]' ORDER BY t.lastpost DESC";
	} else {
		$parms['cols'] = 't.tid, t.subject';
		$parms['conditions'] = "WHERE (t.blog='0' OR t.blog='1') AND t.authorid='$uid' AND t.author!='' AND special='2' AND t.fid IN ($parms[infids]) AND t.displayorder>='0' AND t.readperm<='$parms[readaccess]' ORDER BY t.lastpost DESC";
	}
	$parms['extraquery'] = "SELECT tr.tid, tr.subject AS name, tr.price, tr.amount, tr.quality, tr.locus, tr.itemtype, tr.transport FROM {$tablepre}trades tr WHERE tr.tid IN ";
}

function module_myfriends(&$parms) {
	global $uid, $tablepre;
	$parms['table'] = 'members m';
	$parms['cols'] = 'm.uid, m.username, mf.spacename';
	$parms['conditions'] = "LEFT JOIN {$tablepre}buddys b ON m.uid=b.buddyid
		LEFT JOIN {$tablepre}memberfields mf ON m.uid=mf.uid
		WHERE b.uid='$uid'";
}

function module_myfavforums(&$parms) {
	global $uid, $tablepre;
	$parms['table'] = 'forums f';
	$parms['cols'] = 'f.fid, f.name, f.threads, f.posts, f.todayposts';
	$parms['conditions'] = ",{$tablepre}favorites fav
		WHERE fav.fid=f.fid AND fav.uid='$uid' AND fav.fid IN ($parms[infids])";
}

function module_myfavthreads(&$parms) {
	global $uid, $tablepre;
	$parms['table'] = 'threads t';
	$parms['cols'] = 't.tid, t.subject, t.special, t.price, t.fid, t.views, t.replies, t.lastposter, t.lastpost';
	$parms['conditions'] = ",{$tablepre}favorites fav
		WHERE fav.tid=t.tid AND fav.uid='$uid' AND t.fid IN ($parms[infids]) AND t.displayorder>='0' AND t.readperm<='$parms[readaccess]' ORDER BY t.lastpost DESC";
}

function module_myblogs(&$parms) {
	global $uid, $tablepre, $starttime, $endtime;
	$starttimeadd = $starttime ? "AND t.dateline>='$starttime'" : '';
	$endtimeadd = $endtime ? "AND t.dateline<'$endtime'" : '';
	$parms['table'] = 'threads t';
	$parms['cols'] = 't.tid, t.subject, t.special, t.price, t.fid, t.views, t.replies, t.authorid, t.dateline, t.lastpost, t.lastposter, t.attachment, p.pid, p.message';
	$parms['conditions'] = "INNER JOIN {$tablepre}posts p ON p.tid=t.tid AND p.first='1' AND p.anonymous='0'
		WHERE t.blog='1' AND t.authorid='$uid' $starttimeadd $endtimeadd ORDER BY t.dateline DESC";
}

function module_hotblog(&$parms) {
	global $uid;
	$parms['table'] = 'threads';
	$parms['cols'] = 'tid, subject, views, replies';
	$parms['conditions'] = "WHERE blog='1' AND authorid='$uid' AND displayorder>='0' ORDER BY views DESC";
	$parms['items'] = 5;
}

?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -