-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ts
126 lines (114 loc) · 3.23 KB
/
index.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
import express, { Request } from "express"
import { config } from "dotenv"
import { graphqlHTTP } from "express-graphql"
import { createApplication, createModule, gql } from "graphql-modules"
import { File, Directory, FileVersion } from "@prisma/client"
import { GraphQLJSON } from "graphql-type-json"
import { directoryModule, findDirectories } from "./directory"
import { fileVersionModule } from "./fileVersion"
import { fileModule, findFiles } from "./file"
import { downloadLocalFile, uploadLocalFile } from "./bucket"
import { prismaClient } from "./prisma"
config()
const mainModule = createModule({
id: "main-module",
dirname: __dirname,
typeDefs: [
gql`
scalar JSON
interface FileNode {
id: ID!
name: String!
createdAt: String!
updatedAt: String!
deletedAt: String
}
input PaginationInput {
pageLength: Int!
page: Int!
}
input SortInput {
field: String!
direction: String
}
type Query {
searchFiles(query: String!): [FileNode]
}
`,
],
resolvers: {
JSON: GraphQLJSON,
FileNode: {
__resolveType(obj: File | FileVersion | Directory) {
if (Object.prototype.hasOwnProperty.call(obj, "parentId")) {
return "Directory"
}
if (Object.prototype.hasOwnProperty.call(obj, "fileId")) {
return "FileVersion"
}
if (Object.prototype.hasOwnProperty.call(obj, "directoryId")) {
return "File"
}
},
},
Query: {
searchFiles: async (
_: unknown,
{ query }: { query: string }
): Promise<Array<Directory | File>> => {
const prisma = prismaClient()
const directories = await findDirectories(prisma, query)
const files = await findFiles(prisma, query)
return [...directories, ...files]
},
},
},
})
const api = createApplication({
modules: [mainModule, fileModule, fileVersionModule, directoryModule],
})
const app = express()
app.get("/file", function (req, res) {
downloadLocalFile(
`${req.protocol}://${req.get("host") ?? ""}${req.originalUrl}`
)
.then((file) => {
res.setHeader("Content-Type", file.ContentType)
res.status(200).send(file.Body)
})
.catch((error: Error) => {
console.log(error)
res.status(500).send(error.message)
})
})
app.use(/\/((?!graphql).)*/, express.raw({ limit: "100000kb", type: "*/*" }))
app.put("/file", function (req: Request<unknown, unknown, Buffer>, res) {
const { headers } = req
const data = {
ContentType: headers["content-type"] ?? "application/octet-stream",
Body: req.body,
}
uploadLocalFile(
`${req.protocol}://${req.get("host") ?? ""}${req.originalUrl}`,
data
)
.then(() => {
res.status(201).send(true)
})
.catch((error: Error) => {
console.log(error)
res.status(500).send(error.message)
})
})
app.use(
"/graphql",
// eslint-disable-next-line @typescript-eslint/no-misused-promises
graphqlHTTP({
schema: api.schema,
customExecuteFn: api.createExecution(),
graphiql: process.env.NODE_ENV === "development",
})
)
app.listen(process.env.PORT, () => {
console.log(`Server running on port ${process.env.PORT!}.`)
})