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.

65 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 page_exists(self, name):
  34. website_model = self.env['website']
  35. return website_model.page_exists(name)
  36. def get_page_url(self, model, view_type, domain=None, context=None):
  37. user_model = self.env['res.users']
  38. if not user_model.has_group('help_online.help_online_group_reader'):
  39. return {}
  40. ir_model = self.env['ir.model']
  41. description = self.env[model]._description
  42. res = ir_model.name_search(model, operator='=')
  43. if res:
  44. description = res[0][1]
  45. name = self._get_view_name(model, view_type, domain, context)
  46. if self.page_exists(name):
  47. url = '/page/%s' % name
  48. if view_type:
  49. url = url + '#' + view_type
  50. title = _('Help on %s') % description
  51. return {'url': url,
  52. 'title': title,
  53. 'exists': True}
  54. elif user_model.has_group('help_online.help_online_group_writer'):
  55. title = _('Create Help page for %s') % description
  56. return {'url': 'website/add/%s' % name,
  57. 'title': title,
  58. 'exists': False}
  59. else:
  60. return {}