mirror of
https://github.com/LBRYFoundation/lbry-android.git
synced 2025-08-29 00:11:30 +00:00
* initial native rewrite commit * update gitlab CI script * add printVersionName gradle task * fix Gitlab CI script * Fix first time wallet sync. add Discover dialog to Following page. * Finish Following and All Content views. Add customize your tags view. * Wallet sync get and set preferences, update interval. * Editor's Choice. Reposts. Some ontent page tweaks. * display no related content view when none loaded * Search cache. File view updates. Floating wallet balance. * Send tip dialog. Channel page share and follow/unfollow. * Handle lbry:// url scheme. Properly set URL bar values. SDK 0.71.0. * Channel follow/unfollow fixes. Display stream cost. * Channel management and channel creation / editing * phone number verification and rewards page * add Invites page * tweak player loading and playback when loading new claims * tweak about page layout * display text and markdown content * purchase_uri for free content * don't display invites history if none exist * fix channel list adapters * change launch mode from singleInstance to singleTask * url history and player fixes * Library page. URL and view history. * bumpversion 0.15.0 --> 0.15.1 * Make file view a fragment to prevent headaches with multiple Android task recents * Better handling of file view URLs. Some issue list fixes. * Abandon channels and bulk delete files tasks. Some visual tweaks. * bumpversion 0.15.1 --> 0.15.2 * fix some events * Some visual tweaks. Wunderbar clear focus hotfix for some devices. * sdk 0.74.0. Publish and Publishes pages. * Fix displayed amounts. Send Firebase token with install_new. * Some dark theme and crash fixes. Implement publish form. * Fix minor typo for string in 'generate_address_hint'. * Publish form and publish creation flow. UI tweaks and fixes. * Basic native mobile publishing * remove closeDatabase calls causing crashes * Implement file and channel page delete actions. UI action cleanup. * publish drivers for unresolved file page and featured search result item * show URL suggestions and data network (DHT) settings * Filter own claims from downloads. Fix address input. * fix edit channel crash * fix for possible blank / invalid video thumbnails * adjust minimum deposit. fix channel edit mode. * quick skip and playback speed media controls * change play and pause icons * Fix file size display. Tweak playback speed control. * Add exoplayer mediasession extension. Set player auto attributes. * Inline publish address validation error. Increase image upload request timeout. * fix no related content display * Claim new_android reward. Use canonical_url for share links. * force US locale for amount / bid values sent with sdk requests * Afrikaans and Spanish strings * Add media player error handling policy. Use : in share links. * don't proceed with publish if optimization is in progress.
161 lines
No EOL
6.5 KiB
Java
161 lines
No EOL
6.5 KiB
Java
package io.lbry.browser;
|
|
|
|
import android.app.NotificationChannel;
|
|
import android.app.NotificationManager;
|
|
import android.app.PendingIntent;
|
|
import android.content.Context;
|
|
import android.content.Intent;
|
|
import android.content.SharedPreferences;
|
|
import android.media.RingtoneManager;
|
|
import android.net.Uri;
|
|
import android.os.Build;
|
|
import android.os.Bundle;
|
|
import androidx.core.app.NotificationCompat;
|
|
import androidx.core.content.ContextCompat;
|
|
import androidx.preference.PreferenceManager;
|
|
|
|
import android.util.Log;
|
|
|
|
import com.google.firebase.analytics.FirebaseAnalytics;
|
|
import com.google.firebase.messaging.FirebaseMessagingService;
|
|
import com.google.firebase.messaging.RemoteMessage;
|
|
|
|
import io.lbry.browser.utils.LbryAnalytics;
|
|
import io.lbry.lbrysdk.LbrynetService;
|
|
|
|
import java.io.UnsupportedEncodingException;
|
|
import java.net.URLEncoder;
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
public class LbrynetMessagingService extends FirebaseMessagingService {
|
|
|
|
private static final String TAG = "LbrynetMessagingService";
|
|
private static final String NOTIFICATION_CHANNEL_ID = "io.lbry.browser.LBRY_ENGAGEMENT_CHANNEL";
|
|
private static final String TYPE_SUBSCRIPTION = "subscription";
|
|
private static final String TYPE_REWARD = "reward";
|
|
private static final String TYPE_INTERESTS = "interests";
|
|
private static final String TYPE_CREATOR = "creator";
|
|
private FirebaseAnalytics firebaseAnalytics;
|
|
|
|
@Override
|
|
public void onMessageReceived(RemoteMessage remoteMessage) {
|
|
if (firebaseAnalytics == null) {
|
|
firebaseAnalytics = FirebaseAnalytics.getInstance(this);
|
|
}
|
|
|
|
Map<String, String> payload = remoteMessage.getData();
|
|
if (payload != null) {
|
|
String type = payload.get("type");
|
|
String url = payload.get("target");
|
|
String title = payload.get("title");
|
|
String body = payload.get("body");
|
|
String name = payload.get("name"); // notification name
|
|
String contentTitle = payload.get("content_title");
|
|
String channelUrl = payload.get("channel_url");
|
|
//String publishTime = payload.get("publish_time");
|
|
String publishTime = null;
|
|
|
|
if (type != null && getEnabledTypes().indexOf(type) > -1 && body != null && body.trim().length() > 0) {
|
|
// only log the receive event for valid notifications received
|
|
if (firebaseAnalytics != null) {
|
|
Bundle bundle = new Bundle();
|
|
bundle.putString("name", name);
|
|
firebaseAnalytics.logEvent(LbryAnalytics.EVENT_LBRY_NOTIFICATION_RECEIVE, bundle);
|
|
}
|
|
|
|
sendNotification(title, body, type, url, name, contentTitle, channelUrl, publishTime);
|
|
}
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public void onNewToken(String token) {
|
|
Log.d(TAG, "Refreshed token: " + token);
|
|
|
|
// If you want to send messages to this application instance or
|
|
// manage this apps subscriptions on the server side, send the
|
|
// Instance ID token to your app server.
|
|
sendRegistrationToServer(token);
|
|
}
|
|
|
|
/**
|
|
* Persist token to third-party servers.
|
|
*
|
|
* Modify this method to associate the user's FCM InstanceID token with any server-side account
|
|
* maintained by your application.
|
|
*
|
|
* @param token The new token.
|
|
*/
|
|
private void sendRegistrationToServer(String token) {
|
|
// TODO: Implement this method to send token to your app server.
|
|
}
|
|
|
|
/**
|
|
* Create and show a simple notification containing the received FCM message.
|
|
*
|
|
* @param messageBody FCM message body received.
|
|
*/
|
|
private void sendNotification(String title, String messageBody, String type, String url, String name,
|
|
String contentTitle, String channelUrl, String publishTime) {
|
|
//Intent intent = new Intent(this, MainActivity.class);
|
|
//intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
|
|
if (url == null) {
|
|
if (TYPE_REWARD.equals(type)) {
|
|
url = "lbry://?rewards";
|
|
} else {
|
|
// default to home page
|
|
url = "lbry://?discover";
|
|
}
|
|
}
|
|
|
|
Intent launchIntent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
|
|
launchIntent.putExtra("notification_name", name);
|
|
launchIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_SINGLE_TOP);
|
|
PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, launchIntent, PendingIntent.FLAG_ONE_SHOT);
|
|
|
|
Uri defaultSoundUri = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
|
|
NotificationCompat.Builder notificationBuilder =
|
|
new NotificationCompat.Builder(this, NOTIFICATION_CHANNEL_ID)
|
|
.setColor(ContextCompat.getColor(this, R.color.lbryGreen))
|
|
.setSmallIcon(R.drawable.ic_lbry)
|
|
.setContentTitle(title)
|
|
.setContentText(messageBody)
|
|
.setAutoCancel(true)
|
|
.setSound(defaultSoundUri)
|
|
.setContentIntent(pendingIntent);
|
|
|
|
NotificationManager notificationManager =
|
|
(NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
|
|
|
|
// Since android Oreo notification channel is needed.
|
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
|
|
NotificationChannel channel = new NotificationChannel(
|
|
NOTIFICATION_CHANNEL_ID, "LBRY Engagement", NotificationManager.IMPORTANCE_DEFAULT);
|
|
notificationManager.createNotificationChannel(channel);
|
|
}
|
|
|
|
notificationManager.notify(3, notificationBuilder.build());
|
|
}
|
|
|
|
public List<String> getEnabledTypes() {
|
|
SharedPreferences sp = PreferenceManager.getDefaultSharedPreferences(this);
|
|
List<String> enabledTypes = new ArrayList<String>();
|
|
|
|
if (sp.getBoolean(MainActivity.PREFERENCE_KEY_NOTIFICATION_SUBSCRIPTIONS, true)) {
|
|
enabledTypes.add(TYPE_SUBSCRIPTION);
|
|
}
|
|
if (sp.getBoolean(MainActivity.PREFERENCE_KEY_NOTIFICATION_REWARDS, true)) {
|
|
enabledTypes.add(TYPE_REWARD);
|
|
}
|
|
if (sp.getBoolean(MainActivity.PREFERENCE_KEY_NOTIFICATION_CONTENT_INTERESTS, true)) {
|
|
enabledTypes.add(TYPE_INTERESTS);
|
|
}
|
|
if (sp.getBoolean(MainActivity.PREFERENCE_KEY_NOTIFICATION_CREATOR, true)) {
|
|
enabledTypes.add(TYPE_CREATOR);
|
|
}
|
|
|
|
return enabledTypes;
|
|
}
|
|
} |