ckanext-privatedatasets/ckanext/privatedatasets/plugin.py

249 lines
10 KiB
Python
Raw Normal View History

2014-09-02 17:52:55 +02:00
# -*- coding: utf-8 -*-
# Copyright (c) 2014 CoNWeT Lab., Universidad Politécnica de Madrid
# This file is part of CKAN Private Dataset Extension.
# CKAN Private Dataset Extension is free software: you can redistribute it and/or
# modify it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
# CKAN Private Dataset Extension 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 Affero General Public License for more details.
# You should have received a copy of the GNU Affero General Public License
# along with CKAN Private Dataset Extension. If not, see <http://www.gnu.org/licenses/>.
import ckan.lib.search as search
2014-06-23 17:25:37 +02:00
import ckan.plugins as p
import ckan.plugins.toolkit as tk
import auth
import actions
2014-07-11 13:55:23 +02:00
import constants
import converters_validators as conv_val
import db
import helpers as helpers
2014-06-23 17:25:37 +02:00
class PrivateDatasets(p.SingletonPlugin, tk.DefaultDatasetForm):
2014-06-23 17:25:37 +02:00
p.implements(p.IDatasetForm)
p.implements(p.IAuthFunctions)
p.implements(p.IConfigurer)
p.implements(p.IRoutes, inherit=True)
p.implements(p.IActions)
2014-07-28 10:02:16 +02:00
p.implements(p.IPackageController, inherit=True)
p.implements(p.ITemplateHelpers)
2014-06-23 17:25:37 +02:00
######################################################################
############################ DATASET FORM ############################
######################################################################
def __init__(self, name=None):
self.indexer = search.PackageSearchIndex()
2014-06-23 17:25:37 +02:00
def _modify_package_schema(self):
return {
2014-06-26 16:37:27 +02:00
# remove datasets_with_no_organization_cannot_be_private validator
'private': [tk.get_validator('ignore_missing'),
tk.get_validator('boolean_validator')],
2014-07-11 13:55:23 +02:00
constants.ALLOWED_USERS_STR: [tk.get_validator('ignore_missing'),
conv_val.private_datasets_metadata_checker],
constants.ALLOWED_USERS: [conv_val.allowed_users_convert,
tk.get_validator('ignore_missing'),
2014-07-11 13:55:23 +02:00
conv_val.private_datasets_metadata_checker],
2014-08-28 15:19:34 +02:00
constants.ACQUIRE_URL: [tk.get_validator('ignore_missing'),
2014-07-11 13:55:23 +02:00
conv_val.private_datasets_metadata_checker,
2014-07-29 15:33:16 +02:00
conv_val.url_checker,
2014-07-11 13:55:23 +02:00
tk.get_converter('convert_to_extras')],
constants.SEARCHABLE: [tk.get_validator('ignore_missing'),
conv_val.private_datasets_metadata_checker,
tk.get_converter('convert_to_extras'),
tk.get_validator('boolean_validator')]
2014-06-23 17:25:37 +02:00
}
def create_package_schema(self):
2014-06-24 11:04:14 +02:00
# grab the default schema in our plugin
2014-06-23 17:25:37 +02:00
schema = super(PrivateDatasets, self).create_package_schema()
schema.update(self._modify_package_schema())
return schema
def update_package_schema(self):
2014-06-24 11:04:14 +02:00
# grab the default schema in our plugin
2014-06-23 17:25:37 +02:00
schema = super(PrivateDatasets, self).update_package_schema()
schema.update(self._modify_package_schema())
return schema
def show_package_schema(self):
schema = super(PrivateDatasets, self).show_package_schema()
schema.update({
2014-07-11 13:55:23 +02:00
constants.ALLOWED_USERS: [conv_val.get_allowed_users,
tk.get_validator('ignore_missing')],
2014-08-28 15:19:34 +02:00
constants.ACQUIRE_URL: [tk.get_converter('convert_from_extras'),
2014-07-11 13:55:23 +02:00
tk.get_validator('ignore_missing')],
constants.SEARCHABLE: [tk.get_converter('convert_from_extras'),
tk.get_validator('ignore_missing')]
2014-06-23 17:25:37 +02:00
})
return schema
def is_fallback(self):
# Return True to register this plugin as the default handler for
# package types not handled by any other IDatasetForm plugin.
return True
def package_types(self):
# This plugin doesn't handle any special package types, it just
# registers itself as the default (above).
return []
######################################################################
########################### AUTH FUNCTIONS ###########################
######################################################################
def get_auth_functions(self):
return {'package_show': auth.package_show,
'package_update': auth.package_update,
'resource_show': auth.resource_show,
2014-08-28 15:19:34 +02:00
constants.PACKAGE_ACQUIRED: auth.package_acquired}
2014-06-23 17:25:37 +02:00
######################################################################
############################ ICONFIGURER #############################
######################################################################
def update_config(self, config):
# Add this plugin's templates dir to CKAN's extra_template_paths, so
# that CKAN will use this plugin's custom templates.
tk.add_template_directory(config, 'templates')
# Register this plugin's fanstatic directory with CKAN.
tk.add_resource('fanstatic', 'privatedatasets')
######################################################################
############################## IROUTES ###############################
######################################################################
2014-07-29 12:11:54 +02:00
def before_map(self, m):
2014-08-28 15:19:34 +02:00
# DataSet acquired notification
m.connect('user_acquired_datasets', '/dashboard/acquired', ckan_icon='shopping-cart',
controller='ckanext.privatedatasets.controllers.ui_controller:AcquiredDatasetsControllerUI',
action='user_acquired_datasets', conditions=dict(method=['GET']))
return m
######################################################################
############################## IACTIONS ##############################
######################################################################
def get_actions(self):
2014-08-28 15:19:34 +02:00
return {constants.PACKAGE_ACQUIRED: actions.package_acquired}
######################################################################
######################### IPACKAGECONTROLLER #########################
######################################################################
def before_index(self, pkg_dict):
2014-07-11 13:55:23 +02:00
if 'extras_' + constants.SEARCHABLE in pkg_dict:
if pkg_dict['extras_searchable'] == 'False':
pkg_dict['capacity'] = 'private'
else:
pkg_dict['capacity'] = 'public'
return pkg_dict
def after_create(self, context, pkg_dict):
session = context['session']
update_cache = False
db.init_db(context['model'])
# Get the users and the package ID
2014-07-11 13:55:23 +02:00
if constants.ALLOWED_USERS in pkg_dict:
2014-07-15 14:59:47 +02:00
allowed_users = pkg_dict[constants.ALLOWED_USERS]
2014-07-10 13:21:28 +02:00
package_id = pkg_dict['id']
# Get current users
users = db.AllowedUser.get(package_id=package_id)
# Delete users and save the list of current users
current_users = []
for user in users:
current_users.append(user.user_name)
2014-07-15 14:59:47 +02:00
if user.user_name not in allowed_users:
2014-07-10 13:21:28 +02:00
session.delete(user)
update_cache = True
2014-07-10 13:21:28 +02:00
# Add non existing users
2014-07-15 14:59:47 +02:00
for user_name in allowed_users:
2014-07-10 13:21:28 +02:00
if user_name not in current_users:
out = db.AllowedUser()
out.package_id = package_id
out.user_name = user_name
out.save()
session.add(out)
update_cache = True
session.commit()
# The cache should be updated. Otherwise, the system may return
# outdated information in future requests
if update_cache:
new_pkg_dict = tk.get_action('package_show')(
{'model': context['model'],
'ignore_auth': True,
'validate': False,
'use_cache': False},
{'id': package_id})
self.indexer.update_dict(new_pkg_dict)
return pkg_dict
2014-07-11 13:55:23 +02:00
def after_update(self, context, pkg_dict):
return self.after_create(context, pkg_dict)
def after_show(self, context, pkg_dict):
2014-07-11 13:55:23 +02:00
user_obj = context.get('auth_user_obj')
2014-07-11 13:55:23 +02:00
updating_via_api = context.get(constants.CONTEXT_CALLBACK, False)
2014-08-28 15:19:34 +02:00
# allowed_users, searchable and acquire_url fileds can be only viewed by:
2014-07-15 17:51:13 +02:00
# * the dataset creator
# * the sysadmin
# * users allowed to update the allowed_users list via the notification API
2014-07-11 13:55:23 +02:00
if not updating_via_api and (not user_obj or (pkg_dict['creator_user_id'] != user_obj.id and not user_obj.sysadmin)):
2014-08-28 15:19:34 +02:00
attrs = [constants.ALLOWED_USERS, constants.SEARCHABLE, constants.ACQUIRE_URL]
for attr in attrs:
if attr in pkg_dict:
del pkg_dict[attr]
return pkg_dict
def after_delete(self, context, pkg_dict):
session = context['session']
package_id = pkg_dict['id']
# Get current users
db.init_db(context['model'])
users = db.AllowedUser.get(package_id=package_id)
# Delete all the users
for user in users:
session.delete(user)
session.commit()
return pkg_dict
######################################################################
2014-07-14 17:05:46 +02:00
######################### ITEMPLATESHELPER ###########################
######################################################################
def get_helpers(self):
2014-08-28 15:19:34 +02:00
return {'is_dataset_acquired': helpers.is_dataset_acquired,
'get_allowed_users_str': helpers.get_allowed_users_str,
'is_owner': helpers.is_owner,
'can_read': helpers.can_read}