fedilab-Android-App/app/src/main/java/fr/gouv/etalab/mastodon/services/LiveNotificationService.java

372 lines
20 KiB
Java
Raw Normal View History

package fr.gouv.etalab.mastodon.services;
/* Copyright 2017 Thomas Schneider
*
* This file is a part of Mastalab
*
* 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.
*
* Mastalab 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 Mastalab; if not,
* see <http://www.gnu.org/licenses>. */
2017-12-17 14:20:04 +01:00
2018-10-15 19:08:30 +02:00
import android.app.AlarmManager;
import android.app.PendingIntent;
2018-01-03 15:25:35 +01:00
import android.app.Service;
import android.content.Context;
import android.content.Intent;
2018-10-16 18:33:32 +02:00
import android.content.IntentFilter;
import android.content.SharedPreferences;
import android.database.sqlite.SQLiteDatabase;
2017-11-30 18:18:58 +01:00
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
2018-10-13 16:25:08 +02:00
import android.net.Uri;
2017-11-30 18:18:58 +01:00
import android.os.Bundle;
2017-12-02 14:17:06 +01:00
import android.os.Handler;
import android.os.IBinder;
2017-12-02 14:17:06 +01:00
import android.os.Looper;
2018-10-15 19:08:30 +02:00
import android.os.SystemClock;
import android.preference.PreferenceManager;
2018-10-12 18:12:10 +02:00
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
2017-11-30 18:18:58 +01:00
import android.support.v4.content.LocalBroadcastManager;
2017-12-02 11:02:25 +01:00
import com.bumptech.glide.Glide;
import com.bumptech.glide.load.DataSource;
import com.bumptech.glide.load.engine.GlideException;
import com.bumptech.glide.request.RequestListener;
import com.bumptech.glide.request.target.SimpleTarget;
import com.bumptech.glide.request.target.Target;
import com.bumptech.glide.request.transition.Transition;
2018-10-13 16:25:08 +02:00
import com.koushikdutta.async.http.AsyncHttpClient;
import com.koushikdutta.async.http.AsyncHttpRequest;
import com.koushikdutta.async.http.Headers;
import com.koushikdutta.async.http.WebSocket;
2017-11-30 18:18:58 +01:00
import org.json.JSONException;
import org.json.JSONObject;
import java.util.List;
2017-11-30 18:18:58 +01:00
import fr.gouv.etalab.mastodon.R;
import fr.gouv.etalab.mastodon.activities.MainActivity;
import fr.gouv.etalab.mastodon.client.API;
import fr.gouv.etalab.mastodon.client.Entities.Account;
2017-11-30 18:18:58 +01:00
import fr.gouv.etalab.mastodon.client.Entities.Notification;
import fr.gouv.etalab.mastodon.helper.Helper;
import fr.gouv.etalab.mastodon.sqlite.AccountDAO;
import fr.gouv.etalab.mastodon.sqlite.Sqlite;
2017-11-30 18:18:58 +01:00
import static fr.gouv.etalab.mastodon.helper.Helper.INTENT_ACTION;
import static fr.gouv.etalab.mastodon.helper.Helper.INTENT_TARGETED_ACCOUNT;
2017-11-30 18:18:58 +01:00
import static fr.gouv.etalab.mastodon.helper.Helper.NOTIFICATION_INTENT;
import static fr.gouv.etalab.mastodon.helper.Helper.PREF_KEY_ID;
import static fr.gouv.etalab.mastodon.helper.Helper.notify_user;
/**
2017-11-30 07:16:18 +01:00
* Created by Thomas on 29/11/2017.
* Manage service for streaming api and new notifications
*/
2018-10-16 18:33:32 +02:00
public class LiveNotificationService extends Service implements NetworkStateReceiver.NetworkStateReceiverListener {
protected Account account;
boolean backgroundProcess;
2018-10-15 19:08:30 +02:00
private static Thread thread;
2018-10-16 18:33:32 +02:00
private NetworkStateReceiver networkStateReceiver;
public void onCreate() {
super.onCreate();
2018-10-16 18:33:32 +02:00
networkStateReceiver = new NetworkStateReceiver();
networkStateReceiver.addListener(this);
startStream();
this.registerReceiver(networkStateReceiver, new IntentFilter(android.net.ConnectivityManager.CONNECTIVITY_ACTION));
}
private void startStream(){
SharedPreferences sharedpreferences = getSharedPreferences(Helper.APP_PREFS, Context.MODE_PRIVATE);
backgroundProcess = sharedpreferences.getBoolean(Helper.SET_KEEP_BACKGROUND_PROCESS, true);
2018-10-15 19:08:30 +02:00
boolean liveNotifications = sharedpreferences.getBoolean(Helper.SET_LIVE_NOTIFICATIONS, true);
SQLiteDatabase db = Sqlite.getInstance(getApplicationContext(), Sqlite.DB_NAME, null, Sqlite.DB_VERSION).open();
if( liveNotifications ){
if( thread != null && thread.isAlive())
thread.interrupt();
thread = new Thread() {
@Override
public void run() {
List<Account> accountStreams = new AccountDAO(getApplicationContext(), db).getAllAccount();
if (accountStreams != null) {
for (final Account accountStream : accountStreams) {
taks(accountStream);
2018-10-15 19:08:30 +02:00
}
}
}
};
thread.start();
2018-10-15 19:08:30 +02:00
}
}
2018-01-05 10:32:08 +01:00
static {
Helper.installProvider();
}
2018-01-02 14:47:13 +01:00
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
2018-01-03 15:25:35 +01:00
if( intent == null || intent.getBooleanExtra("stop", false) ) {
stopSelf();
}
return START_STICKY;
}
2018-10-16 18:33:32 +02:00
@Override
public void onDestroy() {
super.onDestroy();
networkStateReceiver.removeListener(this);
this.unregisterReceiver(networkStateReceiver);
}
2018-01-03 15:25:35 +01:00
@Nullable
@Override
public IBinder onBind(Intent intent) {
return null;
}
2018-10-15 19:08:30 +02:00
@Override
public void onTaskRemoved(Intent rootIntent){
if(backgroundProcess){
restart();
}
super.onTaskRemoved(rootIntent);
}
private void restart(){
Intent restartServiceIntent = new Intent(getApplicationContext(), this.getClass());
restartServiceIntent.setPackage(getPackageName());
PendingIntent restartServicePendingIntent = PendingIntent.getService(getApplicationContext(), 1, restartServiceIntent, PendingIntent.FLAG_ONE_SHOT);
AlarmManager alarmService = (AlarmManager) getApplicationContext().getSystemService(Context.ALARM_SERVICE);
alarmService.set(
AlarmManager.ELAPSED_REALTIME,
SystemClock.elapsedRealtime() + 1000,
restartServicePendingIntent);
}
2018-10-13 16:25:08 +02:00
private void taks(Account account) {
if (account != null) {
Headers headers = new Headers();
headers.add("Authorization", "Bearer " + account.getToken());
headers.add("Connection", "Keep-Alive");
headers.add("method", "GET");
headers.add("scheme", "https");
Uri url = Uri.parse("wss://" + account.getInstance() + "/api/v1/streaming/?stream=user&access_token=" + account.getToken());
AsyncHttpRequest.setDefaultHeaders(headers, url);
AsyncHttpClient.getDefaultInstance().websocket("wss://" + account.getInstance() + "/api/v1/streaming/?stream=user&access_token=" + account.getToken(), "wss", new AsyncHttpClient.WebSocketConnectCallback() {
@Override
public void onCompleted(Exception ex, WebSocket webSocket) {
if (ex != null) {
ex.printStackTrace();
return;
2018-10-13 18:52:56 +02:00
}
webSocket.setStringCallback(new WebSocket.StringCallback() {
public void onStringAvailable(String s) {
try {
JSONObject eventJson = new JSONObject(s);
onRetrieveStreaming(account, eventJson);
} catch (JSONException ignored) {}
}
});
}
});
2018-10-13 18:52:56 +02:00
2017-11-30 18:18:58 +01:00
}
}
2018-10-13 16:25:08 +02:00
private void onRetrieveStreaming(Account account, JSONObject response) {
2017-11-30 18:18:58 +01:00
if( response == null )
return;
fr.gouv.etalab.mastodon.client.Entities.Status status ;
final Notification notification;
String dataId = null;
Bundle b = new Bundle();
2018-10-12 18:12:10 +02:00
boolean canSendBroadCast = true;
2018-10-13 16:25:08 +02:00
Helper.EventStreaming event = null;
try {
2018-10-13 17:41:20 +02:00
switch (response.get("event").toString()) {
case "notification":
event = Helper.EventStreaming.NOTIFICATION;
notification = API.parseNotificationResponse(getApplicationContext(), new JSONObject(response.get("payload").toString()));
b.putParcelable("data", notification);
2018-10-15 19:08:30 +02:00
2018-10-13 17:41:20 +02:00
final SharedPreferences sharedpreferences = getSharedPreferences(Helper.APP_PREFS, Context.MODE_PRIVATE);
boolean liveNotifications = sharedpreferences.getBoolean(Helper.SET_LIVE_NOTIFICATIONS, true);
boolean canNotify = Helper.canNotify(getApplicationContext());
boolean notify = sharedpreferences.getBoolean(Helper.SET_NOTIFY, true);
String userId = sharedpreferences.getString(Helper.PREF_KEY_ID, null);
String targeted_account = null;
Helper.NotifType notifType = Helper.NotifType.MENTION;
2018-10-15 19:08:30 +02:00
boolean activityRunning = PreferenceManager.getDefaultSharedPreferences(this).getBoolean("isMainActivityRunning", false);
if ((userId == null || !userId.equals(account.getId()) || !activityRunning) && liveNotifications && canNotify && notify) {
2018-10-13 17:41:20 +02:00
boolean notif_follow = sharedpreferences.getBoolean(Helper.SET_NOTIF_FOLLOW, true);
boolean notif_add = sharedpreferences.getBoolean(Helper.SET_NOTIF_ADD, true);
boolean notif_mention = sharedpreferences.getBoolean(Helper.SET_NOTIF_MENTION, true);
boolean notif_share = sharedpreferences.getBoolean(Helper.SET_NOTIF_SHARE, true);
boolean somethingToPush = (notif_follow || notif_add || notif_mention || notif_share);
String title = null;
if (somethingToPush && notification != null) {
switch (notification.getType()) {
case "mention":
notifType = Helper.NotifType.MENTION;
if (notif_mention) {
if (notification.getAccount().getDisplay_name() != null && notification.getAccount().getDisplay_name().length() > 0)
title = String.format("%s %s", Helper.shortnameToUnicode(notification.getAccount().getDisplay_name(), true), getString(R.string.notif_mention));
else
title = String.format("@%s %s", notification.getAccount().getAcct(), getString(R.string.notif_mention));
} else {
canSendBroadCast = false;
}
break;
case "reblog":
notifType = Helper.NotifType.BOOST;
if (notif_share) {
if (notification.getAccount().getDisplay_name() != null && notification.getAccount().getDisplay_name().length() > 0)
title = String.format("%s %s", Helper.shortnameToUnicode(notification.getAccount().getDisplay_name(), true), getString(R.string.notif_reblog));
else
title = String.format("@%s %s", notification.getAccount().getAcct(), getString(R.string.notif_reblog));
} else {
canSendBroadCast = false;
}
break;
case "favourite":
notifType = Helper.NotifType.FAV;
if (notif_add) {
if (notification.getAccount().getDisplay_name() != null && notification.getAccount().getDisplay_name().length() > 0)
title = String.format("%s %s", Helper.shortnameToUnicode(notification.getAccount().getDisplay_name(), true), getString(R.string.notif_favourite));
else
title = String.format("@%s %s", notification.getAccount().getAcct(), getString(R.string.notif_favourite));
} else {
canSendBroadCast = false;
}
break;
case "follow":
notifType = Helper.NotifType.FOLLLOW;
if (notif_follow) {
if (notification.getAccount().getDisplay_name() != null && notification.getAccount().getDisplay_name().length() > 0)
title = String.format("%s %s", Helper.shortnameToUnicode(notification.getAccount().getDisplay_name(), true), getString(R.string.notif_follow));
else
title = String.format("@%s %s", notification.getAccount().getAcct(), getString(R.string.notif_follow));
targeted_account = notification.getAccount().getId();
} else {
canSendBroadCast = false;
}
break;
default:
}
//Some others notification
final Intent intent = new Intent(getApplicationContext(), MainActivity.class);
intent.addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP | Intent.FLAG_ACTIVITY_NEW_TASK);
intent.putExtra(INTENT_ACTION, NOTIFICATION_INTENT);
intent.putExtra(PREF_KEY_ID, account.getId());
2018-10-24 15:19:33 +02:00
if (targeted_account != null) {
2018-10-13 17:41:20 +02:00
intent.putExtra(INTENT_TARGETED_ACCOUNT, targeted_account);
2018-10-24 15:19:33 +02:00
}
2018-10-13 17:41:20 +02:00
long notif_id = Long.parseLong(account.getId());
final int notificationId = ((notif_id + 1) > 2147483647) ? (int) (2147483647 - notif_id - 1) : (int) (notif_id + 1);
if (notification.getAccount().getAvatar() != null) {
final String finalTitle = title;
Handler mainHandler = new Handler(Looper.getMainLooper());
Helper.NotifType finalNotifType = notifType;
Runnable myRunnable = new Runnable() {
@Override
public void run() {
if (finalTitle != null) {
Glide.with(getApplicationContext())
.asBitmap()
.load(notification.getAccount().getAvatar())
.listener(new RequestListener<Bitmap>() {
@Override
public boolean onResourceReady(Bitmap resource, Object model, Target<Bitmap> target, DataSource dataSource, boolean isFirstResource) {
return false;
2018-10-13 16:25:08 +02:00
}
2018-10-13 17:41:20 +02:00
@Override
public boolean onLoadFailed(@Nullable GlideException e, Object model, Target target, boolean isFirstResource) {
notify_user(getApplicationContext(), intent, notificationId, BitmapFactory.decodeResource(getResources(),
R.drawable.mastodonlogo), finalNotifType, finalTitle, "@" + account.getAcct() + "@" + account.getInstance());
String lastNotif = sharedpreferences.getString(Helper.LAST_NOTIFICATION_MAX_ID + account.getId() + account.getInstance(), null);
if (lastNotif == null || Long.parseLong(notification.getId()) > Long.parseLong(lastNotif)) {
SharedPreferences.Editor editor = sharedpreferences.edit();
editor.putString(Helper.LAST_NOTIFICATION_MAX_ID + account.getId() + account.getInstance(), notification.getId());
editor.apply();
}
return false;
2018-10-13 16:25:08 +02:00
}
2018-10-13 17:41:20 +02:00
})
.into(new SimpleTarget<Bitmap>() {
@Override
public void onResourceReady(@NonNull Bitmap resource, Transition<? super Bitmap> transition) {
notify_user(getApplicationContext(), intent, notificationId, resource, finalNotifType, finalTitle, "@" + account.getAcct() + "@" + account.getInstance());
String lastNotif = sharedpreferences.getString(Helper.LAST_NOTIFICATION_MAX_ID + account.getId() + account.getInstance(), null);
if (lastNotif == null || Long.parseLong(notification.getId()) > Long.parseLong(lastNotif)) {
SharedPreferences.Editor editor = sharedpreferences.edit();
editor.putString(Helper.LAST_NOTIFICATION_MAX_ID + account.getId() + account.getInstance(), notification.getId());
editor.apply();
}
}
});
}
2018-10-13 16:25:08 +02:00
}
2018-10-13 17:41:20 +02:00
};
mainHandler.post(myRunnable);
}
2018-10-13 16:25:08 +02:00
}
2017-11-30 18:18:58 +01:00
}
2018-10-13 17:41:20 +02:00
break;
case "update":
event = Helper.EventStreaming.UPDATE;
status = API.parseStatuses(getApplicationContext(), new JSONObject(response.get("payload").toString()));
status.setNew(true);
b.putParcelable("data", status);
break;
case "delete":
event = Helper.EventStreaming.DELETE;
try {
dataId = response.getString("id");
b.putString("dataId", dataId);
} catch (JSONException ignored) {
}
break;
2017-11-30 18:18:58 +01:00
}
2018-10-13 16:25:08 +02:00
} catch (Exception e) {
e.printStackTrace();
2017-11-30 18:18:58 +01:00
}
2018-10-12 18:12:10 +02:00
if( canSendBroadCast) {
if (account != null)
b.putString("userIdService", account.getId());
Intent intentBC = new Intent(Helper.RECEIVE_DATA);
intentBC.putExtra("eventStreaming", event);
intentBC.putExtras(b);
LocalBroadcastManager.getInstance(getApplicationContext()).sendBroadcast(intentBC);
}
2017-11-30 18:18:58 +01:00
}
2018-10-16 18:33:32 +02:00
@Override
public void networkAvailable() {
startStream();
}
@Override
public void networkUnavailable() {
2018-10-18 18:12:48 +02:00
if( thread != null && thread.isAlive())
thread.interrupt();
2018-10-16 18:33:32 +02:00
}
}