转载 (16/05/23)基于ThinkPHP用户行为记录.

<?php
// +----------------------------------------------------------------------
// | [email protected]妖孽 [三十年河东三十年河西,莫欺少年穷.!]
// +----------------------------------------------------------------------
// | Copyright (c) 2014 http://www.yaonies.com All rights reserved.
// +----------------------------------------------------------------------
// | Author: [email protected]妖孽 <[email protected]>
// +----------------------------------------------------------------------
/**
+------------------------------------------------------------------------------
* 基于用户的操作记录验证类
+------------------------------------------------------------------------------
* @category ORG
* @package ORG
* @subpackage Msj
* @author [email protected]妖孽 <[email protected]>
* @version 1.0
+------------------------------------------------------------------------------
*/
// 配置文件增加设置
// ‘OPERATION_ON‘=>true,// 开启用户记录日志
// ‘OPERATION_MEMBER‘=>‘learn_member‘,
// ‘OPERATION_TYPE‘=>‘web‘,//分别为web,interface也就是网站,和接口
// ‘OPERATION_MEMBER_ID‘=>‘member_id‘, //如果后台就取session,如果接口就直接取get,post请求的值
/*
-- --------------------------------------------------------
CREATE TABLE IF NOT EXISTS `msj_operation_log` (
`operation_log` mediumint(8) unsigned NOT NULL AUTO_INCREMENT COMMENT ‘操作记录主键‘,
`operation_uid` mediumint(4) NOT NULL DEFAULT ‘0‘ COMMENT ‘操作人/如果是接口返回-1暂不记录接口请求人‘,
`operation_node` char(50) COLLATE utf8_bin NOT NULL DEFAULT ‘‘ COMMENT ‘操作节点‘,
`operation_ip` mediumtext COLLATE utf8_bin NOT NULL COMMENT ‘记录操作IP,省市,等信息‘,
`operation_time` int(10) NOT NULL DEFAULT ‘0‘ COMMENT ‘操作时间‘,
PRIMARY KEY (`operation_log`),
KEY `index_uid_node` (`operation_uid`,`operation_node`,`operation_log`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT=‘@author [email protected]妖孽\r\[email protected] 2014-5-4‘
*/
class Operation {

private $operation_on;//操作记录开关
public $error;//错误信息

/**
* @todo 验证是否开启记录
*/
public function __construct(){
$this->operation_on = C(‘OPERATION_ON‘);
if($this->operation_on === false){
return false;
}
}

/**
* @todo获取客户端IP地址
* @param integer $type 返回类型 0 返回IP地址 1 返回IPV4地址数字
* @return mixed
*/
private function getClientIp($type=0){
$type = $type ? 1 : 0;
static $ip = NULL;
if ($ip !== NULL) return $ip[$type];
if (isset($_SERVER[‘HTTP_X_FORWARDED_FOR‘])) {
$arr = explode(‘,‘, $_SERVER[‘HTTP_X_FORWARDED_FOR‘]);
$pos = array_search(‘unknown‘,$arr);
if(false !== $pos) unset($arr[$pos]);
$ip = trim($arr[0]);
}elseif (isset($_SERVER[‘HTTP_CLIENT_IP‘])) {
$ip = $_SERVER[‘HTTP_CLIENT_IP‘];
}elseif (isset($_SERVER[‘REMOTE_ADDR‘])) {
$ip = $_SERVER[‘REMOTE_ADDR‘];
}
// IP地址合法验证
$long = sprintf("%u",ip2long($ip));
$ip = $long ? array($ip, $long) : array(‘0.0.0.0‘, 0);
return $ip[$type];
}

/**
* @todo 检测表是否存在,如果不存在则创建新表
*/
static public function checkTableIsExist(){
$db = Db::getInstance(C(‘RBAC_DB_DSN‘));
$table_prefix = C(‘DB_PREFIX‘);
$sql = "CREATE TABLE IF NOT EXISTS `{$table_prefix}msj_operation_log` (
`operation_log` mediumint(8) unsigned NOT NULL AUTO_INCREMENT COMMENT ‘操作记录主键‘,
`operation_uid` mediumint(4) NOT NULL DEFAULT ‘0‘ COMMENT ‘操作人/如果是接口返回-1暂不记录接口请求人‘,
`operation_node` char(50) COLLATE utf8_bin NOT NULL DEFAULT ‘‘ COMMENT ‘操作节点‘,
`operation_ip` mediumtext COLLATE utf8_bin NOT NULL COMMENT ‘记录操作IP,省市,等信息‘,
`operation_time` int(10) NOT NULL DEFAULT ‘0‘ COMMENT ‘操作时间‘,
PRIMARY KEY (`operation_log`),
KEY `index_uid_node` (`operation_uid`,`operation_node`,`operation_log`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT=‘@author [email protected]妖孽\r\[email protected] 2014-5-4‘";
$db->execute($sql);
}

/**
* @todo 写入操作日志
*/
public function writeLog(){
(defined(‘NOW_TIME‘))?$time = NOW_TIME: $time=time();

switch (C(‘OPERATION_TYPE‘)){
case ‘web‘:
$uid = session(C(‘OPERATION_MEMBER_ID‘));
$uid = ($uid)?$uid:0;
break;
case ‘interface‘://预留
$uid = -1;//接口的操作日志暂时不记录操作人
break;
default:
$uid = -2;
break;
}

$db_name =C(‘DB_NAME‘) ;
$table_prefix = C(‘DB_PREFIX‘);
import(‘@.ORG.Msj.IpLocation‘);// 导入IpLocation类
$Ip = new IpLocation(); // 实例化类
$ip_info = $Ip->getlocation($this->getClientIp()); // 获取某个IP地址所在的位置
$ip_info[‘country‘] = iconv(‘gbk‘, ‘utf-8‘, $ip_info[‘country‘]);
$db = Db::getInstance(C(‘RBAC_DB_DSN‘));
$sql = "INSERT INTO `{$db_name}`.`{$table_prefix}msj_operation_log` (`operation_uid`, `operation_node`, `operation_ip`, `operation_time`) VALUES (‘".$uid."‘,‘".$_SERVER[‘REQUEST_URI‘]."‘,‘".serialize($ip_info)."‘,‘".$time."‘);";
if($db->execute($sql) === false ){
//插入失败写日志
Log::write("uid:{$uid},".‘node:‘.$_SERVER[‘REQUEST_URI‘].‘,operation_ip:‘.serialize($ip_info).‘,time:‘.date(‘Y-m-d H:i:s‘,$time));
}

}

/**
* @todo 查询操作日志
* @param array $map 目前只支持用户id的查询.
*/
public function logList($map=array()){
$db = Db::getInstance(C(‘RBAC_DB_DSN‘));
$member_table_name = C(‘OPERATION_MEMBER‘);
$operation_table_name =C(‘DB_PREFIX‘).‘msj_operation_log‘;
$member_id = implode(‘,‘,$map);
$sql = "(SELECT
msj_operation_log.operation_log AS operation_log,
msj_operation_log.operation_uid AS operation_uid,
msj_operation_log.operation_node AS operation_node,
msj_operation_log.operation_ip AS operation_ip,
msj_operation_log.operation_time AS operation_time,
Member.member_name AS member_name
FROM
{$operation_table_name} msj_operation_log
JOIN {$member_table_name} Member
ON msj_operation_log.operation_uid = Member.member_id
WHERE (`member_id` IN(‘{$member_id}‘)))";
$log_list = $db->query($sql);
$Ip = new IpLocation(); // 实例化类
$ip_info = $Ip->getlocation($this->getClientIp()); // 获取某个IP地址所在的位置
if(!empty($log_list)){
foreach($log_list as $key=>$val){
$log_list[$key][‘operation_time‘] = date(‘Y-m-d H:i:s‘,$val[‘operation_time‘]);
$info = unserialize($val[‘operation_ip‘]);
$log_list[$key][‘operation_ip‘] = "地区:".$info[‘area‘].‘,城市:‘.$info[‘country‘].‘,IP:‘.$info[‘ip‘];
}
return $log_list;
}else{
return false;
}
}

public function __destruct(){
$this->operation_on=false;
$this->error =‘‘;
}

}
//查list;
import(‘@.ORG.Msj.Operation‘);
$operation_obj = new Operation();
$log_list = $operation_obj->logList(array(‘member_id‘=>2086));
//记录日志
$operation_obj->writeLog();

时间: 2024-10-14 17:56:37

转载 (16/05/23)基于ThinkPHP用户行为记录.的相关文章

(16.05.17)ThinkPHP框架开发的应用的标准执行流程

用户URL请求 调用应用入口文件(通常是网站的index.php) 载入框架入口文件(ThinkPHP.php) 记录初始运行时间和内存开销 系统常量判断及定义 载入框架引导类(Think\Think)并执行Think::start方法进行应用初始化 设置错误处理机制和自动加载机制 调用Think\Storage类进行存储初始化(由STORAGE_TYPE常量定义存储类型) 部署模式下如果存在应用编译缓存文件则直接加载(直接跳转到步骤22) 读取应用模式(由APP_MODE常量定义)的定义文件(

PXE安装Centos65 postfix+exmail+mysql实现基于 虚拟用户的web邮件系统

PXE安装Centos postfix+exmail+mysql实现基于 虚拟用户的web邮件系统 在实现centos+postfix的web内网邮件之前,参考了许多网上.书本知识,经过两次大的改动,目前该系统已经为公司正常服务工作五年多. 第一部分 win7+tftpd32+PXE安装CentOS6.5 32bit 第一步 安装CentOS6.5 32bit操作系统 基于win7+tftpd32+PXE来安装,但我这里只用虚拟机VMware Workstation9.0.1 build-894

12.16~12.23工作日志

12.16~12.23工作日志 2016.12.16 1.cick事件调用的函数中加入touchmove等事件会发生事件穿透,详情(http://www.tuicool.com/articles/6NfaUnM) 移动设备的click事件有300ms延迟,用于判断是否双击 2.ios设备会有一个默认的css样式,如input按钮在电脑上默认为方形,而在iPhone上默认为圆形,清除ipone默认样式方法: Input{-webkit-appearance:none;} 3.border-radi

基于虚拟用户的邮件系统配置

基于虚拟用户的邮件系统配置 实验说明: 操作系统:redhat5.8_x64bit 由postfix+ sasl + courier-authlib + MySQL(实现了虚拟用户.虚拟域) + dovecot + Webmail {extmail(extmain)} 组成的虚拟用户. 需要准备以下软件包: postfix-2.9.6.tar.gz courier-authlib-0.64.0.tar.bz2 extmail-1.2.tar.gz extman-1.1.tar.gz Unix-S

CentOS7基于虚拟用户的vsfptd

一.安装及配置文件介绍 1.使用yum的方式即可实现.  yum -y install vsftpd 2.用户认证配置文件 /etc/pam.d/vsftpd 3.主配置文件 /etc/vsftpd/vsftpd.conf 4.共享目录的位置:/var/ftp/ 二.vsfptd常用配置 1.匿名用户的常用配置  annoymous_enable=YES  #是否启用匿名用户 anno_upload_enable=YES #是否允许匿名用户上传权限 anno_mkdir_write_enable

搭建FTP/NFS服务(vsftpd基于虚拟用户的访问形式)

题目:搭建一套文件vsftp文件共享服务,共享目录为/ftproot,要求:(描述完整的过程) 1)基于虚拟用户的访问形式: 2)匿名不允许上传: 3)禁锢所有的用户于其家目录当中: 4)限制最大并发连接数为200: 5)匿名用户的最大传输速率512KB/s: 6)虚拟用户的账号存储在mysql数据库当中. 7)数据库通过NFS进行共享. 搭建环境: FTP/NFS服务器:192.168.10.99 (CentOS 7) 搭建FTP/NFS详细过程: 1.配置vsftpd基于pam_mysql的

[转帖]PostgreSQL ident和peer基于操作系统用户的认证

PostgreSQL ident和peer基于操作系统用户的认证 https://yq.aliyun.com/articles/55898 其实 local和127.0.0.1 还是有区别的 这里面应该就是对应了 local -> peer 127.0.0.1 -> ident 不同的登录方式 时用不同的认证方式. 摘要: PostgreSQL支持的认证方法非常多,除了自身的密码认证以外,还支持很多其他认证服务. trust md5 password GSSAPI SSPI Ident Pee

数据库05 /索引原理/创建用户和授权/数据库备份/慢查询优化/正确使用索引

目录 数据库05 /索引原理/创建用户和授权/数据库备份/慢查询优化/正确使用索引 1.什么是索引 2.索引的原理 3.索引的数据结构(聚集索引.辅助索引) 4.索引操作 5.索引的两大类型hash与btree 6.创建用户和授权 6.1对新用户的增删改 6.2对当前用户授权管理 7.MySQL数据库备份 8.锁和事务 9.慢查询优化的基本步骤 10.正确的使用索引 10.1 索引命中需注意的问题 10.2 其它注意事项 11.了解知识点 数据库05 /索引原理/创建用户和授权/数据库备份/慢查

汇编小记16/3/23

最后一次更新:2016-03-23 19:51:12 寄存器(内存访问) 字单元:字型数据在地址连续的两个内存单元中存储,比如2 3内存单元,2为该字型起始单元,则称该字单元为2地址地址单元 用mov指令访问内存单元,可以在mov指令中只给出单元的偏移地址,此时段地址默认在DS寄存器中 [address]表示偏移地址为address的内存单元 内存和寄存器中传送字型数据是,高地址单元和高8位寄存器,低地址单元和低8为寄存器 任意时刻,SS:SP指向栈顶元素 和mov不同的是,pop和push不需