Log.class.php
2.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<?php
/**
* 记录日志的插件
*
* @name Lib_Plugin_Log
* @package lib/plugin
* @copyright yoho.inc
* @version 5.0 (2014-2-14 10:48:39)
* @author fei.hong <fei.hong@yoho.cn>
*/
class Lib_Plugin_Log extends Framework_YPlugin
{
/**
* 覆盖父类的构造函数
*/
protected function __construct() {}
/**
* 是否开启该插件
*
* @return boolean
*/
public function _open()
{
return true;
}
/**
* 在调用动作之后执行的事件
*
* 备注:此方法用于记录接口的调用
*
* @param array $params 参数项
* @return void
*/
public function afterAction($params)
{
if (isset($params['req']))
{
$request = $params['req'];
$actionName = $request->controller_name . ':' . $request->action_name;
if (in_array($actionName, self::$allowsAction))
{
$query = $request->query();
if (isset($query['password']))
{
// 为了安全,清空密码
$query['password'] = '';
}
$key = isset($query['key']) ? $query['key'] : null;
$input = json_encode($query);
$output = isset($params['res']) ? (string) $params['res'] : '';
$query = array();
//注释掉日志
// Facade_Log::add($key, $actionName, $input, $output);
if(defined('SSO_LOG') && SSO_LOG){
@file_put_contents('/Data/logs/php/sso-abstruct-'.date('Y-m-d').'.log', '时间['.date('H:i:s').']-动作:'.$actionName.' 入参:'.$input.' 出参:'.$output."\n", FILE_APPEND);
}
}
}
}
/**
* 定义允许记录的操作
*
* @var array
*/
protected static $allowsAction = array(
// 注册
'register:back',
'register:callbackregister',
// 用户账号
'userinfo:update',
'userinfo:setauth',
'userinfo:delauth',
'userinfo:changepwd',
// 第三方
'associate:index',
'associate:callbacklogin',
'associate:bind',
// 订阅
'subscribe:index',
);
}