-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Added `IAuthFunctions` to `plugin.py` - Added chained auth functions for `user_update`, `organization_update` and `group_update` to check `request.files` mimetype
- Loading branch information
1 parent
2e399da
commit a7a73a8
Showing
4 changed files
with
52 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
import ckan.plugins.toolkit as toolkit | ||
import logging | ||
|
||
from ckan.common import _, request | ||
|
||
log = logging.getLogger(__name__) | ||
|
||
|
||
def disallow_non_image_uploads(next_auth, context, data_dict): | ||
try: | ||
if request.files: | ||
files_dict = dict(request.files) | ||
image_upload = files_dict.get('image_upload') | ||
if image_upload and image_upload.mimetype and 'image' not in image_upload.mimetype: | ||
log.error('User {0} upload attempt blocked - file: {1}'.format( | ||
context['user'], | ||
image_upload | ||
)) | ||
return {'success': False, 'msg': _('Invalid filetype')} | ||
except Exception as e: | ||
log.error(str(e)) | ||
|
||
return next_auth(context, data_dict) | ||
|
||
|
||
@toolkit.chained_auth_function | ||
def user_update(next_auth, context, data_dict): | ||
return disallow_non_image_uploads(next_auth, context, data_dict) | ||
|
||
|
||
@toolkit.chained_auth_function | ||
def organization_update(next_auth, context, data_dict): | ||
return disallow_non_image_uploads(next_auth, context, data_dict) | ||
|
||
|
||
@toolkit.chained_auth_function | ||
def group_update(next_auth, context, data_dict): | ||
return disallow_non_image_uploads(next_auth, context, data_dict) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters