如果用户使用"rest-auth"登录,如何添加last_login_ip? [英] How to add the last_login_ip, when the user login if using `rest-auth`?

查看:124
本文介绍了如果用户使用"rest-auth"登录,如何添加last_login_ip?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如果使用 rest-auth 登录,如何添加last_login_ip?

在询问以下我搜索过的帖子后,请问:

中了解更多有关信号的信息.请注意如何在应用就绪方法中导入信号

在您的应用目录中创建一个apps.py(可能已经存在)

从django.apps中的

 导入AppConfig类YourAppConfig(AppConfig):名称='管理员后台.用户管理.qiyun_admin_usermanage'def ready(自己):导入管理员后台.用户管理.qiyun_admin_usermanage.api.signals#noqa 

在您的应用程序 init .py文件中,

  default_app_config ='管理员后台.用户管理.qiyun_admin_usermanage.apps.QiyunAdminUsermanageConfig' 

How to add the last_login_ip, when the user login if using rest-auth?

Befor ask the post I searched one post bellow:

How can I do my logic in `http://127.0.0.1:8000/rest-auth/login/` of `django-rest-auth`?

The answer is perfect for custom verify the login params.

But, how about after login, then add attribute to the User?

I mean, the answer is just for verify the data, I want to after user login success, I want to add the last_login_ip to the user instance.


EDIT

Please be attention, I know how to get the remote IP who visit my site. I mean I use the rest-auth to login, and customized LoginSerializer like the link. The link is for verify the login data, I can not to change the last_login_ip data in the LoginSerializer, I want when the user login success, then change the user's last_login_ip. but where to write my change last_login_ip code?


EDIT-2

I follow the @at14's advice, in the init.py (as the same level as apps.py):

default_app_config = '管理员后台.用户管理.qiyun_admin_usermanage.apps.QiyunAdminUsermanageConfig'

and in the apps.py:

from django.apps import AppConfig

class QiyunAdminUsermanageConfig(AppConfig):
    name = 'qiyun_admin_usermanage'

    def ready(self):
        import 管理员后台.用户管理.qiyun_admin_usermanage.api.signals

There will get bellow error:

django.core.exceptions.ImproperlyConfigured: Cannot import 'qiyun_admin_usermanage'. Check that '管理员后台.用户管理.qiyun_admin_usermanage.apps.QiyunAdminUsermanageConfig.name' is correct.

and I also tried to comment the default_app_config = '管理员后台.用户管理.qiyun_admin_usermanage.apps.QiyunAdminUsermanageConfig' in the init.py, but still not work.

解决方案

Use django's user logged in signal to save this information into the database.

In signals.py,

from django.contrib.auth.signals import user_logged_in
from django.dispatch import receiver

@receiver(user_logged_in)
def user_logged_in_callback(sender, user, request, **kwargs):
   // Get the IP Address and save it

Read more about signals here. Do pay attention on how to import signals in your app ready method

Make an apps.py (it might already exist) in your app directory,

from django.apps import AppConfig


class YourAppConfig(AppConfig):
    name = '管理员后台.用户管理.qiyun_admin_usermanage'

    def ready(self):
        import 管理员后台.用户管理.qiyun_admin_usermanage.api.signals  # noqa

In your apps init.py file,

default_app_config = '管理员后台.用户管理.qiyun_admin_usermanage.apps.QiyunAdminUsermanageConfig'

这篇关于如果用户使用"rest-auth"登录,如何添加last_login_ip?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆