自建 RSS 并通过 docker 部署网站地图 | shmaur

文章转载: 自建 RSS 并通过 docker 部署网站地图 | shmaur - shmaur
部署也是使用 docker 进行部署,对于相关的docker可以参考我其他文章:Docker

相关资料

RSS 编写规范

下载RSSHub源码

建议服务器与本地都进行下载,可以先到本地修改完成后,在将服务器上的文件替代就可以了。

下载地址:dofy/RSSHub: 🍰 万物皆可 RSS (github.com)

开始自建源

找到路径 RSSHUB/lib/routes 文件夹,建立你网站的名称文件夹,并在下面建立一个index.ts文件

我的idnex.ts内容

import { Route } from '@/types';
import got from '@/utils/got';
import timezone from '@/utils/timezone';
import { load } from 'cheerio';

export const route: Route = {
    path: '/',
    radar: [
        {
            source: ['shmaur.com'],
            target: '',
        },
    ],
    name: '黄金_shmaur',
    maintainers: ['shmaur'],
    handler,
    url: 'shmaur.com',
};

async function handler() {
    const currentUrl = 'https://www.shmaur.com';

    const response = await got(currentUrl);

    const $ = load(response.data);

    const $articles = $('#blogItems');
    const metaTags = $('meta');

    const items = $articles
        .map((_, el) => {
            let textContent = "";
            const title = $(el).find('#blogItemTitle').text().trim();
            const link = $(el).find('a').attr('href');
            const postDate = $(el).find('#blogPostDate').attr("blogpostdate");
            const pubDate = timezone(new Date(postDate), +8);
            const description = $(el).find('#blogItemSummary').text().trim();
            $(el).find('#tagNameMeta').contents().each(function(e,va){
                textContent +=' ' + $(va).text()
                console.log(va)
            })
            const keywords = textContent
            const category = $(el).find('#categoryMeta').text().trim(); 
            const author = "shmaur"

            return {
                title,
                description,
                link,
                pubDate,
                keywords,
                category,
                author,
            };
        })
        .toArray();

    return {
        title: '黄金_shmaur',
        itunes_author:"shmaur",
        itunes_category:"", //类别
        description:"shmaur,记录产品,设计,视觉设计,技术开发,记录生活;不积跬步无以至千里不积小流无以成江海",
        link: currentUrl,
        item: items,
        image:"https://www.shmaur.com/api/images/8cN7hKC0a7hq/logo.svg"
    };
}

[图片上传失败...(image-2abf64-1717687718616)]

找到路径 RSSHUB/lib/router.js,拉到最后添加

router.get('/shmaur', lazyloadRouteHandler('./routes/shmaur/index'));

找到路径RSSHUB/lib/views/rss.tsx,我修改的东西比较多,全部贴上

import type { FC } from 'hono/jsx';
import { Data } from '@/types';

const RSS: FC<{ data: Data }> = ({ data }) => {
    const hasItunes = data.itunes_author || data.itunes_category || (data.item && data.item.some((i) => i.itunes_item_image || i.itunes_duration));
    const hasMedia = data.item?.some((i) => i.media);

    return (
        <rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:itunes={hasItunes ? 'http://www.itunes.com/dtds/podcast-1.0.dtd' : undefined} xmlns:media={hasMedia ? 'http://search.yahoo.com/mrss/' : undefined} version="2.0">
            <channel>
                <title>{data.title || 'RSSHub'}</title>
                <link>{data.link || 'https://docs.rsshub.app'}</link>
                <atom:link href={data.atomlink} rel="self" type="application/rss+xml" />
                <description>{data.description || data.title}</description>
                <generator>RSSHub</generator>
                <webMaster>shmaur@163.com (shmaur)</webMaster>
                {data.itunes_author && <itunes:author>{data.itunes_author}</itunes:author>}
                {data.itunes_category && <itunes:category text={data.itunes_category} />}
                {data.itunes_author && <itunes:explicit>{data.itunes_explicit || 'false'}</itunes:explicit>}
                <language>{data.language || 'en'}</language>
                {data.image && (
                    <image>
                        <url>{data.image}</url>
                        <title>{data.title || 'RSSHub'}</title>
                        <link>{data.link}</link>
                    </image>
                )}
                <lastBuildDate>{data.lastBuildDate}</lastBuildDate>
                <ttl>{data.ttl}</ttl>
                {data.item?.map((item) => (
                    <item xmlns:media="http://www.w3.org/2005/Atom" xmlns:dcterms="http://purl.org/dc/terms/">
                        <title>{item.title}</title>
                        <media:title>{item.title}</media:title>
                        <description>{item.description}</description>
                        <media:description>{item.description}</media:description>
                        <link>{item.link}</link>
                        <media:keywords>{item.keywords}</media:keywords>
                        {typeof item.category === 'string' ? <media:category>{item.category}</media:category> : item.category?.map((c) => <media:category>{c}</media:category>)}
                        <guid isPermaLink="false">{item.guid || item.link || item.title}</guid>
                        {item.pubDate && <pubDate>{item.pubDate}</pubDate>}
                        {item.author && <author>{item.author}</author>}
                        {item.itunes_item_image && <itunes:image href={item.itunes_item_image} />}
                        {item.enclosure_url && <enclosure url={item.enclosure_url} length={item.enclosure_length} type={item.enclosure_type} />}
                        {item.itunes_duration && <itunes:duration>{item.itunes_duration}</itunes:duration>}
                        {typeof item.category === 'string' ? <category>{item.category}</category> : item.category?.map((c) => <category>{c}</category>)}
                        {item.media &&
                            Object.entries(item.media).map(([key, value]) => {
                                const Tag = `media:${key}`;
                                return <Tag {...value} />;
                            })}
                    </item>
                ))}
            </channel>
        </rss>
    );
};

export default RSS;

将服务器上面的文件全部替换上传,全部完成后,创建一个新的镜像

回到RSSHUB根目录,有dockerfile文件目录。执行

[图片上传失败...(image-8d6c0c-1717687718616)]

docker build -t shmaur/rss .   # shmaur/rss 镜像名字,不能有大写, 后面必须要跟一个点,代表当前目录 

[图片上传失败...(image-84f8a5-1717687718616)]

镜像制作完成后,运行容器即可

docker run -d -p 1200:1200 shmaur/rss

[图片上传失败...(image-15f24b-1717687718616)]

[图片上传失败...(image-7a427a-1717687718616)]

然后代理一下就可以了

location /shmaur  {
  proxy_pass http://127.0.0.1:1200/shmaur;
  proxy_set_header X-Real-IP $remote_addr; 
  proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; 
  proxy_set_header Host $http_host; 
  proxy_redirect off;
}

看看效果

[图片上传失败...(image-a7d53a-1717687718616)]

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 201,681评论 5 474
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 84,710评论 2 377
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 148,623评论 0 334
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,202评论 1 272
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,232评论 5 363
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,368评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,795评论 3 393
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,461评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,647评论 1 295
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,476评论 2 317
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,525评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,226评论 3 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,785评论 3 303
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,857评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,090评论 1 258
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,647评论 2 348
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,215评论 2 341

推荐阅读更多精彩内容