blob: 92ed64d6b10efd999b4d3385d2ef1adc370243db (
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
|
package cgeo.geocaching.ui;
import cgeo.geocaching.files.LocalStorage;
import cgeo.geocaching.network.Network;
import cgeo.geocaching.network.Parameters;
import org.apache.commons.lang3.StringUtils;
import org.apache.http.HttpResponse;
import java.io.File;
public class DirectionImage {
public static void getDrawable(final String geocode, final String code) {
if (StringUtils.isBlank(geocode) || StringUtils.isBlank(code)) {
return;
}
final HttpResponse httpResponse =
Network.request("http://www.geocaching.com/ImgGen/seek/CacheDir.ashx", new Parameters("k", code));
if (httpResponse != null) {
LocalStorage.saveEntityToFile(httpResponse, getDirectionFile(geocode, true));
}
}
public static File getDirectionFile(final String geocode, final boolean createDirs) {
return LocalStorage.getStorageFile(geocode, "direction.png", false, createDirs);
}
}
|