mirror of
https://github.com/stonith404/pingvin-share.git
synced 2024-11-05 23:40:12 +01:00
02cd98fa9c
* feat(auth): add OAuth2 login with GitHub and Google * chore(translations): add files for Japanese * fix(auth): fix link function for GitHub * feat(oauth): basic oidc implementation * feat(oauth): oauth guard * fix: disable image optimizations for logo to prevent caching issues with custom logos * fix: memory leak while downloading large files * chore(translations): update translations via Crowdin (#278) * New translations en-us.ts (Japanese) * New translations en-us.ts (Japanese) * New translations en-us.ts (Japanese) * release: 0.18.2 * doc(translations): Add Japanese README (#279) * Added Japanese README. * Added JAPANESE README link to README.md. * Updated Japanese README. * Updated Environment Variable Table. * updated zh-cn README. * feat(oauth): unlink account * refactor(oauth): make providers extensible * fix(oauth): fix discoveryUri error when toggle google-enabled * feat(oauth): add microsoft and discord as oauth provider * docs(oauth): update README.md * docs(oauth): update oauth2-guide.md * set password to null for new oauth users * New translations en-us.ts (Japanese) (#281) * chore(translations): add Polish files * fix(oauth): fix random username and password * feat(oauth): add totp * fix(oauth): fix totp throttle * fix(oauth): fix qrcode and remove comment * feat(oauth): add error page * fix(oauth): i18n of error page * feat(auth): add OAuth2 login * fix(auth): fix link function for GitHub * feat(oauth): basic oidc implementation * feat(oauth): oauth guard * feat(oauth): unlink account * refactor(oauth): make providers extensible * fix(oauth): fix discoveryUri error when toggle google-enabled * feat(oauth): add microsoft and discord as oauth provider * docs(oauth): update README.md * docs(oauth): update oauth2-guide.md * set password to null for new oauth users * fix(oauth): fix random username and password * feat(oauth): add totp * fix(oauth): fix totp throttle * fix(oauth): fix qrcode and remove comment * feat(oauth): add error page * fix(oauth): i18n of error page * refactor: return null instead of `false` in `getIdOfCurrentUser` functiom * feat: show original oauth error if available * refactor: run formatter * refactor(oauth): error message i18n * refactor(oauth): make OAuth token available someone may use it (to revoke token or get other info etc.) also improved the i18n message * chore(oauth): remove unused import * chore: add database migration * fix: missing python installation for nanoid --------- Co-authored-by: Elias Schneider <login@eliasschneider.com> Co-authored-by: ふうせん <10260662+fusengum@users.noreply.github.com>
157 lines
3.6 KiB
Plaintext
157 lines
3.6 KiB
Plaintext
generator client {
|
|
provider = "prisma-client-js"
|
|
}
|
|
|
|
datasource db {
|
|
provider = "sqlite"
|
|
url = env("DATABASE_URL")
|
|
}
|
|
|
|
model User {
|
|
id String @id @default(uuid())
|
|
createdAt DateTime @default(now())
|
|
updatedAt DateTime @updatedAt
|
|
|
|
username String @unique
|
|
email String @unique
|
|
password String?
|
|
isAdmin Boolean @default(false)
|
|
|
|
shares Share[]
|
|
refreshTokens RefreshToken[]
|
|
loginTokens LoginToken[]
|
|
reverseShares ReverseShare[]
|
|
|
|
totpEnabled Boolean @default(false)
|
|
totpVerified Boolean @default(false)
|
|
totpSecret String?
|
|
resetPasswordToken ResetPasswordToken?
|
|
|
|
oAuthUsers OAuthUser[]
|
|
}
|
|
|
|
model RefreshToken {
|
|
id String @id @default(uuid())
|
|
token String @unique @default(uuid())
|
|
createdAt DateTime @default(now())
|
|
|
|
expiresAt DateTime
|
|
|
|
userId String
|
|
user User @relation(fields: [userId], references: [id], onDelete: Cascade)
|
|
}
|
|
|
|
model LoginToken {
|
|
token String @id @default(uuid())
|
|
createdAt DateTime @default(now())
|
|
|
|
expiresAt DateTime
|
|
|
|
userId String
|
|
user User @relation(fields: [userId], references: [id], onDelete: Cascade)
|
|
used Boolean @default(false)
|
|
}
|
|
|
|
model ResetPasswordToken {
|
|
token String @id @default(uuid())
|
|
createdAt DateTime @default(now())
|
|
|
|
expiresAt DateTime
|
|
|
|
userId String @unique
|
|
user User @relation(fields: [userId], references: [id], onDelete: Cascade)
|
|
}
|
|
|
|
model OAuthUser {
|
|
id String @id @default(uuid())
|
|
provider String
|
|
providerUserId String
|
|
providerUsername String
|
|
userId String
|
|
user User @relation(fields: [userId], references: [id], onDelete: Cascade)
|
|
}
|
|
|
|
model Share {
|
|
id String @id @default(uuid())
|
|
createdAt DateTime @default(now())
|
|
|
|
uploadLocked Boolean @default(false)
|
|
isZipReady Boolean @default(false)
|
|
views Int @default(0)
|
|
expiration DateTime
|
|
description String?
|
|
removedReason String?
|
|
|
|
creatorId String?
|
|
creator User? @relation(fields: [creatorId], references: [id], onDelete: Cascade)
|
|
|
|
reverseShareId String?
|
|
reverseShare ReverseShare? @relation(fields: [reverseShareId], references: [id], onDelete: Cascade)
|
|
|
|
security ShareSecurity?
|
|
recipients ShareRecipient[]
|
|
files File[]
|
|
}
|
|
|
|
model ReverseShare {
|
|
id String @id @default(uuid())
|
|
createdAt DateTime @default(now())
|
|
|
|
token String @unique @default(uuid())
|
|
shareExpiration DateTime
|
|
maxShareSize String
|
|
sendEmailNotification Boolean
|
|
remainingUses Int
|
|
|
|
creatorId String
|
|
creator User @relation(fields: [creatorId], references: [id], onDelete: Cascade)
|
|
|
|
shares Share[]
|
|
}
|
|
|
|
model ShareRecipient {
|
|
id String @id @default(uuid())
|
|
email String
|
|
|
|
shareId String
|
|
share Share @relation(fields: [shareId], references: [id], onDelete: Cascade)
|
|
}
|
|
|
|
model File {
|
|
id String @id @default(uuid())
|
|
createdAt DateTime @default(now())
|
|
|
|
name String
|
|
size String
|
|
|
|
shareId String
|
|
share Share @relation(fields: [shareId], references: [id], onDelete: Cascade)
|
|
}
|
|
|
|
model ShareSecurity {
|
|
id String @id @default(uuid())
|
|
createdAt DateTime @default(now())
|
|
|
|
password String?
|
|
maxViews Int?
|
|
|
|
shareId String? @unique
|
|
share Share? @relation(fields: [shareId], references: [id], onDelete: Cascade)
|
|
}
|
|
|
|
model Config {
|
|
updatedAt DateTime @updatedAt
|
|
|
|
name String
|
|
category String
|
|
type String
|
|
defaultValue String @default("")
|
|
value String?
|
|
obscured Boolean @default(false)
|
|
secret Boolean @default(true)
|
|
locked Boolean @default(false)
|
|
order Int
|
|
|
|
@@id([name, category])
|
|
}
|