aboutsummaryrefslogtreecommitdiff
path: root/WordPress/src/main/java/org/wordpress/android/ui/stats/models/ReferrerGroupModel.java
blob: e093c0006da297a12cc7e47ce55693b892fea846 (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
package org.wordpress.android.ui.stats.models;

import android.text.TextUtils;

import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
import org.wordpress.android.ui.stats.StatsUtils;
import org.wordpress.android.util.JSONUtils;

import java.io.Serializable;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;

/**
 * A model to represent a referrer group stat
 */
public class ReferrerGroupModel implements Serializable {
    private String mBlogId;
    private long mDate;

    private String mGroupId;
    private String mName;
    private String mIcon;
    private int mTotal;
    private String mUrl;
    private List<ReferrerResultModel> mResults;

    public transient boolean isRestCallInProgress = false;
    public transient boolean isMarkedAsSpam = false;

    public ReferrerGroupModel(String blogId, String date, JSONObject groupJSON) throws JSONException {
        setBlogId(blogId);
        setDate(StatsUtils.toMs(date));

        setGroupId(groupJSON.getString("group"));
        setName(groupJSON.getString("name"));
        setTotal(groupJSON.getInt("total"));
        setIcon(JSONUtils.getString(groupJSON, "icon"));

        // if URL is set in the response there is one result only.
        if (!TextUtils.isEmpty(JSONUtils.getString(groupJSON, "url"))) {
            setUrl(JSONUtils.getString(groupJSON, "url"));
        }

        // results is an array when there are results, otherwise it's an object.
        JSONArray resultsArray = groupJSON.optJSONArray("results");
        if (resultsArray != null) {
            mResults = new ArrayList<>();
            for (int i = 0; i < resultsArray.length(); i++) {
                JSONObject currentResultJSON = resultsArray.getJSONObject(i);
                ReferrerResultModel currentResultModel = new ReferrerResultModel(blogId,
                        date, currentResultJSON);
                mResults.add(currentResultModel);
            }
            // Sort the results by views.
            Collections.sort(mResults, new java.util.Comparator<ReferrerResultModel>() {
                public int compare(ReferrerResultModel o1, ReferrerResultModel o2) {
                    // descending order
                    return o2.getViews() - o1.getViews();
                }
            });
        }
    }

    public String getBlogId() {
        return mBlogId;
    }

    private void setBlogId(String blogId) {
        this.mBlogId = blogId;
    }

    public long getDate() {
        return mDate;
    }

    private void setDate(long date) {
        this.mDate = date;
    }

    public String getGroupId() {
        return mGroupId;
    }

    private void setGroupId(String groupId) {
        this.mGroupId = groupId;
    }

    public String getName() {
        return mName;
    }

    private void setName(String name) {
        this.mName = name;
    }

    public int getTotal() {
        return mTotal;
    }

    private void setTotal(int total) {
        this.mTotal = total;
    }

    public String getUrl() {
        return mUrl;
    }

    private void setUrl(String url) {
        this.mUrl = url;
    }

    public String getIcon() {
        return mIcon;
    }

    private void setIcon(String icon) {
        this.mIcon = icon;
    }

    public List<ReferrerResultModel> getResults() { return mResults; }
}