Module trigger.google.drive
ballerinax/trigger.google.drive Ballerina library
Overview
The Ballerina listener for Google Drive provides the capability to listen to drive events using the Google Drive API V3.
The trigger can listen to events triggered when a drive event is created, updated or deleted edited with the following trigger methods:
onFileCreate
onFolderCreate
onFileUpdate
onFileUpdate
onFolderUpdate
onDelete
onFileTrash
onFolderTrash
Prerequisites
Before using this connector in your Ballerina application, complete the following:
-
Create Google account
-
Generate OAuth credentials to be used with the Google Drive API V3
- Go to Google API Console
- Create a new project if needed
- Navigate to
APIs & Services > Enabled APIs and Services
. - Click on
+ENABLE APIS AND SERVICES
- Search for
Google Drive API
and select it. - In the Google Drive API page click on
Enable This API
- Go back to
APIs & Services
Page and navigate toOAuth Consent Screen
. - Create a new app providing a name and relevant details.
- Add required scopes accordingly
- After completing the OAuth Consent, go back to
APIs & Services
Page and navigate toCredentials
. - Click on
+ Create Credentials
and click on OAuth Client ID. - From the create credentials form select
Web Application
as application type. - Add https://developers.google.com/oauthplayground to
Authorized redirect URIs
, if you hope to use Google OAuth playground to generate access and refresh tokens. - Click on create and record Client ID and Client Secret you receive.
- In a separate browser window or tab, visit OAuth 2.0 playground.
- Click the gear icon in the upper right corner and check the box labeled Use your own OAuth credentials (if it isn't already checked) and enter the OAuth2 client ID and OAuth2 client secret you obtained in step 14.
- Select required Google Drive scopes, and then click Authorize APIs.
- When you receive your authorization code, click Exchange authorization code for tokens to obtain the refresh token and access token.
Quickstart
To use the Google Drive listener in your Ballerina application, update the .bal file as follows:
Step 1: Import listener
Import the ballerinax/trigger.google.drive module into the Ballerina project.
import ballerinax/trigger.google.drive;
Step 2: Create a new listener instance
Create a drive:ListenerConfiguration
with the details obtained in the prerequisite steps, and initialize the listener with it.
listener drive:Listener driveListener = new(listenerConfig = { auth: { refreshUrl: "https://oauth2.googleapis.com/token", // For google services you can use this refresh URL refreshToken: "", // Obtained in prerequisite step 18 clientId: "", // Obtained in prerequisite step 14 clientSecret: "", // Obtained in prerequisite step 14 } });
Step 3: Invoke listener triggers
-
Now you can use the triggers available within the listener.
Following is an example on how to listen to create events and update events of a drive using the listener. Add the trigger implementation logic under each section based on the event type you want to listen to using the Google drive Listener.
Listen to append events and update events
remote function onDelete(drive:Change changeInfo) returns error? { return; } remote function onFileCreate(drive:Change changeInfo) returns error? { return; } remote function onFileTrash(drive:Change changeInfo) returns error? { return; } remote function onFileUpdate(drive:Change changeInfo) returns error? { return; } remote function onFolderCreate(drive:Change changeInfo) returns error? { return; } remote function onFolderTrash(drive:Change changeInfo) returns error? { return; } remote function onFolderUpdate(drive:Change changeInfo) returns error? { return; }
} ```
**!!! NOTE:** The Google Drive Trigger can listen to events triggered when a drive is edited such as when a new file and folder is created, trashed ,updated or deleted with the following trigger methods: `onFileCreate`,`onFileTrash`, `onFileUpdate`,`onFolderCreate`,`onFolderTrash`,`onFolderUpdate`,`onDelete`. We can get more information about the event using the payload parameter in each of the remote function.
2. Use bal run
command to compile and run the Ballerina program.