Search in sources :

Example 6 with Message

use of com.android.voicemail.impl.mail.Message in project android_packages_apps_Dialer by LineageOS.

the class ImapFolder method fetchInternal.

public void fetchInternal(Message[] messages, FetchProfile fp, MessageRetrievalListener listener) throws MessagingException {
    if (messages.length == 0) {
        return;
    }
    checkOpen();
    ArrayMap<String, Message> messageMap = new ArrayMap<String, Message>();
    for (Message m : messages) {
        messageMap.put(m.getUid(), m);
    }
    /*
     * Figure out what command we are going to run:
     * FLAGS     - UID FETCH (FLAGS)
     * ENVELOPE  - UID FETCH (INTERNALDATE UID RFC822.SIZE FLAGS BODY.PEEK[
     *                            HEADER.FIELDS (date subject from content-type to cc)])
     * STRUCTURE - UID FETCH (BODYSTRUCTURE)
     * BODY_SANE - UID FETCH (BODY.PEEK[]<0.N>) where N = max bytes returned
     * BODY      - UID FETCH (BODY.PEEK[])
     * Part      - UID FETCH (BODY.PEEK[ID]) where ID = mime part ID
     */
    final LinkedHashSet<String> fetchFields = new LinkedHashSet<String>();
    fetchFields.add(ImapConstants.UID);
    if (fp.contains(FetchProfile.Item.FLAGS)) {
        fetchFields.add(ImapConstants.FLAGS);
    }
    if (fp.contains(FetchProfile.Item.ENVELOPE)) {
        fetchFields.add(ImapConstants.INTERNALDATE);
        fetchFields.add(ImapConstants.RFC822_SIZE);
        fetchFields.add(ImapConstants.FETCH_FIELD_HEADERS);
    }
    if (fp.contains(FetchProfile.Item.STRUCTURE)) {
        fetchFields.add(ImapConstants.BODYSTRUCTURE);
    }
    if (fp.contains(FetchProfile.Item.BODY_SANE)) {
        fetchFields.add(ImapConstants.FETCH_FIELD_BODY_PEEK_SANE);
    }
    if (fp.contains(FetchProfile.Item.BODY)) {
        fetchFields.add(ImapConstants.FETCH_FIELD_BODY_PEEK);
    }
    // TODO Why are we only fetching the first part given?
    final Part fetchPart = fp.getFirstPart();
    if (fetchPart != null) {
        final String[] partIds = fetchPart.getHeader(MimeHeader.HEADER_ANDROID_ATTACHMENT_STORE_DATA);
        // the first id if there are more than one?
        if (partIds != null) {
            fetchFields.add(ImapConstants.FETCH_FIELD_BODY_PEEK_BARE + "[" + partIds[0] + "]");
        }
    }
    try {
        mConnection.sendCommand(String.format(Locale.US, ImapConstants.UID_FETCH + " %s (%s)", ImapStore.joinMessageUids(messages), Utility.combine(fetchFields.toArray(new String[fetchFields.size()]), ' ')), false);
        ImapResponse response;
        do {
            response = null;
            try {
                response = mConnection.readResponse();
                if (!response.isDataResponse(1, ImapConstants.FETCH)) {
                    // Ignore
                    continue;
                }
                final ImapList fetchList = response.getListOrEmpty(2);
                final String uid = fetchList.getKeyedStringOrEmpty(ImapConstants.UID).getString();
                if (TextUtils.isEmpty(uid))
                    continue;
                ImapMessage message = (ImapMessage) messageMap.get(uid);
                if (message == null)
                    continue;
                if (fp.contains(FetchProfile.Item.FLAGS)) {
                    final ImapList flags = fetchList.getKeyedListOrEmpty(ImapConstants.FLAGS);
                    for (int i = 0, count = flags.size(); i < count; i++) {
                        final ImapString flag = flags.getStringOrEmpty(i);
                        if (flag.is(ImapConstants.FLAG_DELETED)) {
                            message.setFlagInternal(Flag.DELETED, true);
                        } else if (flag.is(ImapConstants.FLAG_ANSWERED)) {
                            message.setFlagInternal(Flag.ANSWERED, true);
                        } else if (flag.is(ImapConstants.FLAG_SEEN)) {
                            message.setFlagInternal(Flag.SEEN, true);
                        } else if (flag.is(ImapConstants.FLAG_FLAGGED)) {
                            message.setFlagInternal(Flag.FLAGGED, true);
                        }
                    }
                }
                if (fp.contains(FetchProfile.Item.ENVELOPE)) {
                    final Date internalDate = fetchList.getKeyedStringOrEmpty(ImapConstants.INTERNALDATE).getDateOrNull();
                    final int size = fetchList.getKeyedStringOrEmpty(ImapConstants.RFC822_SIZE).getNumberOrZero();
                    final String header = fetchList.getKeyedStringOrEmpty(ImapConstants.BODY_BRACKET_HEADER, true).getString();
                    message.setInternalDate(internalDate);
                    message.setSize(size);
                    try {
                        message.parse(Utility.streamFromAsciiString(header));
                    } catch (Exception e) {
                        VvmLog.e(TAG, "Error parsing header %s", e);
                    }
                }
                if (fp.contains(FetchProfile.Item.STRUCTURE)) {
                    ImapList bs = fetchList.getKeyedListOrEmpty(ImapConstants.BODYSTRUCTURE);
                    if (!bs.isEmpty()) {
                        try {
                            parseBodyStructure(bs, message, ImapConstants.TEXT);
                        } catch (MessagingException e) {
                            VvmLog.v(TAG, "Error handling message", e);
                            message.setBody(null);
                        }
                    }
                }
                if (fp.contains(FetchProfile.Item.BODY) || fp.contains(FetchProfile.Item.BODY_SANE)) {
                    // Body is keyed by "BODY[]...".
                    // Previously used "BODY[..." but this can be confused with "BODY[HEADER..."
                    // TODO Should we accept "RFC822" as well??
                    ImapString body = fetchList.getKeyedStringOrEmpty("BODY[]", true);
                    InputStream bodyStream = body.getAsStream();
                    try {
                        message.parse(bodyStream);
                    } catch (Exception e) {
                        VvmLog.e(TAG, "Error parsing body %s", e);
                    }
                }
                if (fetchPart != null) {
                    InputStream bodyStream = fetchList.getKeyedStringOrEmpty("BODY[", true).getAsStream();
                    String[] encodings = fetchPart.getHeader(MimeHeader.HEADER_CONTENT_TRANSFER_ENCODING);
                    String contentTransferEncoding = null;
                    if (encodings != null && encodings.length > 0) {
                        contentTransferEncoding = encodings[0];
                    } else {
                        // According to http://tools.ietf.org/html/rfc2045#section-6.1
                        // "7bit" is the default.
                        contentTransferEncoding = "7bit";
                    }
                    try {
                        // TODO Don't create 2 temp files.
                        // decodeBody creates BinaryTempFileBody, but we could avoid this
                        // if we implement ImapStringBody.
                        // (We'll need to share a temp file.  Protect it with a ref-count.)
                        message.setBody(decodeBody(mStore.getContext(), bodyStream, contentTransferEncoding, fetchPart.getSize(), listener));
                    } catch (Exception e) {
                        // TODO: Figure out what kinds of exceptions might actually be thrown
                        // from here. This blanket catch-all is because we're not sure what to
                        // do if we don't have a contentTransferEncoding, and we don't have
                        // time to figure out what exceptions might be thrown.
                        VvmLog.e(TAG, "Error fetching body %s", e);
                    }
                }
                if (listener != null) {
                    listener.messageRetrieved(message);
                }
            } finally {
                destroyResponses();
            }
        } while (!response.isTagged());
    } catch (IOException ioe) {
        mStore.getImapHelper().handleEvent(OmtpEvents.DATA_GENERIC_IMAP_IOE);
        throw ioExceptionHandler(mConnection, ioe);
    }
}
Also used : LinkedHashSet(java.util.LinkedHashSet) ImapList(com.android.voicemail.impl.mail.store.imap.ImapList) Message(com.android.voicemail.impl.mail.Message) ImapMessage(com.android.voicemail.impl.mail.store.ImapStore.ImapMessage) ImapMessage(com.android.voicemail.impl.mail.store.ImapStore.ImapMessage) MessagingException(com.android.voicemail.impl.mail.MessagingException) InputStream(java.io.InputStream) ArrayMap(android.util.ArrayMap) ImapResponse(com.android.voicemail.impl.mail.store.imap.ImapResponse) ImapString(com.android.voicemail.impl.mail.store.imap.ImapString) IOException(java.io.IOException) Date(java.util.Date) AuthenticationFailedException(com.android.voicemail.impl.mail.AuthenticationFailedException) IOException(java.io.IOException) ImapException(com.android.voicemail.impl.mail.store.ImapStore.ImapException) Base64DataException(android.util.Base64DataException) MessagingException(com.android.voicemail.impl.mail.MessagingException) Part(com.android.voicemail.impl.mail.Part) MimeBodyPart(com.android.voicemail.impl.mail.internet.MimeBodyPart) ImapString(com.android.voicemail.impl.mail.store.imap.ImapString)

Example 7 with Message

use of com.android.voicemail.impl.mail.Message in project android_packages_apps_Dialer by LineageOS.

the class ImapFolder method getMessagesInternal.

public Message[] getMessagesInternal(String[] uids) {
    final ArrayList<Message> messages = new ArrayList<Message>(uids.length);
    for (int i = 0; i < uids.length; i++) {
        final String uid = uids[i];
        final ImapMessage message = new ImapMessage(uid, this);
        messages.add(message);
    }
    return messages.toArray(Message.EMPTY_ARRAY);
}
Also used : Message(com.android.voicemail.impl.mail.Message) ImapMessage(com.android.voicemail.impl.mail.store.ImapStore.ImapMessage) ImapMessage(com.android.voicemail.impl.mail.store.ImapStore.ImapMessage) ArrayList(java.util.ArrayList) ImapString(com.android.voicemail.impl.mail.store.imap.ImapString)

Example 8 with Message

use of com.android.voicemail.impl.mail.Message in project android_packages_apps_Dialer by LineageOS.

the class ImapHelper method getVoicemailFromMessageStructure.

/**
 * Extract voicemail details from the message structure. Also fetch transcription if a
 * transcription exists.
 */
private Voicemail getVoicemailFromMessageStructure(MessageStructureWrapper messageStructureWrapper) throws MessagingException {
    Message messageDetails = messageStructureWrapper.messageStructure;
    TranscriptionFetchedListener listener = new TranscriptionFetchedListener();
    if (messageStructureWrapper.transcriptionBodyPart != null) {
        FetchProfile fetchProfile = new FetchProfile();
        fetchProfile.add(messageStructureWrapper.transcriptionBodyPart);
        mFolder.fetch(new Message[] { messageDetails }, fetchProfile, listener);
    }
    // Found an audio attachment, this is a valid voicemail.
    long time = messageDetails.getSentDate().getTime();
    String number = getNumber(messageDetails.getFrom());
    boolean isRead = Arrays.asList(messageDetails.getFlags()).contains(Flag.SEEN);
    Long duration = messageDetails.getDuration();
    Voicemail.Builder builder = Voicemail.createForInsertion(time, number).setPhoneAccount(mPhoneAccount).setSourcePackage(mContext.getPackageName()).setSourceData(messageDetails.getUid()).setIsRead(isRead).setTranscription(listener.getVoicemailTranscription());
    if (duration != null) {
        builder.setDuration(duration);
    }
    return builder.build();
}
Also used : FetchProfile(com.android.voicemail.impl.mail.FetchProfile) Message(com.android.voicemail.impl.mail.Message) MimeMessage(com.android.voicemail.impl.mail.internet.MimeMessage) Voicemail(com.android.voicemail.impl.Voicemail)

Example 9 with Message

use of com.android.voicemail.impl.mail.Message in project android_packages_apps_Dialer by LineageOS.

the class ImapHelper method fetchTranscription.

public boolean fetchTranscription(TranscriptionFetchedCallback callback, String uid) {
    try {
        mFolder = openImapFolder(ImapFolder.MODE_READ_WRITE);
        if (mFolder == null) {
            // This means we were unable to successfully open the folder.
            return false;
        }
        Message message = mFolder.getMessage(uid);
        if (message == null) {
            return false;
        }
        MessageStructureWrapper messageStructureWrapper = fetchMessageStructure(message);
        if (messageStructureWrapper != null) {
            TranscriptionFetchedListener listener = new TranscriptionFetchedListener();
            if (messageStructureWrapper.transcriptionBodyPart != null) {
                FetchProfile fetchProfile = new FetchProfile();
                fetchProfile.add(messageStructureWrapper.transcriptionBodyPart);
                // This method is called synchronously so the transcription will be populated
                // in the listener once the next method is called.
                mFolder.fetch(new Message[] { message }, fetchProfile, listener);
                callback.setVoicemailTranscription(listener.getVoicemailTranscription());
            }
        }
        return true;
    } catch (MessagingException e) {
        LogUtils.e(TAG, e, "Messaging Exception");
        return false;
    } finally {
        closeImapFolder();
    }
}
Also used : FetchProfile(com.android.voicemail.impl.mail.FetchProfile) Message(com.android.voicemail.impl.mail.Message) MimeMessage(com.android.voicemail.impl.mail.internet.MimeMessage) MessagingException(com.android.voicemail.impl.mail.MessagingException)

Aggregations

Message (com.android.voicemail.impl.mail.Message)9 MimeMessage (com.android.voicemail.impl.mail.internet.MimeMessage)6 MessagingException (com.android.voicemail.impl.mail.MessagingException)4 Voicemail (com.android.voicemail.impl.Voicemail)2 FetchProfile (com.android.voicemail.impl.mail.FetchProfile)2 ImapMessage (com.android.voicemail.impl.mail.store.ImapStore.ImapMessage)2 ImapString (com.android.voicemail.impl.mail.store.imap.ImapString)2 ArrayList (java.util.ArrayList)2 ArrayMap (android.util.ArrayMap)1 Base64DataException (android.util.Base64DataException)1 AuthenticationFailedException (com.android.voicemail.impl.mail.AuthenticationFailedException)1 BodyPart (com.android.voicemail.impl.mail.BodyPart)1 Multipart (com.android.voicemail.impl.mail.Multipart)1 Part (com.android.voicemail.impl.mail.Part)1 MimeBodyPart (com.android.voicemail.impl.mail.internet.MimeBodyPart)1 ImapException (com.android.voicemail.impl.mail.store.ImapStore.ImapException)1 ImapList (com.android.voicemail.impl.mail.store.imap.ImapList)1 ImapResponse (com.android.voicemail.impl.mail.store.imap.ImapResponse)1 IOException (java.io.IOException)1 InputStream (java.io.InputStream)1