Created
January 25, 2016 09:30
-
-
Save ydarias/72e3761cabcdb76c170e to your computer and use it in GitHub Desktop.
Java class to get mails from a Gmail account using JavaMail API (the MailWrapper is an internal Runnics class to make it easy the process)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.runnics.mailing; | |
import com.funius.core.PropertyLoader; | |
import org.joda.time.DateTime; | |
import javax.mail.*; | |
import javax.mail.search.AndTerm; | |
import javax.mail.search.ComparisonTerm; | |
import javax.mail.search.ReceivedDateTerm; | |
import javax.mail.search.SearchTerm; | |
import java.util.Arrays; | |
import java.util.Collections; | |
import java.util.List; | |
import java.util.Properties; | |
import java.util.stream.Collectors; | |
public class GmailClient { | |
private Store store; | |
public GmailClient() { | |
Properties gmailProperties = new PropertyLoader().loadProperties("gmail.properties"); | |
String user = gmailProperties.getProperty("gmail.user"); | |
String password = gmailProperties.getProperty("gmail.password"); | |
Properties properties = System.getProperties(); | |
properties.setProperty("mail.store.protocol", "imaps"); | |
properties.setProperty("mail.imap.socketFactory.class", "javax.net.ssl.SSLSocketFactory"); | |
properties.setProperty("mail.imap.socketFactory.fallback", "false"); | |
Session session = Session.getDefaultInstance(properties, null); | |
try { | |
store = session.getStore("imaps"); | |
store.connect("imap.gmail.com", user, password); | |
} catch (MessagingException e) { | |
} | |
} | |
public List<MailWrapper> getLastHoursMails(int hours) throws GmailClientException { | |
return getLastHoursMails(hours, "[Gmail]/Todos"); | |
} | |
public List<MailWrapper> getLastHoursMails(int hours, String inboxName) throws GmailClientException { | |
Folder inbox = null; | |
try { | |
inbox = store.getFolder(inboxName); | |
inbox.open(Folder.READ_ONLY); | |
Message[] messages = inbox.search(lastHoursSearchTerm(hours)); | |
return Arrays.stream(messages) | |
.map(MailWrapper::instance) | |
.collect(Collectors.toList()); | |
} catch (MessagingException e) { | |
throw new GmailClientException(e); | |
} finally { | |
closeFolder(inbox); | |
} | |
} | |
public List<MailWrapper> getMailsSince(DateTime fromDate, String inboxName) throws GmailClientException { | |
Folder inbox = null; | |
try { | |
inbox = store.getFolder(inboxName); | |
inbox.open(Folder.READ_ONLY); | |
Message[] messages = inbox.search(sinceSearchTerm(fromDate)); | |
return Arrays.stream(messages) | |
.map(MailWrapper::instance) | |
.collect(Collectors.toList()); | |
} catch (MessagingException e) { | |
throw new GmailClientException(e); | |
} finally { | |
closeFolder(inbox); | |
} | |
} | |
private SearchTerm sinceSearchTerm(DateTime fromDate) { | |
DateTime rightNow = new DateTime(); | |
SearchTerm olderThan = new ReceivedDateTerm(ComparisonTerm.LE, rightNow.toDate()); | |
SearchTerm newerThan = new ReceivedDateTerm(ComparisonTerm.GE, fromDate.toDate()); | |
return new AndTerm(newerThan, olderThan); | |
} | |
private SearchTerm lastHoursSearchTerm(int hours) { | |
DateTime rightNow = new DateTime(); | |
DateTime past = rightNow.minusHours(hours); | |
SearchTerm olderThan = new ReceivedDateTerm(ComparisonTerm.LE, rightNow.toDate()); | |
SearchTerm newerThan = new ReceivedDateTerm(ComparisonTerm.GE, past.toDate()); | |
return new AndTerm(newerThan, olderThan); | |
} | |
private void closeFolder(Folder inbox) { | |
try { | |
if (inbox != null) | |
inbox.close(false); | |
} catch (MessagingException e) { | |
e.printStackTrace(); | |
} | |
} | |
} |
Hello @Nicky5
That was an internal library from the company I worked for at the moment we created the Gmail client. It is nothing more than the standard property loader with some custom functions to load a file during the booting process. My recommendation is to replace that part of the code for environment variables that you can configure at runtime.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
where can i find the
com.funius.core.PropertyLoader;