From b0e4ff6863e6c0388371ff92633ecda8b2c327cd Mon Sep 17 00:00:00 2001 From: PJ Date: Tue, 28 Jan 2020 12:31:56 +0100 Subject: [PATCH] Update routes --- .../siaviewnode-client/src/components/Dropzone.tsx | 2 +- packages/siaviewnode-server/src/main.ts | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/packages/siaviewnode-client/src/components/Dropzone.tsx b/packages/siaviewnode-client/src/components/Dropzone.tsx index d8140677..ee66856c 100644 --- a/packages/siaviewnode-client/src/components/Dropzone.tsx +++ b/packages/siaviewnode-client/src/components/Dropzone.tsx @@ -23,7 +23,7 @@ function MyDropzone() { acceptedFiles => { setLoading(true) const file = R.head(acceptedFiles) - const url = API_ENDPOINT + "/linkfile" + const url = API_ENDPOINT + "/skyfile" const fd = new FormData() fd.append("file", file) diff --git a/packages/siaviewnode-server/src/main.ts b/packages/siaviewnode-server/src/main.ts index 9b01a990..8fb6e113 100644 --- a/packages/siaviewnode-server/src/main.ts +++ b/packages/siaviewnode-server/src/main.ts @@ -100,10 +100,10 @@ export class Server { private configureRoutes() { this.app.post("/siafile", this.handleSiafilePOST.bind(this)) - this.app.post("/linkfile", this.handleLinkfilePOST.bind(this)) + this.app.post("/skyfile", this.handleSkyfilePOST.bind(this)) this.app.get( - "/sialink/:hash", + "/skylink/:hash", proxy("http://127.0.0.1:9980/skynet/skylink/", { proxyReqOptDecorator: (opts, _) => { opts.headers["User-Agent"] = "Sia-Agent" @@ -111,7 +111,7 @@ export class Server { }, proxyReqPathResolver: req => { const { hash } = req.params - return `/skynet/skyfile/${hash}` + return `/skynet/skylink/${hash}` } }) ) @@ -180,15 +180,15 @@ export class Server { } } - private async handleLinkfilePOST(req: Request, res: Response): Promise { + private async handleSkyfilePOST(req: Request, res: Response): Promise { const file = selectFile(req) as UploadedFile const uid = shortid.generate() - this.logger.info(`POST linkfile w/name ${file.name} and uid ${uid}`) + this.logger.info(`POST skyfile w/name ${file.name} and uid ${uid}`) try { const { data } = await siad.post( - `/skynet/skyfile/linkfiles/${uid}`, + `/skynet/skyfile/${uid}`, file.data, { maxContentLength: MAX_UPLOAD_FILESIZE,