#########################################################################
#
# Copyright (C) 2017 OSGeo
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
#########################################################################
import logging
from django.conf import settings
from django.core.management.base import BaseCommand
from geonode.layers.models import Dataset
# from geonode.geoserver.security.utils import set_geofence_all
[docs]
logger = logging.getLogger(__name__)
[docs]
class Command(BaseCommand):
"""Resets Permissions to Public for All Layers
"""
[docs]
def handle(self, *args, **options):
#TODO: Integrate with ACL implementation
raise NotImplementedError("This command is not supported.")
# all_datasets = Dataset.objects.all()
# for index, layer in enumerate(all_datasets):
# print(f"[{(index + 1)} / {len(all_datasets)}] Setting public permissions to Dataset [{layer.name}] ...")
# try:
# use_geofence = settings.OGC_SERVER['default'].get(
# "ACL_SECURITY_ENABLED", False)
# if use_geofence:
# set_geofence_all(layer)
# layer.set_default_permissions()
# perm_spec = {"users": {}, "groups": {}}
# perm_spec["users"]["admin"] = ['view_resourcebase', 'change_resourcebase_permissions',
# 'download_resourcebase', 'publish_resourcebase',
# 'change_resourcebase_metadata']
# perm_spec["users"][str(layer.owner)] = ['view_resourcebase', 'change_resourcebase_permissions',
# 'download_resourcebase', 'publish_resourcebase',
# 'change_resourcebase_metadata']
# perm_spec["users"]["AnonymousUser"] = ['view_resourcebase', 'download_resourcebase']
# layer.set_permissions(perm_spec)
# except Exception:
# logger.error(f"[ERROR] Dataset [{layer.name}] couldn't be updated")