mirror of
https://github.com/jorgev259/soc_site-astro.git
synced 2025-06-29 07:57:41 +00:00
This commit is contained in:
parent
0ec019f959
commit
4cafc41b88
11 changed files with 192 additions and 77 deletions
|
|
@ -21,7 +21,11 @@ export default defineConfig({
|
|||
optional: true,
|
||||
default: 'http://localhost:4321'
|
||||
}),
|
||||
WEBHOOK_URL: envField.string({ context: 'server', access: 'secret' })
|
||||
WEBHOOK_URL: envField.string({ context: 'server', access: 'secret' }),
|
||||
DISCORD_OAUTH_ID: envField.string({ context: 'server', access: 'public' }),
|
||||
DISCORD_OAUTH_SECRET: envField.string({ context: 'server', access: 'secret' }),
|
||||
DISCORD_GUILD_ID: envField.string({ context: 'server', access: 'public' }),
|
||||
DISCORD_DONATOR_ID: envField.string({ context: 'server', access: 'public' })
|
||||
},
|
||||
validateSecrets: true
|
||||
},
|
||||
|
|
@ -53,6 +57,7 @@ export default defineConfig({
|
|||
'/game/list': { status: 307, destination: '/maintenance' },
|
||||
'/platform/list': { status: 307, destination: '/maintenance' },
|
||||
'/platform/[id]': { status: 307, destination: '/maintenance' },
|
||||
'/profile': { status: 307, destination: '/maintenance' },
|
||||
'/profile/[username]': { status: 307, destination: '/maintenance' },
|
||||
'/series/[slug]': { status: 307, destination: '/maintenance' },
|
||||
'/series/list': { status: 307, destination: '/maintenance' },
|
||||
|
|
|
|||
144
messages/en.json
144
messages/en.json
|
|
@ -1,69 +1,77 @@
|
|||
{
|
||||
"$schema": "https://inlang.com/schema/inlang-message-format",
|
||||
"register": "Register",
|
||||
"login": "Login",
|
||||
"logout": "Logout",
|
||||
"username": "Username",
|
||||
"password": "Password",
|
||||
"email": "Email",
|
||||
"recoverPassword": "Recover Password",
|
||||
"home": "Home",
|
||||
"lastaddednav": "Last Added",
|
||||
"albumlist": "Album List",
|
||||
"games": "Games",
|
||||
"albums": "Albums",
|
||||
"series": "Series",
|
||||
"publishers": "Publishers",
|
||||
"platforms": "Platforms",
|
||||
"gamelist": "Game List",
|
||||
"animation": "Animation",
|
||||
"animationlist": "Animation List",
|
||||
"studios": "Studios",
|
||||
"requests": "Requests",
|
||||
"submitalbum": "Submit Album",
|
||||
"adminGrounds": "Admin Grounds",
|
||||
"manageAlbums": "Manage Albums",
|
||||
"manageUsers": "Manage Users",
|
||||
"manageRequests": "Manage Requests",
|
||||
"manageSubmissions": "Manage Submissions",
|
||||
"profilePic": "Profile picture",
|
||||
"emailSuccess": "An email with further instructions has been sent to the address linked to the account. Check your spam folder.",
|
||||
"close": "Close",
|
||||
"newPassword": "New password",
|
||||
"newPasswordRetype": "Re-type new password",
|
||||
"savePassword": "Save Password",
|
||||
"passwordResetSuccesful": "Password reset succesfully",
|
||||
"displayName": "Display name",
|
||||
"lastAddedSidebar": "Last Added",
|
||||
"getLucky": "Get Lucky",
|
||||
"randomPull": "Random Pull",
|
||||
"highlightAlbum": "Highlight Soundtrack",
|
||||
"ostCount": "Soundtrack Count",
|
||||
"recentReleases": "Recent Releases",
|
||||
"moreGameReleases": "More Game Releases",
|
||||
"moreAnimReleases": "more Animation releases",
|
||||
"moreLastAdded": "more Last Added",
|
||||
"lastAdded": "Last Added",
|
||||
"releaseDate": "Release Date",
|
||||
"artists": "Artists",
|
||||
"classification": "Classification",
|
||||
"AnimationOsts": "Animation Soundtracks",
|
||||
"GameOsts": "Game Soundtracks",
|
||||
"publishedBy": "Published by",
|
||||
"animations": "Animations",
|
||||
"avgRating": "Average Rating",
|
||||
"tracklist": "Tracklist",
|
||||
"donationCall": "Consider Donating to remove ads",
|
||||
"donationSteps": "After donating, if the donation e-mail is the same as the one used in the notation, it should be\r\n available in a few hours. If not, contact us on",
|
||||
"brokenLinkContact": "Broken Link? Contact us at Join our Discord!",
|
||||
"mediafirePermission": "MediaFire permission denied?",
|
||||
"mediafirePermissionGuide": "Check this guide",
|
||||
"disc": "Disc",
|
||||
"checkVGMDB": "Check album at",
|
||||
"buyOriginal": "Buy The Original Soundtrack to support the artists",
|
||||
"download": "Download",
|
||||
"flyInc": "Fly.inc",
|
||||
"ouoIO": "ouo.io",
|
||||
"direct": "Direct",
|
||||
"relatedAlbums": "Related Albums"
|
||||
}
|
||||
"$schema": "https://inlang.com/schema/inlang-message-format",
|
||||
"register": "Register",
|
||||
"login": "Login",
|
||||
"logout": "Logout",
|
||||
"username": "Username",
|
||||
"password": "Password",
|
||||
"email": "Email",
|
||||
"recoverPassword": "Recover Password",
|
||||
"home": "Home",
|
||||
"lastaddednav": "Last Added",
|
||||
"albumlist": "Album List",
|
||||
"games": "Games",
|
||||
"albums": "Albums",
|
||||
"series": "Series",
|
||||
"publishers": "Publishers",
|
||||
"platforms": "Platforms",
|
||||
"gamelist": "Game List",
|
||||
"animation": "Animation",
|
||||
"animationlist": "Animation List",
|
||||
"studios": "Studios",
|
||||
"requests": "Requests",
|
||||
"submitalbum": "Submit Album",
|
||||
"adminGrounds": "Admin Grounds",
|
||||
"manageAlbums": "Manage Albums",
|
||||
"manageUsers": "Manage Users",
|
||||
"manageRequests": "Manage Requests",
|
||||
"manageSubmissions": "Manage Submissions",
|
||||
"profilePic": "Profile picture",
|
||||
"emailSuccess": "An email with further instructions has been sent to the address linked to the account. Check your spam folder.",
|
||||
"close": "Close",
|
||||
"newPassword": "New password",
|
||||
"newPasswordRetype": "Re-type new password",
|
||||
"savePassword": "Save Password",
|
||||
"passwordResetSuccesful": "Password reset succesfully",
|
||||
"displayName": "Display name",
|
||||
"lastAddedSidebar": "Last Added",
|
||||
"getLucky": "Get Lucky",
|
||||
"randomPull": "Random Pull",
|
||||
"highlightAlbum": "Highlight Soundtrack",
|
||||
"ostCount": "Soundtrack Count",
|
||||
"recentReleases": "Recent Releases",
|
||||
"moreGameReleases": "More Game Releases",
|
||||
"moreAnimReleases": "more Animation releases",
|
||||
"moreLastAdded": "more Last Added",
|
||||
"lastAdded": "Last Added",
|
||||
"releaseDate": "Release Date",
|
||||
"artists": "Artists",
|
||||
"classification": "Classification",
|
||||
"AnimationOsts": "Animation Soundtracks",
|
||||
"GameOsts": "Game Soundtracks",
|
||||
"publishedBy": "Published by",
|
||||
"animations": "Animations",
|
||||
"avgRating": "Average Rating",
|
||||
"tracklist": "Tracklist",
|
||||
"donationCall": "Consider Donating to remove ads",
|
||||
"donationSteps": "After donating, if the donation e-mail is the same as the one used in the notation, it should be\r\n available in a few hours. If not, contact us on",
|
||||
"brokenLinkContact": "Broken Link? Contact us at Join our Discord!",
|
||||
"mediafirePermission": "MediaFire permission denied?",
|
||||
"mediafirePermissionGuide": "Check this guide",
|
||||
"disc": "Disc",
|
||||
"checkVGMDB": "Check album at",
|
||||
"buyOriginal": "Buy The Original Soundtrack to support the artists",
|
||||
"download": "Download",
|
||||
"flyInc": "Fly.inc",
|
||||
"ouoIO": "ouo.io",
|
||||
"direct": "Direct",
|
||||
"relatedAlbums": "Related Albums",
|
||||
"loginDiscord": "Login using Discord",
|
||||
"profile": "Profile",
|
||||
"linkDiscord": "Link Discord account",
|
||||
"loggedInPage": "You need to be logged in to access this page",
|
||||
"alreadyDonator": "You are already a donator!",
|
||||
"discordNeeded": "You need to link your Discord account to access this page",
|
||||
"discordRoleNeeded": "You need the Donator Discord role to access this page",
|
||||
"addedDonator": "Added donator benefits to your account!"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -0,0 +1,2 @@
|
|||
-- AlterTable
|
||||
ALTER TABLE `verification` MODIFY `value` TEXT NOT NULL;
|
||||
|
|
@ -442,7 +442,7 @@ model session {
|
|||
model verification {
|
||||
id String @id
|
||||
identifier String
|
||||
value String
|
||||
value String @db.Text
|
||||
expiresAt DateTime
|
||||
createdAt DateTime
|
||||
updatedAt DateTime
|
||||
|
|
|
|||
14
src/auth.ts
14
src/auth.ts
|
|
@ -1,6 +1,7 @@
|
|||
import { betterAuth } from 'better-auth'
|
||||
import { prismaAdapter } from 'better-auth/adapters/prisma'
|
||||
import { username, bearer } from 'better-auth/plugins'
|
||||
import { DISCORD_OAUTH_ID, DISCORD_OAUTH_SECRET } from 'astro:env/server'
|
||||
|
||||
import prismaClient from './utils/prisma-client'
|
||||
import { sendEmail } from './utils/email'
|
||||
|
|
@ -11,6 +12,19 @@ export const auth = betterAuth({
|
|||
database: prismaAdapter(prismaClient, { provider: 'mysql' }),
|
||||
user: { modelName: 'users' },
|
||||
plugins: [username(), bearer()],
|
||||
account: {
|
||||
accountLinking: {
|
||||
enabled: true,
|
||||
allowDifferentEmails: true
|
||||
}
|
||||
},
|
||||
socialProviders: {
|
||||
discord: {
|
||||
clientId: DISCORD_OAUTH_ID,
|
||||
clientSecret: DISCORD_OAUTH_SECRET,
|
||||
scope: ['identify', 'email', 'guilds.members.read']
|
||||
}
|
||||
},
|
||||
emailVerification: {
|
||||
sendOnSignUp: true,
|
||||
autoSignInAfterVerification: true,
|
||||
|
|
|
|||
|
|
@ -79,13 +79,20 @@ function LoginForm(props: { setForm: SetState<FormOptions>; setModalOpen: SetSta
|
|||
/>
|
||||
</div>
|
||||
</div>
|
||||
<div className='flex'>
|
||||
<Button loading={loading} disabled={loading} className='mx-auto px-6'>
|
||||
<div className='flex justify-center gap-x-2'>
|
||||
<Button loading={loading} disabled={loading} className='px-6' type='submit'>
|
||||
{m.login()}
|
||||
</Button>
|
||||
<Button
|
||||
onClick={(ev) => {
|
||||
ev.preventDefault()
|
||||
signIn.social({ provider: 'discord', callbackURL: window.location.href })
|
||||
}}
|
||||
>
|
||||
{m.loginDiscord()}
|
||||
</Button>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
<div className='mx-auto'>
|
||||
<Button
|
||||
onClick={() => {
|
||||
|
|
|
|||
|
|
@ -1,15 +1,37 @@
|
|||
---
|
||||
import * as m from 'paraglide/messages'
|
||||
import prismaClient from 'utils/prisma-client'
|
||||
import clsx from 'clsx'
|
||||
|
||||
import RegisterBtn from './RegisterButton'
|
||||
import LoginBtn from './LoginButton'
|
||||
import LogoutBtn from './LogoutButton'
|
||||
import Button from 'components/Button'
|
||||
|
||||
const session = Astro.locals.session
|
||||
const { permissions, session, user } = Astro.locals
|
||||
const isDonator = permissions.includes('SKIP_ADS')
|
||||
|
||||
const discordAcc = user
|
||||
? await prismaClient.account.findFirst({
|
||||
where: { providerId: 'discord', userId: user.id }
|
||||
})
|
||||
: null
|
||||
---
|
||||
|
||||
<div class='px-2 flex gap-x-2 justify-end absolute w-full md:ms-auto md:block md:w-auto md:static'>
|
||||
{
|
||||
session ? (
|
||||
<LogoutBtn client:only='react' />
|
||||
<>
|
||||
{!discordAcc ? (
|
||||
<Button id='link-discord' className='rounded-t-none'>
|
||||
{m.linkDiscord()}
|
||||
</Button>
|
||||
) : null}
|
||||
<a href='/profile'>
|
||||
<Button className={clsx(['rounded-t-none', { '!bg-amber-400': isDonator }])}>{m.profile()}</Button>
|
||||
</a>
|
||||
<LogoutBtn client:only='react' />
|
||||
</>
|
||||
) : (
|
||||
<>
|
||||
<LoginBtn client:only='react' />
|
||||
|
|
@ -18,3 +40,12 @@ const session = Astro.locals.session
|
|||
)
|
||||
}
|
||||
</div>
|
||||
|
||||
<script>
|
||||
import { linkSocial } from 'utils/auth-client'
|
||||
|
||||
const discordBtn = document.getElementById('link-discord')
|
||||
discordBtn?.addEventListener('click', () => {
|
||||
linkSocial({ provider: 'discord', callbackURL: window.location.href })
|
||||
})
|
||||
</script>
|
||||
|
|
|
|||
1
src/env.d.ts
vendored
1
src/env.d.ts
vendored
|
|
@ -6,5 +6,6 @@ declare namespace App {
|
|||
session: import('better-auth').Session | null
|
||||
permissions: string[]
|
||||
pages: string[]
|
||||
roles: string[]
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@ export const onRequest = defineMiddleware(async (context, next) => {
|
|||
context.locals.session = isAuthed.session
|
||||
|
||||
const user = await prismaClient.users.findUnique({
|
||||
select: { roles: { select: { roles: { select: { permissions: true } } } } },
|
||||
select: { roles: { select: { roleName: true, roles: { select: { permissions: true } } } } },
|
||||
where: { id: isAuthed.user.id }
|
||||
})
|
||||
const permissions = (user?.roles.map((r) => r.roles.permissions).flat() as string[]) ?? []
|
||||
|
|
@ -22,6 +22,7 @@ export const onRequest = defineMiddleware(async (context, next) => {
|
|||
|
||||
context.locals.permissions = permissions
|
||||
context.locals.pages = pages
|
||||
context.locals.roles = user?.roles.map((r) => r.roleName) ?? []
|
||||
} else {
|
||||
context.locals.user = null
|
||||
context.locals.session = null
|
||||
|
|
|
|||
46
src/pages/donator/check.astro
Normal file
46
src/pages/donator/check.astro
Normal file
|
|
@ -0,0 +1,46 @@
|
|||
---
|
||||
import * as m from 'paraglide/messages'
|
||||
import { DISCORD_DONATOR_ID } from 'astro:env/server'
|
||||
import prismaClient from 'utils/prisma-client'
|
||||
|
||||
const { session, user, roles } = Astro.locals
|
||||
|
||||
async function getMessage() {
|
||||
if (!user || !session) {
|
||||
return m.loggedInPage()
|
||||
}
|
||||
|
||||
if (roles.includes('Donator')) {
|
||||
return m.alreadyDonator()
|
||||
}
|
||||
|
||||
const discordAcc = await prismaClient.account.findFirst({
|
||||
where: { providerId: 'discord', userId: session.userId }
|
||||
})
|
||||
|
||||
if (!discordAcc) {
|
||||
return m.discordNeeded()
|
||||
}
|
||||
|
||||
const memberInfoRes = await fetch(`https://discord.com/api/users/@me/guilds/535484312124915714/member`, {
|
||||
headers: {
|
||||
Authorization: `Bearer ${discordAcc.accessToken}`,
|
||||
'Content-Type': 'application/x-www-form-urlencoded'
|
||||
}
|
||||
})
|
||||
|
||||
const memberInfo: { roles: string[] } = await memberInfoRes.json()
|
||||
const isDiscordDonator = memberInfo.roles.includes(DISCORD_DONATOR_ID)
|
||||
|
||||
if (!isDiscordDonator) {
|
||||
return m.discordRoleNeeded()
|
||||
}
|
||||
|
||||
await prismaClient.user_Role.create({ data: { userUsername: user.id, roleName: 'Donator' } })
|
||||
return m.addedDonator()
|
||||
}
|
||||
|
||||
const message = await getMessage()
|
||||
---
|
||||
|
||||
<div>{message}</div>
|
||||
|
|
@ -4,4 +4,4 @@ import { usernameClient } from 'better-auth/client/plugins'
|
|||
export const authClient = createAuthClient({
|
||||
plugins: [usernameClient()]
|
||||
})
|
||||
export const { useSession, signIn, signUp, signOut, forgetPassword, resetPassword } = authClient
|
||||
export const { useSession, signIn, signUp, signOut, forgetPassword, resetPassword, linkSocial } = authClient
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue