-
Notifications
You must be signed in to change notification settings - Fork 56
11.0 ir_attachment_google_cloud_storage #793
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
em230418
wants to merge
3
commits into
it-projects-llc:misc-addons-11.0-ir_attachment_google_cloud_storage
Choose a base branch
from
em230418:misc-addons-11.0-ir_attachment_google_cloud_storage
base: misc-addons-11.0-ir_attachment_google_cloud_storage
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,51 @@ | ||
| .. image:: https://img.shields.io/badge/license-MIT-blue.svg | ||
| :target: https://opensource.org/licenses/MIT | ||
| :alt: License: MIT | ||
|
|
||
| ================================= | ||
| Google Cloud Storage Attachment Storage | ||
| ================================= | ||
|
|
||
| TODO description intro | ||
|
|
||
| TODO detailed description | ||
|
|
||
| Credits | ||
| ======= | ||
|
|
||
| Contributors | ||
| ------------ | ||
| * `Eugene Molotov <https://it-projects.info/team/em230418>`__: | ||
|
|
||
| * :one::zero: init version of the module | ||
|
|
||
| Sponsors | ||
| -------- | ||
| * `IT-Projects LLC <https://it-projects.info>`__ | ||
|
|
||
| Maintainers | ||
| ----------- | ||
| * `IT-Projects LLC <https://it-projects.info>`__ | ||
|
|
||
| To get a guaranteed support | ||
| you are kindly requested to purchase the module | ||
| at `odoo apps store <https://apps.odoo.com/apps/modules/11.0/ir_attachment_google_cloud_storage/>`__. | ||
|
|
||
| Thank you for understanding! | ||
|
|
||
| `IT-Projects Team <https://www.it-projects.info/team>`__ | ||
|
|
||
| Further information | ||
| =================== | ||
|
|
||
| Demo: http://runbot.it-projects.info/demo/misc-addons/11.0 | ||
|
|
||
| HTML Description: https://apps.odoo.com/apps/modules/11.0/ir_attachment_google_cloud_storage/ | ||
|
|
||
| Usage instructions: `<doc/index.rst>`_ | ||
|
|
||
| Changelog: `<doc/changelog.rst>`_ | ||
|
|
||
| Notifications on updates: `via Atom <https://github.com/it-projects-llc/misc-addons/commits/11.0/ir_attachment_google_cloud_storage.atom>`_, `by Email <https://blogtrottr.com/?subscribe=https://github.com/it-projects-llc/misc-addons/commits/11.0/ir_attachment_google_cloud_storage.atom>`_ | ||
|
|
||
| Tested on Odoo 11.0 a827d3015c6994bc3c779f9ba5cd270d8bdd8edd |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| # License MIT (https://opensource.org/licenses/MIT). | ||
|
|
||
| from . import models |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,39 @@ | ||
| # Copyright 2020 Eugene Molotov <https://it-projects.info/team/em230418> | ||
| # License MIT (https://opensource.org/licenses/MIT). | ||
|
|
||
| { | ||
| "name": """Google Cloud Storage Attachment Storage""", | ||
| "summary": """TODO description intro""", | ||
| "category": "Extra Tools", | ||
| # "live_test_url": "http://apps.it-projects.info/shop/product/DEMO-URL?version=12.0", | ||
| "images": [], | ||
| "version": "11.0.1.0.0", | ||
| "application": False, | ||
| "author": "IT-Projects LLC, Eugene Molotov", | ||
| "support": "apps@it-projects.info", | ||
| "website": "https://apps.odoo.com/apps/modules/11.0/ir_attachment_google_cloud_storage/", | ||
| "license": "Other OSI approved licence", # MIT | ||
| # "price": 9.00, | ||
| # "currency": "EUR", | ||
| "depends": ["base", "base_setup"], | ||
| "external_dependencies": {"python": ["google.cloud.storage"], "bin": []}, | ||
| "data": ["views/res_config_settings_views.xml"], | ||
| "demo": [], | ||
| "qweb": [], | ||
| "post_load": None, | ||
| "pre_init_hook": None, | ||
| "post_init_hook": None, | ||
| "uninstall_hook": None, | ||
| "auto_install": False, | ||
| "installable": True, | ||
| # "demo_title": "Google Drive Attachment Storage", | ||
| # "demo_addons": [ | ||
| # ], | ||
| # "demo_addons_hidden": [ | ||
| # ], | ||
| # "demo_url": "DEMO-URL", | ||
| # "demo_summary": "TODO description intro", | ||
| # "demo_images": [ | ||
| # "images/MAIN_IMAGE", | ||
| # ] | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| `1.0.0` | ||
| ------- | ||
|
|
||
| - **Init version** | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,35 @@ | ||
| ================================= | ||
| Google Drive Attachment Storage | ||
| ================================= | ||
|
|
||
| Installation | ||
| ============ | ||
| {Instruction about things to do before actual installation} | ||
|
|
||
| * {OPTIONAL }`Activate longpolling <https://odoo-development.readthedocs.io/en/latest/admin/longpolling.html>`__ | ||
| * {Additional notes if any} | ||
| * `Install <https://odoo-development.readthedocs.io/en/latest/odoo/usage/install-module.html>`__ this module in a usual way | ||
|
|
||
| Configuration | ||
| ============= | ||
|
|
||
| {Instruction how to configure the module before start to use it} | ||
|
|
||
| * `Log in as SUPERUSER <https://odoo-development.readthedocs.io/en/latest/odoo/usage/login-as-superuser.html>`__ | ||
| * `Activate Developer Mode <https://odoo-development.readthedocs.io/en/latest/odoo/usage/debug-mode.html>`__ | ||
| * Open menu ``[[ {Menu} ]] >> {Submenu} >> {Subsubmenu}`` | ||
| * Click ``[{Button Name}]`` | ||
|
|
||
| Usage | ||
| ===== | ||
|
|
||
| {Instruction for daily usage. It should describe how to check that module works. What shall user do and what would user get.} | ||
|
|
||
| * Open menu ``[[ {Menu} ]]>> {Submenu} >> {Subsubmenu}`` | ||
| * Click ``[{Button Name}]`` | ||
| * RESULT: {what user gets, how the modules changes default behaviour} | ||
|
|
||
| Uninstallation | ||
| ============== | ||
|
|
||
| {Optional section for uninstallation notes. Delete it if you don't have notes for uninstallation.} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html) | ||
|
|
||
| from . import ir_attachment | ||
| from . import res_config_settings |
125 changes: 125 additions & 0 deletions
125
ir_attachment_google_cloud_storage/models/ir_attachment.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,125 @@ | ||
| # Copyright 2020 Eugene Molotov <https://it-projects.info/team/em230418> | ||
| # License MIT (https://opensource.org/licenses/MIT). | ||
|
|
||
| import base64 | ||
| import json | ||
| import logging | ||
|
|
||
| from odoo import api, models | ||
| from odoo.tools import human_size | ||
|
|
||
| _logger = logging.getLogger(__name__) | ||
| _logger.setLevel(logging.DEBUG) | ||
|
|
||
| PREFIX = "google_cloud_storage://" | ||
|
|
||
|
|
||
| class IrAttachment(models.Model): | ||
|
|
||
| _inherit = "ir.attachment" | ||
|
|
||
| # это нагло скопировано с ir_attachment_url | ||
| @api.multi | ||
| def _filter_protected_attachments(self): | ||
| return self.filtered( | ||
| lambda r: r.res_model not in ["ir.ui.view", "ir.ui.menu"] | ||
| or not r.name.startswith("/web/content/") | ||
| or not r.name.startswith("/web/static/") | ||
| ) | ||
|
|
||
| def _inverse_datas(self): | ||
| our_records = self._filter_protected_attachments() | ||
|
|
||
| if our_records: | ||
| # make sure, you can use google drive | ||
| # otherwise - use default behaviour | ||
| try: | ||
| bucket = self.env["res.config.settings"].get_google_cloud_storage_bucket() | ||
| except Exception: | ||
| _logger.exception( | ||
| "Google Cloud Storage is not configured properly. Keeping attachments as usual" | ||
| ) | ||
| return super(IrAttachment, self)._inverse_datas() | ||
|
|
||
| for attach in our_records: | ||
| bin_value = base64.b64decode(attach.datas) | ||
| checksum = self._compute_checksum(bin_value) | ||
| fname = self._file_write_google_cloud_storage(bucket, bin_value, checksum) | ||
| vals = { | ||
| "file_size": len(bin_value), | ||
| "checksum": checksum, | ||
| "index_content": self._index( | ||
| bin_value, attach.datas_fname, attach.mimetype | ||
| ), | ||
| "store_fname": fname, | ||
| "db_datas": False, | ||
| "type": "binary", | ||
| "datas_fname": attach.datas_fname, | ||
| } | ||
| super(IrAttachment, attach.sudo()).write(vals) | ||
|
|
||
| return super(IrAttachment, self - our_records)._inverse_datas() | ||
|
|
||
| def _file_read(self, fname, bin_size=False): | ||
| if not fname.startswith(PREFIX): | ||
| return super(IrAttachment, self)._file_read(fname, bin_size) | ||
|
|
||
| bucket = self.env["res.config.settings"].get_google_cloud_storage_bucket() | ||
|
|
||
| file_id = fname[len(PREFIX) :] | ||
| _logger.debug("reading file with id {}".format(file_id)) | ||
|
|
||
| blob = bucket.get_blob(file_id) | ||
|
|
||
| if bin_size: | ||
| return human_size(blob.size) | ||
| else: | ||
| return base64.b64encode(blob.download_as_string()) | ||
|
|
||
| def _file_write_google_cloud_storage(self, bucket, bin_value, checksum): | ||
| file_id = "odoo/{}".format(checksum) | ||
|
|
||
| blob = bucket.blob(file_id) | ||
| blob.upload_from_string(bin_value) | ||
|
|
||
| _logger.debug("uploaded file with id {}".format(file_id)) | ||
| return PREFIX + file_id | ||
|
|
||
| def _file_delete(self, fname): | ||
| if not fname.startswith(PREFIX): | ||
| return super(IrAttachment, self)._file_delete(fname) | ||
|
|
||
| bucket = self.env["res.config.settings"].get_google_cloud_storage_bucket() | ||
|
|
||
| file_id = fname[len(PREFIX) :] | ||
| _logger.debug("deleting file with id {}".format(file_id)) | ||
|
|
||
| blob = bucket.get_blob(file_id) | ||
|
|
||
| blob.delete() | ||
|
|
||
| def force_storage_google_cloud_storage(self): | ||
| bucket = self.env["res.config.settings"].get_google_cloud_storage_bucket() | ||
|
|
||
| attachment_ids = self._search([ | ||
| ('store_fname', 'not ilike', PREFIX), | ||
| ('store_fname', '!=', False), | ||
| ('res_model', 'not in', ["ir.ui.view", "ir.ui.menu"]), | ||
| ]) | ||
|
|
||
| _logger.info("%s attachments to store to google cloud storage" % len(attachment_ids)) | ||
| for attach in map(self.browse, attachment_ids): | ||
| _logger.info("storing %s", repr(attach)) | ||
|
|
||
| old_store_fname = attach.store_fname | ||
| data = self._file_read(old_store_fname, bin_size=False) | ||
| bin_data = base64.b64decode(data) if data else b'' | ||
| checksum = self._compute_checksum(bin_data) if not attach.checksum else attach.checksum | ||
|
|
||
| new_store_fname = self._file_write_google_cloud_storage(bucket, bin_data, checksum) | ||
| attach.write({ | ||
| 'store_fname': new_store_fname, | ||
| }) | ||
| self._file_delete(old_store_fname) | ||
|
|
||
| self.env.cr.commit() |
95 changes: 95 additions & 0 deletions
95
ir_attachment_google_cloud_storage/models/res_config_settings.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,95 @@ | ||
| # Copyright 2020 Eugene Molotov <https://it-projects.info/team/em230418> | ||
| # License MIT (https://opensource.org/licenses/MIT). | ||
|
|
||
| from odoo import api, fields, models | ||
| from google.oauth2 import service_account | ||
| from google.cloud import storage | ||
| import json | ||
| import os | ||
|
|
||
| GOOGLE_APPLICATION_CREDENTIALS = os.environ.get("GOOGLE_APPLICATION_CREDENTIALS") | ||
| GCS_BUCKETNAME = os.environ.get("GCS_BUCKETNAME") | ||
|
|
||
| class ResConfigSettings(models.TransientModel): | ||
|
|
||
| _inherit = "res.config.settings" | ||
|
|
||
| def _compute_is_in_env(self): | ||
| self.is_google_cloud_storage_credentials_in_env = bool(GOOGLE_APPLICATION_CREDENTIALS) | ||
| self.is_google_cloud_storage_bucket_in_env = bool(GCS_BUCKETNAME) | ||
|
|
||
| is_google_cloud_storage_credentials_in_env = fields.Boolean(compute=_compute_is_in_env, store=False) | ||
| is_google_cloud_storage_bucket_in_env = fields.Boolean(compute=_compute_is_in_env, store=False) | ||
|
|
||
| google_cloud_storage_credentials = fields.Char( | ||
| string="Google Application Credentials (for Google Cloud Storage)", | ||
| config_parameter="google_cloud_storage.credentials" | ||
| ) | ||
| google_cloud_storage_bucket = fields.Char( | ||
| string="Bucket (for Google Cloud Storage)", | ||
| config_parameter="google_cloud_storage.bucket" | ||
| ) | ||
|
|
||
|
|
||
| def get_google_cloud_storage_client(self): | ||
| credentials = None | ||
|
|
||
| if GOOGLE_APPLICATION_CREDENTIALS: | ||
| with open(GOOGLE_APPLICATION_CREDENTIALS, "r") as f: | ||
| credentials = f.read() | ||
| else: | ||
| icp = self.env["ir.config_parameter"].sudo() | ||
| credentials = icp.get_param("google_cloud_storage.credentials") | ||
|
|
||
| if not credentials: | ||
| raise Exception("No Google Cloud Storage credendtials given") | ||
|
|
||
| return storage.Client( | ||
| None, | ||
| credentials=service_account.Credentials.from_service_account_info( | ||
| json.loads(credentials) | ||
| ) | ||
| ) | ||
|
|
||
| def get_google_cloud_storage_bucket(self): | ||
| client = self.get_google_cloud_storage_client() | ||
| bucket = None | ||
|
|
||
| if GCS_BUCKETNAME: | ||
| bucket = GCS_BUCKETNAME | ||
| else: | ||
| icp = self.env["ir.config_parameter"].sudo() | ||
| bucket = icp.get_param("google_cloud_storage.bucket") | ||
|
|
||
| if not bucket: | ||
| raise Exception("No Google Cloud Storage bucket given") | ||
|
|
||
| return client.get_bucket(bucket) | ||
|
|
||
|
|
||
| @api.model | ||
| def get_values(self): | ||
| res = super(ResConfigSettings, self).get_values() | ||
| icp = self.env["ir.config_parameter"].sudo() | ||
|
|
||
| res.update( | ||
| google_cloud_storage_credentials=icp.get_param( | ||
| "google_cloud_storage.credentials", "" | ||
| ), | ||
| google_cloud_storage_bucket=icp.get_param( | ||
| "google_cloud_storage.bucket", "" | ||
| ), | ||
| ) | ||
| return res | ||
|
|
||
| def set_values(self): | ||
| super(ResConfigSettings, self).set_values() | ||
| icp = self.env["ir.config_parameter"].sudo() | ||
| icp.set_param( | ||
| "google_cloud_storage.credentials", | ||
| self.google_cloud_storage_credentials or "{}", | ||
| ) | ||
| icp.set_param( | ||
| "google_cloud_storage.bucket", | ||
| self.google_cloud_storage_bucket or "", | ||
| ) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
32 changes: 32 additions & 0 deletions
32
ir_attachment_google_cloud_storage/views/res_config_settings_views.xml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,32 @@ | ||
| <?xml version="1.0" encoding="UTF-8"?> | ||
| <!-- Copyright 2020 Eugene Molotov <https://it-projects.info/team/em230418> | ||
| License MIT (https://opensource.org/licenses/MIT). --> | ||
| <odoo> | ||
| <record id="res_config_settings_view_form" model="ir.ui.view"> | ||
| <field name="name">res.config.settings.view.form.inherit.base_setup</field> | ||
| <field name="model">res.config.settings</field> | ||
| <field name="inherit_id" ref="base_setup.res_config_settings_view_form"/> | ||
| <field name="arch" type="xml"> | ||
| <xpath expr="//field[@name='module_google_drive']/../.." position="after"> | ||
| <div class="col-12 col-lg-6 o_setting_box"> | ||
| <div class="o_setting_left_pane"> | ||
| </div> | ||
| <div class="o_setting_right_pane"> | ||
| <label for="google_cloud_storage_credentials"/> | ||
| <field name="is_google_cloud_storage_credentials_in_env" attrs="{'invisible': 1}"/> | ||
| <field name="google_cloud_storage_credentials" widget="text" attrs="{'invisible': [('is_google_cloud_storage_credentials_in_env', '=', True)]}"/> | ||
| <p attrs="{'invisible': [('is_google_cloud_storage_credentials_in_env', '=', False)]}">Defined in enviroment</p> | ||
| </div> | ||
| <div class="o_setting_left_pane"> | ||
| </div> | ||
| <div class="o_setting_right_pane"> | ||
| <label for="google_cloud_storage_bucket"/> | ||
| <field name="is_google_cloud_storage_bucket_in_env" attrs="{'invisible': 1}"/> | ||
| <field name="google_cloud_storage_bucket" attrs="{'invisible': [('is_google_cloud_storage_bucket_in_env', '=', True)]}"/> | ||
| <p attrs="{'invisible': [('is_google_cloud_storage_bucket_in_env', '=', False)]}">Defined in environment</p> | ||
| </div> | ||
| </div> | ||
| </xpath> | ||
| </field> | ||
| </record> | ||
| </odoo> |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
😍