summaryrefslogtreecommitdiff
path: root/addons/website/models/ir_actions.py
diff options
context:
space:
mode:
authorstephanchrst <stephanchrst@gmail.com>2022-05-10 21:51:50 +0700
committerstephanchrst <stephanchrst@gmail.com>2022-05-10 21:51:50 +0700
commit3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch)
treea44932296ef4a9b71d5f010906253d8c53727726 /addons/website/models/ir_actions.py
parent0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff)
initial commit 2
Diffstat (limited to 'addons/website/models/ir_actions.py')
-rw-r--r--addons/website/models/ir_actions.py77
1 files changed, 77 insertions, 0 deletions
diff --git a/addons/website/models/ir_actions.py b/addons/website/models/ir_actions.py
new file mode 100644
index 00000000..30582050
--- /dev/null
+++ b/addons/website/models/ir_actions.py
@@ -0,0 +1,77 @@
+# -*- coding: utf-8 -*-
+# Part of Odoo. See LICENSE file for full copyright and licensing details.
+from werkzeug import urls
+
+from odoo import api, fields, models
+from odoo.http import request
+from odoo.tools.json import scriptsafe as json_scriptsafe
+
+
+class ServerAction(models.Model):
+ """ Add website option in server actions. """
+
+ _name = 'ir.actions.server'
+ _inherit = 'ir.actions.server'
+
+ xml_id = fields.Char('External ID', compute='_compute_xml_id', help="ID of the action if defined in a XML file")
+ website_path = fields.Char('Website Path')
+ website_url = fields.Char('Website Url', compute='_get_website_url', help='The full URL to access the server action through the website.')
+ website_published = fields.Boolean('Available on the Website', copy=False,
+ help='A code server action can be executed from the website, using a dedicated '
+ 'controller. The address is <base>/website/action/<website_path>. '
+ 'Set this field as True to allow users to run this action. If it '
+ 'is set to False the action cannot be run through the website.')
+
+ def _compute_xml_id(self):
+ res = self.get_external_id()
+ for action in self:
+ action.xml_id = res.get(action.id)
+
+ def _compute_website_url(self, website_path, xml_id):
+ base_url = self.env['ir.config_parameter'].sudo().get_param('web.base.url')
+ link = website_path or xml_id or (self.id and '%d' % self.id) or ''
+ if base_url and link:
+ path = '%s/%s' % ('/website/action', link)
+ return urls.url_join(base_url, path)
+ return ''
+
+ @api.depends('state', 'website_published', 'website_path', 'xml_id')
+ def _get_website_url(self):
+ for action in self:
+ if action.state == 'code' and action.website_published:
+ action.website_url = action._compute_website_url(action.website_path, action.xml_id)
+ else:
+ action.website_url = False
+
+ @api.model
+ def _get_eval_context(self, action):
+ """ Override to add the request object in eval_context. """
+ eval_context = super(ServerAction, self)._get_eval_context(action)
+ if action.state == 'code':
+ eval_context['request'] = request
+ eval_context['json'] = json_scriptsafe
+ return eval_context
+
+ @api.model
+ def _run_action_code_multi(self, eval_context=None):
+ """ Override to allow returning response the same way action is already
+ returned by the basic server action behavior. Note that response has
+ priority over action, avoid using both.
+ """
+ res = super(ServerAction, self)._run_action_code_multi(eval_context)
+ return eval_context.get('response', res)
+
+
+class IrActionsTodo(models.Model):
+ _name = 'ir.actions.todo'
+ _inherit = 'ir.actions.todo'
+
+ def action_launch(self):
+ res = super().action_launch() # do ensure_one()
+
+ if self.id == self.env.ref('website.theme_install_todo').id:
+ # Pick a theme consume all ir.actions.todo by default (due to lower sequence).
+ # Once done, we re-enable the main ir.act.todo: open_menu
+ self.env.ref('base.open_menu').action_open()
+
+ return res