Skip to main content

Photo gallery with granular access control

Project description

Introduction

myks-gallery is a simple photo gallery with granular access control.

It powers my humble photo gallery, allowing me to:

  • access my entire photo collection privately,

  • share some albums with family or friends,

  • make some albums public.

Use case

Rather than use a photo manager, I just create a new directory for each event and put my photos inside. I include the date of the event in the name of the directory and I rename photos based on their date and time. Then I regularly synchronize my collection to a remote storage. I serve my gallery from there.

If you have a similar workflow, you may find myks-gallery useful.

Whenever I upload new photos, I re-scan the collection with django-admin scanphotos or with the button in the admin. myks-gallery detects new albums and photos. Then I define users, groups and access policies in the admin.

Album access policies control the visibility of albums. Most often, you’ll enable the “photos inherit album access policy” option. If you need more control, for instance to share only a subset of an album, you can disable this option and use photo access policies. You still need to define an album access policy and it should be a superset of the photo access policies.

Obviously, requiring usernames and passwords doesn’t work well for sharing photos with relatives. You might want to use django-sesame.

Setup

myks-gallery is a pluggable Django application. It requires:

  • Django ≥ 3.2 (LTS)

  • Python ≥ 3.6

Architecture

myks-gallery requires two storage areas:

  • The first one contains the original photos. It’s a read-only reference. You can upload photos with aws s3 sync, gsutil rsync, etc.

  • The second one contains resized versions and ZIP archives of album exports. It’s a cache. You can set up expiry policies and clear it without affecting the gallery, aside from the cost of rescaling images again.

myks-gallery accesses them through Django’s file storage API, meaning that you can use any storage for which a Django storage backend exists. You should use a third-party storage backend if you’re storing files in a cloud service.

Installation guide

This application isn’t exactly plug’n’play. There are many moving pieces. Here’s the general process for integrating myks-gallery into an existing website:

  1. Download and install the package from PyPI:

    $ pip install myks-gallery Pillow
  2. Add gallery.apps.GalleryConfig to INSTALLED_APPS:

    INSTALLED_APPS += ['gallery.apps.GalleryConfig']
  3. Configure the settings — see below for the list.

  4. Add the application to your URLconf with the gallery application namespace:

    urlpatterns += [
        path('gallery/', include('gallery.urls', namespace='gallery')),
    ]
  5. Create a suitable base.html template. It must provide three blocks: title, extrahead, content, as shown in this example.

  6. Scan your photos with the “Scan photos” button in the admin or the scanphotos management command and define access policies.

The source contains a sample application in the example directory. It can help you see how everything fits together. See below for how to run it.

Access control

myks-gallery provides two levels of access control: by album and by photo.

By default, albums and photos aren’t visible by anyone, except users with the “Can see all photos” permission, including superusers who have it implicitly.

To make them visible, you must define an access policy. You have two options: public access or access restricted to select users or groups.

Access policies for albums are configured explicitly in the admin.

In most cases, you will enable the “Photos inherit album access policy” option, so that the access policy also applies to all photos in the album.

Access policies for photos may also be configured for granular control.

For example, if you want to publish just a few photos in an album, make these photos public, make the album public, but don’t enable “Photos inherit album access policy”. Other photos in the album won’t be visible.

Another example, if you want to share an album privately except for a few photos, set an empty access policy on these photos (e.g. by adding then removing yourself), then allow some groups or users to view the album.

Permissions

myks-gallery defines two permissions for django.contrib.auth:

  • “Can scan the photos directory” allows using the “Scan photos” button in the admin.

  • “Can see all photos” allows seeing all albums and all photos regardless of access policies.

Settings

Running the sample application

  1. Make sure Django and Pillow are installed.

  2. Create directories for storing photos and thumbnails:

    $ cd example
    $ mkdir media
    $ mkdir media/cache
    $ mkdir media/photos
  3. Create an album directory, whose name must contain a date, and download images. Wikipedia’s featured pictures are a good choice:

    $ mkdir "media/photos/2023_01_01_Featured Pictures"
    # ... download pictures to this directory...
  4. Run the development server:

    $ ./manage.py migrate
    $ ./manage.py createsuperuser
    $ ./manage.py runserver
  5. Go to http://localhost:8000/admin/gallery/album/ and log in. Click the “Scan photos” link at the top right, and the “Scan photos” button on the next page. You should see the following messages:

    • Scanning path/to/myks-gallery/example/media/photos

    • Adding album 2023_01_01_Featured Pictures (Photos) as Featured Pictures

    • Done (0.01s)

    Go to http://localhost:8000/ and enjoy!

    Since you’re logged in as an admin user, you can view albums and photos even though you haven’t defined any access policies yet.

Changelog

1.0

Under development

0.9

This version makes it possible to customize image resizing, for example to integrate an external service, with the GALLERY_RESIZE setting. Review gallery.resizers.thumbor.resize for an example.

Several features designed for storing files in the filesystem are removed:

  • The --resize option of django-admin scanphotos is removed.

  • Expiration of album archives with the GALLERY_ARCHIVE_EXPIRY setting is removed. Configure lifecycle for the export folder on the cloud storage service instead.

  • Fallback to the GALLERY_PHOTO_DIR and GALLERY_CACHE_DIR settings, deprecated in version 0.5, is removed.

  • Support for serving files privately from the local filesystem is removed, including the GALLERY_SENDFILE_HEADER and GALLERY_SENDFILE_PREFIX settings.

It includes smaller changes too.

  • Updated for Django 4.0.

0.8

  • Changed photo access policies to always override album access policies, even when “Photos inherit album access policy” is enabled. This makes it possible to restrict access with photo access policies, rather than just extend it.

  • Updated for Django 3.0.

0.7

  • Updated for Django 2.0.

0.6

  • Added migrations for compatibility with Django 1.9.

To upgrade an existing project, run: django-admin migrate --fake-initial.

0.5

This version uses the Django file storage API for all operations on files, making it possible to use services such as Amazon S3 or Google Cloud Storage for storing photos and thumbnails. It introduces the GALLERY_PHOTO_STORAGE and GALLERY_CACHE_STORAGE settings. They supersede GALLERY_PHOTO_DIR and GALLERY_CACHE_DIR.

When upgrading to 0.5 or later, you should clear the cache directory. Previously cached thumbnails and exports won’t be used by this version.

It includes smaller changes too.

  • Switched ordering of albums to always show the most recent albums first.

  • Allowed customizing the number of photos in album previews.

  • Preserved original order of photos in album previews.

  • Added pagination on album preview pages.

  • Changed the hashing schema. This invalides the cache. You should clear it.

  • Fixed collision between zip archives containing photos with the same name.

0.4

  • Provided exports of albums as zip archives.

  • Fixed preview of photos affected by batch access policy changes.

0.3

  • Support for Python 3 and Django 1.6.

  • Hid public albums by default for logged-in users.

  • Switched the default styles to a responsive design.

  • Added an option to scanphotos to precompute thumbnails.

  • Added an option to scanphotos to resynchronize photo dates.

  • Fixed bugs in photo dates.

0.2

  • Made most settings optional for easier deployment.

  • Made “sendfile” optional and used streaming responses as a fallback.

  • Worked around a crash in libjpeg when creating large JPEG previews.

  • Added many tests.

0.1

  • Initial public release, with the history from my private repository.

  • Added documentation (README file).

  • Added a sample application.

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

myks_gallery-0.9.1.tar.gz (35.3 kB view hashes)

Uploaded Source

Built Distribution

myks_gallery-0.9.1-py3-none-any.whl (39.8 kB view hashes)

Uploaded Python 3

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