123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236 |
- <?php
- /**
- * [Discuz!] (C)2001-2099 Comsenz Inc.
- * This is NOT a freeware, use is subject to license terms
- *
- * $Id: discuz_session.php 36284 2016-12-12 00:47:50Z nemohou $
- */
- if(!defined('IN_DISCUZ')) {
- exit('Access Denied');
- }
- class discuz_session {
- public $sid = null;
- public $var;
- public $isnew = false;
- private $newguest = array('sid' => 0, 'ip1' => 0, 'ip2' => 0, 'ip3' => 0, 'ip4' => 0,
- 'uid' => 0, 'username' => '', 'groupid' => 7, 'invisible' => 0, 'action' => 0,
- 'lastactivity' => 0, 'fid' => 0, 'tid' => 0, 'lastolupdate' => 0);
- private $old = array('sid' => '', 'ip' => '', 'uid' => 0);
- private $table;
- public function __construct($sid = '', $ip = '', $uid = 0) {
- $this->old = array('sid' => $sid, 'ip' => $ip, 'uid' => $uid);
- $this->var = $this->newguest;
- $this->table = C::t('common_session');
- if(!empty($ip)) {
- $this->init($sid, $ip, $uid);
- }
- }
- public function set($key, $value) {
- if(isset($this->newguest[$key])) {
- $this->var[$key] = $value;
- } elseif ($key == 'ip') {
- $ips = explode('.', $value);
- $this->set('ip1', $ips[0]);
- $this->set('ip2', $ips[1]);
- $this->set('ip3', $ips[2]);
- $this->set('ip4', $ips[3]);
- }
- }
- public function get($key) {
- if(isset($this->newguest[$key])) {
- return $this->var[$key];
- } elseif ($key == 'ip') {
- return $this->get('ip1').'.'.$this->get('ip2').'.'.$this->get('ip3').'.'.$this->get('ip4');
- }
- }
- public function init($sid, $ip, $uid) {
- $this->old = array('sid' => $sid, 'ip' => $ip, 'uid' => $uid);
- $session = array();
- if($sid) {
- $session = $this->table->fetch($sid, $ip, $uid);
- }
- if(empty($session) || $session['uid'] != $uid) {
- $session = $this->create($ip, $uid);
- }
- $this->var = $session;
- $this->sid = $session['sid'];
- }
- public function create($ip, $uid) {
- $this->isnew = true;
- $this->var = $this->newguest;
- $this->set('sid', random(6));
- $this->set('uid', $uid);
- $this->set('ip', $ip);
- $uid && $this->set('invisible', getuserprofile('invisible'));
- $this->set('lastactivity', time());
- $this->sid = $this->var['sid'];
- return $this->var;
- }
- public function delete() {
- return $this->table->delete_by_session($this->var, getglobal('setting/onlinehold'), 60);
- }
- public function update() {
- if($this->sid !== null) {
- if($this->isnew) {
- $this->delete();
- $this->table->insert($this->var, false, false, true);
- } else {
- $this->table->update($this->var['sid'], $this->var);
- }
- setglobal('sessoin', $this->var);
- dsetcookie('sid', $this->sid, 86400);
- }
- }
- public function count($type = 0) {
- return $this->table->count($type);
- }
- public function fetch_member($ismember = 0, $invisible = 0, $start = 0, $limit = 0) {
- return $this->table->fetch_member($ismember, $invisible, $start, $limit);
- }
- public function count_invisible($type = 1) {
- return $this->table->count_invisible($type);
- }
- public function update_by_ipban($ip1, $ip2, $ip3, $ip4) {
- return $this->table->update_by_ipban($ip1, $ip2, $ip3, $ip4);
- }
- public function update_max_rows($max_rows) {
- return $this->table->update_max_rows($max_rows);
- }
- public function clear() {
- return $this->table->clear();
- }
- public function count_by_fid($fid) {
- return $this->table->count_by_fid($fid);
- }
- public function fetch_all_by_fid($fid, $limit = 0) {
- $data = array();
- if(!($fid = dintval($fid))) {
- return $data;
- }
- $onlinelist = getglobal('cache/onlinelist');
- foreach($this->table->fetch_all_by_fid($fid, $limit) as $online) {
- if($online['uid']) {
- $online['icon'] = isset($onlinelist[$online['groupid']]) ? $onlinelist[$online['groupid']] : $onlinelist[0];
- } else {
- $online['icon'] = $onlinelist[7];
- $online['username'] = $onlinelist['guest'];
- }
- $online['lastactivity'] = dgmdate($online['lastactivity'], 't');
- $data[] = $online;
- }
- return $data;
- }
- public function fetch_by_uid($uid) {
- return $this->table->fetch_by_uid($uid);
- }
- public function fetch_all_by_uid($uids, $start = 0, $limit = 0) {
- return $this->table->fetch_all_by_uid($uids, $start, $limit);
- }
- public function update_by_uid($uid, $data) {
- return $this->table->update_by_uid($uid, $data);
- }
- public function count_by_ip($ip) {
- return $this->table->count_by_ip($ip);
- }
- public function fetch_all_by_ip($ip, $start = 0, $limit = 0) {
- return $this->table->fetch_all_by_ip($ip, $start, $limit);
- }
- public static function updatesession() {
- static $updated = false;
- if(!$updated) {
- global $_G;
- if($_G['uid']) {
- if($_G['cookie']['ulastactivity']) {
- $ulastactivity = authcode($_G['cookie']['ulastactivity'], 'DECODE');
- } else {
- $ulastactivity = getuserprofile('lastactivity');
- dsetcookie('ulastactivity', authcode($ulastactivity, 'ENCODE'), 31536000);
- }
- }
- $oltimespan = $_G['setting']['oltimespan'];
- $lastolupdate = C::app()->session->var['lastolupdate'];
- if($_G['uid'] && $oltimespan && TIMESTAMP - ($lastolupdate ? $lastolupdate : $ulastactivity) > $oltimespan * 60) {
- $isinsert = false;
- if(C::app()->session->isnew) {
- $oldata = C::t('common_onlinetime')->fetch($_G['uid']);
- if(empty($oldata)) {
- $isinsert = true;
- } else if(TIMESTAMP - $oldata['lastupdate'] > $oltimespan * 60) {
- C::t('common_onlinetime')->update_onlinetime($_G['uid'], $oltimespan, $oltimespan, TIMESTAMP);
- }
- } else {
- $isinsert = !C::t('common_onlinetime')->update_onlinetime($_G['uid'], $oltimespan, $oltimespan, TIMESTAMP);
- }
- if($isinsert) {
- C::t('common_onlinetime')->insert(array(
- 'uid' => $_G['uid'],
- 'thismonth' => $oltimespan,
- 'total' => $oltimespan,
- 'lastupdate' => TIMESTAMP,
- ));
- }
- C::app()->session->set('lastolupdate', TIMESTAMP);
- }
- foreach(C::app()->session->var as $k => $v) {
- if(isset($_G['member'][$k]) && $k != 'lastactivity') {
- C::app()->session->set($k, $_G['member'][$k]);
- }
- }
- foreach($_G['action'] as $k => $v) {
- C::app()->session->set($k, $v);
- }
- C::app()->session->update();
- if($_G['uid'] && TIMESTAMP - $ulastactivity > 21600) {
- if($oltimespan && TIMESTAMP - $ulastactivity > 43200) {
- $onlinetime = C::t('common_onlinetime')->fetch($_G['uid']);
- C::t('common_member_count')->update($_G['uid'], array('oltime' => round(intval($onlinetime['total']) / 60)));
- }
- dsetcookie('ulastactivity', authcode(TIMESTAMP, 'ENCODE'), 31536000);
- C::t('common_member_status')->update($_G['uid'], array('lastip' => $_G['clientip'], 'port' => $_G['remoteport'], 'lastactivity' => TIMESTAMP, 'lastvisit' => TIMESTAMP));
- }
- $updated = true;
- }
- return $updated;
- }
- }
- ?>
|