Skip to content
This repository was archived by the owner on Nov 2, 2024. It is now read-only.

Commit 7b0ebb9

Browse files
authored
feat: add oauth (#82)
* feat: add oauth * fix: add content
1 parent 3f4ba55 commit 7b0ebb9

File tree

5 files changed

+57
-7
lines changed

5 files changed

+57
-7
lines changed
+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import { SVGProps } from 'react'
2+
3+
export function UilKeySkeletonAlt(props: SVGProps<SVGSVGElement>) {
4+
return (
5+
<svg xmlns="http://www.w3.org/2000/svg" width="1.5em" height="1.5em" viewBox="0 0 24 24" {...props}><path fill="currentColor" d="m21.71 6.53l-1.42-1.41l1.42-1.41a1 1 0 1 0-1.42-1.42L9.75 12.83a5 5 0 1 0 1.42 1.42l4.88-4.89l1.41 1.42a1 1 0 0 0 .71.29a1 1 0 0 0 .71-.29a1 1 0 0 0 0-1.42L17.46 8l1.42-1.42L20.29 8a1 1 0 0 0 .71.29a1 1 0 0 0 .71-.29a1 1 0 0 0 0-1.47M7 20a3 3 0 1 1 3-3a3 3 0 0 1-3 3"></path></svg>
6+
)
7+
}

pages/themes/shiro/index.mdx

+10-7
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,14 @@ import { ToGitHub } from '@components/ToGitHub'
3333
- 你已安装 Mix Space 后端并且已启动
3434
- (选择 Vercel 部署)已注册 [Vercel](https://vercel.com/)[GitHub](https://github.com/) 账号
3535

36-
<!-- <Callout type="warning">
37-
请注意,Shiro 主题的部署教程与初版有所不同,如果你已经部署过 Shiro
36+
<Callout type="warning">
37+
自 Core v7 起,已抛弃 Clerk,取而待之的是 GitHub 和 Google 的 OAuth 2.0
38+
配置请参考[OAuth 2.0](/usage/oauth)
39+
40+
~~请注意,Shiro 主题的部署教程与初版有所不同,如果你已经部署过 Shiro
3841
主题,请重新阅读本文档(尤其是填入配置文件环节,配置有所变化),并阅读
39-
[「移除 Edge Config」](#移除-edge-config) 部分。
40-
</Callout> -->
42+
[「移除 Edge Config」](#移除-edge-config) 部分。~~
43+
</Callout>
4144

4245
## 准备步骤
4346

@@ -265,11 +268,11 @@ import { EnvVariableConfig } from '@components/EnvVariableConfig'
265268
},
266269
{
267270
key: 'NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY',
268-
name: 'Clerk 页面的公钥',
271+
name: 'Clerk 页面的公钥(已过时)',
269272
},
270273
{
271274
key: 'CLERK_SECRET_KEY',
272-
name: 'Clerk 页面的私钥',
275+
name: 'Clerk 页面的私钥(已过时)',
273276
},
274277
{
275278
key: 'ENABLE_EXPERIMENTAL_COREPACK',
@@ -311,7 +314,7 @@ import { EnvVariableConfig } from '@components/EnvVariableConfig'
311314

312315
参见 [README 相关部分](https://github.com/Innei/Shiro/blob/main/README.md#whale-运行) 完成对应操作,随后配置[反向代理](/docs/extra#反向代理)
313316

314-
## Clerk 登录与 Mix Space 后端绑定
317+
## Clerk 登录与 Mix Space 后端绑定(已过时)
315318

316319
如果你遇到在 Shiro 登录之后,无法评论遇到 "和主人重名" 的报错,是因为 Clerk 的用户名和 Mix Space 后端的用户名重复了,你需要绑定本系统和 Clerk 的用户。让某个 Clerk 用户具有管理员权限。
317320

pages/usage/_meta.json

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
"backup": "备份与回滚",
1111
"update": "更新 Mix Space",
1212
"security": "Key 加密与安全性",
13+
"oauth": "OAuth 2.0",
1314
"-- community": {
1415
"type": "separator",
1516
"title": "社区使用指南"

pages/usage/index.mdx

+7
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ import { UilSearchAlt } from '@components/Icons/SearchAlt'
1616
import { UilBitcoin } from '@components/Icons/Bitcoin'
1717
import { UilHistoryAlt } from '@components/Icons/HistoryAlt'
1818
import { UilArrowCircleUp } from '@components/Icons/ArrowCircleUp'
19+
import { UilKeySkeletonAlt } from '@components/Icons/UilKeySkeletonAlt'
1920

2021
<Cards num={3}>
2122
<Card
@@ -49,6 +50,12 @@ import { UilArrowCircleUp } from '@components/Icons/ArrowCircleUp'
4950
href={'/usage/security'}
5051
title="Key 加密与安全性"
5152
/>
53+
<Card
54+
icon={<UilKeySkeletonAlt />}
55+
arrow
56+
href={'/usage/oauth'}
57+
title="OAuth 2.0"
58+
/>
5259
</Cards>
5360

5461
### 社区使用指南

pages/usage/oauth.mdx

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# OAuth 2.0
2+
3+
import { Steps } from 'nextra/components';
4+
5+
在 Core v7.0.0 版本,Mx-Space 重写了第三方登录功能,抛弃了 Clerk,转而直接使用对应的账户授权 SDK 实现第三方登录。
6+
7+
## 如何配置
8+
9+
<Steps>
10+
11+
### 新建应用
12+
13+
参考以下两篇:
14+
15+
- [在 GitHub 新建 OAuth 应用](https://docs.github.com/zh/apps/oauth-apps/building-oauth-apps/creating-an-oauth-app)
16+
- [在 Google Cloud 新建 OAuth 应用](https://developers.google.com/identity/protocols/oauth2/web-server?hl=zh-cn#creatingcred)
17+
18+
对于 GitHub,`Homepage URL` 填写前端地址,`Authorization callback URL` 根据后台提示复制粘贴。
19+
20+
对于 Google,`已获授权的 JavaScript 来源` 填写前端地址,`已获授权的重定向 URI` 根据后台提示复制粘贴。
21+
22+
完成后会获取 Client ID 和 Client Secret,将他们复制下来备用。
23+
24+
### 后台设置
25+
26+
进入博客后台 -> 设定 -> 登录方式,在 OAuth 部分对应的平台名称下填写对应的 Client ID 和 Client Secret,保存后测试是否可以调用授权,若可调用即可启用并保存。
27+
28+
### 和主人身份绑定
29+
30+
在测试时通过 OAuth 授权登录后会提示是否将此账号设置为主人,允许即可。
31+
32+
</Steps>

0 commit comments

Comments
 (0)