[MIG] mail_drop_target: Migration to 16.0

pull/1217/head
chien 2024-02-19 10:26:40 +07:00
parent 3044897ffc
commit ed5b0bd8fc
20 changed files with 260 additions and 155 deletions

View File

@ -2,10 +2,13 @@
Drag & drop emails to Odoo
==========================
.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
..
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:836945053b05ebf3de9aa08cfe84ee1b5c18a2cca8c8e77229c99ea45962938a
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
:target: https://odoo-community.org/page/development-status
@ -14,16 +17,16 @@ Drag & drop emails to Odoo
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
:alt: License: AGPL-3
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fsocial-lightgray.png?logo=github
:target: https://github.com/OCA/social/tree/14.0/mail_drop_target
:target: https://github.com/OCA/social/tree/16.0/mail_drop_target
:alt: OCA/social
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/social-14-0/social-14-0-mail_drop_target
:target: https://translation.odoo-community.org/projects/social-16-0/social-16-0-mail_drop_target
:alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png
:target: https://runbot.odoo-community.org/runbot/205/14.0
:alt: Try me on Runbot
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
:target: https://runboat.odoo-community.org/builds?repo=OCA/social&target_branch=16.0
:alt: Try me on Runboat
|badge1| |badge2| |badge3| |badge4| |badge5|
|badge1| |badge2| |badge3| |badge4| |badge5|
This module was written to allow users to drag&drop emails from their desktop to Odoo.
@ -57,8 +60,8 @@ Bug Tracker
Bugs are tracked on `GitHub Issues <https://github.com/OCA/social/issues>`_.
In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us smashing it by providing a detailed and welcomed
`feedback <https://github.com/OCA/social/issues/new?body=module:%20mail_drop_target%0Aversion:%2014.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
If you spotted it first, help us to smash it by providing a detailed and welcomed
`feedback <https://github.com/OCA/social/issues/new?body=module:%20mail_drop_target%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
Do not contact contributors directly about support or help with technical issues.
@ -76,6 +79,12 @@ Contributors
* Holger Brunn <hbrunn@therp.nl>
* Enric Tobella <etobella@creublanca.es>
* Lois Rilo <lois.rilo@forgeflow.com>
* Nguyen Minh Chien <chien@trobz.com>
Other credits
~~~~~~~~~~~~~
The migration of this module from 15.0 to 16.0 was financially supported by Camptocamp
Maintainers
~~~~~~~~~~~
@ -90,6 +99,6 @@ 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/social <https://github.com/OCA/social/tree/14.0/mail_drop_target>`_ project on GitHub.
This module is part of the `OCA/social <https://github.com/OCA/social/tree/16.0/mail_drop_target>`_ project on GitHub.
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

View File

@ -1,3 +1,4 @@
# Copyright 2018 Therp BV <https://therp.nl>
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
from . import controllers
from . import models

View File

@ -2,23 +2,18 @@
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
{
"name": "Drag & drop emails to Odoo",
"version": "15.0.1.0.0",
"version": "16.0.1.0.0",
"author": "Therp BV,Odoo Community Association (OCA)",
"license": "AGPL-3",
"category": "Discuss",
"website": "https://github.com/OCA/social",
"summary": "Attach emails to Odoo by dragging them from your desktop",
"depends": ["mail"],
"external_dependencies": {"python": ["extract_msg"]},
"external_dependencies": {"python": ["extract_msg", "cryptography<37"]},
"data": ["views/res_config_settings_views.xml"],
"assets": {
"web.assets_backend": [
"mail_drop_target/static/lib/base64js.min.js",
"mail_drop_target/static/src/js/mail_drop_target.esm.js",
"mail_drop_target/static/src/css/mail_drop_target.css",
],
"web.assets_qweb": [
"mail_drop_target/static/src/xml/*.xml",
"mail_drop_target/static/src/js/file_uploader.esm.js",
],
},
}

View File

@ -0,0 +1,3 @@
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from . import discuss

View File

@ -0,0 +1,50 @@
# Copyright Nguyen Minh Chien (chien@trobz.com)
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
from odoo import http
from odoo.exceptions import AccessError, UserError
from odoo.http import request
from odoo.tools.translate import _
from odoo.addons.mail.controllers.discuss import DiscussController
class DiscussControllerInherit(DiscussController):
@http.route("/mail/attachment/upload", methods=["POST"], type="http", auth="public")
def mail_attachment_upload(
self, ufile, thread_id, thread_model, is_pending=False, **kwargs
):
if not is_pending or is_pending == "false":
# Add this point, make sure the message related to the uploaded
# file does exist.
resp = self.mail_attachment_upload_email(ufile, thread_id, thread_model)
if resp:
return resp
return super().mail_attachment_upload(
ufile, thread_id, thread_model, is_pending, **kwargs
)
def mail_attachment_upload_email(self, ufile, thread_id, thread_model):
channel_member = request.env["mail.channel.member"]
if thread_model == "mail.channel":
channel_member = request.env[
"mail.channel.member"
]._get_as_sudo_from_request_or_raise(
request=request, channel_id=int(thread_id)
)
try:
mail_resp = channel_member.env["ir.attachment"].read_mail_file_content(
ufile.filename, ufile.read(), int(thread_id), thread_model
)
ufile.seek(0)
if not mail_resp:
return False
responseData = {"email_upload": 1}
except AccessError:
responseData = {
"error": _("You are not allowed to upload an attachment here.")
}
except UserError as err:
responseData = {"error": str(err)}
return request.make_json_response(responseData)

View File

@ -4,8 +4,10 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 14.0\n"
"Project-Id-Version: Odoo Server 16.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-08-30 10:15+0000\n"
"PO-Revision-Date: 2023-08-30 10:15+0000\n"
"Last-Translator: \n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
@ -13,6 +15,11 @@ msgstr ""
"Content-Transfer-Encoding: \n"
"Plural-Forms: \n"
#. module: mail_drop_target
#: model:ir.model,name:mail_drop_target.model_ir_attachment
msgid "Attachment"
msgstr ""
#. module: mail_drop_target
#: model:ir.model,name:mail_drop_target.model_res_config_settings
msgid "Config Settings"
@ -28,36 +35,20 @@ msgstr ""
msgid "Disable Notification followers on mail dropped to a Thread"
msgstr ""
#. module: mail_drop_target
#: model:ir.model.fields,field_description:mail_drop_target.field_mail_thread__display_name
#: model:ir.model.fields,field_description:mail_drop_target.field_res_config_settings__display_name
msgid "Display Name"
msgstr ""
#. module: mail_drop_target
#: model:ir.model,name:mail_drop_target.model_mail_thread
msgid "Email Thread"
msgstr ""
#. module: mail_drop_target
#: model:ir.model.fields,field_description:mail_drop_target.field_mail_thread__id
#: model:ir.model.fields,field_description:mail_drop_target.field_res_config_settings__id
msgid "ID"
msgstr ""
#. module: mail_drop_target
#. odoo-python
#: code:addons/mail_drop_target/models/mail_thread.py:0
#, python-format
msgid "Install the msg-extractor library to handle .msg files"
msgstr ""
#. module: mail_drop_target
#: model:ir.model.fields,field_description:mail_drop_target.field_mail_thread____last_update
#: model:ir.model.fields,field_description:mail_drop_target.field_res_config_settings____last_update
msgid "Last Modified on"
msgstr ""
#. module: mail_drop_target
#. odoo-python
#: code:addons/mail_drop_target/models/mail_thread.py:0
#, python-format
msgid "This message is already imported."
@ -67,7 +58,7 @@ msgstr ""
#: model_terms:ir.ui.view,arch_db:mail_drop_target.res_config_settings_view_form
msgid ""
"When a user drops an email into an existing thread\n"
" the followers of the thread will not be notified."
" the followers of the thread will not be notified."
msgstr ""
#. module: mail_drop_target
@ -77,3 +68,10 @@ msgid ""
" the followers of the thread will not be notified. This sets an "
"ir.config.parameter mail_drop_target.disable_notify"
msgstr ""
#. module: mail_drop_target
#. odoo-python
#: code:addons/mail_drop_target/controllers/discuss.py:0
#, python-format
msgid "You are not allowed to upload an attachment here."
msgstr ""

View File

@ -1,4 +1,5 @@
# Copyright 2018 Therp BV <https://therp.nl>
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
from . import ir_attachment
from . import mail_thread
from . import res_config_settings

View File

@ -0,0 +1,49 @@
# Copyright Nguyen Minh Chien (chien@trobz.com)
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
import base64
import os
from odoo import api, models
class IrAttachment(models.Model):
_inherit = "ir.attachment"
def _get_email_file_extensions(self):
return ["msg", "eml"]
def _process_email_file_msg(self, res_obj, raw_content):
if not hasattr(res_obj, "message_process_msg"):
return False
message = base64.b64encode(raw_content)
thread_id = res_obj.message_process_msg(
res_obj._name, message, thread_id=res_obj.id
)
return thread_id
@api.model
def _process_email_file_default(self, res_obj, raw_content):
if not hasattr(res_obj, "message_drop"):
return False
message = raw_content
thread_id = res_obj.message_drop(res_obj._name, message, thread_id=res_obj.id)
return thread_id
def read_mail_file_content(self, file_name, raw_content, res_id, res_model):
file_extensions = self._get_email_file_extensions()
name_lst = os.path.splitext(file_name)
file_extension = name_lst[-1].lower().replace(".", "")
if not file_extension or file_extension not in file_extensions:
return False
res_obj = self.env[res_model].browse(res_id)
if not res_obj:
return False
handler = "_process_email_file_{}".format(file_extension)
if not hasattr(self, handler):
handler = "_process_email_file_default"
res = getattr(self, handler)(res_obj, raw_content)
return res

View File

@ -2,6 +2,8 @@
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
from base64 import b64decode
import lxml.html
from odoo import _, api, exceptions, models
from odoo.tools import pycompat, ustr
@ -87,18 +89,26 @@ class MailThread(models.AbstractModel):
except AttributeError:
# Using extract_msg < 0.24.4
message_id = message_msg.message_id
msg_body = message_msg.htmlBody or message_msg.body
subtype = (
lxml.html.fromstring(msg_body).find(".//*") is not None
and "html"
or "plain"
)
message_email = self.env["ir.mail_server"].build_email(
message_msg.sender,
message_msg.to.split(","),
message_msg.subject,
# prefer html bodies to text
message_msg._getStream("__substg1.0_10130102") or message_msg.body,
msg_body,
email_cc=message_msg.cc,
message_id=message_id,
attachments=[
(attachment.longFilename, attachment.data)
(attachment.longFilename, attachment.data, attachment.mimetype)
for attachment in message_msg.attachments
],
subtype=subtype,
)
# We need to override message date, as an error rises when processing it
# directly with headers
@ -114,28 +124,34 @@ class MailThread(models.AbstractModel):
thread_id=thread_id,
)
def _notify_record_by_email(
def _notify_thread_by_email(
self,
message,
recipients_data,
msg_vals=None,
msg_vals=False,
mail_auto_delete=True, # mail.mail
model_description=False,
mail_auto_delete=True,
check_existing=False,
force_email_company=False,
force_email_lang=False, # rendering
resend_existing=False,
force_send=True,
send_after_commit=True,
**kwargs,
send_after_commit=True, # email send
subtitles=None,
**kwargs
):
if self.env.context.get("message_create_from_mail_mail", False):
return
return super()._notify_record_by_email(
return super()._notify_thread_by_email(
message,
recipients_data,
msg_vals=msg_vals,
model_description=model_description,
mail_auto_delete=mail_auto_delete,
check_existing=check_existing,
model_description=model_description,
force_email_company=force_email_company,
force_email_lang=force_email_lang,
resend_existing=resend_existing,
force_send=force_send,
send_after_commit=send_after_commit,
subtitles=subtitles,
**kwargs,
)

View File

@ -1,3 +1,4 @@
* Holger Brunn <hbrunn@therp.nl>
* Enric Tobella <etobella@creublanca.es>
* Lois Rilo <lois.rilo@forgeflow.com>
* Nguyen Minh Chien <chien@trobz.com>

View File

@ -0,0 +1 @@
The migration of this module from 15.0 to 16.0 was financially supported by Camptocamp

View File

@ -1,20 +1,20 @@
<?xml version="1.0" encoding="utf-8" ?>
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="Docutils 0.15.1: http://docutils.sourceforge.net/" />
<meta name="generator" content="Docutils: https://docutils.sourceforge.io/" />
<title>Drag &amp; drop emails to Odoo</title>
<style type="text/css">
/*
:Author: David Goodger (goodger@python.org)
:Id: $Id: html4css1.css 7952 2016-07-26 18:15:59Z milde $
:Id: $Id: html4css1.css 8954 2022-01-20 10:10:25Z milde $
:Copyright: This stylesheet has been placed in the public domain.
Default cascading style sheet for the HTML output of Docutils.
See http://docutils.sf.net/docs/howto/html-stylesheets.html for how to
See https://docutils.sourceforge.io/docs/howto/html-stylesheets.html for how to
customize this style sheet.
*/
@ -366,8 +366,10 @@ ul.auto-toc {
<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:836945053b05ebf3de9aa08cfe84ee1b5c18a2cca8c8e77229c99ea45962938a
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
<p><a class="reference external" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external" href="https://github.com/OCA/social/tree/14.0/mail_drop_target"><img alt="OCA/social" src="https://img.shields.io/badge/github-OCA%2Fsocial-lightgray.png?logo=github" /></a> <a class="reference external" href="https://translation.odoo-community.org/projects/social-14-0/social-14-0-mail_drop_target"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external" href="https://runbot.odoo-community.org/runbot/205/14.0"><img alt="Try me on Runbot" src="https://img.shields.io/badge/runbot-Try%20me-875A7B.png" /></a></p>
<p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/social/tree/16.0/mail_drop_target"><img alt="OCA/social" src="https://img.shields.io/badge/github-OCA%2Fsocial-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/social-16-0/social-16-0-mail_drop_target"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external image-reference" href="https://runboat.odoo-community.org/builds?repo=OCA/social&amp;target_branch=16.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
<p>This module was written to allow users to drag&amp;drop emails from their desktop to Odoo.</p>
<p>It supports as well RFC822 .eml files as Outlook .msg (those only if <a class="reference external" href="https://github.com/mattgwwalker/msg-extractor">an extra library</a> is installed) files.</p>
<p>When the mail is dropped to an odoo record, it will automatically send a notification
@ -376,19 +378,20 @@ to disable this notification.</p>
<p><strong>Table of contents</strong></p>
<div class="contents local topic" id="contents">
<ul class="simple">
<li><a class="reference internal" href="#usage" id="id1">Usage</a></li>
<li><a class="reference internal" href="#known-issues-roadmap" id="id2">Known issues / Roadmap</a></li>
<li><a class="reference internal" href="#bug-tracker" id="id3">Bug Tracker</a></li>
<li><a class="reference internal" href="#credits" id="id4">Credits</a><ul>
<li><a class="reference internal" href="#authors" id="id5">Authors</a></li>
<li><a class="reference internal" href="#contributors" id="id6">Contributors</a></li>
<li><a class="reference internal" href="#maintainers" id="id7">Maintainers</a></li>
<li><a class="reference internal" href="#usage" id="toc-entry-1">Usage</a></li>
<li><a class="reference internal" href="#known-issues-roadmap" id="toc-entry-2">Known issues / Roadmap</a></li>
<li><a class="reference internal" href="#bug-tracker" id="toc-entry-3">Bug Tracker</a></li>
<li><a class="reference internal" href="#credits" id="toc-entry-4">Credits</a><ul>
<li><a class="reference internal" href="#authors" id="toc-entry-5">Authors</a></li>
<li><a class="reference internal" href="#contributors" id="toc-entry-6">Contributors</a></li>
<li><a class="reference internal" href="#other-credits" id="toc-entry-7">Other credits</a></li>
<li><a class="reference internal" href="#maintainers" id="toc-entry-8">Maintainers</a></li>
</ul>
</li>
</ul>
</div>
<div class="section" id="usage">
<h1><a class="toc-backref" href="#id1">Usage</a></h1>
<h1><a class="toc-backref" href="#toc-entry-1">Usage</a></h1>
<p>To use this module, you need to:</p>
<ol class="arabic simple">
<li>save your emails on the desktop / somewhere in the file system</li>
@ -396,44 +399,49 @@ to disable this notification.</p>
</ol>
</div>
<div class="section" id="known-issues-roadmap">
<h1><a class="toc-backref" href="#id2">Known issues / Roadmap</a></h1>
<h1><a class="toc-backref" href="#toc-entry-2">Known issues / Roadmap</a></h1>
<ul class="simple">
<li>most mail clients wont allow you to drag mails directly from the mail client, youll need some plugin for that</li>
<li>for corporate environments, it might be feasible to support imap URLs and get the mail in question on the server side</li>
</ul>
</div>
<div class="section" id="bug-tracker">
<h1><a class="toc-backref" href="#id3">Bug Tracker</a></h1>
<h1><a class="toc-backref" href="#toc-entry-3">Bug Tracker</a></h1>
<p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/social/issues">GitHub Issues</a>.
In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us smashing it by providing a detailed and welcomed
<a class="reference external" href="https://github.com/OCA/social/issues/new?body=module:%20mail_drop_target%0Aversion:%2014.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**">feedback</a>.</p>
If you spotted it first, help us to smash it by providing a detailed and welcomed
<a class="reference external" href="https://github.com/OCA/social/issues/new?body=module:%20mail_drop_target%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**">feedback</a>.</p>
<p>Do not contact contributors directly about support or help with technical issues.</p>
</div>
<div class="section" id="credits">
<h1><a class="toc-backref" href="#id4">Credits</a></h1>
<h1><a class="toc-backref" href="#toc-entry-4">Credits</a></h1>
<div class="section" id="authors">
<h2><a class="toc-backref" href="#id5">Authors</a></h2>
<h2><a class="toc-backref" href="#toc-entry-5">Authors</a></h2>
<ul class="simple">
<li>Therp BV</li>
</ul>
</div>
<div class="section" id="contributors">
<h2><a class="toc-backref" href="#id6">Contributors</a></h2>
<h2><a class="toc-backref" href="#toc-entry-6">Contributors</a></h2>
<ul class="simple">
<li>Holger Brunn &lt;<a class="reference external" href="mailto:hbrunn&#64;therp.nl">hbrunn&#64;therp.nl</a>&gt;</li>
<li>Enric Tobella &lt;<a class="reference external" href="mailto:etobella&#64;creublanca.es">etobella&#64;creublanca.es</a>&gt;</li>
<li>Lois Rilo &lt;<a class="reference external" href="mailto:lois.rilo&#64;forgeflow.com">lois.rilo&#64;forgeflow.com</a>&gt;</li>
<li>Nguyen Minh Chien &lt;<a class="reference external" href="mailto:chien&#64;trobz.com">chien&#64;trobz.com</a>&gt;</li>
</ul>
</div>
<div class="section" id="other-credits">
<h2><a class="toc-backref" href="#toc-entry-7">Other credits</a></h2>
<p>The migration of this module from 15.0 to 16.0 was financially supported by Camptocamp</p>
</div>
<div class="section" id="maintainers">
<h2><a class="toc-backref" href="#id7">Maintainers</a></h2>
<h2><a class="toc-backref" href="#toc-entry-8">Maintainers</a></h2>
<p>This module is maintained by the OCA.</p>
<a class="reference external image-reference" href="https://odoo-community.org"><img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" /></a>
<p>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.</p>
<p>This module is part of the <a class="reference external" href="https://github.com/OCA/social/tree/14.0/mail_drop_target">OCA/social</a> project on GitHub.</p>
<p>This module is part of the <a class="reference external" href="https://github.com/OCA/social/tree/16.0/mail_drop_target">OCA/social</a> project on GitHub.</p>
<p>You are welcome to contribute. To learn how please visit <a class="reference external" href="https://odoo-community.org/page/Contribute">https://odoo-community.org/page/Contribute</a>.</p>
</div>
</div>

View File

@ -1 +0,0 @@
(function(r){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=r()}else if(typeof define==="function"&&define.amd){define([],r)}else{var e;if(typeof window!=="undefined"){e=window}else if(typeof global!=="undefined"){e=global}else if(typeof self!=="undefined"){e=self}else{e=this}e.base64js=r()}})(function(){var r,e,n;return function(){function r(e,n,t){function o(i,a){if(!n[i]){if(!e[i]){var u=typeof require=="function"&&require;if(!a&&u)return u(i,!0);if(f)return f(i,!0);var d=new Error("Cannot find module '"+i+"'");throw d.code="MODULE_NOT_FOUND",d}var c=n[i]={exports:{}};e[i][0].call(c.exports,function(r){var n=e[i][1][r];return o(n?n:r)},c,c.exports,r,e,n,t)}return n[i].exports}var f=typeof require=="function"&&require;for(var i=0;i<t.length;i++)o(t[i]);return o}return r}()({"/":[function(r,e,n){"use strict";n.byteLength=c;n.toByteArray=v;n.fromByteArray=s;var t=[];var o=[];var f=typeof Uint8Array!=="undefined"?Uint8Array:Array;var i="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";for(var a=0,u=i.length;a<u;++a){t[a]=i[a];o[i.charCodeAt(a)]=a}o["-".charCodeAt(0)]=62;o["_".charCodeAt(0)]=63;function d(r){var e=r.length;if(e%4>0){throw new Error("Invalid string. Length must be a multiple of 4")}return r[e-2]==="="?2:r[e-1]==="="?1:0}function c(r){return r.length*3/4-d(r)}function v(r){var e,n,t,i,a;var u=r.length;i=d(r);a=new f(u*3/4-i);n=i>0?u-4:u;var c=0;for(e=0;e<n;e+=4){t=o[r.charCodeAt(e)]<<18|o[r.charCodeAt(e+1)]<<12|o[r.charCodeAt(e+2)]<<6|o[r.charCodeAt(e+3)];a[c++]=t>>16&255;a[c++]=t>>8&255;a[c++]=t&255}if(i===2){t=o[r.charCodeAt(e)]<<2|o[r.charCodeAt(e+1)]>>4;a[c++]=t&255}else if(i===1){t=o[r.charCodeAt(e)]<<10|o[r.charCodeAt(e+1)]<<4|o[r.charCodeAt(e+2)]>>2;a[c++]=t>>8&255;a[c++]=t&255}return a}function l(r){return t[r>>18&63]+t[r>>12&63]+t[r>>6&63]+t[r&63]}function h(r,e,n){var t;var o=[];for(var f=e;f<n;f+=3){t=(r[f]<<16&16711680)+(r[f+1]<<8&65280)+(r[f+2]&255);o.push(l(t))}return o.join("")}function s(r){var e;var n=r.length;var o=n%3;var f="";var i=[];var a=16383;for(var u=0,d=n-o;u<d;u+=a){i.push(h(r,u,u+a>d?d:u+a))}if(o===1){e=r[n-1];f+=t[e>>2];f+=t[e<<4&63];f+="=="}else if(o===2){e=(r[n-2]<<8)+r[n-1];f+=t[e>>10];f+=t[e>>4&63];f+=t[e<<2&63];f+="="}i.push(f);return i.join("")}},{}]},{},[])("/")});

View File

@ -1,3 +0,0 @@
.o-mail-drag-over {
filter: blur(2px);
}

View File

@ -0,0 +1,25 @@
/** @odoo-module **/
import {registerPatch} from "@mail/model/model_core";
registerPatch({
name: "FileUploader",
recordMethods: {
/**
* @override
*/
_onAttachmentUploaded({attachmentData}) {
if (attachmentData.email_upload) {
const chatter =
this.chatterOwner ||
(this.attachmentBoxView && this.attachmentBoxView.chatter) ||
(this.activityView && this.activityView.activityBoxView.chatter);
if (chatter && chatter.exists()) {
chatter.reloadParentView();
}
return;
}
return this._super.apply(this, arguments);
},
},
});

View File

@ -1,58 +0,0 @@
/** @odoo-module **/
/* global base64js:false, Uint8Array:false */
// Copyright 2018 Therp BV <https://therp.nl>
// License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
import {MessageList} from "@mail/components/message_list/message_list";
import {patch} from "web.utils";
import {useDragVisibleDropZone} from "@mail/component_hooks/use_drag_visible_dropzone/use_drag_visible_dropzone";
patch(MessageList.prototype, "mail_drop_target.mail_drop", {
setup() {
this._super();
this.isDropZoneVisible = useDragVisibleDropZone();
},
async _onDropZoneFilesDropped(ev) {
ev.stopPropagation();
this.isDropZoneVisible.value = false;
var self = this;
Promise.all(
Array.from(ev.detail.files).map((drop_file) => {
var reader = new FileReader();
var mail_processor = "";
if (drop_file.name.endsWith(".msg")) {
mail_processor = "message_process_msg";
} else {
mail_processor = "message_drop";
}
reader.readAsArrayBuffer(drop_file);
reader.onload = function (event) {
var data = "";
// TODO: read some config parameter if this should set
// some of the context keys to suppress mail.thread's behavior
if (mail_processor == "message_process_msg") {
data = base64js.fromByteArray(
new Uint8Array(event.target.result)
);
} else {
var reader_array = new Uint8Array(event.target.result);
data = "";
for (var i = 0; i < reader_array.length; i++) {
data += String.fromCharCode(parseInt(reader_array[i]));
}
}
self.env.services.rpc({
model: "mail.thread",
method: mail_processor,
args: [self.threadView.thread.model, data],
kwargs: {
thread_id: self.threadView.thread.id,
},
});
};
})
).then(function () {
return self.trigger("reload");
});
},
});

View File

@ -1,16 +0,0 @@
<?xml version="1.0" encoding="UTF-8" ?>
<templates id="template" xml:space="preserve">
<t t-inherit="mail.MessageList" t-inherit-mode="extension">
<xpath expr="//div[1]" position="inside">
<t t-if="isDropZoneVisible.value">
<DropZone
class="o_MailBox_dropZone"
t-on-o-dropzone-files-dropped="_onDropZoneFilesDropped"
t-ref="dropzone"
/>
</t>
</xpath>
</t>
</templates>

View File

@ -1,6 +1,5 @@
import base64
from mock import patch
from unittest.mock import patch
from odoo import exceptions, tools
from odoo.tests.common import TransactionCase
@ -20,7 +19,7 @@ class TestMailDropTarget(TransactionCase):
self.partner.message_process(
self.partner._name, message, thread_id=self.partner.id
)
self.partner.refresh()
self.partner.invalidate_recordset()
self.assertEqual(comments + 1, len(self.partner.message_ids))
with self.assertRaises(exceptions.UserError):
self.partner.message_drop(
@ -37,7 +36,7 @@ class TestMailDropTarget(TransactionCase):
self.partner.message_process_msg(
self.partner._name, message, thread_id=self.partner.id
)
self.partner.refresh()
self.partner.invalidate_recordset()
self.assertEqual(comments + 1, len(self.partner.message_ids))
msg = self.partner.message_ids.filtered(lambda m: m.subject == "Test")
self.assertIsNotNone(msg.notified_partner_ids)
@ -46,12 +45,38 @@ class TestMailDropTarget(TransactionCase):
self.partner._name, message, thread_id=self.partner.id
)
def test_msg_with_attachment(self):
message = base64.b64encode(
tools.file_open(
"addons/mail_drop_target/tests/sample_include_attachment.msg", mode="rb"
).read()
)
comments = len(self.partner.message_ids)
self.partner.message_process_msg(
self.partner._name, message, thread_id=self.partner.id
)
self.partner.invalidate_recordset()
self.assertEqual(comments + 1, len(self.partner.message_ids))
msg = self.partner.message_ids.filtered(
lambda m: m.subject == "Test Mail Attachment"
)
self.assertIsNotNone(msg.notified_partner_ids)
with self.assertRaises(exceptions.UserError):
self.partner.message_process_msg(
self.partner._name, message, thread_id=self.partner.id
)
def test_no_msgextract(self):
with self.assertRaises(exceptions.UserError), patch(
"odoo.addons.mail_drop_target.models.mail_thread.Message", new=False
):
self.test_msg()
with self.assertRaises(exceptions.UserError), patch(
"odoo.addons.mail_drop_target.models.mail_thread.Message", new=False
):
self.test_msg_with_attachment()
def test_msg_no_notification(self):
message = base64.b64encode(
tools.file_open(
@ -65,7 +90,7 @@ class TestMailDropTarget(TransactionCase):
self.partner.message_process_msg(
self.partner._name, message, thread_id=self.partner.id
)
self.partner.refresh()
self.partner.invalidate_recordset()
self.assertEqual(comments + 1, len(self.partner.message_ids))
msg = self.partner.message_ids.filtered(lambda m: m.subject == "Test")
self.assertEqual(len(msg.notified_partner_ids), 0)

View File

@ -1,3 +1,4 @@
# generated from manifests external_dependencies
odoo_test_helper
cryptography<37
extract_msg
odoo_test_helper