1
0
Fork 0
mirror of https://github.com/gsantner/dandelion synced 2024-06-28 22:44:54 +02:00
dandelion/app/src/main/java/com/github/dfa/diaspora_android/task/ProfileFetchTask.java

110 lines
3.6 KiB
Java
Raw Normal View History

2016-07-29 14:00:28 +02:00
/*
This file is part of the Diaspora for Android.
Diaspora for Android 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.
Diaspora for Android 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 the Diaspora for Android.
If not, see <http://www.gnu.org/licenses/>.
*/
2016-03-30 03:13:38 +02:00
package com.github.dfa.diaspora_android.task;
import android.content.Context;
import android.os.AsyncTask;
import com.github.dfa.diaspora_android.util.Log;
2016-03-30 03:13:38 +02:00
import android.webkit.CookieManager;
import com.github.dfa.diaspora_android.App;
import com.github.dfa.diaspora_android.data.PodUserProfile;
import com.github.dfa.diaspora_android.util.DiasporaUrlHelper;
2016-03-30 03:13:38 +02:00
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
2016-03-30 03:13:38 +02:00
import java.io.InputStreamReader;
import java.net.URL;
import javax.net.ssl.HttpsURLConnection;
import info.guardianproject.netcipher.NetCipher;
2016-03-30 03:13:38 +02:00
/**
* AsyncTask to fetch a users profile
2016-03-30 03:13:38 +02:00
*/
public class ProfileFetchTask extends AsyncTask<Void, Void, Void> {
// Code for getting the profile async without any UI/WebView
// TODO: This is an early version,needs to be converted to Service
private final App app;
private final Context context;
private final DiasporaUrlHelper urls;
2016-03-30 03:13:38 +02:00
public ProfileFetchTask(final App app) {
this.context = app.getApplicationContext();
this.app = app;
this.urls = new DiasporaUrlHelper(app.getSettings());
2016-03-30 03:13:38 +02:00
}
@Override
protected Void doInBackground(Void... params) {
String extractedProfileData = null;
final CookieManager cookieManager = app.getCookieManager();
String cookies = cookieManager.getCookie(urls.getPodUrl());
2016-03-30 03:13:38 +02:00
Log.d(App.TAG, cookies);
HttpsURLConnection connection;
InputStream inStream;
2016-03-30 03:13:38 +02:00
try {
URL url = new URL(urls.getStreamUrl());
connection = NetCipher.getHttpsURLConnection(url);
connection.setReadTimeout(10000);
connection.setConnectTimeout(15000);
connection.setRequestMethod("GET");
2016-03-30 03:13:38 +02:00
if (cookies != null) {
connection.setRequestProperty("Cookie", cookies);
2016-03-30 03:13:38 +02:00
}
connection.connect();
2016-03-30 03:13:38 +02:00
inStream = connection.getInputStream();
BufferedReader br = new BufferedReader(new InputStreamReader(inStream));
2016-03-30 03:13:38 +02:00
String line;
final String TARGET_TAG = "window.gon={};gon.user=";
while ((line = br.readLine()) != null && !line.startsWith("<body")) {
if (line.startsWith(TARGET_TAG)) {
extractedProfileData = line.substring(TARGET_TAG.length());
break;
}
}
try{
br.close();
inStream.close();
} catch (IOException e){/*Nothing*/}
connection.disconnect();
2016-03-30 03:13:38 +02:00
} catch (IOException e) {
e.printStackTrace();
}
if (extractedProfileData != null) {
PodUserProfile profile = new PodUserProfile(app);
2016-03-30 03:13:38 +02:00
profile.parseJson(extractedProfileData);
Log.d(App.TAG, "Extracted new_messages (service):" + profile.getUnreadMessagesCount());
2016-03-30 03:13:38 +02:00
}
return null;
}
2016-07-29 14:00:28 +02:00
}