Server : Apache System : Linux iZ2vcgyutqttsd1p850kl8Z 3.10.0-1160.92.1.el7.x86_64 #1 SMP Tue Jun 20 11:48:01 UTC 2023 x86_64 User : www ( 1000) PHP Version : 5.6.40 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv Directory : /www/wwwroot/saimikebio.com/mobile/include/modules/integrates/ |
<?php /** * ECSHOP 会员数据处理类 * ============================================================================ * * 版权所有 2005-2012 上海商派网络科技有限公司,并保留所有权利。 * 网站地址: http://www.ecshop.com * ---------------------------------------------------------------------------- * 这是一个免费开源的软件;这意味着您可以在不用于商业目的的前提下对程序代码 * 进行修改、使用和再发布。 * ============================================================================ * $Author: liubo $ * $Id: dvbbs.php 17217 2011-01-19 06:29:08Z liubo $ */ if (!defined('IN_ECTOUCH')) { die('Hacking attempt'); } /* 模块的基本信息 */ if (isset($set_modules) && $set_modules == TRUE) { $i = (isset($modules)) ? count($modules) : 0; /* 会员数据整合插件的代码必须和文件名保持一致 */ $modules[$i]['code'] = 'dvbbs'; /* 被整合的第三方程序的名称 */ $modules[$i]['name'] = 'DVBBS for PHP'; /* 被整合的第三方程序的版本 */ $modules[$i]['version'] = '1.0.x/2.0'; /* 插件的作者 */ $modules[$i]['author'] = 'ECSHOP R&D TEAM'; /* 插件作者的官方网站 */ $modules[$i]['website'] = 'http://www.ecshop.com'; /* 插件的初始的默认值 */ $modules[$i]['default']['db_host'] = 'localhost'; $modules[$i]['default']['db_user'] = 'root'; $modules[$i]['default']['prefix'] = 'dv_'; $modules[$i]['default']['cookie_prefix'] = 'dvbbs_'; return; } require_once(ROOT_PATH . 'include/modules/integrates/integrate.php'); class dvbbs extends integrate { var $cookie_prefix = ''; var $authkey = ''; function __construct($cfg) { $this->dvbbs($cfg); } /** * * * @access public * @param * * @return void */ function dvbbs($cfg) { parent::integrate($cfg); if ($this->error) { /* 数据库连接出错 */ return false; } $this->cookie_prefix = $cfg['cookie_prefix']; $this->field_id = 'userid'; $this->field_name = 'username'; $this->field_email = 'useremail'; $this->field_gender = 'usersex'; $this->field_bday = 'userbirthday'; $this->field_pass = 'userpassword'; $this->field_reg_date = 'joindate'; $this->user_table = 'user'; /* 检查数据表是否存在 */ $sql = "SHOW TABLES LIKE '" . $this->prefix . "%'"; $exist_tables = $this->db->getCol($sql); if (empty($exist_tables) || (!in_array($this->prefix.$this->user_table, $exist_tables))) { $this->error = 2; /* 缺少数据表 */ return false; } } /** * 获取论坛有效积分及单位 * * @access public * @param * * @return void */ function get_points_name () { static $ava_credits = NULL; if ($ava_credits === NULL) { $ava_credits = array(); $ava_credits['usermoney'] = array('title'=>'金钱', 'unit'=>''); $ava_credits['userep'] = array('title'=>'经验', 'unit'=>''); $ava_credits['usercp'] = array('title'=>'魅力', 'unit'=>''); } return $ava_credits; } /** * 获取用户积分 * * @access public * @param * * @return array */ function get_points($username) { $credits = $this->get_points_name(); $fileds = array_keys($credits); if ($fileds) { if ($this->charset != 'UTF8') { $username = ecs_iconv('UTF8', $this->charset, $username); } $sql = "SELECT " . $this->field_id . ', ' . implode(', ',$fileds). " FROM " . $this->table($this->user_table). " WHERE " . $this->field_name . "='$username'"; $row = $this->db->getRow($sql); return $row; } else { return false; } } /** * * * @access public * @param * * @return void */ function set_points ($username, $credits) { $user_set = array_keys($credits); $points_set = array_keys($this->get_points_name()); $set = array_intersect($user_set, $points_set); if ($set) { if ($this->charset != 'UTF8') { $username = ecs_iconv('UTF8', $this->charset, $username); } $tmp = array(); foreach ($set as $credit) { $tmp[] = $credit . '=' . $credit . '+' . $credits[$credit]; } $sql = "UPDATE " . $this->table($this->user_table). " SET " . implode(', ', $tmp). " WHERE " . $this->field_name . " = '$username'"; $this->db->query($sql); } return true; } /** * 设置论坛cookie * * @access public * @param * * @return void */ function set_cookie ($username="", $remember = NULL) { parent::set_cookie($username); if (empty($username)) { $time = time() - 3600; setcookie($this->cookie_prefix . 'userid', '', $time, $this->cookie_path, $this->cookie_domain); setcookie($this->cookie_prefix . 'username', '', $time, $this->cookie_path, $this->cookie_domain); setcookie($this->cookie_prefix . 'password', '', $time, $this->cookie_path, $this->cookie_domain); setcookie($this->cookie_prefix . 'userhidden', '', $time, $this->cookie_path, $this->cookie_domain); setcookie($this->cookie_prefix . 'onlinecachetime', '', $time, $this->cookie_path, $this->cookie_domain); } else { if ($this->charset != 'UTF8') { $username = ecs_iconv('UTF8', $this->charset, $username); } $sql = "SELECT " . $this->field_id . " AS user_id, truepassword, userhidden ". " FROM " . $this->table($this->user_table) . " WHERE " . $this->field_name . "='$username'"; $row = $this->db->getRow($sql); setcookie($this->cookie_prefix . 'userid', $row['user_id'], time() + 3600 * 24 * 30, $this->cookie_path, $this->cookie_domain); setcookie($this->cookie_prefix . 'username', $username, time() + 3600 * 24 * 30, $this->cookie_path, $this->cookie_domain); setcookie($this->cookie_prefix . 'password', $row['truepassword'], time() + 3600 * 24 * 30, $this->cookie_path, $this->cookie_domain); setcookie($this->cookie_prefix . 'userhidden', $row['userhidden'], time() + 3600 * 24 * 30, $this->cookie_path, $this->cookie_domain); } } /** * 检查cookie * * @access public * @param * * @return void */ function check_cookie () { if (empty($_COOKIE[$this->cookie_prefix . 'userid']) || empty($_COOKIE[$this->cookie_prefix . 'password'])) { return ''; } $user_id = intval($_COOKIE[$this->cookie_prefix . 'userid']); $true_password = addslashes_deep($_COOKIE[$this->cookie_prefix . 'password']); $sql = "SELECT ". $this->field_name . " AS user_name ". " FROM " . $this->table($this->user_table) . " WHERE " . $this->field_id . "='$user_id' AND truepassword='$true_password'"; $username = $this->db->getOne($sql); if (empty($username)) { return ''; } if ($this->charset != 'UTF8') { $username = ecs_iconv($this->charset, 'UTF8', $username); } return $username; } /** * 编译密码函数 * * @access public * @param array $cfg 包含参数为 $password, $md5password, $salt, $type * * @return void */ function compile_password ($cfg) { if ((!empty($cfg['password'])) && empty($cfg['md5password'])) { $cfg['md5password'] = md5($cfg['password']); } if (empty($cfg['md5password'])) { return ''; } return substr($cfg['md5password'], 8, 16); } }