Отправить файл в папку в корзине через клиент хранилища - PullRequest
0 голосов
/ 29 мая 2019

Я слежу за документацией и смог успешно отправить файл изображения в корзину, используя код, указанный в нижней части ответа (все взято из документации).Файл поступил из Angular.

Я сейчас пытаюсь отправить этот файл в определенную папку в том же контейнере, но не могу заставить его работать.

const format = require('util').format;
const express = require('express');
const Multer = require('multer');
const bodyParser = require('body-parser');
var cors = require('cors')
var morgan = require('morgan')
const fs = require('fs');
require('dotenv').config()
const { Storage } = require('@google-cloud/storage');

// Instantiate a storage client
const storage = new Storage();

const app = express();
app.use(morgan("short"));
app.use(cors())
app.use(bodyParser.json());

// Multer is required to process file uploads and make them available via
// req.files.
const multer = Multer({
    storage: Multer.memoryStorage(),
    limits: {
        fileSize: 5 * 1024 * 1024 // no larger than 5mb, you can change as needed.
    }
});

// A bucket is a container for objects (files).
const bucket = storage.bucket(process.env.GCLOUD_STORAGE_BUCKET);

// Process the file upload and upload to Google Cloud Storage.
app.post('/upload', multer.single('file'), (req, res, next) => {
    if (!req.file) {
        res.status(400).send('No file uploaded.');
        return;
    }

    // Create a new blob in the bucket and upload the file data.
    const blob = bucket.file(req.file.originalname)
    const blobStream = blob.createWriteStream();

    blobStream.on('error', (err) => {
        next(err);
    });

    blobStream.on('finish', () => {
        // The public URL can be used to directly access the file via HTTP.
        const publicUrl = format(`https://storage.googleapis.com/${bucket.name}/${blob.name}`);
        console.log('publicUrl', publicUrl);
        res.status(200).send({ message: publicUrl });
    });

    blobStream.end(req.file.buffer);
});

const PORT = process.env.PORT || 3001;
app.listen(PORT, () => {
    console.log(`App listening on port ${PORT}`);
    console.log('Press Ctrl+C to quit.');
});

1 Ответ

2 голосов
/ 29 мая 2019

Строка, которую вы передаете bucket.file(), должна быть полным путем к целевому файлу.Прямо сейчас вы просто проходите req.file.originalname.Вместо этого создайте полный путь к файлу и передайте эту строку.

...