diff --git a/auth_oauth_filter_by_domain/README.rst b/auth_oauth_filter_by_domain/README.rst new file mode 100644 index 0000000000..6cf9a0a99d --- /dev/null +++ b/auth_oauth_filter_by_domain/README.rst @@ -0,0 +1,101 @@ +====================== +OAuth Filter by Domain +====================== + +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:d6fb2d877d83aa1c11fd38c1143c3207c375d5d5361b64e3941fdaedcdf0272e + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png + :target: https://odoo-community.org/page/development-status + :alt: Beta +.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 +.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fserver--auth-lightgray.png?logo=github + :target: https://github.com/OCA/server-auth/tree/18.0/auth_oauth_filter_by_domain + :alt: OCA/server-auth +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/server-auth-18-0/server-auth-18-0-auth_oauth_filter_by_domain + :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-auth&target_branch=18.0 + :alt: Try me on Runboat + +|badge1| |badge2| |badge3| |badge4| |badge5| + +This module allows to define a list of ``allowed_domains`` on +'auth.oauth.provider' and shows only the relevant ones matching with the +current domain + +**Table of contents** + +.. contents:: + :local: + +Usage +===== + +1. Go to **Settings > Users and Companies > OAuth Providers**. +2. Add a comma-separated list of domains in the **Allowed Domains** + field. +3. Navigate to ``/web/login``. + + - Only providers with ``Allowed Domains`` matching the current domain + will be displayed. + - If ``Allowed Domains`` is left empty, the provider will be visible + on all domains. + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues `_. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us to smash it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +------- + +* Kencove + +Contributors +------------ + +- `Trobz `__: + + - Tuan Nguyen + +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. + +.. |maintainer-natuan9| image:: https://github.com/natuan9.png?size=40px + :target: https://github.com/natuan9 + :alt: natuan9 + +Current `maintainer `__: + +|maintainer-natuan9| + +This module is part of the `OCA/server-auth `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/auth_oauth_filter_by_domain/__init__.py b/auth_oauth_filter_by_domain/__init__.py new file mode 100644 index 0000000000..f7209b1710 --- /dev/null +++ b/auth_oauth_filter_by_domain/__init__.py @@ -0,0 +1,2 @@ +from . import models +from . import controllers diff --git a/auth_oauth_filter_by_domain/__manifest__.py b/auth_oauth_filter_by_domain/__manifest__.py new file mode 100644 index 0000000000..f4c4e9def6 --- /dev/null +++ b/auth_oauth_filter_by_domain/__manifest__.py @@ -0,0 +1,15 @@ +# Copyright 2025 Kencove +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl) +{ + "name": "OAuth Filter by Domain", + "summary": "Filter OAuth providers by domain", + "version": "18.0.1.0.0", + "website": "https://github.com/OCA/server-auth", + "author": "Kencove, Odoo Community Association (OCA)", + "maintainers": ["natuan9"], + "license": "AGPL-3", + "depends": ["auth_oauth"], + "data": [ + "views/auth_oauth_views.xml", + ], +} diff --git a/auth_oauth_filter_by_domain/controllers/__init__.py b/auth_oauth_filter_by_domain/controllers/__init__.py new file mode 100644 index 0000000000..12a7e529b6 --- /dev/null +++ b/auth_oauth_filter_by_domain/controllers/__init__.py @@ -0,0 +1 @@ +from . import main diff --git a/auth_oauth_filter_by_domain/controllers/main.py b/auth_oauth_filter_by_domain/controllers/main.py new file mode 100644 index 0000000000..57dcbb4e40 --- /dev/null +++ b/auth_oauth_filter_by_domain/controllers/main.py @@ -0,0 +1,20 @@ +from odoo.http import request + +from odoo.addons.auth_oauth.controllers.main import OAuthLogin + + +class OAuthLoginCustom(OAuthLogin): + def list_providers(self): + """Filter OAuth Providers based on the current domain""" + providers = super().list_providers() + host = request.httprequest.host.split(":")[0] + + filtered_providers = [] + for provider in providers: + allowed_domains = provider.get("allowed_domains", "") + if not allowed_domains or host in [ + domain.strip() for domain in allowed_domains.split(",") + ]: + filtered_providers.append(provider) + + return filtered_providers diff --git a/auth_oauth_filter_by_domain/models/__init__.py b/auth_oauth_filter_by_domain/models/__init__.py new file mode 100644 index 0000000000..6a8667f59c --- /dev/null +++ b/auth_oauth_filter_by_domain/models/__init__.py @@ -0,0 +1 @@ +from . import auth_oauth diff --git a/auth_oauth_filter_by_domain/models/auth_oauth.py b/auth_oauth_filter_by_domain/models/auth_oauth.py new file mode 100644 index 0000000000..bdd39f7eb6 --- /dev/null +++ b/auth_oauth_filter_by_domain/models/auth_oauth.py @@ -0,0 +1,9 @@ +from odoo import fields, models + + +class AuthOAuthProvider(models.Model): + _inherit = "auth.oauth.provider" + + allowed_domains = fields.Char( + help="Comma-separated list of domains that can use this provider.", + ) diff --git a/auth_oauth_filter_by_domain/pyproject.toml b/auth_oauth_filter_by_domain/pyproject.toml new file mode 100644 index 0000000000..4231d0cccb --- /dev/null +++ b/auth_oauth_filter_by_domain/pyproject.toml @@ -0,0 +1,3 @@ +[build-system] +requires = ["whool"] +build-backend = "whool.buildapi" diff --git a/auth_oauth_filter_by_domain/readme/CONTRIBUTORS.md b/auth_oauth_filter_by_domain/readme/CONTRIBUTORS.md new file mode 100644 index 0000000000..56787ffce2 --- /dev/null +++ b/auth_oauth_filter_by_domain/readme/CONTRIBUTORS.md @@ -0,0 +1,2 @@ +- [Trobz](https://trobz.com): + - Tuan Nguyen \<\> diff --git a/auth_oauth_filter_by_domain/readme/DESCRIPTION.md b/auth_oauth_filter_by_domain/readme/DESCRIPTION.md new file mode 100644 index 0000000000..9ad6818bbc --- /dev/null +++ b/auth_oauth_filter_by_domain/readme/DESCRIPTION.md @@ -0,0 +1 @@ +This module allows to define a list of `allowed_domains` on 'auth.oauth.provider' and shows only the relevant ones matching with the current domain diff --git a/auth_oauth_filter_by_domain/readme/USAGE.md b/auth_oauth_filter_by_domain/readme/USAGE.md new file mode 100644 index 0000000000..b2a92bbc78 --- /dev/null +++ b/auth_oauth_filter_by_domain/readme/USAGE.md @@ -0,0 +1,5 @@ +1. Go to **Settings > Users and Companies > OAuth Providers**. +2. Add a comma-separated list of domains in the **Allowed Domains** field. +3. Navigate to `/web/login`. + - Only providers with `Allowed Domains` matching the current domain will be displayed. + - If `Allowed Domains` is left empty, the provider will be visible on all domains. diff --git a/auth_oauth_filter_by_domain/static/description/index.html b/auth_oauth_filter_by_domain/static/description/index.html new file mode 100644 index 0000000000..c8acd9bbf2 --- /dev/null +++ b/auth_oauth_filter_by_domain/static/description/index.html @@ -0,0 +1,446 @@ + + + + + +OAuth Filter by Domain + + + +
+

OAuth Filter by Domain

+ + +

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

+

This module allows to define a list of allowed_domains on +‘auth.oauth.provider’ and shows only the relevant ones matching with the +current domain

+

Table of contents

+ +
+

Usage

+
    +
  1. Go to Settings > Users and Companies > OAuth Providers.
  2. +
  3. Add a comma-separated list of domains in the Allowed Domains +field.
  4. +
  5. Navigate to /web/login.
      +
    • Only providers with Allowed Domains matching the current domain +will be displayed.
    • +
    • If Allowed Domains is left empty, the provider will be visible +on all domains.
    • +
    +
  6. +
+
+
+

Bug Tracker

+

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

+

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

+
+
+

Credits

+
+

Authors

+
    +
  • Kencove
  • +
+
+
+

Contributors

+ +
+
+

Maintainers

+

This module is maintained by the OCA.

+ +Odoo Community Association + +

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

+

Current maintainer:

+

natuan9

+

This module is part of the OCA/server-auth project on GitHub.

+

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

+
+
+
+ + diff --git a/auth_oauth_filter_by_domain/views/auth_oauth_views.xml b/auth_oauth_filter_by_domain/views/auth_oauth_views.xml new file mode 100644 index 0000000000..87261c963f --- /dev/null +++ b/auth_oauth_filter_by_domain/views/auth_oauth_views.xml @@ -0,0 +1,12 @@ + + + + auth.oauth.provider + + + + + + + +