Java tutorial
/* * Copyright (c) 2016 http://www.apache.org/licenses/LICENSE-2.0. */ package com.cloudhub.main; import java.io.File; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.util.Arrays; import java.util.List; import org.apache.log4j.LogManager; import org.apache.log4j.Logger; import com.cloudhub.Options; import com.cloudhub.extractor.Extractor; import com.cloudhub.gmail.aws.AWSEmailMessageExtractor; import com.google.api.client.auth.oauth2.Credential; import com.google.api.client.extensions.java6.auth.oauth2.AuthorizationCodeInstalledApp; import com.google.api.client.extensions.jetty.auth.oauth2.LocalServerReceiver; import com.google.api.client.googleapis.auth.oauth2.GoogleAuthorizationCodeFlow; import com.google.api.client.googleapis.auth.oauth2.GoogleClientSecrets; import com.google.api.client.googleapis.javanet.GoogleNetHttpTransport; import com.google.api.client.http.HttpTransport; import com.google.api.client.json.JsonFactory; import com.google.api.client.json.jackson2.JacksonFactory; import com.google.api.client.util.store.FileDataStoreFactory; import com.google.api.services.gmail.Gmail; import com.google.api.services.gmail.GmailScopes; /** * <p>Entry point into the second application.</p> * * @author sah2ed * @version 1.0 */ public class Main02 { /** * Handles our logging needs. */ private static final Logger log = LogManager.getLogger(Main02.class); /** Application name. */ private static final String APPLICATION_NAME = "Gmail API Access"; /** Directory to store user credentials for this application. */ public static final File DATA_STORE_DIR = new File(System.getProperty("user.home"), Options.GMAIL_DATA_FOLDER); /** Global instance of the {@link FileDataStoreFactory}. */ private static FileDataStoreFactory DATA_STORE_FACTORY; /** Global instance of the JSON factory. */ private static final JsonFactory JSON_FACTORY = JacksonFactory.getDefaultInstance(); /** Global instance of the HTTP transport. */ private static HttpTransport HTTP_TRANSPORT; /** Global instance of the scopes required by this project. */ private static final List<String> SCOPES = Arrays.asList(GmailScopes.GMAIL_READONLY); static { try { HTTP_TRANSPORT = GoogleNetHttpTransport.newTrustedTransport(); DATA_STORE_FACTORY = new FileDataStoreFactory(DATA_STORE_DIR); } catch (Throwable t) { t.printStackTrace(); System.exit(1); } } /** * Creates an authorized Credential object. * @return an authorized Credential object. * @throws IOException */ public static Credential authorize() throws IOException { // Load client secrets. InputStream in = Main02.class.getResourceAsStream("/client_secret.json"); GoogleClientSecrets clientSecrets = GoogleClientSecrets.load(JSON_FACTORY, new InputStreamReader(in)); // Build flow and trigger user authorization request. GoogleAuthorizationCodeFlow flow = new GoogleAuthorizationCodeFlow.Builder(HTTP_TRANSPORT, JSON_FACTORY, clientSecrets, SCOPES).setDataStoreFactory(DATA_STORE_FACTORY).setAccessType("offline").build(); Credential credential = new AuthorizationCodeInstalledApp(flow, new LocalServerReceiver()) .authorize("user"); System.out.println("Credentials saved to " + DATA_STORE_DIR.getAbsolutePath()); return credential; } /** * Build and return an authorized Gmail client service. * @return an authorized Gmail client service * @throws IOException */ public static Gmail getGmailService() throws IOException { Credential credential = authorize(); return new Gmail.Builder(HTTP_TRANSPORT, JSON_FACTORY, credential).setApplicationName(APPLICATION_NAME) .build(); } /** * Entry point to the main application. * * @param args - command line arguments. * @throws IOException - if any I/O error occurs. */ public static void main(String[] args) throws IOException { // Build a new authorized API client service. Gmail service = getGmailService(); String user = Options.GMAIL_USER; log.info("Getting billing info (actual) for \"" + Options.TIME_PERIOD + "\" billing period from mailbox: " + user); Extractor extractor = new AWSEmailMessageExtractor(service, user); log.info("The total cost (actual) for the \"" + Options.TIME_PERIOD + "\" billing period is " + extractor.getTotalCost()); } }