mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2025-12-24 05:57:45 -05:00
* feat: Add user modified functionality Closes https://github.com/FreshRSS/FreshRSS/issues/7862 Changes proposed in this pull request: This is an implementation of the proposed feature. It allows entries to have a new field that will be updated whenever an item is marked as read/unread or bookmark/removed from bookmarks. And a new sort criteria to sort by it. How to test the feature manually: 1. Mark items from a feed as read/unread 2. Mark items from a feed as bookmark / remove bookmark 3. Sort by the new criteria * feat: Add sort functionality * feat: Add sort nav button * fix: Use correct migrations * fix: Add internationalization * fix: Linter errors * chore: PR comments * Update app/i18n/fr/index.php Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr> * Update app/i18n/pl/index.php Co-authored-by: Inverle <inverle@proton.me> * Update app/i18n/nl/index.php Co-authored-by: Frans de Jonge <fransdejonge@gmail.com> * make fix-all * Fixes * More fixes sort * Fix wrong index * Fix unneeded column * Fix auto-create indexes * Some copilot suggestions * One more fix Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr> --------- Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr> Co-authored-by: Inverle <inverle@proton.me> Co-authored-by: Frans de Jonge <fransdejonge@gmail.com>
120 lines
4.0 KiB
PHP
120 lines
4.0 KiB
PHP
<?php
|
|
$GLOBALS['SQL_CREATE_DB'] = <<<'SQL'
|
|
SELECT 1; -- Do nothing for SQLite
|
|
SQL;
|
|
|
|
$GLOBALS['SQL_CREATE_TABLES'] = <<<'SQL'
|
|
CREATE TABLE IF NOT EXISTS `category` (
|
|
`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL,
|
|
`name` VARCHAR(191) NOT NULL,
|
|
`kind` SMALLINT DEFAULT 0, -- 1.20.0
|
|
`lastUpdate` BIGINT DEFAULT 0, -- 1.20.0
|
|
`error` SMALLINT DEFAULT 0, -- 1.20.0
|
|
`attributes` TEXT, -- v1.15.0
|
|
UNIQUE (`name`)
|
|
);
|
|
|
|
CREATE TABLE IF NOT EXISTS `feed` (
|
|
`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL,
|
|
`url` VARCHAR(32768) NOT NULL,
|
|
`kind` SMALLINT DEFAULT 0, -- 1.20.0
|
|
`category` INTEGER DEFAULT 0, -- 1.20.0
|
|
`name` VARCHAR(191) NOT NULL,
|
|
`website` VARCHAR(32768),
|
|
`description` TEXT,
|
|
`lastUpdate` BIGINT DEFAULT 0,
|
|
`priority` TINYINT(2) NOT NULL DEFAULT 10,
|
|
`pathEntries` VARCHAR(4096) DEFAULT NULL,
|
|
`httpAuth` VARCHAR(1024) DEFAULT NULL,
|
|
`error` BOOLEAN DEFAULT 0,
|
|
`ttl` INT NOT NULL DEFAULT 0,
|
|
`attributes` TEXT, -- v1.11.0
|
|
`cache_nbEntries` INT DEFAULT 0,
|
|
`cache_nbUnreads` INT DEFAULT 0,
|
|
FOREIGN KEY (`category`) REFERENCES `category`(`id`) ON DELETE SET NULL ON UPDATE CASCADE
|
|
);
|
|
CREATE INDEX IF NOT EXISTS feed_name_index ON `feed`(`name`);
|
|
CREATE INDEX IF NOT EXISTS feed_priority_index ON `feed`(`priority`);
|
|
|
|
CREATE TABLE IF NOT EXISTS `entry` (
|
|
`id` BIGINT NOT NULL,
|
|
`guid` VARCHAR(767) NOT NULL,
|
|
`title` VARCHAR(8192) NOT NULL,
|
|
`author` VARCHAR(1024),
|
|
`content` TEXT,
|
|
`link` VARCHAR(16383) NOT NULL,
|
|
`date` BIGINT,
|
|
`lastSeen` BIGINT DEFAULT 0,
|
|
`lastUserModified` BIGINT DEFAULT 0, -- v1.28.0
|
|
`hash` BINARY(16), -- v1.1.1
|
|
`is_read` BOOLEAN NOT NULL DEFAULT 0,
|
|
`is_favorite` BOOLEAN NOT NULL DEFAULT 0,
|
|
`id_feed` INTEGER, -- 1.20.0
|
|
`tags` VARCHAR(2048),
|
|
`attributes` TEXT, -- v1.20.0
|
|
PRIMARY KEY (`id`),
|
|
FOREIGN KEY (`id_feed`) REFERENCES `feed`(`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|
UNIQUE (`id_feed`,`guid`)
|
|
);
|
|
CREATE INDEX IF NOT EXISTS entry_is_favorite_index ON `entry`(`is_favorite`);
|
|
CREATE INDEX IF NOT EXISTS entry_is_read_index ON `entry`(`is_read`);
|
|
CREATE INDEX IF NOT EXISTS entry_lastSeen_index ON `entry`(`lastSeen`); -- //v1.1.1
|
|
CREATE INDEX IF NOT EXISTS entry_feed_read_index ON `entry`(`id_feed`,`is_read`); -- v1.7
|
|
CREATE INDEX IF NOT EXISTS entry_last_user_modified_index ON `entry` (`lastUserModified`); -- //v1.28.0
|
|
|
|
INSERT OR IGNORE INTO `category` (id, name) VALUES(1, 'Uncategorized');
|
|
|
|
CREATE TABLE IF NOT EXISTS `entrytmp` ( -- v1.7
|
|
`id` BIGINT NOT NULL,
|
|
`guid` VARCHAR(767) NOT NULL,
|
|
`title` VARCHAR(8192) NOT NULL,
|
|
`author` VARCHAR(1024),
|
|
`content` TEXT,
|
|
`link` VARCHAR(16383) NOT NULL,
|
|
`date` BIGINT,
|
|
`lastSeen` BIGINT DEFAULT 0,
|
|
`hash` BINARY(16),
|
|
`is_read` BOOLEAN NOT NULL DEFAULT 0,
|
|
`is_favorite` BOOLEAN NOT NULL DEFAULT 0,
|
|
`id_feed` INTEGER, -- 1.20.0
|
|
`tags` VARCHAR(2048),
|
|
`attributes` TEXT, -- v1.20.0
|
|
PRIMARY KEY (`id`),
|
|
FOREIGN KEY (`id_feed`) REFERENCES `feed`(`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|
UNIQUE (`id_feed`,`guid`)
|
|
);
|
|
CREATE INDEX IF NOT EXISTS entrytmp_date_index ON `entrytmp`(`date`);
|
|
|
|
CREATE TABLE IF NOT EXISTS `tag` ( -- v1.12
|
|
`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL,
|
|
`name` VARCHAR(191) NOT NULL,
|
|
`attributes` TEXT,
|
|
UNIQUE (`name`)
|
|
);
|
|
CREATE TABLE IF NOT EXISTS `entrytag` (
|
|
`id_tag` INTEGER, -- 1.20.0
|
|
`id_entry` BIGINT,
|
|
PRIMARY KEY (`id_tag`,`id_entry`),
|
|
FOREIGN KEY (`id_tag`) REFERENCES `tag` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
|
|
FOREIGN KEY (`id_entry`) REFERENCES `entry` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
|
|
);
|
|
CREATE INDEX IF NOT EXISTS entrytag_id_entry_index ON `entrytag` (`id_entry`);
|
|
SQL;
|
|
|
|
$GLOBALS['ALTER_TABLE_ENTRY_LAST_USER_MODIFIED'] = <<<'SQL'
|
|
ALTER TABLE `entry` ADD `lastUserModified` BIGINT DEFAULT 0; -- 1.28.0
|
|
CREATE INDEX IF NOT EXISTS entry_last_user_modified_index ON `entry` (`lastUserModified`);
|
|
SQL;
|
|
|
|
$GLOBALS['SQL_DROP_TABLES'] = <<<'SQL'
|
|
DROP TABLE IF EXISTS `entrytag`;
|
|
DROP TABLE IF EXISTS `tag`;
|
|
DROP TABLE IF EXISTS `entrytmp`;
|
|
DROP TABLE IF EXISTS `entry`;
|
|
DROP TABLE IF EXISTS `feed`;
|
|
DROP TABLE IF EXISTS `category`;
|
|
SQL;
|
|
|
|
$GLOBALS['SQL_UPDATE_MINOR'] = <<<'SQL'
|
|
SQL;
|