blob: 17c253a62d2df4ad913b65ad0d73f5218fa4245d (
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.Parameters;
import cgeo.geocaching.cgBase;
import cgeo.geocaching.files.LocalStorage;
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 =
cgBase.request("http://www.geocaching.com/ImgGen/seek/CacheDir.ashx", new Parameters("k", code), false);
if (httpResponse != null) {
LocalStorage.saveEntityToFile(httpResponse.getEntity(), getDirectionFile(geocode, true));
}
}
public static File getDirectionFile(final String geocode, final boolean createDirs) {
return LocalStorage.getStorageFile(geocode, "direction.png", false, createDirs);
}
}
|