Giter Club home page Giter Club logo

onedriveapp's Introduction

OnedriveApp

MIT License

This is a library to use Microsoft Graph API with Google Apps Script. OneDrive and Email can be managed using this library.

Feature

This library can carry out following functions using OneDrive APIs.

  1. Retrieve access token and refresh token using client_id and client_secret
  2. Retrieve file list on OneDrive.
  3. Delete files and folders on OneDrive.
  4. Create folder on OneDrive.
  5. Download files from OneDrive to Google Drive.
  6. Upload files from Google Drive to OneDrive.

By updating at October 5, 2021, OnedriveApp can get and send Emails using Microsoft Graph API.

  1. Get access token
  1. Get Email message list
  2. Get Email messages
  3. Send Email messages
  4. Reply Email messages
  5. Forward Email messages
  6. Get Email folders
  7. Delete Email messages

Demo

In this demonstration, it creates a folder with the name of "SampleFolder" on OneDrive, and then a spreadsheet file is uploaded to the created folder. The spreadsheet is converted to excel file and uploaded. The scripts which was used here is as follows.

function createFolder() {
  OnedriveApp.init(PropertiesService.getScriptProperties()).creatFolder(
    "SampleFolder"
  );
}

function uploadFile() {
  var id = DriveApp.getFilesByName("samplespreadsheet").next().getId();
  OnedriveApp.init(PropertiesService.getScriptProperties()).uploadFile(
    id,
    "/SampleFolder/"
  );
}

How to install

  • Open Script Editor. And please operate follows by click.
  • -> Resource
  • -> Library
  • -> Input Script ID to text box. Script ID is 1wfoCE1mCQpGQZZ9CrWFY_NvA9iRxkNbxN_qTGSBkRkmn8I2eguLVwfZs.
  • -> Add library
  • -> Please select latest version
  • -> Developer mode ON (If you don't want to use latest version, please select others.)
  • -> Identifier is "OnedriveApp". This is set under the default.

If you want to read about Libraries, please check this..

  • The method of downloadFile() and uploadFile() use Drive API v3. But, don't worry. Recently, I confirmed that users can use Drive API by only the authorization for Google Services. Users are not necessary to enable Drive API on Google API console. By the authorization for Google Services, Drive API is enabled automatically.

Retrieve access token and refresh token for using OneDrive

Before you use this library, at first, please carry out as follows.

1. OneDrive side

  1. Log in to Microsoft Azure portal.
  2. Search "Azure Active Directory" at the top of text input box. And open "Azure Active Directory".
  3. Click "App registrations" at the left side bar.
    • In my environment, when I used Chrome as the browser, no response occurred. So in that case, I used Microsoft Edge.
  4. Click "New registration"
    1. app name: "sample app name"
    2. Supported account types: "Accounts in any organizational directory (Any Azure AD directory - Multitenant) and personal Microsoft accounts (e.g. Skype, Xbox)"
    3. Redirect URI (optional): Web
      • URL: here, please do the blank.
    4. Click "Register"
  5. Copy "Application (client) ID".
  6. Click "Certificates & secrets" at the left side bar.
    1. Click "New client secrets".
    2. After input the description and select "expire", click "Add" button.
    3. Copy the created secret value.

By above operation, the preparation is done.

Ref

2. Google side

Please copy and paste following script (doGet(e)) on the script editor installed the library, and import your "Application (client) ID" and the created secret value to client_id and client_secret in the script.

function doGet(e) {
  var prop = PropertiesService.getScriptProperties();
  OnedriveApp.setProp(
    prop,
    "### client id ###", // <--- client_id
    "### client secret ###" // <--- client_secret
  );
  return OnedriveApp.getAccesstoken(prop, e);
}

Then, please do the following flow at the script editor.

  • On the Script Editor
    • File
    • -> Manage Versions
    • -> Save New Version
    • Publish
    • -> Deploy as Web App
    • -> At Execute the app as, select "your account"
    • -> At Who has access to the app, select "Only myself"
    • -> Click "Deploy"
    • -> Click "latest code". At First, Please Do This!
      • By this click, it launches the authorization process. The refresh token was automatically saved.

3. OneDrive side

When you click "latest code", new tab on your browser is launched and you can see Please push this button after set redirect_uri tohttps://script.google.com/macros/s/#####/usercallback` at your application.`.

  • Please back to Microsoft Azure portal and open "Azure Active Directory".
    1. Click app you created.
    2. Click "Redirect URIs". You can see this at the right side of "Display name".
    3. Please paste https://script.google.com/macros/s/#####/usercallback to "Redirect URIs" with "Web" of the type.
    4. Click "Save" button. You can see this at the top.

4. Google side

  1. Back to the page with Get access token button.
  2. Click the button.
  3. Authorize.
  4. You can see Retrieving access token and refresh token was succeeded!. If that is not displayed, please confirm your client_id and client_secret again.
  5. Access token and refresh token are shown. And they are automatically saved to your PropertiesService. You can use OnedriveApp from now.

This process can be seen at following demonstration.

Please run this process only one time on the script editor installed this library. By only one time running this, you can use all of this library. After run this process, you can undeploy web apps.

If your OneDrive Application was modified, please run this again.

Or, if you can retrieve refresh token by other script, please check here.

Usage

Also, you can see "Known issues with Microsoft Graph".

Drive of Microsoft Graph API

These methods manage OneDrive.

1. Retrieve file list on OneDrive

var prop = PropertiesService.getScriptProperties();
var odapp = OnedriveApp.init(prop);
var res = odapp.getFilelist("### folder name ###");

Filenames and file IDs are returned.

If "### folder name ###" is not inputted (var res = odapp.getFilelist()), files and folders on the root directory are retrieved.

2. Delete files and folders on OneDrive.

When a file is deleted,

var prop = PropertiesService.getScriptProperties();
var odapp = OnedriveApp.init(prop);
var res = odapp.deleteItemByName("### filename ###");

When a folder is deleted,

var prop = PropertiesService.getScriptProperties();
var odapp = OnedriveApp.init(prop);
var res = odapp.deleteItemByName("/### folder name ###/");

In the case of folder, please enclose it in /.

If you want to delete files and folders using item ID, please use as follows.

var prop = PropertiesService.getScriptProperties();
var odapp = OnedriveApp.init(prop);
var res = odapp.deleteItemById("### item ID ###");

Note :

If you delete a folder, the files in the folder are also deleted. Please be careful about this.

3. Create folder on OneDrive.

var prop = PropertiesService.getScriptProperties();
var odapp = OnedriveApp.init(prop);
var res = odapp.creatFolder("### foldername ###", "/### path ###/");

Created folder name and ID are returned. If you want to create a folder of newfolder in the folder of /root/sample1/sample2/, please use as follows. If there is no folder sample2 on your OneDrive, following script creates sample2 and newfolder, simultaneously.

var prop = PropertiesService.getScriptProperties();
var odapp = OnedriveApp.init(prop);
var res = odapp.creatFolder("newfolder", "/sample1/sample2/");

4. Download files from OneDrive to Google Drive.

var prop = PropertiesService.getScriptProperties();
var odapp = OnedriveApp.init(prop);
var res = odapp.downloadFile("### file with path ###", convert from Microsoft to Google (true or false), "### Folder ID on Google Drive ###");

Downloaded file name and ID on Google Drive are returned. When a file is downloaded from OneDrive to Google Drive, if the file is Microsoft Office Docs, you can select whether the file is converted to Google Docs. If you want to convert, you can use following sample.

var prop = PropertiesService.getScriptProperties();
var odapp = OnedriveApp.init(prop);
var res = odapp.downloadFile(
  "/SampleFolder/sample.xlsx",
  true,
  "### Folder ID on Google Drive ###"
);

In this case, Excel file is converted to Google Spreadsheet, and imported to the folder ID. If you don't want to convert, you can use following sample. If the folder ID is not set, the file is created to root directory on your Google Drive.

var prop = PropertiesService.getScriptProperties();
var odapp = OnedriveApp.init(prop);
var res = odapp.downloadFile(
  "/SampleFolder/sample.xlsx",
  false,
  "### Folder ID on Google Drive ###"
);

In this case, only an Excel file is downloaded to Google Drive.

If you use following simple script, the file sample.xlsx is just created to root directory.

var prop = PropertiesService.getScriptProperties();
var odapp = OnedriveApp.init(prop);
var res = odapp.downloadFile("/SampleFolder/sample.xlsx");

Note :

From my previous experiences, I think that the maximum response size using URL Fetch is about 10 MB. And furthermore, there are the limitations for the download size in 1 day (URL Fetch data received 100MB / day). So when you use this download method, please be careful the file size.

5. Upload files from Google Drive to OneDrive.

var fileid = "### file id ###";
var prop = PropertiesService.getScriptProperties();
var odapp = OnedriveApp.init(prop);
var res = odapp.uploadFile(fileid, "/### folder name on OneDrive ###/");

Uploaded filename and ID on OneDrive are returned. In the case of folder, please enclose it in /.

When you want to upload a Spreadsheet on Google Drive to a folder of SampleFolder, the Spreadsheet is converted to Excel file and uploaded to OneDrive. As a sample, when it uploads Spreadsheet to /SampleFolder/ on OneDrive, the script is as follows.

var fileid = "### file id ###";
var prop = PropertiesService.getScriptProperties();
var odapp = OnedriveApp.init(prop);
var res = odapp.uploadFile(fileid, "/SampleFolder/sample.xlsx");

At the following script, a file with the file id is uploaded to the root directory on OneDrive.

var fileid = "### file id ###";
var prop = PropertiesService.getScriptProperties();
var odapp = OnedriveApp.init(prop);
var res = odapp.uploadFile(fileid);

Note :

About this upload, in this library, the resumable upload is used for uploading files. So you can upload files with large size to OneDrive. But the chunk size is 10 MB, because of the limitation of URL Fetch POST size on Google. The file with large size is uploaded by separating by 10 MB. There are no limitations for upload size in one day.

Utilities

1. Get access token

const accessToken = OnedriveApp.init(
  PropertiesService.getScriptProperties()
).getAccessToken();
console.log(accessToken);

The access token is simply returned. When this access token is used, you can also test other methods of Microsoft Graph API.

Email of Microsoft Graph API

These methods manage Email.

1. Get Email message list

const obj = {
  numberOfEmails: 1,
  select: ["createdDateTime", "sender", "subject", "bodyPreview"],
  orderby: "createdDateTime",
  order: "desc",
  folderId: "###",
};

const prop = PropertiesService.getScriptProperties();
const odapp = OnedriveApp.init(prop);
const res = odapp.getEmailList(obj);
console.log(res);

This method retrieves email list of your Microsoft account using Microsoft Graph API.

About the properties of obj, you can see the following explanation.

  • numberOfEmails: Number of output email in the list. If the properties of numberOfEmails and folderId are not used, all email messages are retrieved.
  • select: Properties you want to retrieve for each email of list. When you use ["*"]`, all properties are retrieved. But in this case, the process time is longer. Please be careful this.
  • orderby: When this is used, the list is ordered by the value of orderby.
  • order: desc or asc.
  • folderId: When you use this property, you can retrieve the email list from the specific folder of Email. About the method for retrieving the folder ID, please check "Forward Email messages". When you don't use this property, all emails are retrieved as a list.

Sample script: This is a sample script for retrieving all emails from own emails of Microsoft and put to the Google Spreadsheet.

2. Get Email messages

This method retrieves email messages of your Microsoft account using message IDs with Microsoft Graph API. As an important point of this method, in this method, the multiple emails can be retrieved using the batch request.

const ar = ["messageId1", "messageId2", , ,];

const prop = PropertiesService.getScriptProperties();
const odapp = OnedriveApp.init(prop);
const res = odapp.getEmailMessages(ar);
console.log(res);
  • The argument of getEmailMessages(ar) is an array including the message IDs. You can retrieve the message IDs with the method of getEmailList.

3. Send Email messages

This method sends email messages using Microsoft Graph API with your Microsoft account. As an important point of this method, in this method, the multiple emails can be sent using the batch request.

const obj = [
  {
    to: [{ name: "### name ###", email: "### email address ###" }, , ,],
    subject: "sample subject 1",
    body: "sample text body",
    cc: [{ name: "name1", email: "emailaddress1" }, , ,],
  },
  {
    to: [{ name: "### name ###", email: "### email address ###" }, , ,],
    subject: "sample subject 2",
    htmlBody: "<u><b>sample html body</b></u>",
    attachments: [blob],
    bcc: [{ name: "name1", email: "emailaddress1" }, , ,],
  },
];

const prop = PropertiesService.getScriptProperties();
const odapp = OnedriveApp.init(prop);
const res = odapp.sendEmails(obj);
console.log(res);

About the properties of obj, you can see the following explanation.

to: Email address of recipient. You can set the values as an array. subject: Email subject. body: Text body. htmlBody: HTML body. In this case, as the current specification of Microsoft Graph API, it seems that both the text body and the HTML body cannot be used. So please use one of them. attachments: For example, when you want to use the file on Google Drive, you can use DriveApp.getFileById("### file ID ###").getBlob(). cc: Email addresses to CC. bcc: Email addresses to BCC.

4. Reply Email messages

This method replies email messages using Microsoft Graph API with your Microsoft account. As an important point of this method, in this method, the multiple emails can be replied using the batch request.

const obj = [
  {
    to: [{ name: "### name ###", email: "### email address ###" }],
    body: "Sample replying message",
    messageId: "###",
  },
];

const prop = PropertiesService.getScriptProperties();
const odapp = OnedriveApp.init(prop);
const res = odapp.replyEmails(obj);
console.log(res);

About the properties of obj, you can see the following explanation.

The properties of obj are the same with Send Email messages. But, in this case, please include messageId to reply to the email message.

5. Forward Email messages

This method forwards email messages using Microsoft Graph API with your Microsoft account. As an important point of this method, in this method, the multiple emails can be forwarded using the batch request.

const obj = [
  {
    to: [{ name: "### name ###", email: "### email address ###" }],
    messageId: "###",
  },
];

const prop = PropertiesService.getScriptProperties();
const odapp = OnedriveApp.init(prop);
const res = odapp.forwardEmails(obj);
console.log(res);

About the properties of obj, you can see the following explanation.

The properties of obj are the same with Send Email messages. But, in this case, please include messageId to reply to the email message.

6. Get Email folders

This method retrieves the folders of Email of your Microsoft account.

const prop = PropertiesService.getScriptProperties();
const odapp = OnedriveApp.init(prop);
const res = odapp.getEmailFolders();
console.log(res);

7. Delete Email messages

This method deletes the email messages of your Microsoft account. As an important point of this method, in this method, the multiple emails can be deleted using the batch request.

const ar = ["messageId1", "messageId2", , ,];

const prop = PropertiesService.getScriptProperties();
const odapp = OnedriveApp.init(prop);
const res = odapp.deleteEmails(ar);
console.log(res);

Please set the message IDs you want to delete. You can retrieve the message IDs with the method of getEmailList.

Licence

MIT

Author

Tanaike

If you have any questions and commissions for me, feel free to tell me.

Update History

Performance test

  • November 20, 2022: No errors and no issues occur.
  • July 27, 2023: No errors and no issues occur.
  • March 11, 2024: No errors and no issues occur.

Etc

If you want the sample script for uploading the contents using node.js, please check here.

TOP

onedriveapp's People

Contributors

efueger avatar tanaikech avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

onedriveapp's Issues

Retrieve token ERR: TypeError: Cannot find function setProp in object [object Object].

Hi thanks for the contribution.

I am trying to retrieve token from OneDrive, and in 2 Google side, last step Click "latest code" which is supposed to lauch new tab saying Please push this button after set redirect_uri to 'https://script.google.com/macros/s/#####/usercallback' at your application., it says instead:

TypeError: Cannot find function setProp in object [object Object]. (line 3, file "GetOneDriveToken")

I am using version 4 of your library, and I pasted doGet(e)) as follows:

function doGet(e){
  var prop = PropertiesService.getScriptProperties();
  OnedriveApp.setProp(
    prop,
    "my-app-dummy-id-from-onedrive", // <--- client_id
    "my-app-dummy-secret-from-onedrive" // <--- client_secret
  )
  return OnedriveApp.getAccesstoken(prop, e);
}

May you help me solve this? thanks

Only works with a few mime types

Great job, but I need the ability to transfer any files from gdrive to onedrive. Most are pictures or PDF files. However, the MS converter routine only accepts doc, xls or ppt. As a result I get an error at #245. If I get some time I will evolve the mime convertion logic at #417 to accept additional types. Thanks.

Bug when use downloadFile method

Exception: The parameter ((class) does not match the method signature for DriveApp.createFile.
at OnedriveApp.downloadFile (code: 234: 28)

Can't get initial refresh token

Click "latest code". At First, Please Do This!
By this click, it launches the authorization process. The refresh token was automatically saved.

I can't seem to get the initial refresh token. My refresh_token always empty initially, how to get this value from?
@tanaikech

Can't use Send Mail

I have a question:
After finished Access token and refresh token , step 4 . Do i need to run the doGet Function on Appscript ?
I haven't run doGet Function on Appscript yet and try to run below Function and it logged "undefined" and checked my email but no new mail.
Can u help me. Tks!!
Question

Pb with upload file with certains mime type

Hello,
First of all thank you for sharing your work, this library is great. But I noticed a "bug" when I want to upload files from my google drive that are not "google" files (sheet, document etc..).
For example when I want to upload a jpg file I always get this error "Exception: Unexpected error while getting
the method or property getFileById on object DriveApp
".
I'm a beginner on Apps Script, I don't see how to fix this. Do you have an idea? Thanks

Uploading PDF's created from Google Docs from Google Drive to OneDrive

This is awesome and thank you so much for your work here! When using the uploadFile function for PDF files that were created using Apps Script from Google Docs, the resulting file in OneDrive doesn't have a file type (the .pdf is not maintained). It works well for PDF's that are uploaded to google drive. I'm curious how I would modify convToMicrosoft to handle this case. I may be missing something obvious and really appreciate any help here.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.