mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 16:46:12 +08:00
03818e642a
This introduces new APIs for obtaining optimized thumbnails for topics. There are a few building blocks required for this: - Introduces new `image_upload_id` columns on the `posts` and `topics` table. This replaces the old `image_url` column, which means that thumbnails are now restricted to uploads. Hotlinked thumbnails are no longer possible. In normal use (with pull_hotlinked_images enabled), this has no noticeable impact - A migration attempts to match existing urls to upload records. If a match cannot be found then the posts will be queued for rebake - Optimized thumbnails are generated during post_process_cooked. If thumbnails are missing when serializing a topic list, then a sidekiq job is queued - Topic lists and topics now include a `thumbnails` key, which includes all the available images: ``` "thumbnails": [ { "max_width": null, "max_height": null, "url": "//example.com/original-image.png", "width": 1380, "height": 1840 }, { "max_width": 1024, "max_height": 1024, "url": "//example.com/optimized-image.png", "width": 768, "height": 1024 } ] ``` - Themes can request additional thumbnail sizes by using a modifier in their `about.json` file: ``` "modifiers": { "topic_thumbnail_sizes": [ [200, 200], [800, 800] ], ... ``` Remember that these are generated asynchronously, so your theme should include logic to fallback to other available thumbnails if your requested size has not yet been generated - Two new raw plugin outlets are introduced, to improve the customisability of the topic list. `topic-list-before-columns` and `topic-list-before-link` |
||
---|---|---|
.. | ||
admin_confirmation_email.rb | ||
anonymize_user.rb | ||
automatic_group_membership.rb | ||
backup_chunks_merger.rb | ||
bulk_grant_trust_level.rb | ||
bulk_invite.rb | ||
bulk_user_title_update.rb | ||
bump_topic.rb | ||
confirm_sns_subscription.rb | ||
crawl_topic_link.rb | ||
create_avatar_thumbnails.rb | ||
create_backup.rb | ||
create_user_reviewable.rb | ||
critical_user_email.rb | ||
delete_inaccessible_notifications.rb | ||
delete_replies.rb | ||
delete_topic.rb | ||
download_avatar_from_url.rb | ||
download_backup_email.rb | ||
download_profile_background_from_url.rb | ||
emit_web_hook_event.rb | ||
enable_bootstrap_mode.rb | ||
export_csv_file.rb | ||
feature_topic_users.rb | ||
generate_topic_thumbnails.rb | ||
invite_email.rb | ||
invite_password_instructions_email.rb | ||
make_embedded_topic_visible.rb | ||
mass_award_badge.rb | ||
notify_category_change.rb | ||
notify_mailing_list_subscribers.rb | ||
notify_moved_posts.rb | ||
notify_post_revision.rb | ||
notify_reviewable.rb | ||
notify_tag_change.rb | ||
post_alert.rb | ||
process_bulk_invite_emails.rb | ||
process_email.rb | ||
process_post.rb | ||
process_sns_notification.rb | ||
publish_topic_to_category.rb | ||
pull_hotlinked_images.rb | ||
push_notification.rb | ||
rebake_custom_emoji_posts.rb | ||
rebake_posts_for_upload.rb | ||
retrieve_topic.rb | ||
run_heartbeat.rb | ||
send_push_notification.rb | ||
send_system_message.rb | ||
suspicious_login.rb | ||
toggle_topic_closed.rb | ||
topic_action_converter.rb | ||
topic_reminder.rb | ||
truncate_user_flag_stats.rb | ||
unpin_topic.rb | ||
update_gravatar.rb | ||
update_group_mentions.rb | ||
update_s3_inventory.rb | ||
update_top_redirection.rb | ||
update_topic_upload_security.rb | ||
update_username.rb | ||
user_email.rb |