pyworker fixes and ogimages fixes
This commit is contained in:
@@ -126,9 +126,9 @@ class TaskScheduler:
|
|||||||
self.logger.info(f"Running task '{task_name}'")
|
self.logger.info(f"Running task '{task_name}'")
|
||||||
# Use task instance as a context manager to ensure
|
# Use task instance as a context manager to ensure
|
||||||
# a single database connection is used for the entire task
|
# a single database connection is used for the entire task
|
||||||
with task_info["instance"] as task_instance:
|
with task_info["instance"]:
|
||||||
# Execute the task instance's run method directly
|
# Execute the registered task function with its arguments
|
||||||
task_instance.run()
|
task_info["func"](*task_info["args"], **task_info["kwargs"])
|
||||||
self.logger.info(f"Task '{task_name}' completed")
|
self.logger.info(f"Task '{task_name}' completed")
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
self.logger.exception(f"Error running task '{task_name}': {e}")
|
self.logger.exception(f"Error running task '{task_name}': {e}")
|
||||||
|
|||||||
BIN
web/src/assets/ogimage-bg.png
Normal file
BIN
web/src/assets/ogimage-bg.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 253 KiB |
File diff suppressed because one or more lines are too long
@@ -3,21 +3,21 @@ import { urlParamsToObject } from '../lib/urls'
|
|||||||
|
|
||||||
import type { APIRoute } from 'astro'
|
import type { APIRoute } from 'astro'
|
||||||
|
|
||||||
export const GET: APIRoute = ({ url }) => {
|
export const GET: APIRoute = (context) => {
|
||||||
const { template, ...props } = urlParamsToObject(url.searchParams)
|
const { template, ...props } = urlParamsToObject(context.url.searchParams)
|
||||||
|
|
||||||
if (!template) return ogImageTemplates.default()
|
if (!template) return ogImageTemplates.default({}, context)
|
||||||
|
|
||||||
if (!(template in ogImageTemplates)) {
|
if (!(template in ogImageTemplates)) {
|
||||||
console.error(`Invalid template: "${template}"`)
|
console.error(`Invalid template: "${template}"`)
|
||||||
return ogImageTemplates.default()
|
return ogImageTemplates.default({}, context)
|
||||||
}
|
}
|
||||||
|
|
||||||
const response = ogImageTemplates[template as keyof typeof ogImageTemplates](props)
|
const response = ogImageTemplates[template as keyof typeof ogImageTemplates](props, context)
|
||||||
// eslint-disable-next-line @typescript-eslint/no-unnecessary-condition
|
// eslint-disable-next-line @typescript-eslint/no-unnecessary-condition
|
||||||
if (!response) {
|
if (!response) {
|
||||||
console.error(`Cannot generate image for template: ${template} and props: ${JSON.stringify(props)}`)
|
console.error(`Cannot generate image for template: ${template} and props: ${JSON.stringify(props)}`)
|
||||||
return ogImageTemplates.default()
|
return ogImageTemplates.default({}, context)
|
||||||
}
|
}
|
||||||
|
|
||||||
return response
|
return response
|
||||||
|
|||||||
Reference in New Issue
Block a user