Skip to content

Instantly share code, notes, and snippets.

@JavierCane
Forked from woodwardtw/tellmeyoursecrets.js
Last active February 21, 2024 11:54
Show Gist options
  • Star 17 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save JavierCane/28f7307ceeaf6464431c1418b598a817 to your computer and use it in GitHub Desktop.
Save JavierCane/28f7307ceeaf6464431c1418b598a817 to your computer and use it in GitHub Desktop.
Google Spreadsheet script that lists all the shared documents inside a specified folder and all its subfolders recursively. Skips out the documents shared internally (with specified email addresses)
function start() {
const sheet = SpreadsheetApp.getActiveSheet();
sheet.appendRow(["Name", "Sharing Access", "Sharing Permission", "Get Editors", "Get Viewers", "Date", "Size", "URL", "Download", "Description", "Type"]);
const folder = DriveApp.getFolderById("folder_id_copied_from_the_url_without_the_google_drive_domain");
recursiveListSharedFiles(folder, sheet);
}
function recursiveListSharedFiles(folder, sheet) {
listSharedFiles(folder, sheet);
const subfolders = folder.getFolders();
while (subfolders.hasNext()) {
recursiveListSharedFiles(subfolders.next(), sheet);
}
}
function listSharedFiles(folder, sheet) {
const files = folder.getFiles();
while (files.hasNext()) {
const file = files.next();
const externalEditorEmails = filterInternalEditors(file);
if (isOnlySharedInternally(externalEditorEmails, file)) {
continue;
}
appendRow(externalEditorEmails, file, sheet)
}
}
function filterInternalEditors(file) {
const internalEmails = [
"your.own@email.com",
"your.own@email2.com"
];
const editorEmails = file.getEditors().map(e => e.getEmail());
return editorEmails.filter(editorEmail => !internalEmails.includes(editorEmail));
}
function isOnlySharedInternally(externalEditorEmails, file) {
return externalEditorEmails.length === 0
&& file.getViewers().length === 0
&& file.getSharingAccess() === DriveApp.Access.PRIVATE;
}
function appendRow(editorEmails, file, sheet) {
const viewerEmails = file.getViewers().map(v => v.getEmail());
data = [
file.getName(),
file.getSharingAccess(),
file.getSharingPermission(),
editorEmails.toString(),
viewerEmails.toString(),
file.getDateCreated(),
file.getSize(),
file.getUrl(),
"https://docs.google.com/uc?export=download&confirm=no_antivirus&id=" + file.getId(),
file.getDescription(),
file.getMimeType(),
];
sheet.appendRow(data);
}
@gjkisa
Copy link

gjkisa commented Dec 8, 2020

This is the correct recursive approach imo.

You could also call const folder = DriveApp.getRootFolder(); to scan the entire drive at line 5.

One can also add file.setSharing(DriveApp.Access.PRIVATE, DriveApp.Permission.EDIT); at line 69 to just close these loose files immediately after documenting. But, it should be checked whether you own the file or they are not just shared with you by others. It is possible to move shared links (files or folders) under your Google drive.

@80avin
Copy link

80avin commented Jan 22, 2022

// iterative approach

function recursiveListSharedFiles(rootFolder, sheet) {
  const stack = [];
  stack.push(rootFolder);
  while(stack.length !== 0){
    const folder = stack.shift();
    listSharedFiles(folder, sheet);
    const subfolders = folder.getFolders();

    while (subfolders.hasNext()) {
      stack.push(subfolders.next());
    }
  }
}

@ashebensaadon
Copy link

ashebensaadon commented May 8, 2022

Thanks. I'd add in line 43 another line to allow filtering by domain:

function filterInternalEditors(file) {
  const internalEmails = [
    "@gmail.com",
    "fullemail@gmail.com"
  ];

  const editorEmails = file.getEditors().map(e => e.getEmail());

  return editorEmails.filter(editorEmail =>
      !internalEmails.includes(editorEmail) &&
      !internalEmails.includes(editorEmail.slice(editorEmail.indexOf('@')))); //Line added
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment