图片处理
This commit is contained in:
parent
ae7946c5fc
commit
dab0ff47a1
|
@ -46,8 +46,6 @@ router.post('/checkToken', async (req: Request, env: Env) => {
|
||||||
|
|
||||||
// list image
|
// list image
|
||||||
router.post('/list', auth, async (req: Request, env: Env) => {
|
router.post('/list', auth, async (req: Request, env: Env) => {
|
||||||
const BASE_URL = await env.XK.get('BASE_URL')
|
|
||||||
console.log("BASE_URL=" + BASE_URL)
|
|
||||||
const data = await req.json() as ImgReq
|
const data = await req.json() as ImgReq
|
||||||
if (!data.limit) {
|
if (!data.limit) {
|
||||||
data.limit = 10
|
data.limit = 10
|
||||||
|
@ -76,7 +74,7 @@ router.post('/list', auth, async (req: Request, env: Env) => {
|
||||||
const objs = list.objects
|
const objs = list.objects
|
||||||
const urls = objs.map(it => {
|
const urls = objs.map(it => {
|
||||||
return <ImgItem>{
|
return <ImgItem>{
|
||||||
url: `${BASE_URL}/${it.key}`,
|
url: `/rest/${it.key}`,
|
||||||
key: it.key,
|
key: it.key,
|
||||||
size: it.size
|
size: it.size
|
||||||
}
|
}
|
||||||
|
@ -91,7 +89,6 @@ router.post('/list', auth, async (req: Request, env: Env) => {
|
||||||
|
|
||||||
// batch upload file
|
// batch upload file
|
||||||
router.post('/upload', auth, async (req: Request, env: Env) => {
|
router.post('/upload', auth, async (req: Request, env: Env) => {
|
||||||
const BASE_URL = await env.XK.get('BASE_URL')
|
|
||||||
const files = await req.formData()
|
const files = await req.formData()
|
||||||
const images = files.getAll("files")
|
const images = files.getAll("files")
|
||||||
const errs = []
|
const errs = []
|
||||||
|
@ -114,7 +111,7 @@ router.post('/upload', auth, async (req: Request, env: Env) => {
|
||||||
urls.push({
|
urls.push({
|
||||||
key: object.key,
|
key: object.key,
|
||||||
size: object.size,
|
size: object.size,
|
||||||
url: `${BASE_URL}/${object.key}`,
|
url: `/rest/${object.key}`,
|
||||||
filename: item.name
|
filename: item.name
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue