You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

gmail-api-parse-message-ts

Package Overview
Dependencies
Maintainers
1
Versions
33
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gmail-api-parse-message-ts

Parses Gmail API's GET method to iGmail object. Typescript

2.2.7
Source
npm
Version published
Weekly downloads
5K
-16.53%
Maintainers
1
Weekly downloads
 
Created
Source

npm

gmail-api-parse-message typescript

Parses Gmail API's GET message method, and returns a IGmail object

forked from https://github.com/EmilTholin/gmail-api-parse-message v2.1

To install:

npm install --save gmail-api-parse-message-ts --latest

or add to package.json  
"dependencies": {
     "gmail-api-parse-message-ts": "~2.2.5"
}
 

Example usage

import { ParseGmailApi } from 'gmail-api-parse-message-ts';
import { iGmail } from 'gmail-api-parse-message-ts/dist/iface/iGmail';

export class ParseEmailService {
    /**  fetch single email from Gmail API  */
    async getGmail(id: string): Promise<gapi.client.gmail.Message> {
      const email: gapi.client.gmail.Message = await gapi.client.gmail.users.messages.get({
        userId: 'me',
        id: id,  // format: 'metadata'
        format: 'full'
      });
      return email;
    }
 
    /** Parses Email */
    async parseEmail() {      
          const parse = new ParseGmailApi();
          const gmailResponse = await getEmail('[id of your gmail message]');
          const iGmail = parse.parseMessage(gmailResponse);
          console.log(iGmail);  // see iGmail below
    }
 }

running parseEmail() which returns an iGmail object

interface iGmail {
        id: string;
        threadId: string;
        labelIds: string[];
        snippet: string;
        historyId: string;
        internalDate: number;
        textHtml: string;
        textPlain: string;
        attachments: IAttachment[];
        inline?: IAttachment[];
        headers: Map<string, string>;
    }

interface IAttachment {
    filename: string;
    mimeType: string;
    size: number;
    attachmentId: string;
    headers?: any;
    /** data must be URLsafe base64 encoded */
    data?: string;
    dataEncoding?: string;
}

API

/**
 * Takes a response from the Gmail API's GET message method and extracts all the relevant data.
 * @param  {object} gmail api response - The response from the Gmail API parsed to a JavaScript object.
 * @return {iGmail object}  
 */
 parseMessage(response);

Licence

MIT

Keywords

gmail

FAQs

Package last updated on 10 Sep 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts