sebalix
9 years ago
committed by
Enric Tobella
No known key found for this signature in database
GPG Key ID: 1A2546A1B7BA2451
11 changed files with 308 additions and 2 deletions
-
2auditlog/README.rst
-
2auditlog/__manifest__.py
-
2auditlog/models/__init__.py
-
63auditlog/models/http_request.py
-
58auditlog/models/http_session.py
-
4auditlog/models/log.py
-
4auditlog/models/rule.py
-
4auditlog/security/ir.model.access.csv
-
10auditlog/views/auditlog_view.xml
-
89auditlog/views/http_request_view.xml
-
72auditlog/views/http_session_view.xml
@ -0,0 +1,63 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################## |
|||
# |
|||
# OpenERP, Open Source Management Solution |
|||
# Copyright (C) 2015 ABF OSIELL (<http://osiell.com>). |
|||
# |
|||
# This program is free software: you can redistribute it and/or modify |
|||
# it under the terms of the GNU Affero General Public License as |
|||
# published by the Free Software Foundation, either version 3 of the |
|||
# License, or (at your option) any later version. |
|||
# |
|||
# This program is distributed in the hope that it will be useful, |
|||
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|||
# GNU Affero General Public License for more details. |
|||
# |
|||
# You should have received a copy of the GNU Affero General Public License |
|||
# along with this program. If not, see <http://www.gnu.org/licenses/>. |
|||
# |
|||
############################################################################## |
|||
|
|||
from openerp import models, fields, api |
|||
from openerp.http import request |
|||
|
|||
|
|||
class AuditlogHTTPRequest(models.Model): |
|||
_name = 'auditlog.http.request' |
|||
_description = u"Auditlog - HTTP request log" |
|||
_order = "create_date DESC" |
|||
|
|||
name = fields.Char(u"Path") |
|||
root_url = fields.Char(u"Root URL") |
|||
user_id = fields.Many2one( |
|||
'res.users', string=u"User") |
|||
http_session_id = fields.Many2one( |
|||
'auditlog.http.session', string=u"Session") |
|||
user_context = fields.Char(u"Context") |
|||
log_ids = fields.One2many( |
|||
'auditlog.log', 'http_request_id', string=u"Logs") |
|||
|
|||
@api.model |
|||
def current_http_request(self): |
|||
"""Create a log corresponding to the current HTTP request, and returns |
|||
its ID. This method can be called several times during the |
|||
HTTP query/response cycle, it will only log the request on the |
|||
first call. |
|||
If no HTTP request is available, returns `False`. |
|||
""" |
|||
http_session_model = self.env['auditlog.http.session'] |
|||
httprequest = request.httprequest |
|||
if httprequest: |
|||
if hasattr(httprequest, 'auditlog_http_request_id'): |
|||
return httprequest.auditlog_http_request_id |
|||
vals = { |
|||
'name': httprequest.path, |
|||
'root_url': httprequest.url_root, |
|||
'user_id': request.uid, |
|||
'http_session_id': http_session_model.current_http_session(), |
|||
'user_context': request.context, |
|||
} |
|||
httprequest.auditlog_http_request_id = self.create(vals).id |
|||
return httprequest.auditlog_http_request_id |
|||
return False |
@ -0,0 +1,58 @@ |
|||
# -*- coding: utf-8 -*- |
|||
############################################################################## |
|||
# |
|||
# OpenERP, Open Source Management Solution |
|||
# Copyright (C) 2015 ABF OSIELL (<http://osiell.com>). |
|||
# |
|||
# This program is free software: you can redistribute it and/or modify |
|||
# it under the terms of the GNU Affero General Public License as |
|||
# published by the Free Software Foundation, either version 3 of the |
|||
# License, or (at your option) any later version. |
|||
# |
|||
# This program is distributed in the hope that it will be useful, |
|||
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|||
# GNU Affero General Public License for more details. |
|||
# |
|||
# You should have received a copy of the GNU Affero General Public License |
|||
# along with this program. If not, see <http://www.gnu.org/licenses/>. |
|||
# |
|||
############################################################################## |
|||
|
|||
from openerp import models, fields, api |
|||
from openerp.http import request |
|||
|
|||
|
|||
class AuditlogtHTTPSession(models.Model): |
|||
_name = 'auditlog.http.session' |
|||
_description = u"Auditlog - HTTP User session log" |
|||
_order = "create_date DESC" |
|||
|
|||
name = fields.Char(u"Session ID") |
|||
user_id = fields.Many2one( |
|||
'res.users', string=u"User") |
|||
http_request_ids = fields.One2many( |
|||
'auditlog.http.request', 'http_session_id', string=u"HTTP Requests") |
|||
|
|||
@api.model |
|||
def current_http_session(self): |
|||
"""Create a log corresponding to the current HTTP user session, and |
|||
returns its ID. This method can be called several times during the |
|||
HTTP query/response cycle, it will only log the user session on the |
|||
first call. |
|||
If no HTTP user session is available, returns `False`. |
|||
""" |
|||
httpsession = request.httpsession |
|||
if httpsession: |
|||
existing_session = self.search( |
|||
[('name', '=', httpsession.sid), |
|||
('user_id', '=', request.uid)]) |
|||
if existing_session: |
|||
return existing_session.id |
|||
vals = { |
|||
'name': httpsession.sid, |
|||
'user_id': request.uid, |
|||
} |
|||
httpsession.auditlog_http_session_id = self.create(vals).id |
|||
return httpsession.auditlog_http_session_id |
|||
return False |
@ -0,0 +1,89 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<openerp> |
|||
<data> |
|||
|
|||
<record id="view_auditlog_http_request_form" model="ir.ui.view"> |
|||
<field name="name">auditlog.http.request.form</field> |
|||
<field name="model">auditlog.http.request</field> |
|||
<field name="type">form</field> |
|||
<field name="arch" type="xml"> |
|||
<form string="HTTP Request"> |
|||
<sheet> |
|||
<group string="HTTP Request"> |
|||
<field name="root_url"/> |
|||
<field name="name"/> |
|||
<field name="create_date"/> |
|||
</group> |
|||
<group string="User session"> |
|||
<field name="user_id"/> |
|||
<field name="http_session_id"/> |
|||
<field name="user_context"/> |
|||
</group> |
|||
<group string="Logs"> |
|||
<field name="log_ids" nolabel="1"/> |
|||
</group> |
|||
</sheet> |
|||
</form> |
|||
</field> |
|||
</record> |
|||
|
|||
<record id="view_auditlog_http_request_tree" model="ir.ui.view"> |
|||
<field name="name">auditlog.http.request.tree</field> |
|||
<field name="model">auditlog.http.request</field> |
|||
<field name="type">tree</field> |
|||
<field name="arch" type="xml"> |
|||
<tree string="HTTP Requests"> |
|||
<field name="name"/> |
|||
<field name="create_date"/> |
|||
<field name="user_id"/> |
|||
<field name="http_session_id"/> |
|||
</tree> |
|||
</field> |
|||
</record> |
|||
|
|||
<record id="view_auditlog_http_request_search" model="ir.ui.view"> |
|||
<field name="name">auditlog.http.request.search</field> |
|||
<field name="model">auditlog.http.request</field> |
|||
<field name="type">search</field> |
|||
<field name="arch" type="xml"> |
|||
<search string="HTTP Requests"> |
|||
<field name="create_date"/> |
|||
<field name="root_url"/> |
|||
<field name="name"/> |
|||
<field name="user_id"/> |
|||
<field name="http_session_id"/> |
|||
<group expand="0" string="Group By..."> |
|||
<filter name="group_by_root_url" |
|||
string="Root URL" |
|||
domain="[]" context="{'group_by':'root_url'}"/> |
|||
<filter name="group_by_name" |
|||
string="Path" |
|||
domain="[]" context="{'group_by':'name'}"/> |
|||
<filter name="group_by_create_date" |
|||
string="Created on" |
|||
domain="[]" context="{'group_by':'create_date'}"/> |
|||
<filter name="group_by_user_id" |
|||
string="User" |
|||
domain="[]" context="{'group_by':'user_id'}"/> |
|||
<filter name="group_by_http_session_id" |
|||
string="User session" |
|||
domain="[]" context="{'group_by':'http_session_id'}"/> |
|||
</group> |
|||
</search> |
|||
</field> |
|||
</record> |
|||
|
|||
<record model="ir.actions.act_window" id="action_auditlog_http_request_tree"> |
|||
<field name="name">HTTP Requests</field> |
|||
<field name="type">ir.actions.act_window</field> |
|||
<field name="res_model">auditlog.http.request</field> |
|||
<field name="view_type">form</field> |
|||
<field name="view_id" ref="view_auditlog_http_request_tree"/> |
|||
</record> |
|||
|
|||
<menuitem id="menu_action_auditlog_http_request_tree" |
|||
parent="menu_audit" |
|||
action="action_auditlog_http_request_tree"/> |
|||
|
|||
</data> |
|||
</openerp> |
@ -0,0 +1,72 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<openerp> |
|||
<data> |
|||
|
|||
<record id="view_auditlog_http_session_form" model="ir.ui.view"> |
|||
<field name="name">auditlog.http.session.form</field> |
|||
<field name="model">auditlog.http.session</field> |
|||
<field name="type">form</field> |
|||
<field name="arch" type="xml"> |
|||
<form string="User session"> |
|||
<sheet> |
|||
<group string="User session"> |
|||
<field name="user_id"/> |
|||
<field name="name"/> |
|||
<field name="create_date"/> |
|||
</group> |
|||
<group string="HTTP Requests"> |
|||
<field name="http_request_ids" nolabel="1"/> |
|||
</group> |
|||
</sheet> |
|||
</form> |
|||
</field> |
|||
</record> |
|||
|
|||
<record id="view_auditlog_http_session_tree" model="ir.ui.view"> |
|||
<field name="name">auditlog.http.session.tree</field> |
|||
<field name="model">auditlog.http.session</field> |
|||
<field name="type">tree</field> |
|||
<field name="arch" type="xml"> |
|||
<tree string="User sessions"> |
|||
<field name="user_id"/> |
|||
<field name="name"/> |
|||
<field name="create_date"/> |
|||
</tree> |
|||
</field> |
|||
</record> |
|||
|
|||
<record id="view_auditlog_http_session_search" model="ir.ui.view"> |
|||
<field name="name">auditlog.http.session.search</field> |
|||
<field name="model">auditlog.http.session</field> |
|||
<field name="type">search</field> |
|||
<field name="arch" type="xml"> |
|||
<search string="User sessions"> |
|||
<field name="user_id"/> |
|||
<field name="name"/> |
|||
<field name="create_date"/> |
|||
<group expand="0" string="Group By..."> |
|||
<filter name="group_by_user_id" |
|||
string="User" |
|||
domain="[]" context="{'group_by':'user_id'}"/> |
|||
<filter name="group_by_create_date" |
|||
string="Created on" |
|||
domain="[]" context="{'group_by':'create_date'}"/> |
|||
</group> |
|||
</search> |
|||
</field> |
|||
</record> |
|||
|
|||
<record model="ir.actions.act_window" id="action_auditlog_http_session_tree"> |
|||
<field name="name">User sessions</field> |
|||
<field name="type">ir.actions.act_window</field> |
|||
<field name="res_model">auditlog.http.session</field> |
|||
<field name="view_type">form</field> |
|||
<field name="view_id" ref="view_auditlog_http_session_tree"/> |
|||
</record> |
|||
|
|||
<menuitem id="menu_action_auditlog_http_session_tree" |
|||
parent="menu_audit" |
|||
action="action_auditlog_http_session_tree"/> |
|||
|
|||
</data> |
|||
</openerp> |
Write
Preview
Loading…
Cancel
Save
Reference in new issue