- An XML file that contains the code below is available to download
- google-drive-file-delete.xml (C) Questetra, Inc. (MIT License)
- If you are using Professional, you can modify the contents of this file and use it as your own add-on
main();
function main() {
const filesIdArray = getFileIds();
const quser = getQuser();
for (let i = 0; i < filesIdArray.length; i++) {
deleteFile(quser, filesIdArray[i]);
}
}
/**
* データ項目からファイル / フォルダ ID を取得し、配列に入れて返す
* ID の数が通信制限を超えていればエラー
* @return {Array<String>} ファイル ID の配列
*/
function getFileIds() {
const fileIds = engine.findDataByNumber(configs.get("FileIdsItem"));
if (fileIds === null) {
throw "File / Folder IDs aren't set.";
}
let fileIdsArray = fileIds.split("\n");
fileIdsArray = fileIdsArray.filter(lines => lines !== ""); // 空文字列を削除
if (fileIdsArray.length === 0) {
throw "File / Folder IDs aren't set.";
}
if (fileIdsArray.length > httpClient.getRequestingLimit()) {
//check number of files
throw "Number of File IDs is over the limit.";
}
return fileIdsArray;
}
/**
* 実行ユーザを取得する
* @return {QuserView} 実行ユーザ
*/
function getQuser() {
const quser = configs.getObject("UserID");
if (quser === null) {
throw "User not found";
}
engine.log(`User Name: ${quser.getName()}`);
return quser;
}
/**
* ファイルを削除する
* メタデータの "trashed" パラメータを true にすることでファイルをゴミ箱に入れる
* 削除の結果をログ出力し、失敗した場合はエラーとする
* @param {QuserView} quser 実行ユーザ
* @param {String} fileId 削除するファイルの ID
*/
function deleteFile(quser, fileId) {
const url = `https://www.googleapis.com/drive/v3/files/${fileId}`;
const body = {
trashed: true
};
let response = httpClient.begin()
.googleOAuth2(quser, "Drive")
.queryParam("supportsAllDrives", "true")
.body(JSON.stringify(body), "application/json; charset=UTF-8")
.patch(url);
const status = response.getStatusCode();
if (status >= 300) {
engine.log(response.getResponseAsString());
throw `Failed to delete: ${fileId}\nstatus: ${status}`;
} else {
engine.log(`Succeed to delete: ${fileId}`);
}
}
Pingback: Utilizing Google Drive from Workflow – Sending files to people outside the company – Questetra Support