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

import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;

import java.util.ArrayList;
import java.util.List;


public class CommentFollowersModel extends BaseStatsModel {
    private String mBlogID;
    private int mPage;
    private int mPages;
    private int mTotal;
    private List<SingleItemModel> mPosts;

    public CommentFollowersModel(String blogID, JSONObject response) throws JSONException {
        this.mBlogID = blogID;
        this.mPage = response.getInt("page");
        this.mPages = response.getInt("pages");
        this.mTotal = response.getInt("total");

        JSONArray postsJSONArray = response.optJSONArray("posts");
        if (postsJSONArray != null) {
            mPosts = new ArrayList<>(postsJSONArray.length());
            for (int i = 0; i < postsJSONArray.length(); i++) {
                JSONObject currentPostJSON = postsJSONArray.getJSONObject(i);
                String postId = String.valueOf(currentPostJSON.getInt("id"));
                String title = currentPostJSON.getString("title");
                int followers = currentPostJSON.getInt("followers");
                String url = currentPostJSON.getString("url");
                SingleItemModel currentPost = new SingleItemModel(blogID, null, postId, title, followers, url, null);
                mPosts.add(currentPost);
            }
        }
    }

    public String getBlogID() {
        return mBlogID;
    }

    public void setBlogID(String blogID) {
        this.mBlogID = blogID;
    }

    public List<SingleItemModel> getPosts() {
        return this.mPosts;
    }

    public int getTotal() {
        return mTotal;
    }

    public int getPage() {
        return mPage;
    }

    public int getPages() {
        return mPages;
    }

}