qbittorrent / qBittorrent

qBittorrent BitTorrent client
https://www.qbittorrent.org
Other
28.48k stars 3.99k forks source link

Keep original order of RSS articles when pubDate parse failed #21732

Open Rirmach opened 3 weeks ago

Rirmach commented 3 weeks ago

Suggestion

Keep original order of RSS articles when pubDate parse failed, for some RSS sources provide non-standard pubDate. However, the original order may be in reverse chronological order. We may change sort function from std::sort to std::stable_sort to keep the original added order.

Refer: https://github.com/qbittorrent/qBittorrent/blob/master/src/base/rss/rss_feed.cpp#L438 https://github.com/qbittorrent/qBittorrent/blob/master/src/base/rss/rss_parser.cpp#L529

Use case

This is a part of mikananime RSS feeds:

<item>
    <guid isPermaLink="false">[LoliHouse] 在地下城寻求邂逅是否搞错了什么 第五季 / DanMachi S5 - 05 [WebRip 1080p
        HEVC-10bit AAC][简繁内封字幕]</guid>
    <link>https://mikanani.me/Home/Episode/d6ca730c967ae254ebdaa3777b23711ba1837dcc</link>
    <title>[LoliHouse] 在地下城寻求邂逅是否搞错了什么 第五季 / DanMachi S5 - 05 [WebRip 1080p HEVC-10bit AAC][简繁内封字幕]</title>
    <description>[LoliHouse] 在地下城寻求邂逅是否搞错了什么 第五季 / DanMachi S5 - 05 [WebRip 1080p HEVC-10bit
        AAC][简繁内封字幕][309.48 MB]</description>
    <torrent xmlns="https://mikanani.me/0.1/">
        <link>https://mikanani.me/Home/Episode/d6ca730c967ae254ebdaa3777b23711ba1837dcc</link>
        <contentLength>324513312</contentLength>
        <pubDate>2024-11-01T07:29:07.707</pubDate>
    </torrent>
    <enclosure type="application/x-bittorrent" length="324513312"
        url="https://mikanani.me/Download/20241101/d6ca730c967ae254ebdaa3777b23711ba1837dcc.torrent" />
</item>
<item>
    <guid isPermaLink="false">【今晚月色真美】[青之箱 / アオのハコ / Ao no Hako][06][WEBrip][1080P][简日双语]</guid>
    <link>https://mikanani.me/Home/Episode/47a713aab4e25c57cf90b7006a682140b27a616c</link>
    <title>【今晚月色真美】[青之箱 / アオのハコ / Ao no Hako][06][WEBrip][1080P][简日双语]</title>
    <description>【今晚月色真美】[青之箱 / アオのハコ / Ao no Hako][06][WEBrip][1080P][简日双语][295.0 MB]</description>
    <torrent xmlns="https://mikanani.me/0.1/">
        <link>https://mikanani.me/Home/Episode/47a713aab4e25c57cf90b7006a682140b27a616c</link>
        <contentLength>309329920</contentLength>
        <pubDate>2024-11-01T04:22:34.857501</pubDate>
    </torrent>
    <enclosure type="application/x-bittorrent" length="309329920"
        url="https://mikanani.me/Download/20241101/47a713aab4e25c57cf90b7006a682140b27a616c.torrent" />
</item>
<item>
    <guid isPermaLink="false">[三明治摆烂组] 重生大小姐正在攻略龙帝殿下 / Yarinaoshi Reijou wa Ryuutei Heika wo
        Kouryakuchuu - 04 - [简体内封][H265 10bit 1080P]</guid>
    <link>https://mikanani.me/Home/Episode/ff56b5515bfbbbc5f033d9b47fd0cfcc78ceebc8</link>
    <title>[三明治摆烂组] 重生大小姐正在攻略龙帝殿下 / Yarinaoshi Reijou wa Ryuutei Heika wo Kouryakuchuu - 04 -
        [简体内封][H265 10bit 1080P]</title>
    <description>[三明治摆烂组] 重生大小姐正在攻略龙帝殿下 / Yarinaoshi Reijou wa Ryuutei Heika wo Kouryakuchuu - 04 -
        [简体内封][H265 10bit 1080P][311.4 MB]</description>
    <torrent xmlns="https://mikanani.me/0.1/">
        <link>https://mikanani.me/Home/Episode/ff56b5515bfbbbc5f033d9b47fd0cfcc78ceebc8</link>
        <contentLength>326526560</contentLength>
        <pubDate>2024-11-01T03:28:52.775673</pubDate>
    </torrent>
    <enclosure type="application/x-bittorrent" length="326526560"
        url="https://mikanani.me/Download/20241101/ff56b5515bfbbbc5f033d9b47fd0cfcc78ceebc8.torrent" />
</item>

The pubDate node is inside the torrent node and cannot be parsed, but the order is already in reverse chronological order.

Extra info/examples/attachments

No response