Changes based on feedback
This commit is contained in:
parent
ad54ed3ec6
commit
f82f9d702c
@ -36,7 +36,7 @@ public class DownloadServiceCallbacksImpl implements DownloadServiceCallbacks {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public PendingIntent getReportNotificationContentIntent(Context context, boolean autoDownloadReport) {
|
public PendingIntent getReportNotificationContentIntent(Context context) {
|
||||||
Intent intent = new Intent(context, MainActivity.class);
|
Intent intent = new Intent(context, MainActivity.class);
|
||||||
intent.putExtra(MainActivity.EXTRA_FRAGMENT_TAG, DownloadsFragment.TAG);
|
intent.putExtra(MainActivity.EXTRA_FRAGMENT_TAG, DownloadsFragment.TAG);
|
||||||
Bundle args = new Bundle();
|
Bundle args = new Bundle();
|
||||||
@ -45,6 +45,14 @@ public class DownloadServiceCallbacksImpl implements DownloadServiceCallbacks {
|
|||||||
return PendingIntent.getActivity(context, 0, intent, PendingIntent.FLAG_UPDATE_CURRENT);
|
return PendingIntent.getActivity(context, 0, intent, PendingIntent.FLAG_UPDATE_CURRENT);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public PendingIntent getAutoDownloadReportNotificationContentIntent(Context context) {
|
||||||
|
Intent intent = new Intent(context, MainActivity.class);
|
||||||
|
intent.putExtra(MainActivity.EXTRA_NAV_TYPE, NavListAdapter.VIEW_TYPE_NAV);
|
||||||
|
intent.putExtra(MainActivity.EXTRA_FRAGMENT_TAG, QueueFragment.TAG);
|
||||||
|
return PendingIntent.getActivity(context, 0, intent, PendingIntent.FLAG_UPDATE_CURRENT);
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onFeedParsed(Context context, Feed feed) {
|
public void onFeedParsed(Context context, Feed feed) {
|
||||||
// do nothing
|
// do nothing
|
||||||
|
@ -40,7 +40,17 @@ public interface DownloadServiceCallbacks {
|
|||||||
*
|
*
|
||||||
* @return A non-null PendingIntent for the notification or null if shouldCreateReport()==false
|
* @return A non-null PendingIntent for the notification or null if shouldCreateReport()==false
|
||||||
*/
|
*/
|
||||||
PendingIntent getReportNotificationContentIntent(Context context, boolean autoDownloadReport);
|
PendingIntent getReportNotificationContentIntent(Context context);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns a PendingIntent for notification that notifies the user about the episodes that have been automatically
|
||||||
|
* downloaded.
|
||||||
|
* <p/>
|
||||||
|
* The PendingIntent takes users to an activity where they can look at their episode queue.
|
||||||
|
*
|
||||||
|
* @return A non-null PendingIntent for the notification or null if shouldCreateReport()==false
|
||||||
|
*/
|
||||||
|
PendingIntent getAutoDownloadReportNotificationContentIntent(Context context);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Called by the FeedSyncThread after a feed has been downloaded and parsed.
|
* Called by the FeedSyncThread after a feed has been downloaded and parsed.
|
||||||
|
@ -2,6 +2,7 @@ package de.danoeh.antennapod.core.service.download;
|
|||||||
|
|
||||||
import android.app.Notification;
|
import android.app.Notification;
|
||||||
import android.app.NotificationManager;
|
import android.app.NotificationManager;
|
||||||
|
import android.app.PendingIntent;
|
||||||
import android.content.Context;
|
import android.content.Context;
|
||||||
import android.os.Build;
|
import android.os.Build;
|
||||||
import android.text.TextUtils;
|
import android.text.TextUtils;
|
||||||
@ -15,6 +16,7 @@ import de.danoeh.antennapod.core.util.gui.NotificationUtils;
|
|||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
import java.util.concurrent.ConcurrentLinkedDeque;
|
||||||
|
|
||||||
public class DownloadServiceNotification {
|
public class DownloadServiceNotification {
|
||||||
private static final String TAG = "DownloadSvcNotification";
|
private static final String TAG = "DownloadSvcNotification";
|
||||||
@ -107,7 +109,7 @@ public class DownloadServiceNotification {
|
|||||||
for (DownloadStatus status : reportQueue) {
|
for (DownloadStatus status : reportQueue) {
|
||||||
if (status.isSuccessful()) {
|
if (status.isSuccessful()) {
|
||||||
successfulDownloads++;
|
successfulDownloads++;
|
||||||
createReport = createReport || showAutoDownloadReport && !status.isInitiatedByUser() && status.getFeedfileType() == FeedMedia.FEEDFILETYPE_FEEDMEDIA;
|
createReport |= showAutoDownloadReport && !status.isInitiatedByUser() && status.getFeedfileType() == FeedMedia.FEEDFILETYPE_FEEDMEDIA;
|
||||||
} else if (!status.isCancelled()) {
|
} else if (!status.isCancelled()) {
|
||||||
failedDownloads++;
|
failedDownloads++;
|
||||||
createReport = true;
|
createReport = true;
|
||||||
@ -118,16 +120,29 @@ public class DownloadServiceNotification {
|
|||||||
Log.d(TAG, "Creating report");
|
Log.d(TAG, "Creating report");
|
||||||
|
|
||||||
// create notification object
|
// create notification object
|
||||||
boolean autoDownloadReport = failedDownloads == 0;
|
String channelId;
|
||||||
String channelId = autoDownloadReport ? NotificationUtils.CHANNEL_ID_AUTO_DOWNLOAD : NotificationUtils.CHANNEL_ID_ERROR;
|
int titleId;
|
||||||
int titleId = autoDownloadReport ? R.string.auto_download_report_title : R.string.download_report_title;
|
int iconId;
|
||||||
|
PendingIntent intent;
|
||||||
|
if (failedDownloads == 0) {
|
||||||
|
// We are generating an auto-download report
|
||||||
|
channelId = NotificationUtils.CHANNEL_ID_AUTO_DOWNLOAD;
|
||||||
|
titleId = R.string.auto_download_report_title;
|
||||||
|
iconId = R.drawable.stat_notify_sync;
|
||||||
|
intent = ClientConfig.downloadServiceCallbacks.getAutoDownloadReportNotificationContentIntent(context);
|
||||||
|
} else {
|
||||||
|
channelId = NotificationUtils.CHANNEL_ID_ERROR;
|
||||||
|
titleId = R.string.download_report_title;
|
||||||
|
iconId = R.drawable.stat_notify_sync_error;
|
||||||
|
intent = ClientConfig.downloadServiceCallbacks.getReportNotificationContentIntent(context);
|
||||||
|
}
|
||||||
|
|
||||||
NotificationCompat.Builder builder = new NotificationCompat.Builder(context, channelId);
|
NotificationCompat.Builder builder = new NotificationCompat.Builder(context, channelId);
|
||||||
builder.setTicker(context.getString(titleId))
|
builder.setTicker(context.getString(titleId))
|
||||||
.setContentTitle(context.getString(R.string.download_report_content_title))
|
.setContentTitle(context.getString(titleId))
|
||||||
.setContentText(String.format(context.getString(R.string.download_report_content), successfulDownloads, failedDownloads))
|
.setContentText(String.format(context.getString(R.string.download_report_content), successfulDownloads, failedDownloads))
|
||||||
.setSmallIcon(autoDownloadReport ? R.drawable.stat_notify_sync : R.drawable.stat_notify_sync_error)
|
.setSmallIcon(iconId)
|
||||||
.setContentIntent(ClientConfig.downloadServiceCallbacks.getReportNotificationContentIntent(context, autoDownloadReport))
|
.setContentIntent(intent)
|
||||||
.setAutoCancel(true);
|
.setAutoCancel(true);
|
||||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
|
||||||
builder.setVisibility(NotificationCompat.VISIBILITY_PUBLIC);
|
builder.setVisibility(NotificationCompat.VISIBILITY_PUBLIC);
|
||||||
|
@ -82,7 +82,7 @@ public class FeedParserTask implements Callable<FeedHandlerResult> {
|
|||||||
successful, reasonDetailed, request.isInitiatedByUser());
|
successful, reasonDetailed, request.isInitiatedByUser());
|
||||||
return result;
|
return result;
|
||||||
} else {
|
} else {
|
||||||
downloadStatus = new DownloadStatus(feed, feed.getHumanReadableIdentifier(), reason, successful,
|
downloadStatus = new DownloadStatus(feed, feed.getTitle(), reason, successful,
|
||||||
reasonDetailed, request.isInitiatedByUser());
|
reasonDetailed, request.isInitiatedByUser());
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
@ -67,11 +67,9 @@ public class NotificationUtils {
|
|||||||
|
|
||||||
@RequiresApi(api = Build.VERSION_CODES.O)
|
@RequiresApi(api = Build.VERSION_CODES.O)
|
||||||
private static NotificationChannel createChannelAutoDownload(Context c) {
|
private static NotificationChannel createChannelAutoDownload(Context c) {
|
||||||
NotificationChannel mChannel = new NotificationChannel(
|
NotificationChannel mChannel = new NotificationChannel(CHANNEL_ID_AUTO_DOWNLOAD,
|
||||||
CHANNEL_ID_AUTO_DOWNLOAD,
|
c.getString(R.string.notification_channel_auto_download), NotificationManager.IMPORTANCE_DEFAULT);
|
||||||
c.getString(R.string.notification_channel_auto_download),
|
mChannel.setDescription(c.getString(R.string.notification_channel_episode_auto_download));
|
||||||
NotificationManager.IMPORTANCE_DEFAULT);
|
|
||||||
mChannel.setDescription(c.getString(R.string.notification_channel_downloading_description));
|
|
||||||
return mChannel;
|
return mChannel;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -237,7 +237,7 @@
|
|||||||
<string name="download_canceled_msg">Download canceled</string>
|
<string name="download_canceled_msg">Download canceled</string>
|
||||||
<string name="download_canceled_autodownload_enabled_msg">Download canceled\nDisabled <i>Auto Download</i> for this item</string>
|
<string name="download_canceled_autodownload_enabled_msg">Download canceled\nDisabled <i>Auto Download</i> for this item</string>
|
||||||
<string name="download_report_title">Downloads completed with error(s)</string>
|
<string name="download_report_title">Downloads completed with error(s)</string>
|
||||||
<string name="auto_download_report_title">Downloads completed</string>
|
<string name="auto_download_report_title">Auto-downloads completed</string>
|
||||||
<string name="download_report_content_title">Download Report</string>
|
<string name="download_report_content_title">Download Report</string>
|
||||||
<string name="download_error_malformed_url">Malformed URL</string>
|
<string name="download_error_malformed_url">Malformed URL</string>
|
||||||
<string name="download_error_io_error">IO Error</string>
|
<string name="download_error_io_error">IO Error</string>
|
||||||
@ -472,7 +472,7 @@
|
|||||||
<string name="pref_showDownloadReport_title">Show Download Report</string>
|
<string name="pref_showDownloadReport_title">Show Download Report</string>
|
||||||
<string name="pref_showDownloadReport_sum">If downloads fail, generate a report that shows the details of the failure.</string>
|
<string name="pref_showDownloadReport_sum">If downloads fail, generate a report that shows the details of the failure.</string>
|
||||||
<string name="pref_showAutoDownloadReport_title">Show Auto Download Report</string>
|
<string name="pref_showAutoDownloadReport_title">Show Auto Download Report</string>
|
||||||
<string name="pref_showAutoDownloadReport_sum">Generate a report that shows the details of auto downloaded episodes.</string>
|
<string name="pref_showAutoDownloadReport_sum">Show a notification for automatically downloaded episodes.</string>
|
||||||
<string name="pref_expand_notify_unsupport_toast">Android versions before 4.1 do not support expanded notifications.</string>
|
<string name="pref_expand_notify_unsupport_toast">Android versions before 4.1 do not support expanded notifications.</string>
|
||||||
<string name="pref_enqueue_location_title">Enqueue Location</string>
|
<string name="pref_enqueue_location_title">Enqueue Location</string>
|
||||||
<string name="pref_enqueue_location_sum">Add episodes to: %1$s</string>
|
<string name="pref_enqueue_location_sum">Add episodes to: %1$s</string>
|
||||||
@ -785,7 +785,7 @@
|
|||||||
<string name="notification_channel_error">Errors</string>
|
<string name="notification_channel_error">Errors</string>
|
||||||
<string name="notification_channel_error_description">Shown if something went wrong, for example if download or gpodder sync fails.</string>
|
<string name="notification_channel_error_description">Shown if something went wrong, for example if download or gpodder sync fails.</string>
|
||||||
<string name="notification_channel_auto_download">Auto Downloads</string>
|
<string name="notification_channel_auto_download">Auto Downloads</string>
|
||||||
<string name="notification_channel_error_auto_download">Shown when episodes have been automatically downloaded.</string>
|
<string name="notification_channel_episode_auto_download">Shown when episodes have been automatically downloaded.</string>
|
||||||
|
|
||||||
<!-- Widget settings -->
|
<!-- Widget settings -->
|
||||||
<string name="widget_settings">Widget settings</string>
|
<string name="widget_settings">Widget settings</string>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user