# -*- coding: utf-8 -*- ############################################################################## # # Authors: Laurent Mignon # Copyright (c) 2014 Acsone SA/NV (http://www.acsone.eu) # # 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 . # ############################################################################## from openerp import models, exceptions from openerp.tools.translate import _ class HelpOnline(models.TransientModel): _name = 'help.online' def _get_view_name(self, model, view_type, domain=None, context=None): parameter_model = self.env['ir.config_parameter'] page_prefix = parameter_model.get_param('help_online_page_prefix', False) if not page_prefix: raise exceptions.Warning(_('No page prefix parameter specified !')) name = '%s-%s' % (page_prefix, model.replace('.', '-')) return name def get_page_url(self, model, view_type, domain=None, context=None): user_model = self.env['res.users'] if not user_model.has_group('help_online.help_online_group_reader'): return {} ir_model = self.env['ir.model'] description = self.env[model]._description res = ir_model.name_search(model, operator='=') if res: description = res[0][1] name = self._get_view_name(model, view_type, domain, context) website_model = self.env['website'] url = '/page/' + website_model.page_for_name(name) if website_model.page_exists(url): if view_type: url = url + '#' + view_type title = _('Help on %s') % description return {'url': url, 'title': title, 'exists': True} elif user_model.has_group('help_online.help_online_group_writer'): title = _('Create Help page for %s') % description return {'url': 'website/add/%s' % name, 'title': title, 'exists': False} else: return {}