TaoLer/app/listener/UserLogin.php
2020-11-29 17:27:47 +08:00

43 lines
1.0 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
declare (strict_types = 1);
namespace app\listener;
use think\facade\Db;
use think\facade\Log;
class UserLogin
{
/**
* 监听登陆记录IP和日志
* @param $user
* @throws \think\db\exception\DbException
*/
public function handle($user)
{
$name = $user->name;
$ip = $user->ip;
/*
$url = 'http://ip-api.com/json/'.$ip.'?lang=zh-CN';
//$url = 'http://ip-api.com/json/?lang=zh-CN';
$add = Api::urlGet($url);
if($add->status == 'success'){
$city = $add->city;
} else {
$city ='未知';
}
*/
Db::name('user')->where('name',$name)->update(
[
//'city' => $city,
'last_login_ip' => $user->ip,
'last_login_time' => time()
]
);
Log::channel('login')->info('login:{user} {ip}',['user'=>$name,'ip'=>$ip]);
}
}