-
-
Notifications
You must be signed in to change notification settings - Fork 522
/
Copy pathauth.ts
138 lines (129 loc) · 4.21 KB
/
auth.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
import NextAuth from "next-auth";
import GitHub from "next-auth/providers/github";
export const {
handlers: { GET, POST },
auth,
signIn,
signOut,
} = NextAuth({
callbacks: {
signIn: async (params) => {
if (params.profile!.sponsorInfo) {
// user is sponsor
return true;
}
// user is signed in to github, but not a sponsor.
// TODO: We could redirect to pricing page here
return true;
// return "https://www.blocknotejs.org/pricing";
},
// https://authjs.dev/guides/extending-the-session
jwt({ token, user }) {
if (user) {
// User is available during sign-in
token.sponsorInfo = (user as any).sponsorInfo;
}
return token;
},
session: async (params) => {
(params.session.user as any).sponsorInfo = (
params.token as any
).sponsorInfo;
return params.session;
},
},
providers: [
// copied from https://github.com/nextauthjs/next-auth/blob/234a150e2cac3bc62a9162fa00ed7cb16a105244/packages/core/src/providers/github.ts#L2,
// but with extra sponsorship api call
GitHub({
userinfo: {
url: `https://api.github.com/user`,
async request({ tokens, provider }: any) {
const profile = await fetch(provider.userinfo?.url as URL, {
headers: {
Authorization: `Bearer ${tokens.access_token}`,
"User-Agent": "authjs",
},
}).then(async (res) => await res.json());
if (!profile.email) {
// If the user does not have a public email, get another via the GitHub API
// See https://docs.github.com/en/rest/users/emails#list-public-email-addresses-for-the-authenticated-user
const res = await fetch(`https://api.github.com/user/emails`, {
headers: {
Authorization: `Bearer ${tokens.access_token}`,
"User-Agent": "authjs",
},
});
if (res.ok) {
const emails: any[] = await res.json();
profile.email = (
emails.find((e) => e.primary) ?? emails[0]
).email;
}
}
const resSponsor = await fetch(`https://api.github.com/graphql`, {
method: "POST",
headers: {
"Content-Type": "application/json",
Authorization: `Bearer ${tokens.access_token}`,
},
// organization(login:"TypeCellOS") {
// user(login:"YousefED") {
body: JSON.stringify({
query: `{
user(login:"YousefED") {
sponsorshipForViewerAsSponsor(activeOnly:false) {
isActive,
tier {
name
monthlyPriceInDollars
}
}
}
}`,
}),
});
if (resSponsor.ok) {
// Mock data. TODO: disable and test actial data
// profile.sponsorInfo = {
// isActive: true,
// tier: {
// name: "test",
// monthlyPriceInDollars: 100,
// },
// };
// use API data:
const data = await resSponsor.json();
// eslint-disable-next-line no-console
console.log("sponsor data", data);
// {
// "data": {
// "user": {
// "sponsorshipForViewerAsSponsor": {
// "isActive": true,
// "tier": {
// "name": "$90 a month",
// "monthlyPriceInDollars": 90
// }
// }
// }
// }
// }
profile.sponsorInfo = data.data.user.sponsorshipForViewerAsSponsor;
}
return profile;
},
},
profile: (profile) => {
return {
id: profile.id.toString(),
name: profile.name ?? profile.login,
email: profile.email,
image: profile.avatar_url,
username: profile.login,
sponsorInfo: profile.sponsorInfo,
};
},
}),
],
});