aboutsummaryrefslogtreecommitdiff
path: root/src/java/com/juick/api/Messages.java
blob: 3aeede6807bfc51d2937e5e38f360eb863f094ec (plain) (blame)
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
package com.juick.api;

import com.juick.server.MessagesQueries;
import java.io.IOException;
import java.sql.Connection;
import java.util.ArrayList;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

/**
 *
 * @author ugnich
 */
public class Messages {

    Connection sql;

    public Messages(Connection sql) {
        this.sql = sql;
    }

    public void doGetHome(HttpServletRequest request, HttpServletResponse response, int vuid) throws ServletException, IOException {
        int before_mid = Utils.parseInt(request.getParameter("before_mid"), 0);

        ArrayList<Integer> mids = MessagesQueries.getMyFeed(sql, vuid, before_mid);
        if (mids != null && !mids.isEmpty()) {
            ArrayList<com.juick.Message> msgs = MessagesQueries.getMessages(sql, mids);
            if (msgs != null && !msgs.isEmpty()) {
                String json = com.juick.json.Messages.arrayToString(msgs);
                Main.replyJSON(request, response, json);
            } else {
                response.sendError(404);
            }
        } else {
            response.sendError(404);
        }
    }

    public void doSetPopular(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
        int mid = Utils.parseInt(request.getParameter("mid"), 0);
        int popular = Utils.parseInt(request.getParameter("popular"), 0);

        if (mid > 0) {
            MessagesQueries.setMessagePopular(sql, mid, popular);
            Main.replyJSON(request, response, "{\"status\":\"ok\"}");
        }
    }
}