From d285e4a12821e04c9523c7c035177cfecc6b1e64 Mon Sep 17 00:00:00 2001 From: Yajo Date: Tue, 31 May 2016 16:41:28 +0200 Subject: [PATCH 01/32] [9.0][MIG][auth_signup_verify_email] Migration. (#436) * Add module auth_signup_verify_email. * Import module following guidelines. * README typos. * OCA Transbot updated translations from Transifex * Credit creator. * author name correction * [9.0][MIG][auth_signup_verify_email] Migration. Migrate to v9. * [FIX] auth_signup_verify_email: Python library requirement * Add tests, fix xml tags, fix credits. * Fix test. --- auth_signup_verify_email/README.rst | 87 +++++++++ auth_signup_verify_email/__init__.py | 5 + auth_signup_verify_email/__openerp__.py | 28 +++ .../controllers/__init__.py | 5 + auth_signup_verify_email/controllers/main.py | 55 ++++++ auth_signup_verify_email/i18n/de.po | 47 +++++ auth_signup_verify_email/i18n/es.po | 48 +++++ auth_signup_verify_email/i18n/it.po | 47 +++++ auth_signup_verify_email/i18n/pt_BR.po | 46 +++++ auth_signup_verify_email/i18n/sl.po | 47 +++++ auth_signup_verify_email/i18n/tr.po | 47 +++++ .../static/description/icon.png | Bin 0 -> 10549 bytes .../static/description/icon.svg | 172 ++++++++++++++++++ auth_signup_verify_email/tests/__init__.py | 5 + .../tests/test_verify_email.py | 72 ++++++++ auth_signup_verify_email/views/signup.xml | 20 ++ 16 files changed, 731 insertions(+) create mode 100644 auth_signup_verify_email/README.rst create mode 100644 auth_signup_verify_email/__init__.py create mode 100644 auth_signup_verify_email/__openerp__.py create mode 100644 auth_signup_verify_email/controllers/__init__.py create mode 100644 auth_signup_verify_email/controllers/main.py create mode 100644 auth_signup_verify_email/i18n/de.po create mode 100644 auth_signup_verify_email/i18n/es.po create mode 100644 auth_signup_verify_email/i18n/it.po create mode 100644 auth_signup_verify_email/i18n/pt_BR.po create mode 100644 auth_signup_verify_email/i18n/sl.po create mode 100644 auth_signup_verify_email/i18n/tr.po create mode 100644 auth_signup_verify_email/static/description/icon.png create mode 100644 auth_signup_verify_email/static/description/icon.svg create mode 100644 auth_signup_verify_email/tests/__init__.py create mode 100644 auth_signup_verify_email/tests/test_verify_email.py create mode 100644 auth_signup_verify_email/views/signup.xml diff --git a/auth_signup_verify_email/README.rst b/auth_signup_verify_email/README.rst new file mode 100644 index 0000000000..041de578ee --- /dev/null +++ b/auth_signup_verify_email/README.rst @@ -0,0 +1,87 @@ +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 + +====================== +Verify email at signup +====================== + +This module extends the functionality of public sign up, and forces users to +provide a valid email address. + +To achieve this requirement, the user does not need to provide a password at +sign up, but when logging in later for the first time. + +Installation +============ + +* Install validate_email_ with ``pip install validate_email`` or equivalent. + +Configuration +============= + +To configure this module, you need to: + +* `Properly configure your outgoing email server(s) + `_. +* Go to *Settings > General Settings* and enable *Allow + external users to sign up*. + +Usage +===== + +To use this module, you need to: + +* Log out. +* `Sign up `_ with a valid email. + +.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas + :alt: Try me on Runbot + :target: https://runbot.odoo-community.org/runbot/149/9.0 + +Known issues / Roadmap +====================== + +* Remove calls to ``cr.commit()`` in tests when + https://github.com/odoo/odoo/issues/12237 gets fixed. + +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 smashing it by providing a detailed and welcomed feedback. + + +Credits +======= + +Icon +---- + +* https://openclipart.org/detail/3040/thumbtack-note-email +* https://openclipart.org/detail/202732/check-mark + +Contributors +------------ + +* Rafael Blasco +* Jairo Llopis + +Maintainer +---------- + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +This module is maintained by the OCA. + +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. + +To contribute to this module, please visit https://odoo-community.org. + +.. _validate_email: https://pypi.python.org/pypi/validate_email diff --git a/auth_signup_verify_email/__init__.py b/auth_signup_verify_email/__init__.py new file mode 100644 index 0000000000..35233d377a --- /dev/null +++ b/auth_signup_verify_email/__init__.py @@ -0,0 +1,5 @@ +# -*- coding: utf-8 -*- +# © 2015 Antiun Ingeniería, S.L. +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from . import controllers diff --git a/auth_signup_verify_email/__openerp__.py b/auth_signup_verify_email/__openerp__.py new file mode 100644 index 0000000000..6ac75954b6 --- /dev/null +++ b/auth_signup_verify_email/__openerp__.py @@ -0,0 +1,28 @@ +# -*- coding: utf-8 -*- +# © 2015 Antiun Ingeniería, S.L. +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). +{ + "name": "Verify email at signup", + "summary": "Force uninvited users to use a good email for signup", + "version": "9.0.1.0.0", + "category": "Authentication", + "website": "http://www.tecnativa.com", + "author": "Antiun Ingeniería S.L., " + "Tecnativa, " + "Odoo Community Association (OCA)", + "license": "AGPL-3", + "application": False, + "installable": True, + "external_dependencies": { + "python": [ + "lxml", + "validate_email", + ], + }, + "depends": [ + "auth_signup", + ], + "data": [ + "views/signup.xml", + ], +} diff --git a/auth_signup_verify_email/controllers/__init__.py b/auth_signup_verify_email/controllers/__init__.py new file mode 100644 index 0000000000..d10129bede --- /dev/null +++ b/auth_signup_verify_email/controllers/__init__.py @@ -0,0 +1,5 @@ +# -*- coding: utf-8 -*- +# © 2015 Antiun Ingeniería, S.L. +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +from . import main diff --git a/auth_signup_verify_email/controllers/main.py b/auth_signup_verify_email/controllers/main.py new file mode 100644 index 0000000000..506e937444 --- /dev/null +++ b/auth_signup_verify_email/controllers/main.py @@ -0,0 +1,55 @@ +# -*- coding: utf-8 -*- +# © 2015 Antiun Ingeniería, S.L. +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +import logging +from openerp import _, http +from openerp.addons.auth_signup.controllers.main import AuthSignupHome + +_logger = logging.getLogger(__name__) + +try: + from validate_email import validate_email +except ImportError: + _logger.debug("Cannot import `validate_email`.") + + +class SignupVerifyEmail(AuthSignupHome): + @http.route() + def web_auth_signup(self, *args, **kw): + if (http.request.params.get("login") and + not http.request.params.get("password")): + return self.passwordless_signup(http.request.params) + else: + return super(SignupVerifyEmail, self).web_auth_signup(*args, **kw) + + def passwordless_signup(self, values): + qcontext = self.get_auth_signup_qcontext() + + # Check good format of e-mail + if not validate_email(values.get("login", "")): + qcontext["error"] = _("That does not seem to be an email address.") + return http.request.render("auth_signup.signup", qcontext) + elif not values.get("email"): + values["email"] = values.get("login") + + # Remove password + values["password"] = False + sudo_users = (http.request.env["res.users"] + .with_context(create_user=True).sudo()) + + try: + with http.request.cr.savepoint(): + sudo_users.signup(values, qcontext.get("token")) + sudo_users.reset_password(values.get("login")) + except Exception as error: + # Duplicate key or wrong SMTP settings, probably + _logger.exception(error) + + # Agnostic message for security + qcontext["error"] = _( + "Something went wrong, please try again later or contact us.") + return http.request.render("auth_signup.signup", qcontext) + + qcontext["message"] = _("Check your email to activate your account!") + return http.request.render("auth_signup.reset_password", qcontext) diff --git a/auth_signup_verify_email/i18n/de.po b/auth_signup_verify_email/i18n/de.po new file mode 100644 index 0000000000..367716b401 --- /dev/null +++ b/auth_signup_verify_email/i18n/de.po @@ -0,0 +1,47 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_signup_verify_email +# +# Translators: +# Rudolf Schnapka , 2016 +msgid "" +msgstr "" +"Project-Id-Version: server-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-01-19 14:44+0000\n" +"PO-Revision-Date: 2016-01-18 13:24+0000\n" +"Last-Translator: Rudolf Schnapka \n" +"Language-Team: German (http://www.transifex.com/oca/OCA-server-tools-8-0/language/de/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_signup_verify_email +#: code:addons/auth_signup_verify_email/controllers/main.py:54 +#, python-format +msgid "Check your email to activate your account!" +msgstr "Prüfen Sie Ihre Email, um Ihr Konto zu aktivieren." + +#. module: auth_signup_verify_email +#: code:addons/auth_signup_verify_email/controllers/main.py:50 +#, python-format +msgid "Something went wrong, please try again later or contact us." +msgstr "Etwas ist schief gelaufen, bitte später nochmal versuchen oden an uns wenden." + +#. module: auth_signup_verify_email +#: code:addons/auth_signup_verify_email/controllers/main.py:31 +#, python-format +msgid "That does not seem to be an email address." +msgstr "Das schein keine Email-Adresse zu sein." + +#. module: auth_signup_verify_email +#: view:website:auth_signup.fields +msgid "email" +msgstr "EMail" + +#. module: auth_signup_verify_email +#: view:website:auth_signup.fields +msgid "only_passwords" +msgstr "" diff --git a/auth_signup_verify_email/i18n/es.po b/auth_signup_verify_email/i18n/es.po new file mode 100644 index 0000000000..c170d4fc5c --- /dev/null +++ b/auth_signup_verify_email/i18n/es.po @@ -0,0 +1,48 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_signup_verify_email +# +# Translators: +# Antonio Trueba, 2016 +# Antonio Trueba, 2016 +msgid "" +msgstr "" +"Project-Id-Version: server-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-01-19 14:44+0000\n" +"PO-Revision-Date: 2016-02-16 15:15+0000\n" +"Last-Translator: Antonio Trueba\n" +"Language-Team: Spanish (http://www.transifex.com/oca/OCA-server-tools-8-0/language/es/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_signup_verify_email +#: code:addons/auth_signup_verify_email/controllers/main.py:54 +#, python-format +msgid "Check your email to activate your account!" +msgstr "Revise su correo para activar su cuenta." + +#. module: auth_signup_verify_email +#: code:addons/auth_signup_verify_email/controllers/main.py:50 +#, python-format +msgid "Something went wrong, please try again later or contact us." +msgstr "Algo ha ido mal, por favor inténtelo de nuevo más tarde o contáctenos." + +#. module: auth_signup_verify_email +#: code:addons/auth_signup_verify_email/controllers/main.py:31 +#, python-format +msgid "That does not seem to be an email address." +msgstr "Eso no parece una dirección de email válida." + +#. module: auth_signup_verify_email +#: view:website:auth_signup.fields +msgid "email" +msgstr "email" + +#. module: auth_signup_verify_email +#: view:website:auth_signup.fields +msgid "only_passwords" +msgstr "" diff --git a/auth_signup_verify_email/i18n/it.po b/auth_signup_verify_email/i18n/it.po new file mode 100644 index 0000000000..75bd3e908e --- /dev/null +++ b/auth_signup_verify_email/i18n/it.po @@ -0,0 +1,47 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_signup_verify_email +# +# Translators: +# Paolo Valier, 2016 +msgid "" +msgstr "" +"Project-Id-Version: server-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-03-17 15:36+0000\n" +"PO-Revision-Date: 2016-03-13 08:59+0000\n" +"Last-Translator: Paolo Valier\n" +"Language-Team: Italian (http://www.transifex.com/oca/OCA-server-tools-8-0/language/it/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: it\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. module: auth_signup_verify_email +#: code:addons/auth_signup_verify_email/controllers/main.py:54 +#, python-format +msgid "Check your email to activate your account!" +msgstr "Controlla la tua email per attivare il tuo account!" + +#. module: auth_signup_verify_email +#: code:addons/auth_signup_verify_email/controllers/main.py:50 +#, python-format +msgid "Something went wrong, please try again later or contact us." +msgstr "Qualcosa non è funzionato, prego provare più tardi altrimenti mettiti in contatto con noi." + +#. module: auth_signup_verify_email +#: code:addons/auth_signup_verify_email/controllers/main.py:31 +#, python-format +msgid "That does not seem to be an email address." +msgstr "Questo non sembra essere un indirizzo email valido." + +#. module: auth_signup_verify_email +#: view:website:auth_signup.fields +msgid "email" +msgstr "email" + +#. module: auth_signup_verify_email +#: view:website:auth_signup.fields +msgid "only_passwords" +msgstr "" diff --git a/auth_signup_verify_email/i18n/pt_BR.po b/auth_signup_verify_email/i18n/pt_BR.po new file mode 100644 index 0000000000..1a9ead1bb1 --- /dev/null +++ b/auth_signup_verify_email/i18n/pt_BR.po @@ -0,0 +1,46 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_signup_verify_email +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: server-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-11-27 14:01+0000\n" +"PO-Revision-Date: 2015-11-12 20:16+0000\n" +"Last-Translator: <>\n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/oca/OCA-server-tools-8-0/language/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: auth_signup_verify_email +#: code:addons/auth_signup_verify_email/controllers/main.py:54 +#, python-format +msgid "Check your email to activate your account!" +msgstr "" + +#. module: auth_signup_verify_email +#: code:addons/auth_signup_verify_email/controllers/main.py:50 +#, python-format +msgid "Something went wrong, please try again later or contact us." +msgstr "" + +#. module: auth_signup_verify_email +#: code:addons/auth_signup_verify_email/controllers/main.py:31 +#, python-format +msgid "That does not seem to be an email address." +msgstr "" + +#. module: auth_signup_verify_email +#: view:website:auth_signup.fields +msgid "email" +msgstr "email" + +#. module: auth_signup_verify_email +#: view:website:auth_signup.fields +msgid "only_passwords" +msgstr "" diff --git a/auth_signup_verify_email/i18n/sl.po b/auth_signup_verify_email/i18n/sl.po new file mode 100644 index 0000000000..612e35cc63 --- /dev/null +++ b/auth_signup_verify_email/i18n/sl.po @@ -0,0 +1,47 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_signup_verify_email +# +# Translators: +# Matjaž Mozetič , 2015 +msgid "" +msgstr "" +"Project-Id-Version: server-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-11-27 14:01+0000\n" +"PO-Revision-Date: 2015-11-13 11:44+0000\n" +"Last-Translator: Matjaž Mozetič \n" +"Language-Team: Slovenian (http://www.transifex.com/oca/OCA-server-tools-8-0/language/sl/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: sl\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" + +#. module: auth_signup_verify_email +#: code:addons/auth_signup_verify_email/controllers/main.py:54 +#, python-format +msgid "Check your email to activate your account!" +msgstr "Preverite svojo e-pošto za aktiviranje računa!" + +#. module: auth_signup_verify_email +#: code:addons/auth_signup_verify_email/controllers/main.py:50 +#, python-format +msgid "Something went wrong, please try again later or contact us." +msgstr "Nekaj je narobe. Ponovno poskusite kasneje ali pa stopite v stik z nami." + +#. module: auth_signup_verify_email +#: code:addons/auth_signup_verify_email/controllers/main.py:31 +#, python-format +msgid "That does not seem to be an email address." +msgstr "Kaže, da to ni e-poštni naslov." + +#. module: auth_signup_verify_email +#: view:website:auth_signup.fields +msgid "email" +msgstr "e-pošta" + +#. module: auth_signup_verify_email +#: view:website:auth_signup.fields +msgid "only_passwords" +msgstr "only_passwords" diff --git a/auth_signup_verify_email/i18n/tr.po b/auth_signup_verify_email/i18n/tr.po new file mode 100644 index 0000000000..a41abef839 --- /dev/null +++ b/auth_signup_verify_email/i18n/tr.po @@ -0,0 +1,47 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_signup_verify_email +# +# Translators: +# Ahmet Altınışık , 2016 +msgid "" +msgstr "" +"Project-Id-Version: server-tools (8.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-01-19 14:44+0000\n" +"PO-Revision-Date: 2016-01-31 14:58+0000\n" +"Last-Translator: Ahmet Altınışık \n" +"Language-Team: Turkish (http://www.transifex.com/oca/OCA-server-tools-8-0/language/tr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: tr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: auth_signup_verify_email +#: code:addons/auth_signup_verify_email/controllers/main.py:54 +#, python-format +msgid "Check your email to activate your account!" +msgstr "Hesabınızı aktive etmek için e-postanızı kontrol edin!" + +#. module: auth_signup_verify_email +#: code:addons/auth_signup_verify_email/controllers/main.py:50 +#, python-format +msgid "Something went wrong, please try again later or contact us." +msgstr "Bişeyler ters gitti. Lütfen sonra tekrar deneyin ya da bize ulaşın." + +#. module: auth_signup_verify_email +#: code:addons/auth_signup_verify_email/controllers/main.py:31 +#, python-format +msgid "That does not seem to be an email address." +msgstr "Bu bir e-posta adresi gözükmüyor." + +#. module: auth_signup_verify_email +#: view:website:auth_signup.fields +msgid "email" +msgstr "eposta" + +#. module: auth_signup_verify_email +#: view:website:auth_signup.fields +msgid "only_passwords" +msgstr "sadece_parolalar" diff --git a/auth_signup_verify_email/static/description/icon.png b/auth_signup_verify_email/static/description/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..52e1b17dcb661d98f613efecf525de26b26fe8c6 GIT binary patch literal 10549 zcmV-5DazJ~P)`h+6;vAOJ~3 zK~#9!?VWjimDhRazvo@l7AX7dIZ3&vV`*xM?@-rrorg_I|aMD_6edYf=}#J?PIDH>dc`ZP$iJsapDp z0e|0l?gxghyI~*-B!y7%(D3i6t(%|c)`hp<1mt?{h4qhe+p>WHNL=_%1jqz3gb+C> zHBJaM4Ojp?u9SEnQt+MlV87q^W1jpqYk$TESKQa8jwG#6|!y9lgwT8kpX`nKmYwqUGwu$&RvvOSH1rMS=3U*rrf%If48uuh|Rfm9NoK>@l$U_DG>dP zvgyn}8R0-GUnn_D2r*PCMk2Tcm?%&afU?0{o8txU%qsfkvwt)zWMOj=oAc_rCw~Y~ z2$(?ga22b4H1AOV!S}*$sSCgkK;v^fiCeBT1HsAUwJa?b*=puTV{@Oj`XT~f2#rYh72G6*i+)bQu~ zGJSKbg@^=fgCg-+8-hSTehr2sW%v;8;nJ5MPE>o2M~PyGBA1=*uq`3 zORxLulyFxFL^!0SRXxxEj;|BLeF?}VW?1;=tMD5sB5DOO&|pL z{=n}O0*)SO@w;feIbN=uPC_`dA-b-FGHg-qHz6=%=3;94F+h(5F>gc_|NyZiao zf^kiNtl#i7OP72UA=2J3x^hO>m%qrymv)HRW1gRarm6*M1~3iWd?4KGacvP+2wW$Q z?RzMdp8P<*PU3YJ5rFU*1I;9ziFbh^9q^J8LkeP{;5AW}Qi{T&Y}Tzg$lrcr8M>|w zC>#PogOC9Y^>Lb-5)2s$M%o`x+@ukZU%fwIuPbosB28m-XiGvPKy-#q2juF$4 zuEOh(7%_nv)hW`m$r52KB&US~-c!K!1F~)NYUbXWmTPr~f3D?bT^uhodAmT(1ZIFYwClaykGDZzDtuk1 zni%Wan~-^+nUFm{M0}TneZj|R@IeD3rV}2mLj;D4Ol~*F<10C+LQ?6Nd`_HfqIzaY zKb)9eNjW(Yibmzo+?=4bEs3TL>F1-=H1H!p`*i{G{JJNYyYMbv*}PgLy@0XrR5&!h zqVb-9=6|n?q2HO@MJbG6j8R6Exy>=wN7_&kFk*u2MM35L5XbvBgi|Y zBbybfQz2Z?EEp3H^L4A7uSVzM;a_zqzdWH+3Pu)YbLikj99Itbp3KY;!$-vEOhQvr z0_pYtTGQ~R56e0kxb7Gt#0Pn4(<&u|&@~}rDJLAWosbF#EYv$%u~+Cuh@4@Qh&P{L zfu*t7&*faRO#==Zfgx|G<14@j8ZUmd_GN0 zo$TFHhi+*7u8>GHKvq_m`in_kKU_~|r`>P$HyE%h|M~t0j6nm^Z3~ush%P|lLZ}wk z3v{?%z~wz|nkKkd-$7|v9z%v@BKq;{i4#ZQ`;u38oW|%UV^$>GqUnIPco*%q3cyYrDNGWHot2@_!L+O^kL z%hEJM`qE1Yp;|3B*z9nGNK@hVZ$;9A^YJTIky2m=4f2O(l93U>wk5T-&BWu@l`Be+6%HheDoRgWRZ`vW3Yju_4gk^c zQ02O9j)D#$WQ*+vS9)}s^OV+hq(KrQxJl_!QYpRD$1d-Foz>Y8aP$kL~Cn`Xf$|5 zY8o)ySwpg|16`%3!Bf_(IrG`NWvz#jaUp26-C&37nQkax1$(QOM8d}NB#n)64%S@c zc)TpzAxFo?;KA(xt|03&(n0NlVH$b z!NRfp#TVu+56^Z6yc@@@Dw6F zF^@dFi*Pu=T^}l^v(sV6E2nsMM;#?4S$yd3$t+zqj=g)&@$9-otbVG7p+hst&(A

R$cD{O=>X{`tj@MIU%*qZkx-^$i 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 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + Openclipart + + + + 2007-02-06T06:13:53 + Thumbtack note with message "E-mail!" + https://openclipart.org/detail/3040/thumbtack-note-email-by-zeimusu + + + zeimusu + + + + + bulletin + email + memo + note + thumbtack + thumbtack note + + + + + + + + + + + diff --git a/auth_signup_verify_email/tests/__init__.py b/auth_signup_verify_email/tests/__init__.py new file mode 100644 index 0000000000..8858be4966 --- /dev/null +++ b/auth_signup_verify_email/tests/__init__.py @@ -0,0 +1,5 @@ +# -*- coding: utf-8 -*- +# © 2016 Jairo Llopis +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from . import test_verify_email diff --git a/auth_signup_verify_email/tests/test_verify_email.py b/auth_signup_verify_email/tests/test_verify_email.py new file mode 100644 index 0000000000..a3649cd7de --- /dev/null +++ b/auth_signup_verify_email/tests/test_verify_email.py @@ -0,0 +1,72 @@ +# -*- coding: utf-8 -*- +# © 2016 Jairo Llopis +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from urllib import urlencode +from lxml.html import document_fromstring +from openerp import _ +from openerp.tests.common import HttpCase + + +class UICase(HttpCase): + def setUp(self): + super(UICase, self).setUp() + self.icp = self.env["ir.config_parameter"] + self.old_allow_uninvited = self.icp.get_param( + "auth_signup.allow_uninvited") + self.icp.set_param("auth_signup.allow_uninvited", "True") + + # Workaround https://github.com/odoo/odoo/issues/12237 + self.cr.commit() + + self.data = { + "csrf_token": self.csrf_token(), + "name": "Somebody", + } + self.msg = { + "badmail": _("That does not seem to be an email address."), + "failure": _( + "Something went wrong, please try again later or contact us."), + "success": _("Check your email to activate your account!"), + } + + def tearDown(self): + """Workaround https://github.com/odoo/odoo/issues/12237.""" + super(UICase, self).tearDown() + self.icp.set_param( + "auth_signup.allow_uninvited", self.old_allow_uninvited) + self.cr.commit() + + def html_doc(self, url="/web/signup", data=None, timeout=10): + """Get an HTML LXML document.""" + if data: + data = bytes(urlencode(data)) + return document_fromstring(self.url_open(url, data, timeout).read()) + + def csrf_token(self): + """Get a valid CSRF token.""" + doc = self.html_doc() + return doc.xpath("//input[@name='csrf_token']")[0].get("value") + + def search_text(self, doc, text): + """Search for any element containing the text.""" + return doc.xpath("//*[contains(text(), '%s')]" % text) + + def test_bad_email(self): + """Test rejection of bad emails.""" + self.data["login"] = "bad email" + doc = self.html_doc(data=self.data) + self.assertTrue(self.search_text(doc, self.msg["badmail"])) + + def test_good_email(self): + """Test acceptance of good emails. + + This test could lead to success if your SMTP settings are correct, or + to failure otherwise. Any case is expected, since tests usually run + under unconfigured demo instances. + """ + self.data["login"] = "good@example.com" + doc = self.html_doc(data=self.data) + self.assertTrue( + self.search_text(doc, self.msg["failure"]) or + self.search_text(doc, self.msg["success"])) diff --git a/auth_signup_verify_email/views/signup.xml b/auth_signup_verify_email/views/signup.xml new file mode 100644 index 0000000000..cc81fcccf2 --- /dev/null +++ b/auth_signup_verify_email/views/signup.xml @@ -0,0 +1,20 @@ + + + + + + + From 7efb3d4c434bb0524ea7f15c5f4f0a6b9f836eae Mon Sep 17 00:00:00 2001 From: vincent Date: Fri, 27 Jan 2017 16:35:47 +0100 Subject: [PATCH 02/32] [MIG][10] auth_signup_verify_email * Module set to installable * Odoo don't let signup without password --- .../{__openerp__.py => __manifest__.py} | 4 ++-- auth_signup_verify_email/controllers/main.py | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) rename auth_signup_verify_email/{__openerp__.py => __manifest__.py} (92%) diff --git a/auth_signup_verify_email/__openerp__.py b/auth_signup_verify_email/__manifest__.py similarity index 92% rename from auth_signup_verify_email/__openerp__.py rename to auth_signup_verify_email/__manifest__.py index 6ac75954b6..3908671e10 100644 --- a/auth_signup_verify_email/__openerp__.py +++ b/auth_signup_verify_email/__manifest__.py @@ -4,7 +4,7 @@ { "name": "Verify email at signup", "summary": "Force uninvited users to use a good email for signup", - "version": "9.0.1.0.0", + "version": "10.0.1.0.0", "category": "Authentication", "website": "http://www.tecnativa.com", "author": "Antiun Ingeniería S.L., " @@ -12,7 +12,7 @@ "Odoo Community Association (OCA)", "license": "AGPL-3", "application": False, - "installable": True, + 'installable': True, "external_dependencies": { "python": [ "lxml", diff --git a/auth_signup_verify_email/controllers/main.py b/auth_signup_verify_email/controllers/main.py index 506e937444..0fb5e06638 100644 --- a/auth_signup_verify_email/controllers/main.py +++ b/auth_signup_verify_email/controllers/main.py @@ -3,8 +3,8 @@ # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). import logging -from openerp import _, http -from openerp.addons.auth_signup.controllers.main import AuthSignupHome +from odoo import _, http +from odoo.addons.auth_signup.controllers.main import AuthSignupHome _logger = logging.getLogger(__name__) @@ -34,7 +34,7 @@ def passwordless_signup(self, values): values["email"] = values.get("login") # Remove password - values["password"] = False + values["password"] = "" sudo_users = (http.request.env["res.users"] .with_context(create_user=True).sudo()) From ace06aa53cca5610112030ba40576835b3f09475 Mon Sep 17 00:00:00 2001 From: OCA Transbot Date: Sun, 12 Jun 2016 12:55:45 -0400 Subject: [PATCH 03/32] OCA Transbot updated translations from Transifex --- auth_signup_verify_email/i18n/de.po | 23 +++++---------- auth_signup_verify_email/i18n/es.po | 24 +++++---------- auth_signup_verify_email/i18n/fr.po | 41 ++++++++++++++++++++++++++ auth_signup_verify_email/i18n/hr.po | 40 +++++++++++++++++++++++++ auth_signup_verify_email/i18n/hr_HR.po | 40 +++++++++++++++++++++++++ auth_signup_verify_email/i18n/it.po | 23 +++++---------- auth_signup_verify_email/i18n/ro.po | 41 ++++++++++++++++++++++++++ auth_signup_verify_email/i18n/sl.po | 23 +++++---------- auth_signup_verify_email/i18n/tr.po | 23 +++++---------- 9 files changed, 202 insertions(+), 76 deletions(-) create mode 100644 auth_signup_verify_email/i18n/fr.po create mode 100644 auth_signup_verify_email/i18n/hr.po create mode 100644 auth_signup_verify_email/i18n/hr_HR.po create mode 100644 auth_signup_verify_email/i18n/ro.po diff --git a/auth_signup_verify_email/i18n/de.po b/auth_signup_verify_email/i18n/de.po index 367716b401..d378fe7e65 100644 --- a/auth_signup_verify_email/i18n/de.po +++ b/auth_signup_verify_email/i18n/de.po @@ -6,12 +6,12 @@ # Rudolf Schnapka , 2016 msgid "" msgstr "" -"Project-Id-Version: server-tools (8.0)\n" +"Project-Id-Version: server-tools (9.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-19 14:44+0000\n" -"PO-Revision-Date: 2016-01-18 13:24+0000\n" -"Last-Translator: Rudolf Schnapka \n" -"Language-Team: German (http://www.transifex.com/oca/OCA-server-tools-8-0/language/de/)\n" +"POT-Creation-Date: 2016-06-09 12:31+0000\n" +"PO-Revision-Date: 2016-05-31 14:47+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: German (http://www.transifex.com/oca/OCA-server-tools-9-0/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -20,28 +20,21 @@ msgstr "" #. module: auth_signup_verify_email #: code:addons/auth_signup_verify_email/controllers/main.py:54 +#: code:addons/auth_signup_verify_email/tests/test_verify_email.py:30 #, python-format msgid "Check your email to activate your account!" msgstr "Prüfen Sie Ihre Email, um Ihr Konto zu aktivieren." #. module: auth_signup_verify_email #: code:addons/auth_signup_verify_email/controllers/main.py:50 +#: code:addons/auth_signup_verify_email/tests/test_verify_email.py:28 #, python-format msgid "Something went wrong, please try again later or contact us." msgstr "Etwas ist schief gelaufen, bitte später nochmal versuchen oden an uns wenden." #. module: auth_signup_verify_email #: code:addons/auth_signup_verify_email/controllers/main.py:31 +#: code:addons/auth_signup_verify_email/tests/test_verify_email.py:27 #, python-format msgid "That does not seem to be an email address." msgstr "Das schein keine Email-Adresse zu sein." - -#. module: auth_signup_verify_email -#: view:website:auth_signup.fields -msgid "email" -msgstr "EMail" - -#. module: auth_signup_verify_email -#: view:website:auth_signup.fields -msgid "only_passwords" -msgstr "" diff --git a/auth_signup_verify_email/i18n/es.po b/auth_signup_verify_email/i18n/es.po index c170d4fc5c..08ca0a8704 100644 --- a/auth_signup_verify_email/i18n/es.po +++ b/auth_signup_verify_email/i18n/es.po @@ -4,15 +4,14 @@ # # Translators: # Antonio Trueba, 2016 -# Antonio Trueba, 2016 msgid "" msgstr "" -"Project-Id-Version: server-tools (8.0)\n" +"Project-Id-Version: server-tools (9.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-19 14:44+0000\n" -"PO-Revision-Date: 2016-02-16 15:15+0000\n" -"Last-Translator: Antonio Trueba\n" -"Language-Team: Spanish (http://www.transifex.com/oca/OCA-server-tools-8-0/language/es/)\n" +"POT-Creation-Date: 2016-06-09 12:31+0000\n" +"PO-Revision-Date: 2016-05-31 14:47+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Spanish (http://www.transifex.com/oca/OCA-server-tools-9-0/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -21,28 +20,21 @@ msgstr "" #. module: auth_signup_verify_email #: code:addons/auth_signup_verify_email/controllers/main.py:54 +#: code:addons/auth_signup_verify_email/tests/test_verify_email.py:30 #, python-format msgid "Check your email to activate your account!" msgstr "Revise su correo para activar su cuenta." #. module: auth_signup_verify_email #: code:addons/auth_signup_verify_email/controllers/main.py:50 +#: code:addons/auth_signup_verify_email/tests/test_verify_email.py:28 #, python-format msgid "Something went wrong, please try again later or contact us." msgstr "Algo ha ido mal, por favor inténtelo de nuevo más tarde o contáctenos." #. module: auth_signup_verify_email #: code:addons/auth_signup_verify_email/controllers/main.py:31 +#: code:addons/auth_signup_verify_email/tests/test_verify_email.py:27 #, python-format msgid "That does not seem to be an email address." msgstr "Eso no parece una dirección de email válida." - -#. module: auth_signup_verify_email -#: view:website:auth_signup.fields -msgid "email" -msgstr "email" - -#. module: auth_signup_verify_email -#: view:website:auth_signup.fields -msgid "only_passwords" -msgstr "" diff --git a/auth_signup_verify_email/i18n/fr.po b/auth_signup_verify_email/i18n/fr.po new file mode 100644 index 0000000000..1798756c61 --- /dev/null +++ b/auth_signup_verify_email/i18n/fr.po @@ -0,0 +1,41 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_signup_verify_email +# +# Translators: +# Alexandre Papin , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-03-18 02:19+0000\n" +"PO-Revision-Date: 2017-03-18 02:19+0000\n" +"Last-Translator: Alexandre Papin , 2017\n" +"Language-Team: French (https://www.transifex.com/oca/teams/23907/fr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: fr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. module: auth_signup_verify_email +#: code:addons/auth_signup_verify_email/controllers/main.py:54 +#: code:addons/auth_signup_verify_email/tests/test_verify_email.py:30 +#, python-format +msgid "Check your email to activate your account!" +msgstr "Un email vous à été envoyé pour activer votre compte." + +#. module: auth_signup_verify_email +#: code:addons/auth_signup_verify_email/controllers/main.py:50 +#: code:addons/auth_signup_verify_email/tests/test_verify_email.py:28 +#, python-format +msgid "Something went wrong, please try again later or contact us." +msgstr "" +"Une erreur est survenue, veuillez réessayer plus tard ou contactez nous." + +#. module: auth_signup_verify_email +#: code:addons/auth_signup_verify_email/controllers/main.py:31 +#: code:addons/auth_signup_verify_email/tests/test_verify_email.py:27 +#, python-format +msgid "That does not seem to be an email address." +msgstr "Veuillez fournir une adresse email valide." diff --git a/auth_signup_verify_email/i18n/hr.po b/auth_signup_verify_email/i18n/hr.po new file mode 100644 index 0000000000..1b97b61ec3 --- /dev/null +++ b/auth_signup_verify_email/i18n/hr.po @@ -0,0 +1,40 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_signup_verify_email +# +# Translators: +# Bole , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-05-10 00:47+0000\n" +"PO-Revision-Date: 2017-05-10 00:47+0000\n" +"Last-Translator: Bole , 2017\n" +"Language-Team: Croatian (https://www.transifex.com/oca/teams/23907/hr/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: auth_signup_verify_email +#: code:addons/auth_signup_verify_email/controllers/main.py:54 +#: code:addons/auth_signup_verify_email/tests/test_verify_email.py:30 +#, python-format +msgid "Check your email to activate your account!" +msgstr "Provjerite svoj e-mail za aktivaciu računa!" + +#. module: auth_signup_verify_email +#: code:addons/auth_signup_verify_email/controllers/main.py:50 +#: code:addons/auth_signup_verify_email/tests/test_verify_email.py:28 +#, python-format +msgid "Something went wrong, please try again later or contact us." +msgstr "Nešto nije u redu, molimo pokušajte ponovo ili nas kontaktirajte." + +#. module: auth_signup_verify_email +#: code:addons/auth_signup_verify_email/controllers/main.py:31 +#: code:addons/auth_signup_verify_email/tests/test_verify_email.py:27 +#, python-format +msgid "That does not seem to be an email address." +msgstr "Ovo ne izgleda kao e-mail adresa." diff --git a/auth_signup_verify_email/i18n/hr_HR.po b/auth_signup_verify_email/i18n/hr_HR.po new file mode 100644 index 0000000000..cb4d2e312d --- /dev/null +++ b/auth_signup_verify_email/i18n/hr_HR.po @@ -0,0 +1,40 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_signup_verify_email +# +# Translators: +# Bole , 2016 +msgid "" +msgstr "" +"Project-Id-Version: server-tools (9.0)\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2016-06-29 00:48+0000\n" +"PO-Revision-Date: 2016-06-13 08:38+0000\n" +"Last-Translator: Bole \n" +"Language-Team: Croatian (Croatia) (http://www.transifex.com/oca/OCA-server-tools-9-0/language/hr_HR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: hr_HR\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" + +#. module: auth_signup_verify_email +#: code:addons/auth_signup_verify_email/controllers/main.py:54 +#: code:addons/auth_signup_verify_email/tests/test_verify_email.py:30 +#, python-format +msgid "Check your email to activate your account!" +msgstr "Provjerite svoj mail za aktiviranje računa" + +#. module: auth_signup_verify_email +#: code:addons/auth_signup_verify_email/controllers/main.py:50 +#: code:addons/auth_signup_verify_email/tests/test_verify_email.py:28 +#, python-format +msgid "Something went wrong, please try again later or contact us." +msgstr "Nešto nije u redu, molimo pokušajte se prijaviti kasnije ili nas kontaktirajte." + +#. module: auth_signup_verify_email +#: code:addons/auth_signup_verify_email/controllers/main.py:31 +#: code:addons/auth_signup_verify_email/tests/test_verify_email.py:27 +#, python-format +msgid "That does not seem to be an email address." +msgstr "Ovo ne izgleda kao valjana mail adresa." diff --git a/auth_signup_verify_email/i18n/it.po b/auth_signup_verify_email/i18n/it.po index 75bd3e908e..e3198c1d31 100644 --- a/auth_signup_verify_email/i18n/it.po +++ b/auth_signup_verify_email/i18n/it.po @@ -6,12 +6,12 @@ # Paolo Valier, 2016 msgid "" msgstr "" -"Project-Id-Version: server-tools (8.0)\n" +"Project-Id-Version: server-tools (9.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-03-17 15:36+0000\n" -"PO-Revision-Date: 2016-03-13 08:59+0000\n" -"Last-Translator: Paolo Valier\n" -"Language-Team: Italian (http://www.transifex.com/oca/OCA-server-tools-8-0/language/it/)\n" +"POT-Creation-Date: 2016-06-09 12:31+0000\n" +"PO-Revision-Date: 2016-05-31 14:47+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Italian (http://www.transifex.com/oca/OCA-server-tools-9-0/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -20,28 +20,21 @@ msgstr "" #. module: auth_signup_verify_email #: code:addons/auth_signup_verify_email/controllers/main.py:54 +#: code:addons/auth_signup_verify_email/tests/test_verify_email.py:30 #, python-format msgid "Check your email to activate your account!" msgstr "Controlla la tua email per attivare il tuo account!" #. module: auth_signup_verify_email #: code:addons/auth_signup_verify_email/controllers/main.py:50 +#: code:addons/auth_signup_verify_email/tests/test_verify_email.py:28 #, python-format msgid "Something went wrong, please try again later or contact us." msgstr "Qualcosa non è funzionato, prego provare più tardi altrimenti mettiti in contatto con noi." #. module: auth_signup_verify_email #: code:addons/auth_signup_verify_email/controllers/main.py:31 +#: code:addons/auth_signup_verify_email/tests/test_verify_email.py:27 #, python-format msgid "That does not seem to be an email address." msgstr "Questo non sembra essere un indirizzo email valido." - -#. module: auth_signup_verify_email -#: view:website:auth_signup.fields -msgid "email" -msgstr "email" - -#. module: auth_signup_verify_email -#: view:website:auth_signup.fields -msgid "only_passwords" -msgstr "" diff --git a/auth_signup_verify_email/i18n/ro.po b/auth_signup_verify_email/i18n/ro.po new file mode 100644 index 0000000000..561d092360 --- /dev/null +++ b/auth_signup_verify_email/i18n/ro.po @@ -0,0 +1,41 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * auth_signup_verify_email +# +# Translators: +# Daniel Schweiger , 2017 +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 10.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-06-22 01:11+0000\n" +"PO-Revision-Date: 2017-06-22 01:11+0000\n" +"Last-Translator: Daniel Schweiger , 2017\n" +"Language-Team: Romanian (https://www.transifex.com/oca/teams/23907/ro/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Language: ro\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" + +#. module: auth_signup_verify_email +#: code:addons/auth_signup_verify_email/controllers/main.py:54 +#: code:addons/auth_signup_verify_email/tests/test_verify_email.py:30 +#, python-format +msgid "Check your email to activate your account!" +msgstr "Ati primit un email pentru activarea acestui cont!" + +#. module: auth_signup_verify_email +#: code:addons/auth_signup_verify_email/controllers/main.py:50 +#: code:addons/auth_signup_verify_email/tests/test_verify_email.py:28 +#, python-format +msgid "Something went wrong, please try again later or contact us." +msgstr "" +"Sa produs o eroare, va rugam sa incercati mai tarziu sau contacteaza-ne." + +#. module: auth_signup_verify_email +#: code:addons/auth_signup_verify_email/controllers/main.py:31 +#: code:addons/auth_signup_verify_email/tests/test_verify_email.py:27 +#, python-format +msgid "That does not seem to be an email address." +msgstr "Nu ati introdus o directie email corespunzatoare." diff --git a/auth_signup_verify_email/i18n/sl.po b/auth_signup_verify_email/i18n/sl.po index 612e35cc63..bdfb829c5e 100644 --- a/auth_signup_verify_email/i18n/sl.po +++ b/auth_signup_verify_email/i18n/sl.po @@ -6,12 +6,12 @@ # Matjaž Mozetič , 2015 msgid "" msgstr "" -"Project-Id-Version: server-tools (8.0)\n" +"Project-Id-Version: server-tools (9.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-11-27 14:01+0000\n" -"PO-Revision-Date: 2015-11-13 11:44+0000\n" -"Last-Translator: Matjaž Mozetič \n" -"Language-Team: Slovenian (http://www.transifex.com/oca/OCA-server-tools-8-0/language/sl/)\n" +"POT-Creation-Date: 2016-06-09 12:31+0000\n" +"PO-Revision-Date: 2016-05-31 14:47+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Slovenian (http://www.transifex.com/oca/OCA-server-tools-9-0/language/sl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -20,28 +20,21 @@ msgstr "" #. module: auth_signup_verify_email #: code:addons/auth_signup_verify_email/controllers/main.py:54 +#: code:addons/auth_signup_verify_email/tests/test_verify_email.py:30 #, python-format msgid "Check your email to activate your account!" msgstr "Preverite svojo e-pošto za aktiviranje računa!" #. module: auth_signup_verify_email #: code:addons/auth_signup_verify_email/controllers/main.py:50 +#: code:addons/auth_signup_verify_email/tests/test_verify_email.py:28 #, python-format msgid "Something went wrong, please try again later or contact us." msgstr "Nekaj je narobe. Ponovno poskusite kasneje ali pa stopite v stik z nami." #. module: auth_signup_verify_email #: code:addons/auth_signup_verify_email/controllers/main.py:31 +#: code:addons/auth_signup_verify_email/tests/test_verify_email.py:27 #, python-format msgid "That does not seem to be an email address." msgstr "Kaže, da to ni e-poštni naslov." - -#. module: auth_signup_verify_email -#: view:website:auth_signup.fields -msgid "email" -msgstr "e-pošta" - -#. module: auth_signup_verify_email -#: view:website:auth_signup.fields -msgid "only_passwords" -msgstr "only_passwords" diff --git a/auth_signup_verify_email/i18n/tr.po b/auth_signup_verify_email/i18n/tr.po index a41abef839..b6fbbab043 100644 --- a/auth_signup_verify_email/i18n/tr.po +++ b/auth_signup_verify_email/i18n/tr.po @@ -6,12 +6,12 @@ # Ahmet Altınışık , 2016 msgid "" msgstr "" -"Project-Id-Version: server-tools (8.0)\n" +"Project-Id-Version: server-tools (9.0)\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-01-19 14:44+0000\n" -"PO-Revision-Date: 2016-01-31 14:58+0000\n" -"Last-Translator: Ahmet Altınışık \n" -"Language-Team: Turkish (http://www.transifex.com/oca/OCA-server-tools-8-0/language/tr/)\n" +"POT-Creation-Date: 2016-06-09 12:31+0000\n" +"PO-Revision-Date: 2016-05-31 14:47+0000\n" +"Last-Translator: OCA Transbot \n" +"Language-Team: Turkish (http://www.transifex.com/oca/OCA-server-tools-9-0/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" @@ -20,28 +20,21 @@ msgstr "" #. module: auth_signup_verify_email #: code:addons/auth_signup_verify_email/controllers/main.py:54 +#: code:addons/auth_signup_verify_email/tests/test_verify_email.py:30 #, python-format msgid "Check your email to activate your account!" msgstr "Hesabınızı aktive etmek için e-postanızı kontrol edin!" #. module: auth_signup_verify_email #: code:addons/auth_signup_verify_email/controllers/main.py:50 +#: code:addons/auth_signup_verify_email/tests/test_verify_email.py:28 #, python-format msgid "Something went wrong, please try again later or contact us." msgstr "Bişeyler ters gitti. Lütfen sonra tekrar deneyin ya da bize ulaşın." #. module: auth_signup_verify_email #: code:addons/auth_signup_verify_email/controllers/main.py:31 +#: code:addons/auth_signup_verify_email/tests/test_verify_email.py:27 #, python-format msgid "That does not seem to be an email address." msgstr "Bu bir e-posta adresi gözükmüyor." - -#. module: auth_signup_verify_email -#: view:website:auth_signup.fields -msgid "email" -msgstr "eposta" - -#. module: auth_signup_verify_email -#: view:website:auth_signup.fields -msgid "only_passwords" -msgstr "sadece_parolalar" From 4b3fab63e6c2ed9cffaa79ea6d4b4ae7f4cfbd20 Mon Sep 17 00:00:00 2001 From: Simone Orsi Date: Mon, 22 Jan 2018 18:30:09 +0100 Subject: [PATCH 04/32] [MIG][11] auth_signup_verify_email --- auth_signup_verify_email/README.rst | 18 +++++++------- auth_signup_verify_email/__init__.py | 3 +-- auth_signup_verify_email/__manifest__.py | 16 ++++++------- .../controllers/__init__.py | 3 +-- auth_signup_verify_email/controllers/main.py | 24 +++++++++++-------- auth_signup_verify_email/tests/__init__.py | 2 +- .../tests/test_verify_email.py | 15 ++++++------ auth_signup_verify_email/views/signup.xml | 6 ++--- 8 files changed, 42 insertions(+), 45 deletions(-) diff --git a/auth_signup_verify_email/README.rst b/auth_signup_verify_email/README.rst index 041de578ee..e7ebc18d56 100644 --- a/auth_signup_verify_email/README.rst +++ b/auth_signup_verify_email/README.rst @@ -6,16 +6,16 @@ Verify email at signup ====================== -This module extends the functionality of public sign up, and forces users to +This module extends the functionality of public sign up to force users to provide a valid email address. -To achieve this requirement, the user does not need to provide a password at -sign up, but when logging in later for the first time. +To achieve this, users are not required to provide a password at +sign up: they are asked for only at first login attempt. Installation ============ -* Install validate_email_ with ``pip install validate_email`` or equivalent. +* Install `validate_email `_ with ``pip install validate_email`` or equivalent. Configuration ============= @@ -24,8 +24,7 @@ To configure this module, you need to: * `Properly configure your outgoing email server(s) `_. -* Go to *Settings > General Settings* and enable *Allow - external users to sign up*. +* Go to *Settings > General Settings -> General settings*, search for the *Users* section and enable *Free sign up* in *Customer account*. Usage ===== @@ -37,7 +36,7 @@ To use this module, you need to: .. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas :alt: Try me on Runbot - :target: https://runbot.odoo-community.org/runbot/149/9.0 + :target: https://runbot.odoo-community.org/runbot/149/11.0 Known issues / Roadmap ====================== @@ -51,7 +50,7 @@ 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 smashing it by providing a detailed and welcomed feedback. +help us smash it by providing detailed and welcomed feedback. Credits @@ -68,6 +67,7 @@ Contributors * Rafael Blasco * Jairo Llopis +* Simone Orsi Maintainer ---------- @@ -83,5 +83,3 @@ mission is to support the collaborative development of Odoo features and promote its widespread use. To contribute to this module, please visit https://odoo-community.org. - -.. _validate_email: https://pypi.python.org/pypi/validate_email diff --git a/auth_signup_verify_email/__init__.py b/auth_signup_verify_email/__init__.py index 35233d377a..54d1454ece 100644 --- a/auth_signup_verify_email/__init__.py +++ b/auth_signup_verify_email/__init__.py @@ -1,5 +1,4 @@ -# -*- coding: utf-8 -*- -# © 2015 Antiun Ingeniería, S.L. +# Copyright 2015 Antiun Ingeniería, S.L. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). from . import controllers diff --git a/auth_signup_verify_email/__manifest__.py b/auth_signup_verify_email/__manifest__.py index 3908671e10..a965fefa4d 100644 --- a/auth_signup_verify_email/__manifest__.py +++ b/auth_signup_verify_email/__manifest__.py @@ -1,28 +1,26 @@ -# -*- coding: utf-8 -*- -# © 2015 Antiun Ingeniería, S.L. +# Copyright 2015 Antiun Ingeniería, S.L. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). { "name": "Verify email at signup", "summary": "Force uninvited users to use a good email for signup", - "version": "10.0.1.0.0", + "version": "11.0.1.0.0", "category": "Authentication", - "website": "http://www.tecnativa.com", + "website": "https://github.com/OCA/server-auth", "author": "Antiun Ingeniería S.L., " "Tecnativa, " "Odoo Community Association (OCA)", "license": "AGPL-3", - "application": False, - 'installable': True, + "depends": [ + "auth_signup", + ], "external_dependencies": { "python": [ "lxml", "validate_email", ], }, - "depends": [ - "auth_signup", - ], "data": [ "views/signup.xml", ], + 'installable': True, } diff --git a/auth_signup_verify_email/controllers/__init__.py b/auth_signup_verify_email/controllers/__init__.py index d10129bede..437ebe48e0 100644 --- a/auth_signup_verify_email/controllers/__init__.py +++ b/auth_signup_verify_email/controllers/__init__.py @@ -1,5 +1,4 @@ -# -*- coding: utf-8 -*- -# © 2015 Antiun Ingeniería, S.L. +# Copyright 2015 Antiun Ingeniería, S.L. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). from . import main diff --git a/auth_signup_verify_email/controllers/main.py b/auth_signup_verify_email/controllers/main.py index 0fb5e06638..38ad7e4742 100644 --- a/auth_signup_verify_email/controllers/main.py +++ b/auth_signup_verify_email/controllers/main.py @@ -1,9 +1,9 @@ -# -*- coding: utf-8 -*- -# © 2015 Antiun Ingeniería, S.L. +# Copyright 2015 Antiun Ingeniería, S.L. # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). import logging from odoo import _, http +from odoo.http import request from odoo.addons.auth_signup.controllers.main import AuthSignupHome _logger = logging.getLogger(__name__) @@ -15,11 +15,12 @@ class SignupVerifyEmail(AuthSignupHome): + @http.route() def web_auth_signup(self, *args, **kw): - if (http.request.params.get("login") and - not http.request.params.get("password")): - return self.passwordless_signup(http.request.params) + if (request.params.get("login") and + not request.params.get("password")): + return self.passwordless_signup(request.params) else: return super(SignupVerifyEmail, self).web_auth_signup(*args, **kw) @@ -29,17 +30,20 @@ def passwordless_signup(self, values): # Check good format of e-mail if not validate_email(values.get("login", "")): qcontext["error"] = _("That does not seem to be an email address.") - return http.request.render("auth_signup.signup", qcontext) + return request.render("auth_signup.signup", qcontext) elif not values.get("email"): values["email"] = values.get("login") + # preserve user lang + values['lang'] = request.lang + # Remove password values["password"] = "" - sudo_users = (http.request.env["res.users"] + sudo_users = (request.env["res.users"] .with_context(create_user=True).sudo()) try: - with http.request.cr.savepoint(): + with request.cr.savepoint(): sudo_users.signup(values, qcontext.get("token")) sudo_users.reset_password(values.get("login")) except Exception as error: @@ -49,7 +53,7 @@ def passwordless_signup(self, values): # Agnostic message for security qcontext["error"] = _( "Something went wrong, please try again later or contact us.") - return http.request.render("auth_signup.signup", qcontext) + return request.render("auth_signup.signup", qcontext) qcontext["message"] = _("Check your email to activate your account!") - return http.request.render("auth_signup.reset_password", qcontext) + return request.render("auth_signup.reset_password", qcontext) diff --git a/auth_signup_verify_email/tests/__init__.py b/auth_signup_verify_email/tests/__init__.py index 8858be4966..bed770df15 100644 --- a/auth_signup_verify_email/tests/__init__.py +++ b/auth_signup_verify_email/tests/__init__.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# © 2016 Jairo Llopis +# Copyright 2016 Jairo Llopis # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from . import test_verify_email diff --git a/auth_signup_verify_email/tests/test_verify_email.py b/auth_signup_verify_email/tests/test_verify_email.py index a3649cd7de..244535f321 100644 --- a/auth_signup_verify_email/tests/test_verify_email.py +++ b/auth_signup_verify_email/tests/test_verify_email.py @@ -1,11 +1,10 @@ -# -*- coding: utf-8 -*- -# © 2016 Jairo Llopis +# Copyright 2016 Jairo Llopis # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -from urllib import urlencode from lxml.html import document_fromstring -from openerp import _ -from openerp.tests.common import HttpCase +from odoo import _ +from odoo.tests.common import HttpCase +from odoo.tools.misc import mute_logger class UICase(HttpCase): @@ -39,9 +38,8 @@ def tearDown(self): def html_doc(self, url="/web/signup", data=None, timeout=10): """Get an HTML LXML document.""" - if data: - data = bytes(urlencode(data)) - return document_fromstring(self.url_open(url, data, timeout).read()) + resp = self.url_open(url, data=data, timeout=timeout) + return document_fromstring(resp.content) def csrf_token(self): """Get a valid CSRF token.""" @@ -58,6 +56,7 @@ def test_bad_email(self): doc = self.html_doc(data=self.data) self.assertTrue(self.search_text(doc, self.msg["badmail"])) + @mute_logger('odoo.addons.auth_signup_verify_email.controllers.main') def test_good_email(self): """Test acceptance of good emails. diff --git a/auth_signup_verify_email/views/signup.xml b/auth_signup_verify_email/views/signup.xml index cc81fcccf2..0a55571a4b 100644 --- a/auth_signup_verify_email/views/signup.xml +++ b/auth_signup_verify_email/views/signup.xml @@ -1,14 +1,14 @@ -