| Amit Mahajan | 24c01a2 | 2019-09-20 11:13:05 -0700 | [diff] [blame] | 1 | /* | 
|  | 2 | * Copyright (C) 2019 The Android Open Source Project | 
|  | 3 | * | 
|  | 4 | * Licensed under the Apache License, Version 2.0 (the "License"); | 
|  | 5 | * you may not use this file except in compliance with the License. | 
|  | 6 | * You may obtain a copy of the License at | 
|  | 7 | * | 
|  | 8 | *      http://www.apache.org/licenses/LICENSE-2.0 | 
|  | 9 | * | 
|  | 10 | * Unless required by applicable law or agreed to in writing, software | 
|  | 11 | * distributed under the License is distributed on an "AS IS" BASIS, | 
|  | 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 
|  | 13 | * See the License for the specific language governing permissions and | 
|  | 14 | * limitations under the License. | 
|  | 15 | */ | 
|  | 16 |  | 
|  | 17 | package android.telephony; | 
|  | 18 |  | 
| Sarah Chin | 4affb51 | 2020-01-10 16:09:11 -0800 | [diff] [blame] | 19 | import android.annotation.NonNull; | 
|  | 20 | import android.annotation.Nullable; | 
|  | 21 | import android.annotation.SystemService; | 
| Amit Mahajan | 24c01a2 | 2019-09-20 11:13:05 -0700 | [diff] [blame] | 22 | import android.app.ActivityThread; | 
|  | 23 | import android.app.PendingIntent; | 
| Sarah Chin | 4affb51 | 2020-01-10 16:09:11 -0800 | [diff] [blame] | 24 | import android.content.Context; | 
| Amit Mahajan | 24c01a2 | 2019-09-20 11:13:05 -0700 | [diff] [blame] | 25 | import android.net.Uri; | 
|  | 26 | import android.os.Bundle; | 
|  | 27 | import android.os.RemoteException; | 
|  | 28 | import android.os.ServiceManager; | 
|  | 29 |  | 
|  | 30 | import com.android.internal.telephony.IMms; | 
|  | 31 |  | 
|  | 32 | /** | 
|  | 33 | * Manages MMS operations such as sending multimedia messages. | 
| Sarah Chin | 4affb51 | 2020-01-10 16:09:11 -0800 | [diff] [blame] | 34 | * Get this object by calling Context#getSystemService(Context#MMS_SERVICE). | 
| Sarah Chin | 8ac7ce5 | 2020-03-18 13:57:18 -0700 | [diff] [blame] | 35 | * @hide | 
| Amit Mahajan | 24c01a2 | 2019-09-20 11:13:05 -0700 | [diff] [blame] | 36 | */ | 
| Sarah Chin | 4affb51 | 2020-01-10 16:09:11 -0800 | [diff] [blame] | 37 | @SystemService(Context.MMS_SERVICE) | 
| Sarah Chin | ee13f12 | 2020-01-10 19:23:33 +0000 | [diff] [blame] | 38 | public class MmsManager { | 
| Amit Mahajan | 24c01a2 | 2019-09-20 11:13:05 -0700 | [diff] [blame] | 39 | private static final String TAG = "MmsManager"; | 
| Sarah Chin | 4affb51 | 2020-01-10 16:09:11 -0800 | [diff] [blame] | 40 | private final Context mContext; | 
| Amit Mahajan | 24c01a2 | 2019-09-20 11:13:05 -0700 | [diff] [blame] | 41 |  | 
|  | 42 | /** | 
| Sarah Chin | 4affb51 | 2020-01-10 16:09:11 -0800 | [diff] [blame] | 43 | * @hide | 
| Amit Mahajan | 24c01a2 | 2019-09-20 11:13:05 -0700 | [diff] [blame] | 44 | */ | 
| Sarah Chin | 4affb51 | 2020-01-10 16:09:11 -0800 | [diff] [blame] | 45 | public MmsManager(@NonNull Context context) { | 
|  | 46 | mContext = context; | 
| Amit Mahajan | 24c01a2 | 2019-09-20 11:13:05 -0700 | [diff] [blame] | 47 | } | 
|  | 48 |  | 
|  | 49 | /** | 
|  | 50 | * Send an MMS message | 
|  | 51 | * | 
|  | 52 | * @param subId the subscription id | 
|  | 53 | * @param contentUri the content Uri from which the message pdu will be read | 
|  | 54 | * @param locationUrl the optional location url where message should be sent to | 
|  | 55 | * @param configOverrides the carrier-specific messaging configuration values to override for | 
|  | 56 | *                        sending the message. | 
|  | 57 | * @param sentIntent if not NULL this <code>PendingIntent</code> is broadcast when the message | 
|  | 58 | *                   is successfully sent, or failed | 
| Tom Taylor | 03079ec | 2020-01-24 10:21:50 -0800 | [diff] [blame] | 59 | * @param messageId an id that uniquely identifies the message requested to be sent. | 
|  | 60 | *                  Used for logging and diagnostics purposes. The id may be 0. | 
| Amit Mahajan | 24c01a2 | 2019-09-20 11:13:05 -0700 | [diff] [blame] | 61 | */ | 
| Sarah Chin | 4affb51 | 2020-01-10 16:09:11 -0800 | [diff] [blame] | 62 | public void sendMultimediaMessage(int subId, @NonNull Uri contentUri, | 
|  | 63 | @Nullable String locationUrl, @Nullable Bundle configOverrides, | 
| Tom Taylor | 03079ec | 2020-01-24 10:21:50 -0800 | [diff] [blame] | 64 | @Nullable PendingIntent sentIntent, long messageId) { | 
| Amit Mahajan | 24c01a2 | 2019-09-20 11:13:05 -0700 | [diff] [blame] | 65 | try { | 
|  | 66 | final IMms iMms = IMms.Stub.asInterface(ServiceManager.getService("imms")); | 
|  | 67 | if (iMms == null) { | 
|  | 68 | return; | 
|  | 69 | } | 
|  | 70 |  | 
|  | 71 | iMms.sendMessage(subId, ActivityThread.currentPackageName(), contentUri, | 
| Tom Taylor | 03079ec | 2020-01-24 10:21:50 -0800 | [diff] [blame] | 72 | locationUrl, configOverrides, sentIntent, messageId); | 
| Amit Mahajan | 24c01a2 | 2019-09-20 11:13:05 -0700 | [diff] [blame] | 73 | } catch (RemoteException e) { | 
|  | 74 | // Ignore it | 
|  | 75 | } | 
|  | 76 | } | 
|  | 77 |  | 
|  | 78 | /** | 
|  | 79 | * Download an MMS message from carrier by a given location URL | 
|  | 80 | * | 
|  | 81 | * @param subId the subscription id | 
|  | 82 | * @param locationUrl the location URL of the MMS message to be downloaded, usually obtained | 
|  | 83 | *  from the MMS WAP push notification | 
|  | 84 | * @param contentUri the content uri to which the downloaded pdu will be written | 
|  | 85 | * @param configOverrides the carrier-specific messaging configuration values to override for | 
|  | 86 | *  downloading the message. | 
|  | 87 | * @param downloadedIntent if not NULL this <code>PendingIntent</code> is | 
|  | 88 | *  broadcast when the message is downloaded, or the download is failed | 
| Tom Taylor | 03079ec | 2020-01-24 10:21:50 -0800 | [diff] [blame] | 89 | * @param messageId an id that uniquely identifies the message requested to be downloaded. | 
|  | 90 | *                  Used for logging and diagnostics purposes. The id may be 0. | 
|  | 91 | *  downloaded. | 
| Amit Mahajan | 24c01a2 | 2019-09-20 11:13:05 -0700 | [diff] [blame] | 92 | * @throws IllegalArgumentException if locationUrl or contentUri is empty | 
|  | 93 | */ | 
| Sarah Chin | 4affb51 | 2020-01-10 16:09:11 -0800 | [diff] [blame] | 94 | public void downloadMultimediaMessage(int subId, @NonNull String locationUrl, | 
|  | 95 | @NonNull Uri contentUri, @Nullable Bundle configOverrides, | 
| Tom Taylor | 03079ec | 2020-01-24 10:21:50 -0800 | [diff] [blame] | 96 | @Nullable PendingIntent downloadedIntent, long messageId) { | 
| Amit Mahajan | 24c01a2 | 2019-09-20 11:13:05 -0700 | [diff] [blame] | 97 | try { | 
|  | 98 | final IMms iMms = IMms.Stub.asInterface(ServiceManager.getService("imms")); | 
|  | 99 | if (iMms == null) { | 
|  | 100 | return; | 
|  | 101 | } | 
|  | 102 | iMms.downloadMessage(subId, ActivityThread.currentPackageName(), | 
| Tom Taylor | 03079ec | 2020-01-24 10:21:50 -0800 | [diff] [blame] | 103 | locationUrl, contentUri, configOverrides, downloadedIntent, | 
|  | 104 | messageId); | 
| Amit Mahajan | 24c01a2 | 2019-09-20 11:13:05 -0700 | [diff] [blame] | 105 | } catch (RemoteException e) { | 
|  | 106 | // Ignore it | 
|  | 107 | } | 
|  | 108 | } | 
| Amit Mahajan | 24c01a2 | 2019-09-20 11:13:05 -0700 | [diff] [blame] | 109 | } |