<?php
header('Content-Type: application/rss+xml; charset=utf-8');
include __DIR__ . '/../config/config.php';
$web = mysqli_fetch_assoc(mysqli_query($conn, "SELECT site_url,site_name FROM web_config WHERE id=1"));
$site = rtrim($web['site_url'] ?? 'https://cs.hnq1.xyz', '/');
$name = $web['site_name'] ?? '片库';
echo '<?xml version="1.0" encoding="UTF-8"?>';
?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title><?php echo htmlspecialchars($name); ?> - 高清片源每日更新</title>
<link><?php echo htmlspecialchars($site); ?>/</link>
<description>你想看的，这里都有。每日更新，全网首发，高清流畅播放。</description>
<language>zh-CN</language>
<atom:link href="<?php echo htmlspecialchars($site); ?>/feed.xml" rel="self" type="application/rss+xml"/>
<item><title>今日已更新 - <?php echo date('Y-m-d'); ?></title><link><?php echo htmlspecialchars($site); ?>/</link><description>今日新上线热门影视资源，立即查看</description><pubDate><?php echo date('r'); ?></pubDate></item>
<item><title>热门推荐 - 查看全部</title><link><?php echo htmlspecialchars($site); ?>/browse.php</link><description>动作、喜剧、科幻、恐怖等各大分类，登录解锁全部内容</description><pubDate><?php echo date('r', time()-86400); ?></pubDate></item>
<item><title>新用户注册 - 即刻解锁</title><link><?php echo htmlspecialchars($site); ?>/register.php</link><description>注册即可浏览海量片库，高清流畅播放体验</description><pubDate><?php echo date('r', time()-172800); ?></pubDate></item>
</channel>
</rss>
