❤️ Support Masonite

masonite-filemanager

Community V0.1.3
12
0
MIT License

pip install masonite-filemanager

filemanager

GitHub Workflow Status PyPI Python Version GitHub release (latest by date including pre-releases) License star Code style: black

Introduction

A simple yet powerful file management solution for your masonite application.

Features

  • [x] Manager Server Files (Currently only supports local files)
  • [x] Upload Files
  • [x] Preview Files
  • [x] Rename Files/Folders
  • [x] Delete Files/Folders
  • [x] Download Files
  • [x] Move Files
  • [x] Search Files
  • [x] Protect Routes
  • [ ] Image Editing
  • [ ] Third Party Driver Support (S3, DigitalOcean Space, etc)
  • [x] File Picker (Form)

Installation

pip install masonite-filemanager

Configuration

Add FileManagerProvider to your project in config/providers.py:

# config/providers.py
# ...
from filemanager.providers import FileManagerProvider

# ...
PROVIDERS = [
    # ...
    # Third Party Providers
    FileManagerProvider,
    # ...
]

Then you can publish the package resources (if needed) by doing:

python craft package:publish filemanager

Finally add following to STATICFILES section in config/filesystem.py:

# config/filesystem.py

STATICFILES = {
    # ...
    # FileManager resources
    'resources/vendor/filemanager': 'filemanager-assets/',
    "storage/framework/filesystem/filemanager": "filemanager-uploads/",
}

Usage

Once finishing configurations, you can access the file manager by using the following route:

http://localhost:8000/filemanager

If you want to use file picker then all you have to do is include then follow the following guidelines:

  1. Add style in the header of your base template:

       
       

  2. Add script before the </body> tag of your base template:

       
       

  3. Finally, in your form you can use selector in your form in the following way:

       

or, if you want file-preview:

   

The design of the file-picker is very basic so you might want to customize with your own design by modifying the stylesheet which resides in storage/vendor/filemanager directory.

License

masonite-filemanager is open-sourced software licensed under the MIT license.

Last update: