-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdrive.js
111 lines (102 loc) · 2.91 KB
/
drive.js
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
const fsp = require("fs").promises;
const path = require("path");
const process = require("process");
const { authenticate } = require("@google-cloud/local-auth");
const { google } = require("googleapis");
const { PassThrough } = require("stream");
// If modifying these scopes, delete token.json.
const SCOPES = ["https://www.googleapis.com/auth/drive"];
// The file token.json stores the user's access and refresh tokens, and is
// created automatically when the authorization flow completes for the first
// time.
const TOKEN_PATH = path.join(process.cwd(), "token.json");
const CREDENTIALS_PATH = path.join(process.cwd(), "./credentials.json");
/**
* Reads previously authorized credentials from the save file.
*
* @return {Promise<OAuth2Client|null>}
*/
async function loadSavedCredentialsIfExist() {
try {
const content = await fsp.readFile(TOKEN_PATH);
const credentials = JSON.parse(content);
return google.auth.fromJSON(credentials);
} catch (err) {
return null;
}
}
/**
* Serializes credentials to a file compatible with GoogleAuth.fromJSON.
*
* @param {OAuth2Client} client
* @return {Promise<void>}
*/
async function saveCredentials(client) {
const content = await fsp.readFile(CREDENTIALS_PATH);
const keys = JSON.parse(content);
const key = keys.installed || keys.web;
const payload = JSON.stringify({
type: "authorized_user",
client_id: key.client_id,
client_secret: key.client_secret,
refresh_token: client.credentials.refresh_token,
});
await fsp.writeFile(TOKEN_PATH, payload);
}
/**
* Load or request or authorization to call APIs.
*
*/
async function authorize() {
let client = await loadSavedCredentialsIfExist();
if (client) {
return client;
}
client = await authenticate({
scopes: SCOPES,
keyfilePath: CREDENTIALS_PATH,
});
if (client.credentials) {
await saveCredentials(client);
}
return client;
}
/**
* Lists the names and IDs of up to 10 files.
* @param {OAuth2Client} authClient An authorized OAuth2 client.
*/
async function uploadFile(authClient, fileName, fileType, readStream) {
const drive = google.drive({ version: "v3", auth: authClient });
passThrough = new PassThrough();
readStream.pipe(passThrough);
// Rest of the code remains the same
const requestBody = {
name: fileName,
fields: "id",
};
const media = {
mimeType: fileType,
body: passThrough,
};
try {
const file = await drive.files.create({
requestBody,
media: media,
});
console.log("File Id:", file.data.id);
await drive.permissions.create({
fileId: file.data.id,
requestBody: {
role: "reader",
type: "anyone",
},
});
return file.data.id;
} catch (err) {
throw err;
}
}
// authorize().then((client)=>{
// uploadFile(client, "test.mp4","video/mp4", fs.createReadStream("temp_video.mp4"))
// }).catch(console.error);
module.exports = { authorize, uploadFile };