由于经常在互联网的深海里刨东西,所以咱经常会找到一些个人网页或者开源项目里有几只兽耳娘举牌牌的图片,时常觉得可爱并且自己也想在博客里集成一个。
但是由于不知道项目用途和名称,以及咱社恐不敢询问,直到最近才依据「蛛丝马迹」在 Github 上找到里该项目 —— Moe Counter
[1]
于是很快啊, 咱立刻就开始着手部署这个有趣的小工具了,但是在整个部署过程中确实遭遇了许多坎坷,着实让咱喝了一壶,于是在此记录。
2024年9月30日更新
由于之前被原版的 Moe Counter 宴请了一壶,于是乎咱在经过漫长时间的时间片轮转调度之后,终于在今日完成了对 Moe Counter 的 RIIR(Rewrite It In Rust),
虽然似乎在 Github 上有一个叫 RustCounter 的类似物,但个人看了之后觉得它的实现不适合自己,所以还是依然决然的重写了一份,详见moe-counter-rs。
本文也因此得以新增一章来讲述如何部署咱自己实现的 Moe Counter 了。
部署原版 Moe Counter#
由于 Moe Counter 项目是有后端的,所以需要部署在一个服务器上,虽然在 Github 上也有大佬提供的白嫖Replit
[1]
、
CloudFlare
[2]
[3]
和Vercel
[4]
的方案,但考虑到自己有着一些空闲机子的因素,于是决定自己部署。
首先咱的部署环境为 Debian 12.5
,安装 Nginx
等内容不展开了,
为了能应对未来较大字典查询的应用场景,决定使用 MongoDB 作为数据库后端。于是就因为过于自信而翻车XD
安装 MongoDB#
由于 MongoDB 一些众所周知的问题,Debian 的仓库里不再提供相关的软件包,所以只能参考官方自己给出的安装手册
[5]
进行安装了。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
| # 前置依赖
sudo apt-get install gnupg curl
# 导入签名
curl -fsSL https://www.mongodb.org/static/pgp/server-7.0.asc | \
sudo gpg -o /usr/share/keyrings/mongodb-server-7.0.gpg \
--dearmor
# 导入第三方软件源
echo "deb [ signed-by=/usr/share/keyrings/mongodb-server-7.0.gpg ] http://repo.mongodb.org/apt/debian bookworm/mongodb-org/7.0 main" | sudo tee /etc/apt/sources.list.d/mongodb-org-7.0.list
# 更新软件源索引
sudo apt-get update
# 安装
sudo apt-get install -y mongodb-org
# 启动
sudo systemctl enable --now mongod
|
然后由于 Moe Counter 项目的需要,需要开启MongoDB的验证并创建相应的用户。
先创建相关的用户,
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| # 连接db
mongosh
# 创建管理用户
test> use admin
admin> db.createUser({
user: "admin",
pwd: "ciallo",
roles: [
{role: "root", db: "admin"}
]
})
# 创建 Moe counter 用户
admin> db.createUser({
user: "moe-counter,"
pwd: "<your-passwd>",
roles: [
{role: "readWrite", db: "moe_counter"}
]
})
admin> quit
|
然后编辑 /etc/mongod.conf
在其中的修改 security
如下来开启用户验证,
1
2
| security:
authorization: enabled
|
然后使用 systemd 来重启数据库,即可通过用户名密码的方式连接数据库了。
1
| sudo systemctl restart mongod
|
为什么要这样做?因为经过测试发现在不开启验证的情况下,即使存在用户也无法使得 Moe Counter 正确的连接数据库进行操作。
部署 Systemd 服务#
在机器上找个位置,例如 /srv/Moe-Counter
,按照作者所说
[1]
来部署项目,由于Debian的官方仓库中 yarn
被更名为 yarnpkg
所以在使用 apt
安装时需要注意。
同时为了方便管理和安全,个人将整个 Moe Counter 项目分配给 www-data
用户运行,同时使用systemd进行管理。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| # /etc/systemd/system/moe-counter.conf
[Unit]
Description=Moe Counter Service
After=network.target mongodb.service
[Service]
User=www-data
WorkingDirectory=/srv/Moe-Counter
Environment="DB_URL=mongodb://moe-counter:<your-passwd>@127.0.0.1/moe_counter"
ExecStart=/usr/bin/yarnpkg start
Restart=always
[Install]
WantedBy=multi-user.target
|
最后将Nginx的反向代理配置好,一个萌萌计数器就可以使用啦!下面的是 Demo 展示:
meobooru
asoul
rule34
gelbooru
部署 Moe Counter Rs#
对于咱自己实现的版本,部署就非常简单了,首先是前往仓库地址克隆项目,然后使用 Rust 工具链编译,这里展示将项目编译为纯静态链接文件。
1
2
3
4
| # 克隆项目
git clone https://github.com/Yurzi/moe-counter-rs.git
# 使用 cargo 构建
cargo build --release --target=x86_64-unknown-linux-musl
|
然后将编译好的二进制放到你服务器上的合适位置,其大致结构如下:
1
2
| your-preferred-dir/
- moe-counter-rs
|
然后就直接启动运行就好了,程序会自动在当前运行位置生成配置文件 moe-counter-rs.toml
和数据库文件 data.db
,值得注意的是,由于 moe-counter-rs
使用相对路径寻找文件,
所以请确保运行的位置和文件结构。
此外你也可以特定的在启动时指定配置文件的位置,对于数据库的位置,以及主题文件夹的位置可以在配置文件中修改。
另外对于外部的 themes
文件夹,其内容会覆盖内嵌的同名主题,方便你需要对内置的同名主题进行修改的情况。
与 Hugo 集成#
这里主要展示的是对于咱自己的 Moe Counter 的 API 和 Hugo 的集成。
首先是对于模板的修改,根据不同的主题可能有不一样的位置,
咱插入了以下的代码,需要注意的是,如果代码所在的位置为使用 partialCached
的方式导入的话会出现问题,所以请修改为 partial
导入。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<!--对于主页-->
<div style="align-items: center; display: flex; justify-content: center">
<img
src="https://count.yurzi.net/@{{ replace site.Title " " "-" | lower }}"
alt="tails-of-yurzi-visitor-counter"
/>
</div>
<!--对于其他页面-->
{{- if not (.Param "disableCounter") }}
{{- if not .Layout | and .IsPage }}
<div style="align-items: center; display: flex; justify-content: center">
<img
src="https://count.yurzi.net/@{{ replace .Title " " "-" | lower }}"
alt="{{ replace .Title " " "-" | lower }}-visitor-counter"
/>
</div>
{{- end }}
{{- end }}
|
咱还写了一个 shortcode
方便在文章中直接使用
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| {{- if .IsNamedParams }}
{{ $theme := (.Get "theme") | default "moebooru" | safeURL }}
{{ $align := (.Get "align") | default "center" | safeCSS }}
{{ with .Get "id" }}
<div style="align-items: center; display: flex; justify-content: {{ $align }}">
<img
src="http://count.yurzi.net/@{{ . | safeURL }}?theme={{ $theme }}"
alt="{{ . | safeHTMLAttr }}-counter"
/>
</div>
{{ end }}
{{- else }}
{{ $theme := (.Get 1) | default "moebooru" | safeURL }}
{{ $align := (.Get 2) | default "center" | safeCSS }}
{{ with .Get 0 }}
<div style="align-items: center; display: flex; justify-content: {{ $align }}">
<img
src="http://count.yurzi.net/@{{ . | safeURL }}?theme={{ $theme }}"
alt="{{ . | safeHTMLAttr }}-counter"
/>
</div>
{{ end }}
{{- end }}
|
至此,咱终于也有属于真正意义上自己的萌萌计数器哩🎉。
参考文献#
[1] GitHub: journey-ad/Moe-Counter: 多种风格可选的萌萌计数器
[2] champhoon, moe-counter-cf:将萌萌计数器部署到 Cloudflare Workers
[3] Shirakii, 将萌萌计数器部署到 Cloudflare Workers
[4] Github: grbnb/moe-counter-vercel: vercel平台一键部署Moc-Counter
[5] Install MongoDB Community Edition on Debian
[6] Github: yurzi/moe-counter-rs: Rust实现的Moe-Counter