aboutsummaryrefslogtreecommitdiff
blob: 2000eab908b382c924ba8d92608e2d49807ca81a (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
package org.marcinzelent.liberavem;

import android.app.Activity;
import android.widget.Toast;

import com.android.volley.Request;
import com.android.volley.Response;
import com.android.volley.VolleyError;
import com.android.volley.toolbox.StringRequest;
import com.android.volley.toolbox.Volley;
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;

import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import java.util.Locale;

public class DataKeeper {

    private static final DataKeeper instance = new DataKeeper();

    public static DataKeeper getInstance() {
        return instance;
    }

    private DataKeeper() {
    }

    private Bird[] birds;
    private Observation[] observations;

    public Bird[] getBirds() {
        return birds;
    }

    public void setBirds(Bird[] birds) {
        this.birds = birds;
    }

    public Observation[] getObservations() {
        return observations;
    }

    public void setObservations(Observation[] observations) {
        this.observations = observations;
    }

    public void downloadData(final Activity activity) {
        downloadBirds(activity);
        downloadObservations(activity);
    }

    private void downloadBirds(final Activity activity) {
        String birdsUrl = "http://birdobservationservice.azurewebsites.net/Service1.svc/birds";
        final StringRequest birdsRequest = new StringRequest(Request.Method.GET, birdsUrl, new Response.Listener<String>() {
            @Override
            public void onResponse(String response) {
                Gson gson = new GsonBuilder().create();
                birds = gson.fromJson(response, Bird[].class);

                callPopulator(activity);
            }
        }, new com.android.volley.Response.ErrorListener() {
            @Override
            public void onErrorResponse(VolleyError error) {
                Toast.makeText(activity, "Couldn't connect to the database!", Toast.LENGTH_LONG).show();
            }
        });

        Volley.newRequestQueue(activity).add(birdsRequest);
    }

    private void downloadObservations(final Activity activity) {
        String observationsUrl = "http://birdobservationservice.azurewebsites.net/Service1.svc/observations";
        final StringRequest observationsRequest = new StringRequest(Request.Method.GET, observationsUrl, new Response.Listener<String>() {
            @Override
            public void onResponse(String response) {
                Gson gson = new GsonBuilder().create();
                observations = gson.fromJson(response, Observation[].class);
                for (Observation o : observations) {
                    int p = o.getCreated().indexOf('+');
                    long epoch = Long.parseLong(o.getCreated().substring(6, p));
                    Date date = new Date(epoch);
                    String formatted = new SimpleDateFormat("dd.MM.yyyy HH:mm", Locale.ENGLISH).format(date);
                    o.setCreated(formatted);
                }
                callPopulator(activity);
            }
        }, new com.android.volley.Response.ErrorListener() {
            @Override
            public void onErrorResponse(VolleyError error) {
                Toast.makeText(activity, "Couldn't connect to the database!", Toast.LENGTH_LONG).show();
            }
        });

        Volley.newRequestQueue(activity).add(observationsRequest);
    }

    private void callPopulator(Activity activity) {
        if (birds != null && observations != null) {
            MyObservationsFragment mo = (MyObservationsFragment) ((MainActivity)activity).getObservationFragments().get(0);
            List<Observation> myObservationsList = new ArrayList<>();
            for (Observation o : observations)
                if (o.getUserId().equals("Sminem")) myObservationsList.add(o);

            Observation[] myObservations = new Observation[myObservationsList.size()];
            myObservations = myObservationsList.toArray(myObservations);
            mo.populateList(myObservations, birds);
            AllObservationsFragment aof = (AllObservationsFragment) ((MainActivity)activity).getObservationFragments().get(1);
            aof.populateList(observations, birds);
        }
    }
}