跳至內容
選單
此問題已被標幟
5 回覆
7497 瀏覽次數

I want to identify certain machines so that no matter which user is logged in some rules will apply to them. Is it possible?

頭像
捨棄
最佳答案

Hi,

You can get the logged in machine details using the following code.

import httpagentparser

agent = request.httprequest.environ.get('HTTP_USER_AGENT')
agent_details = httpagentparser.detect(agent)
user_os = agent_details['os']['name']
browser_name = agent_details['browser']['name']
ip_address = request.httprequest.environ['REMOTE_ADDR']

From the above code you will get the IP address of the logged system, Browser and OS details.

You can also check with this community modules, but it is not in v7.

https://www.odoo.com/apps/modules/10.0/login_user_detail/

https://www.odoo.com/apps/modules/10.0/user_login_alert/

Thanks

頭像
捨棄
作者

How do I get the request object?

above code is return inside the controller. You can check the modules in the given link, that will give you more info

最佳答案

User login alert gives error as "Unable to install module "user_login_alert" because an external dependency is not met: No module named httpagentparser" Please assist.

頭像
捨棄

`pip install httpagentparser` should solve your issue

相關帖文 回覆 瀏覽次數 活動
2
3月 24
11340
2
8月 21
13556
1
12月 19
5400
0
9月 17
3540
0
8月 17
2900