summaryrefslogtreecommitdiff
path: root/app/src/main/java/de/danoeh/antennapod/adapter/DownloadLogAdapter.java
blob: 9ff80424cf19794f580ec28620f4c273cce038b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
package de.danoeh.antennapod.adapter;

import android.content.Context;
import android.support.v4.content.ContextCompat;
import android.text.format.DateUtils;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseAdapter;
import android.widget.TextView;
import android.widget.Toast;

import com.joanzapata.iconify.Iconify;
import com.joanzapata.iconify.widget.IconButton;

import de.danoeh.antennapod.R;
import de.danoeh.antennapod.core.dialog.DownloadRequestErrorDialogCreator;
import de.danoeh.antennapod.core.feed.Feed;
import de.danoeh.antennapod.core.feed.FeedImage;
import de.danoeh.antennapod.core.feed.FeedMedia;
import de.danoeh.antennapod.core.service.download.DownloadStatus;
import de.danoeh.antennapod.core.storage.DBReader;
import de.danoeh.antennapod.core.storage.DBTasks;
import de.danoeh.antennapod.core.storage.DownloadRequestException;

/** Displays a list of DownloadStatus entries. */
public class DownloadLogAdapter extends BaseAdapter {

	private final String TAG = "DownloadLogAdapter";

	private Context context;

    private ItemAccess itemAccess;

	public DownloadLogAdapter(Context context, ItemAccess itemAccess) {
		super();
        this.itemAccess = itemAccess;
		this.context = context;
	}

	@Override
	public View getView(int position, View convertView, ViewGroup parent) {
		Holder holder;
		DownloadStatus status = getItem(position);
		if (convertView == null) {
			holder = new Holder();
			LayoutInflater inflater = (LayoutInflater) context
					.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
			convertView = inflater.inflate(R.layout.downloadlog_item, parent, false);
			holder.icon = (TextView) convertView.findViewById(R.id.txtvIcon);
			holder.retry = (IconButton) convertView.findViewById(R.id.btnRetry);
			holder.date = (TextView) convertView.findViewById(R.id.txtvDate);
			holder.title = (TextView) convertView.findViewById(R.id.txtvTitle);
			holder.type = (TextView) convertView.findViewById(R.id.txtvType);
			holder.reason = (TextView) convertView
					.findViewById(R.id.txtvReason);
			convertView.setTag(holder);
		} else {
			holder = (Holder) convertView.getTag();
		}
		if (status.getFeedfileType() == Feed.FEEDFILETYPE_FEED) {
			holder.type.setText(R.string.download_type_feed);
		} else if (status.getFeedfileType() == FeedMedia.FEEDFILETYPE_FEEDMEDIA) {
			holder.type.setText(R.string.download_type_media);
		} else if (status.getFeedfileType() == FeedImage.FEEDFILETYPE_FEEDIMAGE) {
			holder.type.setText(R.string.download_type_image);
		}
		if (status.getTitle() != null) {
			holder.title.setText(status.getTitle());
		} else {
			holder.title.setText(R.string.download_log_title_unknown);
		}
		holder.date.setText(DateUtils.getRelativeTimeSpanString(
				status.getCompletionDate().getTime(),
				System.currentTimeMillis(), 0, 0));
		if (status.isSuccessful()) {
			holder.icon.setTextColor(ContextCompat.getColor(convertView.getContext(),
					R.color.download_success_green));
			holder.icon.setText("{fa-check-circle}");
			Iconify.addIcons(holder.icon);
			holder.retry.setVisibility(View.GONE);
			holder.reason.setVisibility(View.GONE);
		} else {
			holder.icon.setTextColor(ContextCompat.getColor(convertView.getContext(),
					R.color.download_failed_red));
			holder.icon.setText("{fa-times-circle}");
			Iconify.addIcons(holder.icon);
			String reasonText = status.getReason().getErrorString(context);
			if (status.getReasonDetailed() != null) {
				reasonText += ": " + status.getReasonDetailed();
			}
			holder.reason.setText(reasonText);
			holder.reason.setVisibility(View.VISIBLE);
			if(status.getFeedfileType() != FeedImage.FEEDFILETYPE_FEEDIMAGE &&
					!newerWasSuccessful(position, status.getFeedfileType(), status.getFeedfileId())) {
				holder.retry.setVisibility(View.VISIBLE);
				holder.retry.setOnClickListener(clickListener);
				ButtonHolder btnHolder;
				if(holder.retry.getTag() != null) {
					btnHolder = (ButtonHolder) holder.retry.getTag();
				}  else {
					btnHolder = new ButtonHolder();
				}
				btnHolder.typeId = status.getFeedfileType();
				btnHolder.id = status.getFeedfileId();
				holder.retry.setTag(btnHolder);
			} else {
				holder.retry.setVisibility(View.GONE);
				holder.retry.setOnClickListener(null);
				holder.retry.setTag(null);
			}
		}

		return convertView;
	}

	private final View.OnClickListener clickListener = new View.OnClickListener() {
		@Override
		public void onClick(View v) {
			ButtonHolder holder = (ButtonHolder) v.getTag();
			if(holder.typeId == Feed.FEEDFILETYPE_FEED) {
				Feed feed = DBReader.getFeed(holder.id);
				if (feed != null) {
					try {
						DBTasks.forceRefreshFeed(context, feed);
					} catch (DownloadRequestException e) {
						e.printStackTrace();
					}
				} else {
					Log.wtf(TAG, "Could not find feed for feed id: " + holder.id);
				}
			} else if(holder.typeId == FeedMedia.FEEDFILETYPE_FEEDMEDIA) {
				FeedMedia media = DBReader.getFeedMedia(holder.id);
				if (media != null) {
					try {
						DBTasks.downloadFeedItems(context, media.getItem());
						Toast.makeText(context, R.string.status_downloading_label, Toast.LENGTH_SHORT).show();
					} catch (DownloadRequestException e) {
						e.printStackTrace();
						DownloadRequestErrorDialogCreator.newRequestErrorDialog(context, e.getMessage());
					}
				} else {
					Log.wtf(TAG, "Could not find media for id: " + holder.id);
				}
			} else {
				Log.wtf(TAG, "Unexpected type id: " + holder.typeId);
			}
			v.setVisibility(View.GONE);
		}
	};

	private boolean newerWasSuccessful(int position, int feedTypeId, long id) {
		for (int i = 0; i < position; i++) {
			DownloadStatus status = getItem(i);
			if (status.getFeedfileType() == feedTypeId && status.getFeedfileId() == id &&
					status.isSuccessful()) return true;
		}
		return false;
	}

	static class Holder {
		TextView icon;
		IconButton retry;
		TextView title;
		TextView type;
		TextView date;
		TextView reason;
	}

	static class ButtonHolder {
		int typeId;
		long id;
	}

	@Override
	public int getCount() {
        return itemAccess.getCount();
	}

	@Override
	public DownloadStatus getItem(int position) {
        return itemAccess.getItem(position);
	}

	@Override
	public long getItemId(int position) {
		return position;
	}

    public interface ItemAccess {
		int getCount();
		DownloadStatus getItem(int position);
    }

}