Google Drive Backup upload #3

Merged
Sirherobrine23 merged 4 commits from google-drive-backup into main 2020-12-28 22:11:44 +00:00
3 changed files with 42 additions and 53 deletions
Showing only changes of commit 18aff67661 - Show all commits

View File

@ -1,4 +1,3 @@
//index.js
const fs = require('fs');
const readline = require('readline');
const {google} = require('googleapis');
@ -10,17 +9,12 @@ const SCOPES = ['https://www.googleapis.com/auth/drive.metadata.readonly'];
// time.
const TOKEN_PATH = 'token.json';
function callGDriveApi(callback){
// Load client secrets from a local file.
fs.readFile('credentials.json', (err, content) => {
if (err) return console.log('Error loading client secret file:', err);
// Authorize a client with credentials, then call the Google Drive API.
if(callback)
authorize(JSON.parse(content), callback);
else
authorize(JSON.parse(content), listFiles);//default
authorize(JSON.parse(content), listFiles);
});
}
/**
* Create an OAuth2 client with the given credentials, and then execute the
@ -94,7 +88,3 @@ function listFiles(auth) {
}
});
}
callGDriveApi();
module.exports = callGDriveApi;

View File

@ -1,31 +0,0 @@
const fs = require("fs");
const {google} = require('googleapis');
function imageUpload(fileName, filePath, callback){
require("./auth")((auth) => {
const fileMetadata = {
name: fileName
};
const media = {
mimeType: "application/zip",
body: fs.createReadStream(filePath)
}
const drive = google.drive({version: 'v3', auth});
drive.files.create({
resource: fileMetadata,
media: media,
fields: 'id'
}, function (err, file) {
if (err) {
// Handle error
console.error(err);
} else {
callback(file.data.id);
}
});
});
}
module.exports = { imageUpload };

View File

@ -1,5 +1,35 @@
//index.js
const gdrive = require("./drive");
gdrive.imageUpload("teste.zip", "./teste.zip", (id) => {
console.log(id);
});
var {google} = require('googleapis');
const { GoogleAuth } = require('google-auth-library');
const stream = require('stream');
const serviceAccount = require('../config/node-uploader-99-9e3f13fd0cde.json')
console.log(serviceAccount);
let fileObject = req.body.filePDF;
console.log(fileObject);
let bufferStream = new stream.PassThrough();
bufferStream.end(fileObject.buffer);
const jWTClient = new google.auth.JWT(
serviceAccount.client_email,
null,
serviceAccount.private_key,
['https://www.googleapis.com/auth/drive', 'https://www.googleapis.com/auth/drive.file']
)
google.drive({ version: 'v3'})
.files.create({
auth: GoogleAuth/jWTClient,
media: {
mimeType: 'application/pdf',
body: bufferStream
},
resource: {
name: 'DeniTheFile.pdf',
// if you want to store the file in the root, remove this parents
parents: ['1KwLSHyu9R1jo3-ahtWgJCohoCsrtrE-I']
},
fields: 'id',
}).then(function (resp) {
console.log(resp,'resp');
}).catch(function (error) {
console.log(error);
})
res.send('File uploaded');
// });