Spaces:
Runtime error
Runtime error
File size: 7,198 Bytes
b2d7d99 5b7e1eb b2d7d99 2cb5570 b2d7d99 2cb5570 65dda73 b2d7d99 179cbc0 b2d7d99 179cbc0 b2d7d99 16e4326 b2d7d99 5b7e1eb 42e4293 955e8e9 b2d7d99 179cbc0 b2d7d99 16e4326 b2d7d99 955e8e9 b2d7d99 478b897 b2d7d99 16e4326 b2d7d99 5b7e1eb 7e9affd b2d7d99 65dda73 b2d7d99 65dda73 2cb5570 65dda73 2cb5570 65dda73 2cb5570 65dda73 2cb5570 b2d7d99 955e8e9 b2d7d99 f3f1f99 b2d7d99 f3f1f99 b2d7d99 |
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 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 |
import { validate as uuidValidate } from "uuid"
import express from "express"
import { v4 as uuidv4 } from "uuid"
import { hasValidAuthorization } from "./utils/hasValidAuthorization.mts"
import { initFolders } from "./initFolders.mts"
import { getValidNumber } from "./utils/getValidNumber.mts"
import { CreatePostResponse, GetAppPostResponse, GetAppPostsResponse, Post, PostVisibility } from "./types.mts"
import { savePost } from "./core/savePost.mts"
import { getAppPosts } from "./core/getAppPosts.mts"
import { deletePost } from "./core/deletePost.mts"
import { getPost } from "./core/getPost.mts"
import { getValidBoolean } from "./utils/getValidBoolean.mts"
initFolders()
const app = express()
const port = 7860
// fix this error: "PayloadTooLargeError: request entity too large"
// there are multiple version because.. yeah well, it's Express!
// app.use(bodyParser.json({limit: '50mb'}));
//app.use(bodyParser.urlencoded({limit: '50mb', extended: true}));
app.use(express.json({limit: '50mb'}));
app.use(express.urlencoded({limit: '50mb', extended: true}));
app.post("/posts/:appId", async (req, res) => {
if (!hasValidAuthorization(req.headers)) {
console.log("Invalid authorization")
res.status(401)
res.write(JSON.stringify({ error: "invalid token" }))
res.end()
return
}
const appId = req.params.appId
if (!uuidValidate(appId)) {
console.error("invalid appId")
res.status(400)
res.write(JSON.stringify({ error: `invalid appId` }))
res.end()
return
}
const postId = `${req.body.postId || uuidv4()}`
const prompt = `${req.body.prompt || ""}`
const model = `${req.body.model || ""}`
const assetUrl = `${req.body.assetUrl || ""}`
const previewUrl = `${req.body.previewUrl || assetUrl}`
const createdAt = `${req.body.createdAt || new Date().toISOString()}`
const visibility = `${req.body.visibility || "normal"}` as PostVisibility
const upvotes = getValidNumber(req.body.upvotes, 0, 1e15, 0)
const downvotes = getValidNumber(req.body.upvotes, 0, 1e15, 0)
if (!uuidValidate(postId)) {
console.error(`invalid postId ${postId}`)
res.status(400)
res.write(JSON.stringify({ error: `invalid postId ${postId}` }))
res.end()
return
}
if (!prompt.length) {
console.error(`invalid prompt length: cannot be zero`)
res.status(400)
res.write(JSON.stringify({ error: `invalid prompt length: cannot be zero` }))
res.end()
return
}
if (!previewUrl.length) {
console.error(`invalid preview URL length: cannot be zero`)
res.status(400)
res.write(JSON.stringify({ error: `invalid preview URL length: cannot be zero` }))
res.end()
return
}
if (!assetUrl.length) {
console.error(`invalid asset URL length: cannot be zero`)
res.status(400)
res.write(JSON.stringify({ error: `invalid asset URL length: cannot be zero` }))
res.end()
return
}
const post: Post = {
postId,
appId,
prompt,
model,
previewUrl,
assetUrl,
createdAt,
visibility,
upvotes,
downvotes,
}
try {
await savePost(post)
console.log(`saved post:`, post)
} catch (err) {
console.error(`failed to save the post: ${err}`)
res.status(400)
res.write(JSON.stringify({
success: false,
error: `failed to save the post: ${err}`,
post: undefined
} as unknown as CreatePostResponse
))
res.end()
return
}
res.status(201)
res.write(JSON.stringify({ success: true, error: "", post } as CreatePostResponse))
res.end()
})
app.get("/posts/:appId/firehose/:visibility/:maxNbItems/:shuffle", async (req, res) => {
const appId = `${req.params.appId}`
if (!uuidValidate(appId)) {
console.error("invalid appId")
res.status(400)
res.write(JSON.stringify({ error: `invalid appId` }))
res.end()
return
}
const visibility = `${req.params.visibility}`
const shuffle = getValidBoolean(`${req.params.shuffle}`, false)
const limit = getValidNumber(`${req.params.maxNbItems}`, 1, 80, 20)
try {
const posts = await getAppPosts({
appId,
visibility: visibility === "all" ? undefined : visibility as PostVisibility,
shuffle,
limit
})
res.status(200)
console.log(`returning ${posts.length} community posts for app ${appId} (visibility: ${visibility})`)
res.write(JSON.stringify({ posts } as GetAppPostsResponse))
res.end()
return
} catch (err) {
const error = `failed to load the posts for app ${appId} and visibility ${visibility}: ${err}`
console.error(error)
res.status(500)
res.write(JSON.stringify({ posts: [], error } as GetAppPostsResponse))
res.end()
return
}
})
app.get("/posts/:appId/:postId", async (req, res) => {
const appId = `${req.params.appId}`
if (!uuidValidate(appId)) {
console.error("invalid appId")
res.status(400)
res.write(JSON.stringify({ error: `invalid appId` }))
res.end()
return
}
const postId = `${req.params.postId}`
if (!uuidValidate(postId)) {
console.error("invalid postId")
res.status(400)
res.write(JSON.stringify({ error: `invalid postId` }))
res.end()
return
}
try {
const post = await getPost(appId, postId)
res.status(200)
console.log(`returning post ${postId} for app ${appId}`)
res.write(JSON.stringify({ post } as GetAppPostResponse))
res.end()
return
} catch (err) {
const error = `failed to load the post for app ${appId} and postId: ${postId}: ${err}`
console.error(error)
res.status(500)
res.write(JSON.stringify({ error } as GetAppPostResponse))
res.end()
return
}
})
// delete a post
app.delete("/posts/:appId/:postId", async (req, res) => {
if (!hasValidAuthorization(req.headers)) {
console.log("Invalid authorization")
res.status(401)
res.write(JSON.stringify({ error: "invalid token" }))
res.end()
return
}
const appId = req.params.appId
if (!uuidValidate(appId)) {
console.error("invalid appId")
res.status(400)
res.write(JSON.stringify({ error: `invalid appId` }))
res.end()
return
}
const postId = req.params.postId
if (!uuidValidate(postId)) {
console.error("invalid postId")
res.status(400)
res.write(JSON.stringify({ error: `invalid postId` }))
res.end()
return
}
try {
await deletePost(appId, postId)
res.status(200)
res.write(JSON.stringify({ success: true }))
res.end()
} catch (err) {
console.error(err)
res.status(404)
res.write(JSON.stringify({ error: "couldn't delete this post" }))
res.end()
}
})
app.get("/", async (req, res) => {
// this is what users will see in the space - but no need to show something scary
res.status(200)
res.write(`<html><head></head><body>
Community is a micro-service used to manage community posts for my various spaces.
It is used by <a href="https://jbilcke-hf-panoremix.hf.space" target="_blank">Panoremix</a>, a generative panorama app.
</body></html>`)
res.end()
})
app.listen(port, () => { console.log(`Open http://localhost:${port}`) }) |