mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-08 09:24:17 +00:00
6d8d23130d
* Adding an image_details table to store image dimensions. - Adds an image_details table, which stores the height, width, and content_type for local and remote images. - For LocalImages, this information already comes back with the upload. - For RemoteImages, it calls the pictrs details endpoint. - Fixed some issues with proxying non-image urls. - Fixes #3328 - Also fixes #4703 * Running sql format. * Running fmt. * Don't fetch metadata in background for local API requests. * Dont export remote_image table to typescript. * Cleaning up validate. * Dont proxy url. * Fixing tests, fixing issue with federated thumbnails. * Fix tests. * Updating corepack, fixing issue. * Refactoring image inserts to use transactions. * Use select exists again. * Fixing imports. * Fix test. * Removing pointless backgrounded metadata generation version. * Removing public pictrs details route. * Fixing clippy. * Running prettier. * A few more fixes. * Moving diesel schema check back down. * Addressing PR comments. * Changing back request head to get. * Fixing lockfile. --------- Co-authored-by: SleeplessOne1917 <28871516+SleeplessOne1917@users.noreply.github.com>
16 lines
512 B
SQL
16 lines
512 B
SQL
-- Drop the id column from the remote_image table, just use link
|
|
ALTER TABLE remote_image
|
|
DROP COLUMN id,
|
|
ADD PRIMARY KEY (link),
|
|
DROP CONSTRAINT remote_image_link_key;
|
|
|
|
-- No good way to do references here unfortunately, unless we combine the images tables
|
|
-- The link should be the URL, not the pictrs_alias, to allow joining from post.thumbnail_url
|
|
CREATE TABLE image_details (
|
|
link text PRIMARY KEY,
|
|
width integer NOT NULL,
|
|
height integer NOT NULL,
|
|
content_type text NOT NULL
|
|
);
|
|
|