mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-28 20:45:17 +00:00
78 lines
3.0 KiB
Java
78 lines
3.0 KiB
Java
|
/**
|
||
|
* Copyright (C) 2011 Whisper Systems
|
||
|
*
|
||
|
* This program is free software: you can redistribute it and/or modify
|
||
|
* it under the terms of the GNU General Public License as published by
|
||
|
* the Free Software Foundation, either version 3 of the License, or
|
||
|
* (at your option) any later version.
|
||
|
*
|
||
|
* This program is distributed in the hope that it will be useful,
|
||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
* GNU General Public License for more details.
|
||
|
*
|
||
|
* You should have received a copy of the GNU General Public License
|
||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||
|
*/
|
||
|
package org.thoughtcrime.securesms.mms;
|
||
|
|
||
|
import java.io.IOException;
|
||
|
import java.net.URI;
|
||
|
import java.net.URISyntaxException;
|
||
|
|
||
|
import org.apache.http.HttpHost;
|
||
|
import org.apache.http.HttpResponse;
|
||
|
import org.apache.http.StatusLine;
|
||
|
import org.apache.http.client.ClientProtocolException;
|
||
|
import org.apache.http.client.HttpClient;
|
||
|
import org.apache.http.client.methods.HttpPost;
|
||
|
import org.apache.http.entity.ByteArrayEntity;
|
||
|
import org.thoughtcrime.securesms.util.Hex;
|
||
|
|
||
|
import ws.com.google.android.mms.MmsException;
|
||
|
import android.content.Context;
|
||
|
import android.util.Log;
|
||
|
|
||
|
public class MmsSendHelper extends MmsCommunication {
|
||
|
|
||
|
private static byte[] makePost(MmsConnectionParameters parameters, byte[] mms) throws ClientProtocolException, IOException {
|
||
|
Log.w("MmsSender", "Sending MMS1 of length: " + mms.length);
|
||
|
try {
|
||
|
HttpClient client = constructHttpClient(parameters);
|
||
|
URI hostUrl = new URI(parameters.getMmsc());
|
||
|
HttpHost target = new HttpHost(hostUrl.getHost(), hostUrl.getPort(), HttpHost.DEFAULT_SCHEME_NAME);
|
||
|
HttpPost request = new HttpPost(parameters.getMmsc());
|
||
|
ByteArrayEntity entity = new ByteArrayEntity(mms);
|
||
|
|
||
|
entity.setContentType("application/vnd.wap.mms-message");
|
||
|
|
||
|
request.setEntity(entity);
|
||
|
request.setParams(client.getParams());
|
||
|
request.addHeader("Accept", "*/*, application/vnd.wap.mms-message, application/vnd.wap.sic");
|
||
|
|
||
|
HttpResponse response = client.execute(target, request);
|
||
|
StatusLine status = response.getStatusLine();
|
||
|
|
||
|
if (status.getStatusCode() != 200)
|
||
|
throw new IOException("Non-successful HTTP response: " + status.getReasonPhrase());
|
||
|
|
||
|
return parseResponse(response.getEntity());
|
||
|
} catch (URISyntaxException use) {
|
||
|
Log.w("MmsDownlader", use);
|
||
|
throw new IOException("Bad URI syntax");
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public static byte[] sendMms(Context context, byte[] mms) throws IOException {
|
||
|
Log.w("MmsSender", "Sending MMS of length: " + mms.length);
|
||
|
try {
|
||
|
MmsConnectionParameters parameters = getMmsConnectionParameters(context);
|
||
|
checkRouteToHost(context, parameters, parameters.getMmsc());
|
||
|
return makePost(parameters, mms);
|
||
|
} catch (MmsException me) {
|
||
|
Log.w("MmsSender", me);
|
||
|
throw new IOException("Failed to get MMSC information...");
|
||
|
}
|
||
|
}
|
||
|
}
|