You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

62 lines
2.7 KiB

  1. # -*- coding: utf-8 -*-
  2. ##############################################################################
  3. #
  4. # Authors: Laurent Mignon
  5. # Copyright (c) 2014 Acsone SA/NV (http://www.acsone.eu)
  6. #
  7. # This program is free software: you can redistribute it and/or modify
  8. # it under the terms of the GNU Affero General Public License as published
  9. # by the Free Software Foundation, either version 3 of the License, or
  10. # (at your option) any later version.
  11. #
  12. # This program is distributed in the hope that it will be useful,
  13. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. # GNU Affero General Public License for more details.
  16. #
  17. # You should have received a copy of the GNU Affero General Public License
  18. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  19. #
  20. ##############################################################################
  21. from openerp import models, exceptions
  22. from openerp.tools.translate import _
  23. class HelpOnline(models.TransientModel):
  24. _name = 'help.online'
  25. def _get_view_name(self, model, view_type, domain=None, context=None):
  26. parameter_model = self.env['ir.config_parameter']
  27. page_prefix = parameter_model.get_param('help_online_page_prefix',
  28. False)
  29. if not page_prefix:
  30. raise exceptions.Warning(_('No page prefix parameter specified !'))
  31. name = '%s-%s' % (page_prefix, model.replace('.', '-'))
  32. return name
  33. def get_page_url(self, model, view_type, domain=None, context=None):
  34. user_model = self.env['res.users']
  35. if not user_model.has_group('help_online.help_online_group_reader'):
  36. return {}
  37. ir_model = self.env['ir.model']
  38. description = self.env[model]._description
  39. res = ir_model.name_search(model, operator='=')
  40. if res:
  41. description = res[0][1]
  42. name = self._get_view_name(model, view_type, domain, context)
  43. website_model = self.env['website']
  44. url = '/page/' + website_model.page_for_name(name)
  45. if website_model.page_exists(url):
  46. if view_type:
  47. url = url + '#' + view_type
  48. title = _('Help on %s') % description
  49. return {'url': url,
  50. 'title': title,
  51. 'exists': True}
  52. elif user_model.has_group('help_online.help_online_group_writer'):
  53. title = _('Create Help page for %s') % description
  54. return {'url': 'website/add/%s' % name,
  55. 'title': title,
  56. 'exists': False}
  57. else:
  58. return {}