blob: ff36aa43e5b2b100721658c777ac8ca2d8519e79 (
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
|
package cgeo.calendar;
import cgeo.geocaching.utils.Log;
import org.apache.commons.lang3.CharEncoding;
import android.net.Uri;
import android.text.Html;
import android.text.Spanned;
import android.text.style.ImageSpan;
import java.io.UnsupportedEncodingException;
import java.net.URLDecoder;
import java.util.Date;
class CalendarEntry {
private String shortDesc;
private String hiddenDate;
private String url;
private String personalNote;
private String name;
private String coords;
private int startTimeMinutes = -1;
private Uri uri;
public CalendarEntry(final Uri uri) {
this.uri = uri;
this.shortDesc = getParameter(ICalendar.PARAM_SHORT_DESC);
this.hiddenDate = getParameter(ICalendar.PARAM_HIDDEN_DATE);
this.url = getParameter(ICalendar.PARAM_URL);
this.personalNote = getParameter(ICalendar.PARAM_NOTE);
this.name = getParameter(ICalendar.PARAM_NAME);
coords = getParameter(ICalendar.PARAM_COORDS);
final String startTime = getParameter(ICalendar.PARAM_START_TIME_MINUTES);
if (startTime.length() > 0) {
try {
this.startTimeMinutes = Integer.parseInt(startTime);
} catch (NumberFormatException e) {
Log.e("CalendarEntry creation", e);
}
}
}
private String getParameter(final String paramKey) {
try {
final String param = uri.getQueryParameter(paramKey);
if (param == null) {
return "";
}
return URLDecoder.decode(param, CharEncoding.UTF_8).trim();
} catch (UnsupportedEncodingException e) {
Log.e("CalendarEntry.getParameter", e);
}
return "";
}
public boolean isValid() {
return getName().length() > 0 && getHiddenDate().length() > 0;
}
public String getHiddenDate() {
return hiddenDate;
}
public String getUrl() {
return url;
}
public String getPersonalNote() {
return personalNote;
}
public String getShortDesc() {
return shortDesc;
}
/**
* @return <code>Date</code> based on hidden date. Time is set to 00:00:00.
*/
protected Date parseDate() {
try {
final Date eventDate = new Date(Long.parseLong(getHiddenDate()));
eventDate.setHours(0);
eventDate.setMinutes(0);
eventDate.setSeconds(0);
return eventDate;
} catch (NumberFormatException e) {
// cannot happen normally, but static code analysis does not know
}
return null;
}
/**
* @return description string with images removed and personal note included
*/
protected String parseDescription() {
final StringBuilder description = new StringBuilder();
description.append(getUrl());
if (getShortDesc().length() > 0) {
// remove images in short description
final Spanned spanned = Html.fromHtml(getShortDesc(), null, null);
String text = spanned.toString();
final ImageSpan[] spans = spanned.getSpans(0, spanned.length(), ImageSpan.class);
for (int i = spans.length - 1; i >= 0; i--) {
text = text.substring(0, spanned.getSpanStart(spans[i])) + text.substring(spanned.getSpanEnd(spans[i]));
}
if (text.length() > 0) {
description.append("\n\n");
description.append(text);
}
}
if (getPersonalNote().length() > 0) {
description.append("\n\n").append(Html.fromHtml(getPersonalNote()).toString());
}
return description.toString();
}
public String getName() {
return name;
}
public int getStartTimeMinutes() {
return startTimeMinutes;
}
public String getCoords() {
return coords;
}
}
|