-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
评论组件是否可以增加 Gravatar 源设置 #97
Comments
同感. |
现在插件是从 |
Hi @mashirot ,感觉 avatar 又后端拼接可能会更好,不过仍然可以考虑把邮箱的 hash 放到 annotations 中返回。 |
好的,如果我想做这个issue该怎么操作,因为涉及到两个仓库,先到halo仓库提pr将comment的修改引入,再对此仓库发pr吗 |
这个功能本身就是想在插件中实现的,不希望去改 halo |
我的建议是在插件这边调用评论的 api 代理一下然后填充头像信息,也就是评论插件提供一个获取评论的 api 但是逻辑是先从 halo 获取数据然后处理头像在返回 |
不是很理解 |
@mashirot 他的意思应该是通过 http api,相当于在评论插件中做一个中间层,然后评论组件调用评论插件的处理好的 api。 |
那样好像没啥意义,halo返回的数据没有邮箱相关字段,中间层也没法变出来 |
确实,现在邮箱是脱敏了的。 |
目前我想到的有两种方案:
|
我更推荐设计一个拓展点。 |
最简单的应该就是在 |
方案一应当是实现的最终形态,方案二可快速验证当前的思路。 所以我推荐先用方案二实现,待验证成功且稳定后,再利用方案一来彻底实现,包括邮箱的脱敏也可以用扩展点来实现。 |
|
…us (#5642) /kind feature /area core #### What this PR does / why we need it: see halo-dev/plugin-comment-widget#97 #### Which issue(s) this PR fixes: Fixes #5641 ```release-note 评论数据返回邮箱地址 hash 值以便生成默认头像 ```
后端改动:halo-dev/halo#5642 Fixes #97 Fixes #77 两个不同邮箱,相同头像 效果: ![image](https://github.com/halo-dev/plugin-comment-widget/assets/52254895/3b61eaec-4cca-4425-8735-827d3f06ba72) ```release-note 评论头像支持使用 Gravatar 源 ```
评论组件是否可以支持 Gravatar 源设置以便匿名用户评论时可以根据邮箱地址显示头像,或者增加没有头像时的默认头像选项设置如根据名称生成等策略
/kind feature
The text was updated successfully, but these errors were encountered: