2022-05-30 19:10:09 +00:00
-- SPDX-License-Identifier: MIT
-- Copyright 2017 J. King, Dustin Wilson et al.
-- See LICENSE and AUTHORS files for details
-- Create a temporary table mapping old article IDs to new article IDs per-user.
-- Any articles which have only one subscription will be unchanged, which will
-- limit the amount of disruption
2022-06-06 23:54:48 +00:00
create temp table arsse_articles_map (
2022-05-30 19:10:09 +00:00
article bigint not null ,
subscription bigint not null ,
id bigserial primary key
) ;
2022-06-06 23:54:48 +00:00
select setval ( ' arsse_articles_map_id_seq ' , ( select max ( id ) from arsse_articles ) ) ;
2022-05-30 19:10:09 +00:00
insert into arsse_articles_map ( article , subscription )
select
a . id as article ,
s . id as subscription
from arsse_articles as a join arsse_subscriptions as s using ( feed )
where feed in (
select feed from ( select feed , count ( * ) as count from arsse_subscriptions group by feed ) as c where c . count > 1
) ;
insert into arsse_articles_map ( article , subscription , id )
select
a . id as article ,
s . id as subscription ,
a . id as id
from arsse_articles as a join arsse_subscriptions as s using ( feed )
where feed in (
select feed from ( select feed , count ( * ) as count from arsse_subscriptions group by feed ) as c where c . count = 1
) ;
-- First create the subsidiary table to hold article contents
create table arsse_article_contents (
-- contents of articles, which is typically large text
id bigint primary key references arsse_articles ( id ) on delete cascade on update cascade ,
content text collate " und-x-icu "
) ;
insert into arsse_article_contents
select
m . id ,
coalesce ( a . content_scraped , a . content )
from arsse_articles_map as m
left join arsse_articles as a on a . id = m . article ;
-- Drop the two content columns from the article table as they are no longer needed
alter table arsse_articles drop column content ;
alter table arsse_articles drop column content_scraped ;
-- Add any new columns required for the articles table
alter table arsse_articles add column subscription bigint references arsse_subscriptions ( id ) on delete cascade on update cascade ;
alter table arsse_articles add column read smallint not null default 0 ;
alter table arsse_articles add column starred smallint not null default 0 ;
alter table arsse_articles add column hidden smallint not null default 0 ;
alter table arsse_articles add column marked timestamp ( 0 ) without time zone ;
alter table arsse_articles add column note text collate " und-x-icu " not null default ' ' ;
-- Populate the articles table with new information; this either inserts or updates in-place
2022-06-06 23:54:48 +00:00
with new_data as (
2022-05-30 19:10:09 +00:00
select
i . id ,
a . feed ,
i . subscription ,
2022-06-06 23:54:48 +00:00
coalesce ( m . read , 0 ) as read ,
coalesce ( m . starred , 0 ) as starred ,
coalesce ( m . hidden , 0 ) as hidden ,
2022-05-30 19:10:09 +00:00
a . published ,
a . edited ,
a . modified ,
2022-06-06 23:54:48 +00:00
m . modified as marked ,
2022-05-30 19:10:09 +00:00
a . url ,
a . title ,
a . author ,
a . guid ,
a . url_title_hash ,
2022-06-06 23:54:48 +00:00
a . url_content_hash ,
2022-05-30 19:10:09 +00:00
a . title_content_hash ,
2022-06-06 23:54:48 +00:00
coalesce ( m . note , ' ' ) as note
2022-05-30 19:10:09 +00:00
from arsse_articles_map as i
left join arsse_articles as a on a . id = i . article
2022-05-30 20:57:13 +00:00
left join arsse_marks as m on a . id = m . article
2022-06-06 23:54:48 +00:00
)
insert into arsse_articles ( id , feed , subscription , read , starred , hidden , published , edited , modified , marked , url , title , author , guid , url_title_hash , url_content_hash , title_content_hash , note )
select * from new_data
on conflict ( id ) do update set ( subscription , read , starred , hidden , marked , note ) = (
select subscription , read , starred , hidden , marked , note from new_data where id = excluded . id
) ;
2022-05-30 19:10:09 +00:00
-- Create one edition for each renumbered article
insert into arsse_editions ( article ) select id from arsse_articles_map where id < > article ;
-- Create enclures for renumbered articles
insert into arsse_enclosures ( article , url , type )
select
m . id , url , type
from arsse_articles_map as m
join arsse_enclosures as e on m . article = e . article
where m . id < > m . article ;
-- Create categories for renumbered articles
insert into arsse_categories ( article , name )
select
m . id , name
from arsse_articles_map as m
join arsse_categories as c on m . article = c . article
where m . id < > m . article ;
-- Drop the subscription column from the label members table as it is no longer needed (there is now a direct link between articles and subscriptions)
alter table arsse_label_members drop column subscription ;
-- Create label associations for renumbered articles
insert into arsse_label_members
select
label , m . id , assigned , l . modified
from arsse_articles_map as m
join arsse_label_members as l using ( article )
where m . id < > m . article ;
-- Clean up the articles table: delete obsolete rows, add necessary constraints on new columns which could not be satisfied before inserting information, and drop the obsolete feed column
delete from arsse_articles where id in ( select article from arsse_articles_map where id < > article ) ;
alter table arsse_articles alter column subscription set not null ;
alter table arsse_articles drop column feed ;
-- Add feed-related columns to the subscriptions table
alter table arsse_subscriptions add column url text ;
alter table arsse_subscriptions add column feed_title text collate " und-x-icu " ;
alter table arsse_subscriptions add column etag text not null default ' ' ;
alter table arsse_subscriptions add column last_mod timestamp ( 0 ) without time zone ;
alter table arsse_subscriptions add column next_fetch timestamp ( 0 ) without time zone ;
alter table arsse_subscriptions add column updated timestamp ( 0 ) without time zone ;
alter table arsse_subscriptions add column source text ;
alter table arsse_subscriptions add column err_count bigint not null default 0 ;
alter table arsse_subscriptions add column err_msg text collate " und-x-icu " ;
alter table arsse_subscriptions add column size bigint not null default 0 ;
alter table arsse_subscriptions add column icon bigint references arsse_icons ( id ) on delete set null ;
-- Populate the new columns
update arsse_subscriptions as s set
url = f . url ,
feed_title = f . title ,
last_mod = f . modified ,
etag = f . etag ,
next_fetch = f . next_fetch ,
source = f . source ,
updated = f . updated ,
err_count = f . err_count ,
err_msg = f . err_msg ,
size = f . size ,
icon = f . icon
from arsse_feeds as f
where s . feed = f . id ;
-- Clean up the subscriptions table: add necessary constraints on new columns which could not be satisfied before inserting information, and drop the now obsolete feed column
alter table arsse_subscriptions alter column url set not null ;
alter table arsse_subscriptions add unique ( owner , url ) ;
alter table arsse_subscriptions drop column feed ;
-- Delete unneeded table
drop table arsse_articles_map ;
drop table arsse_marks ;
drop table arsse_feeds ;
-- set version marker
update arsse_meta set value = ' 8 ' where " key " = ' schema_version ' ;