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
101 changes: 101 additions & 0 deletions auth_oauth_filter_by_domain/README.rst
Original file line number Diff line number Diff line change
@@ -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 <https://github.com/OCA/server-auth/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-auth/issues/new?body=module:%20auth_oauth_filter_by_domain%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
-------

* Kencove

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

- `Trobz <https://trobz.com>`__:

- Tuan Nguyen <tuanna@trobz.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.

.. |maintainer-natuan9| image:: https://github.com/natuan9.png?size=40px
:target: https://github.com/natuan9
:alt: natuan9

Current `maintainer <https://odoo-community.org/page/maintainer-role>`__:

|maintainer-natuan9|

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

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
2 changes: 2 additions & 0 deletions auth_oauth_filter_by_domain/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
from . import models
from . import controllers
15 changes: 15 additions & 0 deletions auth_oauth_filter_by_domain/__manifest__.py
Original file line number Diff line number Diff line change
@@ -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",
],
}
1 change: 1 addition & 0 deletions auth_oauth_filter_by_domain/controllers/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import main
20 changes: 20 additions & 0 deletions auth_oauth_filter_by_domain/controllers/main.py
Original file line number Diff line number Diff line change
@@ -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
1 change: 1 addition & 0 deletions auth_oauth_filter_by_domain/models/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import auth_oauth
9 changes: 9 additions & 0 deletions auth_oauth_filter_by_domain/models/auth_oauth.py
Original file line number Diff line number Diff line change
@@ -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.",
)
3 changes: 3 additions & 0 deletions auth_oauth_filter_by_domain/pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[build-system]
requires = ["whool"]
build-backend = "whool.buildapi"
2 changes: 2 additions & 0 deletions auth_oauth_filter_by_domain/readme/CONTRIBUTORS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- [Trobz](https://trobz.com):
- Tuan Nguyen \<<tuanna@trobz.com>\>
1 change: 1 addition & 0 deletions auth_oauth_filter_by_domain/readme/DESCRIPTION.md
Original file line number Diff line number Diff line change
@@ -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
5 changes: 5 additions & 0 deletions auth_oauth_filter_by_domain/readme/USAGE.md
Original file line number Diff line number Diff line change
@@ -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.
Loading