/friends
, /blogs
, /blog
, /blog-requests/add
, /blog-requests
页面路由。前台页面移植自boyouquan
朋友圈
的菜单项,点击即可进入朋友圈
管理页面。https://docs.kunkunyu.com/docs/plugin-friends
目前此插件为主题端提供了 /friends
路由,模板为 friends.html
,也提供了 Finder API,可以将瞬间列表渲染到任何地方。
路由信息
<div>
<ul th:with="stats = ${statistical}">
<li th:text="${stats.friendsNum}"></li>
<li th:text="${stats.activeNum}"></li>
<li th:text="${stats.articleNum}"></li>
</ul>
<div th:each="friend : ${friends.items}" th:with="spec = ${friend.spec}">
<a th:href="https://github.com/chengzhongxue/plugin-friends/blob/main/${spec.link}" target="_blank" th:text="${spec.title}"></a>
<div>
<img th:src="https://github.com/chengzhongxue/plugin-friends/raw/main/${spec.logo}" alt="avatar">
<a th:href="https://github.com/chengzhongxue/plugin-friends/blob/main/${spec.url}" target="_blank">
<span th:text="${spec.author}"></span>
</a>
</div>
</div>
<div th:if="${friends.hasPrevious() || friends.hasNext()}">
<a th:href="https://github.com/chengzhongxue/plugin-friends/blob/main/@{${friends.prevUrl}}">
<span>上一页</span>
</a>
<span th:text="${friends.page}"></span>
<a th:href="https://github.com/chengzhongxue/plugin-friends/blob/main/@{${friends.nextUrl}}">
<span>下一页</span>
</a>
</div>
</div>
获取全部订阅文章内容。
无
List<FriendPostVo>
<div>
<div th:each="friend : ${friendFinder.listAll()}" th:with="spec = ${friend.spec}">
<a th:href="https://github.com/chengzhongxue/plugin-friends/blob/main/${spec.link}" target="_blank" th:text="${spec.title}"></a>
<div >
<img th:src="https://github.com/chengzhongxue/plugin-friends/raw/main/${spec.logo}" alt="avatar">
<a th:href="https://github.com/chengzhongxue/plugin-friends/blob/main/${spec.url}" target="_blank">
<span th:text="${spec.author}"></span>
</a>
</div>
</div>
</div>
根据分页参数获取订阅文章内容。
<th:block th:with="friends = ${friendFinder.list(1, 10)}">
<div>
<div th:each="friend : ${friends.items}" th:with="spec = ${friend.spec}">
<a th:href="https://github.com/chengzhongxue/plugin-friends/blob/main/${spec.link}" target="_blank" th:text="${spec.title}"></a>
<div >
<img th:src="https://github.com/chengzhongxue/plugin-friends/raw/main/${spec.logo}" alt="avatar">
<a th:href="https://github.com/chengzhongxue/plugin-friends/blob/main/${spec.url}" target="_blank">
<span th:text="${spec.author}"></span>
</a>
</div>
</div>
</div>
<div>
<span th:text="${friends.page}"></span>
</div>
</th:block>
订阅统计
无
<ul th:with="stats = ${friendFinder.statistical()}">
<li th:text="${stats.friendsNum}"></li>
<li th:text="${stats.activeNum}"></li>
<li th:text="${stats.articleNum}"></li>
</ul>
{
"metadata": {
"name": "string", // 唯一标识
"generateName": "string",
"version": 0,
"creationTimestamp": "2024-01-16T16:13:17.925131783Z", // 创建时间
},
"apiVersion": "friend.moony.la/v1alpha1",
"kind": "FriendPost",
"spec": {
"url": "string", // 作者链接
"author": "string", // 作者名称
"logo": "string", // 作者logo
"title": "string", // 标题
"link": "string", // 链接
"description": "string", // 内容
"pubDate": "date", // 同步时间
}
}
{
"friendsNum": "Integer", // 订阅数
"activeNum": "Integer", // 同步订阅成功数
"articleNum": "Integer", // 文章数
}
{
"page": 0, // 当前页码
"size": 0, // 每页条数
"total": 0, // 总条数
"items": "List<#FriendPostVo>", // 订阅文章列表数据
"first": true, // 是否为第一页
"last": true, // 是否为最后一页
"hasNext": true, // 是否有下一页
"hasPrevious": true, // 是否有上一页
"totalPages": 0 // 总页数
}
{
"page": 0, // 当前页码
"size": 0, // 每页条数
"total": 0, // 总条数
"items": "List<#FriendPostVo>", // 订阅文章列表数据
"first": true, // 是否为第一页
"last": true, // 是否为最后一页
"hasNext": true, // 是否有下一页
"hasPrevious": true, // 是否有上一页
"totalPages": 0, // 总页数
"prevUrl": "string", // 上一页链接
"nextUrl": "string" // 下一页链接
}
git clone git@github.com:chengzhongxue/plugin-friends.git
# 或者当你 fork 之后
git clone git@github.com:{your_github_id}/plugin-friends.git
cd path/to/plugin-friends
# macOS / Linux
./gradlew pnpmInstall
# Windows
./gradlew.bat pnpmInstall
# macOS / Linux
./gradlew haloServer
# Windows
./gradlew.bat haloServer
# macOS / Linux
./gradlew build
# Windows
./gradlew.bat build
修改 Halo 配置文件:
halo:
plugin:
runtime-mode: development
classes-directories:
- "build/classes"
- "build/resources"
lib-directories:
- "libs"
fixedPluginPath:
- "/path/to/plugin-friends"