dawarich/app/controllers/api/v1/photos_controller.rb

52 lines
1.6 KiB
Ruby

# frozen_string_literal: true
class Api::V1::PhotosController < ApiController
before_action :check_integration_configured, only: %i[index thumbnail]
before_action :check_source, only: %i[thumbnail]
def index
@photos = Rails.cache.fetch("photos_#{params[:start_date]}_#{params[:end_date]}", expires_in: 1.day) do
Photos::Search.new(current_api_user, start_date: params[:start_date], end_date: params[:end_date]).call
end
render json: @photos, status: :ok
end
def thumbnail
response = fetch_cached_thumbnail(params[:source])
handle_thumbnail_response(response)
end
private
def fetch_cached_thumbnail(source)
Rails.cache.fetch("photo_thumbnail_#{params[:id]}", expires_in: 1.day) do
Photos::Thumbnail.new(current_api_user, source, params[:id]).call
end
end
def handle_thumbnail_response(response)
if response.success?
send_data(response.body, type: 'image/jpeg', disposition: 'inline', status: :ok)
else
render json: { error: 'Failed to fetch thumbnail' }, status: response.code
end
end
def integration_configured?
current_api_user.immich_integration_configured? || current_api_user.photoprism_integration_configured?
end
def check_integration_configured
unauthorized_integration unless integration_configured?
end
def check_source
unauthorized_integration unless params[:source] == 'immich' || params[:source] == 'photoprism'
end
def unauthorized_integration
render json: { error: "#{params[:source]&.capitalize} integration not configured" },
status: :unauthorized
end
end