diff --git a/web_assets_warmup/README.rst b/web_assets_warmup/README.rst new file mode 100644 index 000000000..b6bec9830 --- /dev/null +++ b/web_assets_warmup/README.rst @@ -0,0 +1,93 @@ +================================ +Generate assets when Odoo starts +================================ + +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:358b7dda724b89b5345f039e82740006a3fd671e7f0dfb824dc67af6ae97a4df + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png + :target: https://odoo-community.org/page/development-status + :alt: Beta +.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 +.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fweb-lightgray.png?logo=github + :target: https://github.com/OCA/web/tree/18.0/web_assets_warmup + :alt: OCA/web +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/web-18-0/web-18-0-web_assets_warmup + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png + :target: https://runboat.odoo-community.org/builds?repo=OCA/web&target_branch=18.0 + :alt: Try me on Runboat + +|badge1| |badge2| |badge3| |badge4| |badge5| + +Ensure that assets are generated and stored in the DB when Odoo starts + +If the assets from the database are not up-to-date, they are regenerated +by Odoo when we print a report, but to do so Odoo forces the commit, so +if an exception occurs after (or during) the report rendering, it let +the database in a broken state (picking have been validated in this +case). + +To prevent this issue, we need to ensure that the assets are +well-generated when Odoo starts, not when the report is printed. + +**Table of contents** + +.. contents:: + :local: + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues `_. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us to smash it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +------- + +* Camptocamp + +Contributors +------------ + +- Sébastien Alix +- Michael Tietz (MT Software) +- Do Anh Duy + +Other credits +------------- + +The migration of this module from 14.0 to 18.0 was financially supported +by Camptocamp. + +Maintainers +----------- + +This module is maintained by the OCA. + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +This module is part of the `OCA/web `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/web_assets_warmup/__init__.py b/web_assets_warmup/__init__.py new file mode 100644 index 000000000..5bf67492b --- /dev/null +++ b/web_assets_warmup/__init__.py @@ -0,0 +1,2 @@ +from . import models +from .hooks import post_load_hook diff --git a/web_assets_warmup/__manifest__.py b/web_assets_warmup/__manifest__.py new file mode 100644 index 000000000..4d9b7ec02 --- /dev/null +++ b/web_assets_warmup/__manifest__.py @@ -0,0 +1,17 @@ +# Copyright 2020 Camptocamp SA +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl) +{ + "name": "Generate assets when Odoo starts", + "summary": "Ensure that assets are generated when Odoo starts.", + "version": "18.0.1.0.0", + "category": "Hidden", + "author": "Camptocamp, Odoo Community Association (OCA)", + "license": "AGPL-3", + "depends": [ + "web", + ], + "website": "https://github.com/OCA/web", + "data": ["data/ir_cron.xml"], + "post_load": "post_load_hook", + "installable": True, +} diff --git a/web_assets_warmup/data/ir_cron.xml b/web_assets_warmup/data/ir_cron.xml new file mode 100644 index 000000000..a71d2e763 --- /dev/null +++ b/web_assets_warmup/data/ir_cron.xml @@ -0,0 +1,18 @@ + + + + + Generate report assets + 1 + months + + + + code + model.cron_generate_assets() + + diff --git a/web_assets_warmup/hooks.py b/web_assets_warmup/hooks.py new file mode 100644 index 000000000..9498175fe --- /dev/null +++ b/web_assets_warmup/hooks.py @@ -0,0 +1,72 @@ +# Copyright 2020 Camptocamp SA +# Copyright 2023 Michael Tietz (MT Software) +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl) + +import logging +import os + +import psycopg2 + +from odoo import fields +from odoo.modules.registry import Registry +from odoo.tools import config + +logger = logging.getLogger(__name__) + + +def active_cron_assets(): + """Plan the next execution of the cron responsible to generate assets.""" + if os.environ.get("RUNNING_ENV") == "dev": + return + dbname = config["db_name"] + reg = Registry(dbname) + with reg.cursor() as cr: + cron_module, cron_ref = "web_assets_warmup", "cron_generate_assets" + query = """ + SELECT model, res_id + FROM ir_model_data + WHERE module=%s + AND name=%s; + """ + args = (cron_module, cron_ref) + cr.execute(query, args) + row = cr.fetchone() + # post_load hook is called before the update of the module so the + # ir_cron record doesn't exist on first install + if row: + model, res_id = row + if model != "ir.cron": + return + # if there is already someone doing the same or already being executed + # we can skip the update of ir_cron + try: + with cr.savepoint(): + cr.execute( + "SELECT * FROM ir_cron WHERE id = %s FOR UPDATE NOWAIT;", + (res_id,), + ) + query = """ + UPDATE ir_cron + SET active=true, nextcall=%s, priority=%s + WHERE id=%s + """ + nextcall = fields.Datetime.to_string(fields.Datetime.now()) + args = (nextcall, -99, res_id) + cr.execute(query, args) + logger.info( + "Cron '%s.%s' planned for execution at %s", + cron_module, + cron_ref, + nextcall, + ) + except psycopg2.OperationalError as e: + if e.pgcode == "55P03": + logger.info( + "Cron '%s.%s' is currently being executed or updated", + cron_module, + cron_ref, + ) + + +def post_load_hook(): + active_cron_assets() diff --git a/web_assets_warmup/i18n/it.po b/web_assets_warmup/i18n/it.po new file mode 100644 index 000000000..033673acd --- /dev/null +++ b/web_assets_warmup/i18n/it.po @@ -0,0 +1,42 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_assets_warmup +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: it\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" + +#. module: web_assets_warmup +#: model:ir.model.fields,field_description:web_assets_warmup.field_ir_actions_report__display_name +msgid "Display Name" +msgstr "" + +#. module: web_assets_warmup +#: model:ir.actions.server,name:web_assets_warmup.cron_generate_assets_ir_actions_server +#: model:ir.cron,cron_name:web_assets_warmup.cron_generate_assets +#: model:ir.cron,name:web_assets_warmup.cron_generate_assets +msgid "Generate report assets" +msgstr "" + +#. module: web_assets_warmup +#: model:ir.model.fields,field_description:web_assets_warmup.field_ir_actions_report__id +msgid "ID" +msgstr "" + +#. module: web_assets_warmup +#: model:ir.model.fields,field_description:web_assets_warmup.field_ir_actions_report____last_update +msgid "Last Modified on" +msgstr "" + +#. module: web_assets_warmup +#: model:ir.model,name:web_assets_warmup.model_ir_actions_report +msgid "Report Action" +msgstr "" diff --git a/web_assets_warmup/i18n/web_assets_warmup.pot b/web_assets_warmup/i18n/web_assets_warmup.pot new file mode 100644 index 000000000..539f3a10f --- /dev/null +++ b/web_assets_warmup/i18n/web_assets_warmup.pot @@ -0,0 +1,41 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * web_assets_warmup +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: web_assets_warmup +#: model:ir.model.fields,field_description:web_assets_warmup.field_ir_actions_report__display_name +msgid "Display Name" +msgstr "" + +#. module: web_assets_warmup +#: model:ir.actions.server,name:web_assets_warmup.cron_generate_assets_ir_actions_server +#: model:ir.cron,cron_name:web_assets_warmup.cron_generate_assets +#: model:ir.cron,name:web_assets_warmup.cron_generate_assets +msgid "Generate report assets" +msgstr "" + +#. module: web_assets_warmup +#: model:ir.model.fields,field_description:web_assets_warmup.field_ir_actions_report__id +msgid "ID" +msgstr "" + +#. module: web_assets_warmup +#: model:ir.model.fields,field_description:web_assets_warmup.field_ir_actions_report____last_update +msgid "Last Modified on" +msgstr "" + +#. module: web_assets_warmup +#: model:ir.model,name:web_assets_warmup.model_ir_actions_report +msgid "Report Action" +msgstr "" diff --git a/web_assets_warmup/models/__init__.py b/web_assets_warmup/models/__init__.py new file mode 100644 index 000000000..a248cf216 --- /dev/null +++ b/web_assets_warmup/models/__init__.py @@ -0,0 +1 @@ +from . import ir_actions_report diff --git a/web_assets_warmup/models/ir_actions_report.py b/web_assets_warmup/models/ir_actions_report.py new file mode 100644 index 000000000..fa3546bb3 --- /dev/null +++ b/web_assets_warmup/models/ir_actions_report.py @@ -0,0 +1,27 @@ +# Copyright 2020 Camptocamp SA +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl) + +import logging + +from odoo import api, models + +logger = logging.getLogger(__name__) + + +class IrActionsReport(models.Model): + _inherit = "ir.actions.report" + + @api.model + def cron_generate_assets(self): + """Ensure that the assets are well-generated in the database.""" + logger.info("Ensure that assets are generated and stored in the database...") + bundles = [ + "web.report_assets_common", + "web.report_assets_pdf", + ] + for bundle in bundles: + files = self.env["ir.qweb"]._get_asset_bundle(bundle, css=True, js=True) + files.js() + files.css() + logger.info("Ensure that assets are generated and stored in the database: done") + return True diff --git a/web_assets_warmup/pyproject.toml b/web_assets_warmup/pyproject.toml new file mode 100644 index 000000000..4231d0ccc --- /dev/null +++ b/web_assets_warmup/pyproject.toml @@ -0,0 +1,3 @@ +[build-system] +requires = ["whool"] +build-backend = "whool.buildapi" diff --git a/web_assets_warmup/readme/CONTRIBUTORS.md b/web_assets_warmup/readme/CONTRIBUTORS.md new file mode 100644 index 000000000..ba51b8278 --- /dev/null +++ b/web_assets_warmup/readme/CONTRIBUTORS.md @@ -0,0 +1,3 @@ +- Sébastien Alix \<\> +- Michael Tietz (MT Software) \<\> +- Do Anh Duy \<\> diff --git a/web_assets_warmup/readme/CREDITS.md b/web_assets_warmup/readme/CREDITS.md new file mode 100644 index 000000000..573d68b7e --- /dev/null +++ b/web_assets_warmup/readme/CREDITS.md @@ -0,0 +1 @@ +The migration of this module from 14.0 to 18.0 was financially supported by Camptocamp. diff --git a/web_assets_warmup/readme/DESCRIPTION.md b/web_assets_warmup/readme/DESCRIPTION.md new file mode 100644 index 000000000..62e275303 --- /dev/null +++ b/web_assets_warmup/readme/DESCRIPTION.md @@ -0,0 +1,10 @@ +Ensure that assets are generated and stored in the DB when Odoo starts + +If the assets from the database are not up-to-date, they are regenerated +by Odoo when we print a report, but to do so Odoo forces the commit, so +if an exception occurs after (or during) the report rendering, it let +the database in a broken state (picking have been validated in this +case). + +To prevent this issue, we need to ensure that the assets are +well-generated when Odoo starts, not when the report is printed. diff --git a/web_assets_warmup/static/description/icon.png b/web_assets_warmup/static/description/icon.png new file mode 100644 index 000000000..3a0328b51 Binary files /dev/null and b/web_assets_warmup/static/description/icon.png differ diff --git a/web_assets_warmup/static/description/index.html b/web_assets_warmup/static/description/index.html new file mode 100644 index 000000000..ca2b78601 --- /dev/null +++ b/web_assets_warmup/static/description/index.html @@ -0,0 +1,438 @@ + + + + + +Generate assets when Odoo starts + + + +
+

Generate assets when Odoo starts

+ + +

Beta License: AGPL-3 OCA/web Translate me on Weblate Try me on Runboat

+

Ensure that assets are generated and stored in the DB when Odoo starts

+

If the assets from the database are not up-to-date, they are regenerated +by Odoo when we print a report, but to do so Odoo forces the commit, so +if an exception occurs after (or during) the report rendering, it let +the database in a broken state (picking have been validated in this +case).

+

To prevent this issue, we need to ensure that the assets are +well-generated when Odoo starts, not when the report is printed.

+

Table of contents

+ +
+

Bug Tracker

+

Bugs are tracked on GitHub Issues. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us to smash it by providing a detailed and welcomed +feedback.

+

Do not contact contributors directly about support or help with technical issues.

+
+
+

Credits

+
+

Authors

+
    +
  • Camptocamp
  • +
+
+
+

Contributors

+ +
+
+

Other credits

+

The migration of this module from 14.0 to 18.0 was financially supported +by Camptocamp.

+
+
+

Maintainers

+

This module is maintained by the OCA.

+ +Odoo Community Association + +

OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use.

+

This module is part of the OCA/web project on GitHub.

+

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

+
+
+
+ +