mirror of
https://github.com/get-drexa/drive.git
synced 2025-11-30 21:41:39 +00:00
109 lines
2.6 KiB
TypeScript
109 lines
2.6 KiB
TypeScript
import { v } from "convex/values"
|
|
import type { Id } from "./_generated/dataModel"
|
|
import { authenticatedMutation, authenticatedQuery } from "./functions"
|
|
import * as Directories from "./model/directories"
|
|
import * as Files from "./model/files"
|
|
import type { FileSystemItem } from "./model/filesystem"
|
|
|
|
export const generateUploadUrl = authenticatedMutation({
|
|
handler: async (ctx) => {
|
|
// ctx.user and ctx.identity are automatically available
|
|
return await ctx.storage.generateUploadUrl()
|
|
},
|
|
})
|
|
|
|
export const generateFileUrl = authenticatedQuery({
|
|
args: {
|
|
storageId: v.id("_storage"),
|
|
},
|
|
handler: async (ctx, { storageId }) => {
|
|
return await ctx.storage.getUrl(storageId)
|
|
},
|
|
})
|
|
|
|
export const fetchFiles = authenticatedQuery({
|
|
args: {
|
|
directoryId: v.optional(v.id("directories")),
|
|
},
|
|
handler: async (ctx, { directoryId }) => {
|
|
return await ctx.db
|
|
.query("files")
|
|
.withIndex("byDirectoryId", (q) =>
|
|
q.eq("userId", ctx.user._id).eq("directoryId", directoryId),
|
|
)
|
|
.collect()
|
|
},
|
|
})
|
|
|
|
export const fetchRootDirectory = authenticatedQuery({
|
|
handler: async (ctx) => {
|
|
return await Directories.fetchRoot(ctx)
|
|
},
|
|
})
|
|
|
|
export const fetchDirectory = authenticatedQuery({
|
|
args: {
|
|
directoryId: v.id("directories"),
|
|
},
|
|
handler: async (ctx, { directoryId }) => {
|
|
return await Directories.fetch(ctx, { directoryId })
|
|
},
|
|
})
|
|
|
|
export const fetchDirectoryContent = authenticatedQuery({
|
|
args: {
|
|
directoryId: v.optional(v.id("directories")),
|
|
},
|
|
handler: async (ctx, { directoryId }): Promise<FileSystemItem[]> => {
|
|
return await Directories.fetchContent(ctx, { directoryId })
|
|
},
|
|
})
|
|
|
|
export const createDirectory = authenticatedMutation({
|
|
args: {
|
|
name: v.string(),
|
|
directoryId: v.id("directories"),
|
|
},
|
|
handler: async (ctx, { name, directoryId }): Promise<Id<"directories">> => {
|
|
return await Directories.create(ctx, {
|
|
name,
|
|
parentId: directoryId,
|
|
})
|
|
},
|
|
})
|
|
|
|
export const saveFile = authenticatedMutation({
|
|
args: {
|
|
name: v.string(),
|
|
size: v.number(),
|
|
directoryId: v.id("directories"),
|
|
storageId: v.id("_storage"),
|
|
mimeType: v.optional(v.string()),
|
|
},
|
|
handler: async (ctx, { name, storageId, directoryId, size, mimeType }) => {
|
|
const now = Date.now()
|
|
|
|
await ctx.db.insert("files", {
|
|
name,
|
|
size,
|
|
storageId,
|
|
directoryId,
|
|
userId: ctx.user._id,
|
|
mimeType,
|
|
createdAt: now,
|
|
updatedAt: now,
|
|
})
|
|
},
|
|
})
|
|
|
|
export const renameFile = authenticatedMutation({
|
|
args: {
|
|
directoryId: v.optional(v.id("directories")),
|
|
itemId: v.id("files"),
|
|
newName: v.string(),
|
|
},
|
|
handler: async (ctx, { directoryId, itemId, newName }) => {
|
|
await Files.renameFile(ctx, { directoryId, itemId, newName })
|
|
},
|
|
})
|