Skip to Content
Meniu
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
Această întrebare a fost marcată
5 Răspunsuri
7490 Vizualizări

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

Imagine profil
Abandonează
Cel mai bun răspuns

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

Imagine profil
Abandonează
Autor

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

Cel mai bun răspuns

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.

Imagine profil
Abandonează

`pip install httpagentparser` should solve your issue

Related Posts Răspunsuri Vizualizări Activitate
2
mar. 24
11322
2
aug. 21
13534
1
dec. 19
5384
0
sept. 17
3538
0
aug. 17
2892