-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsampleScripts.js
252 lines (232 loc) · 6.32 KB
/
sampleScripts.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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
// Deleting files
function deleteFiles() {
const fileIds = [
"### fileId 1###",
"### fileId 2###",
"### fileId 2###",
,
,
,
];
const requests = fileIds.map((id) => ({
method: "DELETE",
endpoint: `https://www.googleapis.com/drive/v3/files/${id}`,
}));
const res = BatchRequest.EDo({
batchPath: "batch/drive/v3",
requests: requests,
});
console.log(res);
}
// Changing file metadata
function moveFilesAndChangeFileNames() {
const fileIds = [
{ id: "### fileId 1###", newName: "sample1" },
{ id: "### fileId 2###", newName: "sample2" },
{ id: "### fileId 3###", newName: "sample3" },
,
,
,
];
const sourceFolderId = "###"; // Ser source folder ID.
const destinationFolderId = "###"; // Set destination folder ID.
const requests = fileIds.map(({ id, newName }) => ({
method: "PATCH",
endpoint: `https://www.googleapis.com/drive/v3/files/${id}?removeParents=${sourceFolderId}&addParents=${destinationFolderId}`,
requestBody: { name: newName },
}));
const res = BatchRequest.EDo({
batchPath: "batch/drive/v3",
requests: requests,
});
console.log(res);
}
// Copying files by converting mimeType
function copyAndConvertFiles() {
const fileIds = [
"### fileId 1###",
"### fileId 2###",
"### fileId 2###",
,
,
,
];
const destinationFolderId = "###"; // Set destination folder ID.
const requests = fileIds.map((id) => ({
method: "POST",
endpoint: `https://www.googleapis.com/drive/v3/files/${id}/copy`,
requestBody: {
mimeType: MimeType.GOOGLE_SHEETS,
parents: [destinationFolderId],
},
}));
const res = BatchRequest.EDo({
batchPath: "batch/drive/v3",
requests: requests,
});
console.log(res);
}
// Creating permission to multiple files
function createPermissions1() {
const fileIds = [
{
id: "### fileId 1###",
role: "reader",
type: "user",
email: "###",
},
{
id: "### fileId 2###",
role: "reader",
type: "user",
email: "###",
},
{
id: "### fileId 3###",
role: "writer",
type: "user",
email: "###",
},
,
,
,
];
const requests = fileIds.map(({ id, role, type, email }) => ({
method: "POST",
endpoint: `https://www.googleapis.com/drive/v3/files/${id}/permissions`,
requestBody: {
role: role,
type: type,
emailAddress: email,
},
}));
const res = BatchRequest.EDo({
batchPath: "batch/drive/v3",
requests: requests,
});
console.log(res);
}
// Creating permissions to a file
function createPermissions2() {
const sourceFileId = "###"; // Set source file ID.
const fileIds = [
{ role: "reader", type: "user", email: "### email 1 ###" },
{ role: "writer", type: "user", email: "### email 2 ###" },
{ role: "writer", type: "user", email: "### email 3 ###" },
,
,
,
];
const requests = fileIds.map(({ role, type, email }) => ({
method: "POST",
endpoint: `https://www.googleapis.com/drive/v3/files/${sourceFileId}/permissions`,
requestBody: {
role: role,
type: type,
emailAddress: email,
},
}));
const res = BatchRequest.EDo({
batchPath: "batch/drive/v3",
requests: requests,
});
console.log(res);
}
// Retrieving permission list from multiple files
function getPermissionList() {
const fileIds = [
"### fileId 1###",
"### fileId 2###",
"### fileId 2###",
,
,
,
];
const requests = fileIds.map((id) => ({
method: "GET",
endpoint: `https://www.googleapis.com/drive/v3/files/${id}/permissions`,
}));
const res = BatchRequest.EDo({
batchPath: "batch/drive/v3",
requests: requests,
});
console.log(JSON.stringify(res));
}
// Deleting all permissions from multiple files
function deleteAllPermissionsFromFiles() {
// Retrieve the permission list.
const fileIds = [
"### fileId 1###",
"### fileId 2###",
"### fileId 2###",
,
,
,
];
const requests1 = fileIds.map((id) => ({
method: "GET",
endpoint: `https://www.googleapis.com/drive/v3/files/${id}/permissions?fields=*`,
}));
const data = BatchRequest.EDo({
batchPath: "batch/drive/v3",
requests: requests1,
});
const ownerEmail = Session.getActiveUser().getEmail();
const list = data.reduce((ar, { permissions }, i) => {
permissions.forEach(({ id, emailAddress }) => {
if (emailAddress != ownerEmail)
ar.push({ id: fileIds[i], permissionId: id });
});
return ar;
}, []);
// Delete all permissions from all files.
const requests2 = list.map(({ id, permissionId }) => ({
method: "DELETE",
endpoint: `https://www.googleapis.com/drive/v3/files/${id}/permissions/${permissionId}`,
}));
const res = BatchRequest.EDo({
batchPath: "batch/drive/v3",
requests: requests2,
});
console.log(res);
}
// Updating permissions of multiple files
function changePermissionsOfFiles() {
// In this case, the role of the usef of email is changed from 'reader' to 'writer' for all files of fileIds.
const change = { role: "writer", email: "### email address ###" };
// Retrieve the permission list.
const fileIds = [
"### fileId 1###",
"### fileId 2###",
"### fileId 2###",
,
,
,
];
const requests1 = fileIds.map((id) => ({
method: "GET",
endpoint: `https://www.googleapis.com/drive/v3/files/${id}/permissions?fields=*`,
}));
const data = BatchRequest.EDo({
batchPath: "batch/drive/v3",
requests: requests1,
});
const list = data.reduce((ar, { permissions }, i) => {
permissions.forEach(({ id, emailAddress }) => {
if (emailAddress == change.email)
ar.push({ id: fileIds[i], permissionId: id });
});
return ar;
}, []);
// Delete all permissions from all files.
const requests2 = list.map(({ id, permissionId }) => ({
method: "PATCH",
endpoint: `https://www.googleapis.com/drive/v3/files/${id}/permissions/${permissionId}`,
requestBody: { role: change.role },
}));
const res = BatchRequest.EDo({
batchPath: "batch/drive/v3",
requests: requests2,
});
console.log(res);
}