Skip to content

Commit

Permalink
[ADD] website_conditional_visibility_user_group: New module
Browse files Browse the repository at this point in the history
TT50008
  • Loading branch information
chienandalu committed Jul 10, 2024
1 parent 1ef4f71 commit 7a990d0
Show file tree
Hide file tree
Showing 17 changed files with 777 additions and 0 deletions.
6 changes: 6 additions & 0 deletions setup/website_conditional_visibility_user_group/setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import setuptools

setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)
94 changes: 94 additions & 0 deletions website_conditional_visibility_user_group/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,94 @@
====================================================
Conditional visibility for internal users in Website
====================================================

..
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:886fcbb9151837c653c43993188f47b0cb30031f5c7e184aa2b5c83c62649da2
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |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%2Fwebsite-lightgray.png?logo=github
:target: https://github.com/OCA/website/tree/15.0/website_conditional_visibility_user_group
:alt: OCA/website
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/website-15-0/website-15-0-website_conditional_visibility_user_group
: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/website&target_branch=15.0
:alt: Try me on Runboat

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

Thsi module adds extra granularity in the visibility of the website
snippets allowing to set if the users that can see a block are internal
or portal ones.

**Table of contents**

.. contents::
:local:

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

To configure the user group visibility:

- With the frontend editor opened select the block you want to set the
visibility for.
- In *Style* tab of the editor panel set the *Visibility* option to
*Conditional* and unfold it.
- Set the *Users* option to *Visible for logged in*.
- Now you'll see the new *Groups* option.
- You can choose between *Only internal users*, *Only portal users* or
*No restriction*, which is the default value.

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

Bugs are tracked on `GitHub Issues <https://github.com/OCA/website/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/website/issues/new?body=module:%20website_conditional_visibility_user_group%0Aversion:%2015.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
-------

* Tecnativa

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

- `Tecnativa <https://tecnativa.com>`__

- David Vidal

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/website <https://github.com/OCA/website/tree/15.0/website_conditional_visibility_user_group>`_ 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 website_conditional_visibility_user_group/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import models
28 changes: 28 additions & 0 deletions website_conditional_visibility_user_group/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Copyright 2024 Tecnativa - David Vidal
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
{
"name": "Conditional visibility for internal users in Website",
"summary": "Only internal users will see the blocks you add this condition to",
"version": "15.0.1.0.0",
"category": "Product",
"website": "https://github.com/OCA/website",
"author": "Tecnativa, Odoo Community Association (OCA)",
"license": "AGPL-3",
"depends": ["website"],
"data": ["views/snippet_options_template.xml"],
"assets": {
"web.assets_frontend_minimal": [
"website_conditional_visibility_user_group/static/src/js/*.js",
],
"web.assets_frontend_lazy": [
# Remove assets_frontend_minimal
(
"remove",
"website_conditional_visibility_user_group/static/src/js/*.js",
),
],
"web.assets_tests": [
"website_conditional_visibility_user_group/static/src/tests/*.js"
],
},
}
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import ir_http
20 changes: 20 additions & 0 deletions website_conditional_visibility_user_group/models/ir_http.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Copyright 2024 Tecnativa - David Vidal
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
from odoo import api, models
from odoo.http import request


class IrHttp(models.AbstractModel):
_inherit = "ir.http"

@api.model
def get_frontend_session_info(self):
# Used for the visibility of the website snippets
session_info = super().get_frontend_session_info()
if request.env.user.has_group("base.group_user"):
session_info["user_group"] = "internal"
elif request.env.user.has_group("base.group_portal"):
session_info["user_group"] = "portal"
else:
session_info["user_group"] = "public"
return session_info
9 changes: 9 additions & 0 deletions website_conditional_visibility_user_group/readme/CONFIGURE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
To configure the user group visibility:

- With the frontend editor opened select the block you want to set the visibility for.
- In *Style* tab of the editor panel set the *Visibility* option to *Conditional* and
unfold it.
- Set the *Users* option to *Visible for logged in*.
- Now you'll see the new *Groups* option.
- You can choose between *Only internal users*, *Only portal users* or *No restriction*,
which is the default value.
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
- [Tecnativa](https://tecnativa.com)
- David Vidal
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Thsi module adds extra granularity in the visibility of the website snippets allowing
to set if the users that can see a block are internal or portal ones.
Loading

0 comments on commit 7a990d0

Please sign in to comment.