Skip to main content

jQuery File Upload integration for cone.app

Project description

Latest PyPI version Number of PyPI downloads https://travis-ci.org/bluedynamics/cone.fileupload.svg?branch=master https://coveralls.io/repos/github/bluedynamics/cone.fileupload/badge.svg?branch=master

This package integrates jQuery File Upload (https://github.com/blueimp/jQuery-File-Upload/) in cone.

Currently, tag 9.9.3 is included. See (https://github.com/blueimp/jQuery-File-Upload/releases).

Usage

Since cone.app not knows about the underlying data, cone.fileupload only provides an abstract server implementation.

So first we need to provide a model.

from pyramid.security import (
    Everyone,
    Allow,
    Deny,
    ALL_PERMISSIONS,
)
from cone.app.model import BaseNode

# define an ACL
ACL = [
    (Allow, 'role:manager', ['add', 'delete']),
    (Allow, Everyone, ['login']),
    (Deny, Everyone, ALL_PERMISSIONS),
]

class Container(BaseNode):
    __acl__ = ACL

    def __call__(self):
        """Persistence happens here.
        """

class File(BaseNode):
    __acl__ = ACL
    # allow setting any value types
    allow_non_node_children = True

Now we need to provide a concrete FileUploadHandle implementation for our model.

from pyramid.view import view_config
from cone.fileupload.browser.fileupload import FileUploadHandle

@view_config(
    name='fileupload_handle',
    context=Container, # <- here the view gets bound to our model
    accept='application/json',
    renderer='json',
    permission='add')
class ContainerFileUploadHandle(FileUploadHandle):

    def create_file(self, stream, filename, mimetype):
        # this function gets called for persisting uploaded files
        file = self.model[filename] = File()
        file['body'] = stream.read()
        return {
            'name': filename,
            'size': len(file['body']),
            'url': '/{0}'.format(file.name),
            'deleteUrl': '/{0}/filedelete_handle'.format(file.name),
            'deleteType': 'GET',
        }

    def read_existing(self):
        # this function gets called for initial reading of existing files
        files = list()
        for node in self.model.values():
            files.append({
                'name': node.name,
                'size': len(node['body']),
                'url': '/{0}'.format(node.name),
                'deleteUrl': '/{0}/filedelete_handle'.format(node.name),
                'deleteType': 'GET',
            })
        return files

Optionally we might want to provide a custom fileupload tile for our model.

from cone.tile import tile
from cone.fileupload.browser.fileupload import FileUploadTile

@tile(
    name='fileupload',
    path='cone.fileupload:browser/fileupload.pt',
    interface=Container,
    permission='add')
class ContainerFileUploadTile(FileUploadTile):
    accept_file_types = '/(\.|\/)(gif|jpg)$/i'
    disable_image_preview = True
    disable_video_preview = True
    disable_audio_preview = True

Contributors

  • Robert Niederreiter <rnix [at] squarewave [dot] at>

Changes

0.5 (2021-11-08)

  • Rename deprecated allow_non_node_childs to allow_non_node_children in tests and documentation. [rnix]

0.4 (2020-05-30)

  • Initial pypi release [rnix]

0.3

  • Python 3 compatibility. [rnix]

  • Convert doctests to unittests. [rnix]

  • Use cone.app.main_hook decorator. [rnix]

  • Move resource registration to main hook. [rnix]

  • Upgrade to cone.app 1.0b1. [rnix]

0.2

  • Code organization. [rnix]

0.1

  • Make it work [rnix]

License

Copyright (c) 2013-2021, BlueDynamics Alliance, Austria Copyright (c) 2021, Cone Contributors All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

  • Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.

  • Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS “AS IS” AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cone.fileupload-0.5.tar.gz (110.8 kB view details)

Uploaded Source

File details

Details for the file cone.fileupload-0.5.tar.gz.

File metadata

  • Download URL: cone.fileupload-0.5.tar.gz
  • Upload date:
  • Size: 110.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.7.3

File hashes

Hashes for cone.fileupload-0.5.tar.gz
Algorithm Hash digest
SHA256 61466b04165f8ff75c97bdf7c11a0a36756f23dc8f57299e20e2db5c7827f6b7
MD5 fc49e4875889bce4086a35aaf4a0e9a6
BLAKE2b-256 bec19e0bae002470c43aa7a0e4a3a30d495618a29d70227a054a57e3dc7c7056

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page