public function __construct($request, $response)
 {
     parent::__construct($request, $response);
     //$this->checkAllowIP();
     $role_id = $this->isAdmin();
     if ($role_id < 1) {
         return $this->redirect('admin/login/index');
     }
     if ($GLOBALS['user_id'] > 0) {
         $user = CacheManager::getUser();
         $uri = addslashes(@$_SERVER['REQUEST_URI']);
         if (Util::filterOnlineUrl($uri)) {
             $update_time = 0;
             $key = 'last_time_' . $GLOBALS['user_id'];
             $time = CacheManager::cache_get($key, 0);
             if ($time > 0) {
                 $update_time = TIMESTAMP - $time;
             }
             if ($update_time < 0) {
                 $update_time = 0;
             }
             Model::factory('App')->updateAdminOnline($GLOBALS['user_id'], $uri, Util::getIP(), $update_time, addslashes(json_encode(@$_REQUEST)));
             CacheManager::cache_set($key, TIMESTAMP);
         }
     }
 }
Exemplo n.º 2
0
 public function login($user_id)
 {
     $user = CacheManager::getUser($user_id);
     if ($user) {
         $GLOBALS['user_id'] = $user_id;
         Cookie::set('user_id', $user_id);
     }
     return $user;
 }
Exemplo n.º 3
0
 public function initApp(&$obj)
 {
     $sessionKey = $obj->req('sessionKey');
     $obj->income = Util::up_decode($sessionKey);
     if ($obj->income && $obj->income['u'] > 0) {
         $obj->uid = $obj->income['u'];
         $obj->user = CacheManager::getUser($obj->uid);
         if (!isset($obj->income['l'])) {
             $obj->income['l'] = $obj->user->locale;
         }
         $obj->locale = $obj->getLocale($obj->income['l']);
         $obj->lang = $obj->getLang($obj->locale);
         $obj->mobile = $obj->income['m'] == 1 ? true : false;
         $obj->login($obj->uid);
     } else {
         if ($GLOBALS['user_id'] > 0) {
             $obj->uid = $GLOBALS['user_id'];
             $obj->user = CacheManager::getUser($obj->uid);
             if (!$obj->user) {
                 $GLOBALS['user_id'] = 0;
                 $obj->uid = 0;
                 $obj->locale = $obj->getLocale(Util::determineLang());
                 $obj->lang = $obj->getLang($obj->locale);
             } else {
                 $obj->locale = $obj->getLocale($obj->user->locale);
                 $obj->lang = $obj->getLang($obj->locale);
             }
         } else {
             $obj->locale = $obj->getLocale(Util::determineLang());
             $obj->lang = $obj->getLang($obj->locale);
         }
     }
     if ($obj->uid > 0) {
         $uri = addslashes(@$_SERVER['REQUEST_URI']);
         if (Util::filterOnlineUrl($uri)) {
             $update_time = 0;
             $key = 'last_time_' . $obj->uid;
             $time = CacheManager::cache_get($key, 0);
             if ($time > 0) {
                 $update_time = TIMESTAMP - $time;
             }
             if ($update_time < 0) {
                 $update_time = 0;
             }
             Model::factory('App')->updateUserOnline($obj->uid, $uri, Util::getIP(), $update_time);
             CacheManager::cache_set($key, TIMESTAMP);
         }
     }
 }
Exemplo n.º 4
0
 public function action_user_post()
 {
     $user_id = intval($this->request->query('uid'));
     $user = $this->request->post('user');
     $password = $this->request->post('password');
     if ($user_id < 1) {
         //添加
         $this->checkFunction('UserManage', "add");
         if (!empty($password)) {
             $salt = substr(uniqid(rand()), -6);
             $user['deviceid'] = $user['username'];
             $user['user_salt'] = $salt;
             $user['password'] = Util::password($password, $salt);
         }
         $user['login_ip'] = Util::getIP();
         $user['login_times'] = TIMESTAMP;
         $result = Model::factory('Sys')->insertUser($user);
     } else {
         //修改
         $this->checkFunction('UserManage', "edit");
         $u = CacheManager::getUser($user_id);
         if (!empty($password)) {
             $user['password'] = Util::password($password, $u->user_salt);
         }
         Model::factory('Sys')->updateUser($user_id, $user);
     }
     CacheManager::removeUser($user_id);
     $DATA = array();
     $DATA['uid'] = $user_id;
     $DATA['user'] = CacheManager::getUser($user_id);
     $DATA['user_right'] = $this->funcOp('UserManage');
     View::set_global('title', $user_id > 0 ? '修改用户' : '添加用户');
     return $this->iframeView('admin/sys/user_op', $DATA);
 }
Exemplo n.º 5
0
echo RESOURCE;
?>
images/t.gif" /> 关闭所有选项卡</a>
				<i></i>
				<a href="#" class="cancel"><img src="<?php 
echo RESOURCE;
?>
images/t.gif" /> 取消操作</a>
			</div>
			<div class="mheader miniheader clearfix">
				<div class="header-nav">
					<img src="<?php 
echo RESOURCE;
?>
images/ico/admin.gif" width="16px" height="16px" /> <?php 
echo CacheManager::getUser()->nickname;
?>
 
					<a href="<?php 
echo BASEURI;
?>
admin/login/logout"><img src="<?php 
echo RESOURCE;
?>
images/ico/exit.png" /> 退出系統</a>
				</div>
				<div class="header-logo"><img src="<?php 
echo RESOURCE;
?>
images/t.gif" height="35px" alt="LOGO" class="logo" /></div>
			</div>