Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ Available addons
----------------
addon | version | maintainers | summary
--- | --- | --- | ---
[auth_saml_environment](auth_saml_environment/) | 18.0.1.0.0 | | Allows system administrator to authenticate with any account
[data_encryption](data_encryption/) | 18.0.1.0.0 | <a href='https://github.com/florian-dacosta'><img src='https://github.com/florian-dacosta.png' width='32' height='32' style='border-radius:50%;' alt='florian-dacosta'/></a> | Store accounts and credentials encrypted by environment
[mail_environment](mail_environment/) | 18.0.1.0.1 | | Configure mail servers with server_environment_files
[mail_environment_google_gmail](mail_environment_google_gmail/) | 18.0.1.0.0 | <a href='https://github.com/ivantodorovich'><img src='https://github.com/ivantodorovich.png' width='32' height='32' style='border-radius:50%;' alt='ivantodorovich'/></a> | Configure Gmail mail servers with server_environment_files
Expand Down
119 changes: 119 additions & 0 deletions auth_saml_environment/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,119 @@
.. image:: https://odoo-community.org/readme-banner-image
:target: https://odoo-community.org/get-involved?utm_source=readme
:alt: Odoo Community Association

======================
Auth SAML environement
======================

..
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:df4dcbff9ac6b160ee08b0af1d5716f3e3e8e04b813084dc67d01daec02e80f8
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
:target: https://odoo-community.org/page/development-status
:alt: Beta
.. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
:alt: License: AGPL-3
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fserver--env-lightgray.png?logo=github
:target: https://github.com/OCA/server-env/tree/18.0/auth_saml_environment
:alt: OCA/server-env
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/server-env-18-0/server-env-18-0-auth_saml_environment
:alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
:target: https://runboat.odoo-community.org/builds?repo=OCA/server-env&target_branch=18.0
:alt: Try me on Runboat

|badge1| |badge2| |badge3| |badge4| |badge5|

This module allows to use server env for SAML configuration

**Table of contents**

.. contents::
:local:

Installation
============

To install this module, you need to have the following modules installed
and properly configured: server_environment module auth_saml

Configuration
=============

To configure this module, you need to:

Create a module server_environment_file with a cfg file or set the
environment variable SERVER_ENV_CONFIG with the following section:

[auth_saml_provider.<name>]

Where <name> is optional and must be equal to the name field you defined
in Odoo for the IDP.

Example of configuration

[auth_saml_provider.my_idp]

idp_metadata=<...> sp_baseurl=\ https://odoo-community.org
sp_pem_public_path=/data/cert.pem sp_pem_private_path=/data/key.pem

Usage
=====

Once configured, Odoo will read the Auth SAML Providers values from the
configuration.

Known issues / Roadmap
======================

- Due to the special nature of this addon, you cannot test it on the OCA
runbot.

Bug Tracker
===========

Bugs are tracked on `GitHub Issues <https://github.com/OCA/server-env/issues>`_.
In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us to smash it by providing a detailed and welcomed
`feedback <https://github.com/OCA/server-env/issues/new?body=module:%20auth_saml_environment%0Aversion:%2018.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.

Credits
=======

Authors
-------

* Camptocamp

Contributors
------------

- Denis Leemann <denis.leemann@camptocamp.com>
- Yannick Vaucher <yannick.vaucher@camptocamp.com>

Maintainers
-----------

This module is maintained by the OCA.

.. image:: https://odoo-community.org/logo.png
:alt: Odoo Community Association
:target: https://odoo-community.org

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

This module is part of the `OCA/server-env <https://github.com/OCA/server-env/tree/18.0/auth_saml_environment>`_ project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
1 change: 1 addition & 0 deletions auth_saml_environment/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import models
20 changes: 20 additions & 0 deletions auth_saml_environment/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Copyright 2021 Camptocamp SA (http://www.camptocamp.ch)
# License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html

{
"name": "Auth SAML environement",
"summary": "Allows system administrator to authenticate with any account",
"version": "18.0.1.0.0",
"category": "base",
"author": "Camptocamp,Odoo Community Association (OCA)",
"website": "https://github.com/OCA/server-env",
"license": "AGPL-3",
"depends": [
"auth_saml",
"server_environment",
],
"data": [
"views/saml_provider_view.xml",
],
"installable": True,
}
78 changes: 78 additions & 0 deletions auth_saml_environment/i18n/auth_saml_environment.pot
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * auth_saml_environment
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 18.0\n"
"Report-Msgid-Bugs-To: \n"
"Last-Translator: \n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: \n"

#. module: auth_saml_environment
#: model:ir.model.fields,help:auth_saml_environment.field_auth_saml_provider__idp_metadata
#: model:ir.model.fields,help:auth_saml_environment.field_auth_saml_provider__x_idp_metadata_env_default
msgid ""
"Configuration for this Identity Provider. Supplied by the provider, in XML "
"format."
msgstr ""

#. module: auth_saml_environment
#: model:ir.model.fields,field_description:auth_saml_environment.field_auth_saml_provider__entity_id
msgid "Entity ID"
msgstr ""

#. module: auth_saml_environment
#: model:ir.model.fields,field_description:auth_saml_environment.field_auth_saml_provider__x_entity_id_env_default
msgid "Entity ID Env Default"
msgstr ""

#. module: auth_saml_environment
#: model:ir.model.fields,help:auth_saml_environment.field_auth_saml_provider__entity_id
#: model:ir.model.fields,help:auth_saml_environment.field_auth_saml_provider__x_entity_id_env_default
msgid "EntityID passed to IDP, used to identify the Odoo"
msgstr ""

#. module: auth_saml_environment
#: model:ir.model.fields,field_description:auth_saml_environment.field_auth_saml_provider__idp_metadata
msgid "Identity Provider Metadata"
msgstr ""

#. module: auth_saml_environment
#: model:ir.model.fields,field_description:auth_saml_environment.field_auth_saml_provider__x_idp_metadata_env_default
msgid "Identity Provider Metadata Env Default"
msgstr ""

#. module: auth_saml_environment
#: model:ir.model,name:auth_saml_environment.model_auth_saml_provider
msgid "SAML2 Provider"
msgstr ""

#. module: auth_saml_environment
#: model:ir.model.fields,field_description:auth_saml_environment.field_auth_saml_provider__server_env_defaults
msgid "Server Env Defaults"
msgstr ""

#. module: auth_saml_environment
#: model:ir.model.fields,field_description:auth_saml_environment.field_auth_saml_provider__sp_pem_private
msgid "Sp Pem Private"
msgstr ""

#. module: auth_saml_environment
#: model:ir.model.fields,field_description:auth_saml_environment.field_auth_saml_provider__sp_pem_public
msgid "Sp Pem Public"
msgstr ""

#. module: auth_saml_environment
#: model:ir.model.fields,field_description:auth_saml_environment.field_auth_saml_provider__sp_pem_private_path
msgid "sp_pem_private_path env config value"
msgstr ""

#. module: auth_saml_environment
#: model:ir.model.fields,field_description:auth_saml_environment.field_auth_saml_provider__sp_pem_public_path
msgid "sp_pem_public_path env config value"
msgstr ""
72 changes: 72 additions & 0 deletions auth_saml_environment/i18n/ca.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * auth_saml_environment
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 14.0\n"
"Report-Msgid-Bugs-To: \n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: ca\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"

#. module: auth_saml_environment
#: model:ir.model.fields,help:auth_saml_environment.field_auth_saml_provider__idp_metadata
msgid ""
"Configuration for this Identity Provider. Supplied by the provider, in XML "
"format."
msgstr ""

#. module: auth_saml_environment
#: model:ir.model.fields,field_description:auth_saml_environment.field_auth_saml_provider__display_name
msgid "Display Name"
msgstr ""

#. module: auth_saml_environment
#: model:ir.model.fields,field_description:auth_saml_environment.field_auth_saml_provider__id
msgid "ID"
msgstr ""

#. module: auth_saml_environment
#: model:ir.model.fields,field_description:auth_saml_environment.field_auth_saml_provider__idp_metadata
msgid "Identity Provider Metadata"
msgstr ""

#. module: auth_saml_environment
#: model:ir.model.fields,field_description:auth_saml_environment.field_auth_saml_provider____last_update
msgid "Last Modified on"
msgstr ""

#. module: auth_saml_environment
#: model:ir.model,name:auth_saml_environment.model_auth_saml_provider
msgid "SAML2 Provider"
msgstr ""

#. module: auth_saml_environment
#: model:ir.model.fields,field_description:auth_saml_environment.field_auth_saml_provider__server_env_defaults
msgid "Server Env Defaults"
msgstr ""

#. module: auth_saml_environment
#: model:ir.model.fields,field_description:auth_saml_environment.field_auth_saml_provider__sp_pem_private
msgid "Sp Pem Private"
msgstr ""

#. module: auth_saml_environment
#: model:ir.model.fields,field_description:auth_saml_environment.field_auth_saml_provider__sp_pem_public
msgid "Sp Pem Public"
msgstr ""

#. module: auth_saml_environment
#: model:ir.model.fields,field_description:auth_saml_environment.field_auth_saml_provider__sp_pem_private_path
msgid "sp_pem_private_path env config value"
msgstr ""

#. module: auth_saml_environment
#: model:ir.model.fields,field_description:auth_saml_environment.field_auth_saml_provider__sp_pem_public_path
msgid "sp_pem_public_path env config value"
msgstr ""
76 changes: 76 additions & 0 deletions auth_saml_environment/i18n/it.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * auth_saml_environment
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 14.0\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2026-05-04 11:45+0000\n"
"Last-Translator: mymage <stefano.consolaro@mymage.it>\n"
"Language-Team: none\n"
"Language: it\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.15.2\n"

#. module: auth_saml_environment
#: model:ir.model.fields,help:auth_saml_environment.field_auth_saml_provider__idp_metadata
msgid ""
"Configuration for this Identity Provider. Supplied by the provider, in XML "
"format."
msgstr ""
"Configurazione per questo provider di identità. Fornito dal provider, in "
"formato XML."

#. module: auth_saml_environment
#: model:ir.model.fields,field_description:auth_saml_environment.field_auth_saml_provider__display_name
msgid "Display Name"
msgstr "Nome visualizzato"

#. module: auth_saml_environment
#: model:ir.model.fields,field_description:auth_saml_environment.field_auth_saml_provider__id
msgid "ID"
msgstr "ID"

#. module: auth_saml_environment
#: model:ir.model.fields,field_description:auth_saml_environment.field_auth_saml_provider__idp_metadata
msgid "Identity Provider Metadata"
msgstr "Metadati provider identità"

#. module: auth_saml_environment
#: model:ir.model.fields,field_description:auth_saml_environment.field_auth_saml_provider____last_update
msgid "Last Modified on"
msgstr "Ultima modifica il"

#. module: auth_saml_environment
#: model:ir.model,name:auth_saml_environment.model_auth_saml_provider
msgid "SAML2 Provider"
msgstr "Provider SAML2"

#. module: auth_saml_environment
#: model:ir.model.fields,field_description:auth_saml_environment.field_auth_saml_provider__server_env_defaults
msgid "Server Env Defaults"
msgstr "Predefiniti ambiente server"

#. module: auth_saml_environment
#: model:ir.model.fields,field_description:auth_saml_environment.field_auth_saml_provider__sp_pem_private
msgid "Sp Pem Private"
msgstr "Sp Pem privato"

#. module: auth_saml_environment
#: model:ir.model.fields,field_description:auth_saml_environment.field_auth_saml_provider__sp_pem_public
msgid "Sp Pem Public"
msgstr "Sp Pem pubblico"

#. module: auth_saml_environment
#: model:ir.model.fields,field_description:auth_saml_environment.field_auth_saml_provider__sp_pem_private_path
msgid "sp_pem_private_path env config value"
msgstr "Valore configurazione ambiente sp_pem_private_path"

#. module: auth_saml_environment
#: model:ir.model.fields,field_description:auth_saml_environment.field_auth_saml_provider__sp_pem_public_path
msgid "sp_pem_public_path env config value"
msgstr "Valore configurazione ambiente sp_pem_public_path"
1 change: 1 addition & 0 deletions auth_saml_environment/models/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import auth_saml_provider
Loading
Loading