mirror of
https://github.com/enpaul/kodak.git
synced 2025-04-05 17:33:34 +00:00
One of the goals is to make the generated content directory directly hostable via a web browser for performance. This means that the application needs to be able to generate a file tree identical to the URL structure so that clients can fetch a single URL and either use the cached image or trigger a manipulation depending on whether it already exists. With a url structure of /key and /key/manip for the source and manips respectively, it becomes impossible to create a file tree matching it since 'key' must be both the source file and a directory containing the manipulated images. This updates it to use 'original' as a special manip name so the URL structure of /key/original and /key/manip can match the directory structure
17 lines
383 B
Python
17 lines
383 B
Python
from typing import Tuple
|
|
from typing import Type
|
|
|
|
from kodak.resources._shared import KodakResource
|
|
from kodak.resources.heartbeat import Heartbeat
|
|
from kodak.resources.image import Image
|
|
from kodak.resources.manip import ImageManip
|
|
from kodak.resources.openapi import OpenAPI
|
|
|
|
|
|
RESOURCES: Tuple[Type[KodakResource], ...] = (
|
|
Heartbeat,
|
|
Image,
|
|
ImageManip,
|
|
OpenAPI,
|
|
)
|