2024-10-14 17:18:57 +08:00
|
|
|
|
import process from "node:process"
|
|
|
|
|
import { SignJWT } from "jose"
|
|
|
|
|
import { UserTable } from "#/database/user"
|
|
|
|
|
|
|
|
|
|
export default defineEventHandler(async (event) => {
|
|
|
|
|
const db = useDatabase()
|
|
|
|
|
const userTable = db ? new UserTable(db) : undefined
|
|
|
|
|
if (!userTable) throw new Error("db is not defined")
|
|
|
|
|
if (process.env.INIT_TABLE !== "false") await userTable.init()
|
|
|
|
|
|
|
|
|
|
const response: {
|
|
|
|
|
access_token: string
|
|
|
|
|
token_type: string
|
|
|
|
|
scope: string
|
2024-10-30 15:59:59 +08:00
|
|
|
|
} = await myFetch(
|
2024-10-14 17:18:57 +08:00
|
|
|
|
`https://github.com/login/oauth/access_token`,
|
|
|
|
|
{
|
|
|
|
|
method: "POST",
|
|
|
|
|
body: {
|
|
|
|
|
client_id: process.env.G_CLIENT_ID,
|
|
|
|
|
client_secret: process.env.G_CLIENT_SECRET,
|
|
|
|
|
code: getQuery(event).code,
|
|
|
|
|
},
|
|
|
|
|
headers: {
|
|
|
|
|
accept: "application/json",
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
const userInfo: {
|
|
|
|
|
id: number
|
|
|
|
|
name: string
|
|
|
|
|
avatar_url: string
|
|
|
|
|
email: string
|
|
|
|
|
notification_email: string
|
2024-10-30 15:59:59 +08:00
|
|
|
|
} = await myFetch(`https://api.github.com/user`, {
|
2024-10-14 17:18:57 +08:00
|
|
|
|
headers: {
|
|
|
|
|
"Accept": "application/vnd.github+json",
|
|
|
|
|
"Authorization": `token ${response.access_token}`,
|
|
|
|
|
// 必须有 user-agent,在 cloudflare worker 会报错
|
|
|
|
|
"User-Agent": "NewsNow App",
|
|
|
|
|
},
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
const userID = String(userInfo.id)
|
|
|
|
|
await userTable.addUser(userID, userInfo.notification_email || userInfo.email, "github")
|
|
|
|
|
|
|
|
|
|
const jwtToken = await new SignJWT({
|
|
|
|
|
id: userID,
|
|
|
|
|
type: "github",
|
|
|
|
|
})
|
|
|
|
|
.setExpirationTime("60d")
|
|
|
|
|
.setProtectedHeader({ alg: "HS256" })
|
|
|
|
|
.sign(new TextEncoder().encode(process.env.JWT_SECRET!))
|
|
|
|
|
|
|
|
|
|
// nitro 有 bug,在 cloudflare 里没法 set cookie
|
|
|
|
|
// seconds
|
|
|
|
|
// const maxAge = 60 * 24 * 60 * 60
|
|
|
|
|
// setCookie(event, "user_jwt", jwtToken, { maxAge })
|
|
|
|
|
// setCookie(event, "user_avatar", userInfo.avatar_url, { maxAge })
|
|
|
|
|
// setCookie(event, "user_name", userInfo.name, { maxAge })
|
|
|
|
|
|
|
|
|
|
const params = new URLSearchParams({
|
|
|
|
|
login: "github",
|
2024-10-19 13:14:31 +08:00
|
|
|
|
jwt: jwtToken,
|
|
|
|
|
user: JSON.stringify({
|
2024-10-14 17:18:57 +08:00
|
|
|
|
avatar: userInfo.avatar_url,
|
|
|
|
|
name: userInfo.name,
|
|
|
|
|
}),
|
|
|
|
|
})
|
|
|
|
|
return sendRedirect(event, `/?${params.toString()}`)
|
|
|
|
|
})
|