-
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.
Merge pull request #1 from salsadigitalauorg/feature/block-non-image-…
…uploads Block non-image uploads
- Loading branch information
Showing
6 changed files
with
79 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,18 @@ | ||
import ckan.plugins.toolkit as toolkit | ||
|
||
from ckanext.fortify.logic.auth import helpers | ||
|
||
|
||
@toolkit.chained_auth_function | ||
def fortify_group_create(next_auth, context, data_dict): | ||
return helpers.disallow_non_image_uploads(next_auth, context, data_dict) | ||
|
||
|
||
@toolkit.chained_auth_function | ||
def fortify_organization_create(next_auth, context, data_dict): | ||
return helpers.disallow_non_image_uploads(next_auth, context, data_dict) | ||
|
||
|
||
@toolkit.chained_auth_function | ||
def fortify_user_create(next_auth, context, data_dict): | ||
return helpers.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
import logging | ||
|
||
from ckan.common import _, request | ||
|
||
log = logging.getLogger(__name__) | ||
invalid_filetype_response = {'success': False, 'msg': _('Invalid filetype')} | ||
|
||
|
||
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 invalid_filetype_response | ||
except Exception as e: | ||
log.error(str(e)) | ||
|
||
return 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import ckan.plugins.toolkit as toolkit | ||
|
||
from ckanext.fortify.logic.auth import helpers | ||
|
||
|
||
@toolkit.chained_auth_function | ||
def fortify_group_update(next_auth, context, data_dict): | ||
return helpers.disallow_non_image_uploads(next_auth, context, data_dict) | ||
|
||
|
||
@toolkit.chained_auth_function | ||
def fortify_organization_update(next_auth, context, data_dict): | ||
return helpers.disallow_non_image_uploads(next_auth, context, data_dict) | ||
|
||
|
||
@toolkit.chained_auth_function | ||
def fortify_user_update(next_auth, context, data_dict): | ||
return helpers.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