mirror of
https://github.com/stonith404/pingvin-share.git
synced 2025-01-15 01:14:27 -05:00
5a54fe4cb7
* add s3 * instance the s3 client dynamically * refactor code * fix format * add docs * add docs * fix issue with s3 upload if you use the base path, fix issue with archiving -> disable archiving for s3 * split file service in local and s3 file service and fix s3 upload chunking * add working download/view * add new features to local service (from main branch) * revert s3 service and add working delete/remove functionality * refactor s3 service * Update backend/src/file/s3.service.ts Co-authored-by: Elias Schneider <login@eliasschneider.com> * Update frontend/src/components/admin/configuration/ConfigurationNavBar.tsx Co-authored-by: Elias Schneider <login@eliasschneider.com> * Update docs/docs/setup/s3.md Co-authored-by: Elias Schneider <login@eliasschneider.com> * Update backend/prisma/seed/config.seed.ts Co-authored-by: Elias Schneider <login@eliasschneider.com> * add note for ZIP archive in docs * create logger instance * make s3 instance dynamic * add icon import * remove console.logs * add correct pdf viewing format * add storage provider to share * refactor: run formatter * chore: add prisma migration * fix: don't expose `storageProvider` * chore: improve config variables description --------- Co-authored-by: Elias Schneider <login@eliasschneider.com>
163 lines
3.9 KiB
Text
163 lines
3.9 KiB
Text
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)
|
|
ldapDN String? @unique
|
|
|
|
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)
|
|
|
|
oauthIDToken String? // prefixed with the ID of the issuing OAuth provider, separated by a colon
|
|
}
|
|
|
|
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())
|
|
|
|
name String?
|
|
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[]
|
|
storageProvider String @default("LOCAL")
|
|
}
|
|
|
|
model ReverseShare {
|
|
id String @id @default(uuid())
|
|
createdAt DateTime @default(now())
|
|
|
|
token String @unique @default(uuid())
|
|
shareExpiration DateTime
|
|
maxShareSize String
|
|
sendEmailNotification Boolean
|
|
remainingUses Int
|
|
simplified Boolean @default(false)
|
|
publicAccess Boolean @default(true)
|
|
|
|
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])
|
|
}
|