aboutsummaryrefslogtreecommitdiff
path: root/src/java/com/juick/http/www/UserThread.java
blob: 6688e96451dcd818e883305b7512a1dfafd13412 (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
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
/*
 * Juick
 * Copyright (C) 2008-2011, Ugnich Anton
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as
 * published by the Free Software Foundation, either version 3 of the
 * License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
package com.juick.http.www;

import com.juick.server.UserQueries;
import java.io.IOException;
import java.io.PrintWriter;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.ArrayList;
import java.util.Locale;
import java.util.ResourceBundle;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

/**
 *
 * @author Ugnich Anton
 */
public class UserThread {

    protected void doGetThread(Connection sql, HttpServletRequest request, HttpServletResponse response, com.juick.User user, int MID) throws ServletException, IOException {
        com.juick.User visitor = Utils.getVisitorUser(sql, request);
        Locale locale = request.getLocale();
        ResourceBundle rb = ResourceBundle.getBundle("User", locale);

        boolean listview = false;
        String paramView = request.getParameter("view");
        if (paramView != null) {
            if (paramView.equals("list")) {
                listview = true;
                if (visitor != null) {
                    UserQueries.setUserOptionInt(sql, visitor.UID, "repliesview", 1);
                }
            } else if (paramView.equals("tree") && visitor != null) {
                UserQueries.setUserOptionInt(sql, visitor.UID, "repliesview", 0);
            }
        } else if (visitor != null && UserQueries.getUserOptionInt(sql, visitor.UID, "repliesview", 0) == 1) {
            listview = true;
        }

        String title = "@" + user.UName + " - #" + MID;

        response.setContentType("text/html; charset=UTF-8");
        PrintWriter out = response.getWriter();
        try {
            PageTemplates.pageHead(out, title, null);
            PageTemplates.pageNavigation(out, locale, visitor);
            PageTemplates.pageUserTitle(out, sql, locale, user, visitor);

            out.println("<div id=\"wrapper\">");
            out.println("<div id=\"content\" style=\"margin-left: 0; width: 100%\">");

            out.println("<ul>");
            printMessage(out, sql, MID, locale);
            out.println("</ul>");

            out.println("<div class=\"title2\">");
            out.print("  <div class=\"title2-right\">");
            if (listview) {
                out.print("<a href=\"?view=tree\">" + rb.getString("View as tree") + "</a>");
            } else {
                out.print("<a href=\"#\" onclick=\"$('#replies>li').show(); $('#replies .msg-comments').hide(); return false\">" + rb.getString("Expand all") + "</a> &#183; <a href=\"?view=list\">" + rb.getString("View as list") + "</a>");
            }
            out.print("</div>");
            out.println("  <h2>Replies</h2>");
            out.println("</div>");

            out.println("<ul id=\"replies\">");
            printReplies(out, sql, MID, locale, listview);
            out.println("</ul>");

            out.println("<script type=\"text/javascript\">");
            out.println("$(\"textarea\").autoResize();");
            out.println("</script>");

            out.println("</div>");

            out.println("</div>");

            PageTemplates.pageFooter(out, locale);
        } finally {
            out.close();
        }
    }

    public static void printMessage(PrintWriter out, Connection sql, int mid, Locale locale) {
        ResourceBundle rb = ResourceBundle.getBundle("Global", locale);

        PreparedStatement stmt = null;
        ResultSet rs = null;
        try {
            stmt = sql.prepareStatement("SELECT STRAIGHT_JOIN messages.message_id,messages.user_id,users.nick,messages_txt.tags,messages.readonly,messages.privacy,messages_txt.txt,TIMESTAMPDIFF(MINUTE,messages.ts,NOW()),messages.ts,messages.replies,messages.attach,messages.place_id,places.name,messages.lat,messages.lon FROM ((messages INNER JOIN messages_txt ON messages.message_id=messages_txt.message_id) INNER JOIN users ON messages.user_id=users.id) LEFT JOIN places ON messages.place_id=places.place_id WHERE messages.message_id=?");
            stmt.setInt(1, mid);
            rs = stmt.executeQuery();
            if (rs.first()) {
                int uid = rs.getInt(2);
                String uname = rs.getString(3);
                String tags = rs.getString(4);
                String txt = rs.getString(7);
                // timediff
                // timestamp
                // replies
                // attach
                // pid
                // pname
                // lat
                // lon

                tags = (tags != null) ? PageTemplates.formatTags(tags) : "";
                if (rs.getInt(5) == 1) {
                    tags += " *readonly";
                }
                switch (rs.getInt(6)) {
                    case 2:
                        tags += " *public";
                        break;
                    case -1:
                        tags += " *friends";
                        break;
                    case -2:
                        tags += " *private";
                        break;
                }

                txt = PageTemplates.formatMessage(txt);

                out.println("  <li class=\"msg\" style=\"border: 0\">");

                if (rs.getString(11) != null) {
                    if (rs.getString(11).equals("jpg")) {
                        out.println("    <div class=\"msg-media\"><img src=\"http://i.juick.com/photos-512/" + mid + ".jpg\" alt=\"\"/></div>");
                    } else {
                        out.println("    <div class=\"msg-media\"><div id=\"video-" + mid + "\"><b>Attachment: <a href=\"http://i.juick.com/video/" + mid + ".mp4\">Video</a></b></div></div>");
                        out.println("    <script type=\"text/javascript\">");
                        out.println("    inlinevideo(" + mid + ");");
                        out.println("    </script>");
                    }
                }

                out.println("    <div class=\"msg-avatar\"><a href=\"/" + uname + "/\"><img src=\"http://i.juick.com/a/" + uid + ".png\"></a></div>");
                out.println("    <div class=\"msg-ts\"><a href=\"/" + uname + "/" + mid + "\">" + PageTemplates.formatDate(rs.getInt(8), rs.getString(9), locale) + "</a><div class=\"msg-menu\"><a href=\"#\" onclick=\"$('#msg-menu-" + mid + "').toggle('blind'); return false\"><img src=\"http://static.juick.com/message-menu-icon.png\"></a><ul id=\"msg-menu-" + mid + "\">");
                out.println("      <li><a href=\"#\" onclick=\"return false\">Under construction</a></li>");
                out.println("    </ul></div></div>");
                out.println("    <div class=\"msg-header\"><a href=\"/" + uname + "/\">@" + uname + "</a>:" + tags + "</div>");
                out.println("    <div class=\"msg-txt\">" + txt + "</div>");
                out.println("  </li>");
            }
        } catch (SQLException e) {
            System.err.println(e);
        } finally {
            Utils.finishSQL(rs, stmt);
        }

    }

    public static void printReplies(PrintWriter out, Connection sql, int mid, Locale locale, boolean listview) {
        ArrayList<com.juick.Message> replies = new ArrayList<com.juick.Message>();

        PreparedStatement stmt = null;
        ResultSet rs = null;
        try {
            stmt = sql.prepareStatement("SELECT replies.reply_id,replies.replyto,replies.user_id,users.nick,replies.txt,TIMESTAMPDIFF(MINUTE,replies.ts,NOW()),replies.ts,replies.attach FROM replies INNER JOIN users ON replies.user_id=users.id WHERE replies.message_id=? ORDER BY replies.reply_id ASC");
            stmt.setInt(1, mid);
            rs = stmt.executeQuery();
            rs.beforeFirst();
            while (rs.next()) {
                com.juick.Message msg = new com.juick.Message();
                msg.MID = mid;
                msg.RID = rs.getInt(1);
                msg.ReplyTo = rs.getInt(2);
                msg.User = new com.juick.User();
                msg.User.UID = rs.getInt(3);
                msg.User.UName = rs.getString(4);
                msg.Text = PageTemplates.formatMessage(rs.getString(5));
                msg.MinutesAgo = rs.getInt(6);
                msg.TimestampString = rs.getString(7);
                msg.AttachmentType = rs.getString(8);

                replies.add(msg);

                if (msg.ReplyTo > 0) {
                    boolean added = false;
                    for (int i = 0; i < replies.size(); i++) {
                        if (replies.get(i).RID == msg.ReplyTo) {
                            replies.get(i).childs.add(msg);
                            added = true;
                            break;
                        }
                    }
                    if (!added) {
                        msg.ReplyTo = 0;
                    }
                }
            }
        } catch (SQLException e) {
            System.err.println(e);
        } finally {
            Utils.finishSQL(rs, stmt);
        }

        if (listview) {
            printList(out, replies, locale);
        } else {
            printTree(out, replies, 0, 0, locale);
        }

        for (int i = 0; i < replies.size(); i++) {
            replies.get(i).cleanupChilds();
        }
        replies.clear();
    }

    public static void printTree(PrintWriter out, ArrayList<com.juick.Message> replies, int ReplyTo, int margin, Locale locale) {
        for (int i = 0; i < replies.size(); i++) {
            com.juick.Message msg = replies.get(i);
            if (msg.ReplyTo == ReplyTo) {

                out.print("  <li id=\"" + msg.RID + "\" class=\"msg\" style=\"");
                if (i == 0) {
                    out.print("border: 0;");
                }
                if (margin > 0) {
                    out.print("margin-left: " + margin + "px;display:none;");
                }
                out.println("\">");
                if (msg.AttachmentType != null) {
                    if (msg.AttachmentType.equals("jpg")) {
                        out.println("    <div class=\"msg-media\"><img src=\"http://i.juick.com/photos-512/" + msg.MID + "-" + msg.RID + ".jpg\" alt=\"\"/></div>");
                    } else {
                        out.println("    <div class=\"msg-media\"><div id=\"video-" + msg.MID + "-" + msg.RID + "\"><b>Attachment: <a href=\"http://i.juick.com/video/" + msg.MID + "-" + msg.RID + ".mp4\">Video</a></b></div></div>");
                        out.println("    <script type=\"text/javascript\">");
                        out.println("    inlinevideo('" + msg.MID + "-" + msg.RID + "');");
                        out.println("    </script>");
                    }
                }
                out.println("    <div class=\"msg-avatar\"><a href=\"/" + msg.User.UName + "/\"><img src=\"http://i.juick.com/a/" + msg.User.UID + ".png\"></a></div>");
                out.println("    <div class=\"msg-ts\"><a href=\"/" + msg.User.UName + "/" + msg.MID + "#" + msg.RID + "\">" + PageTemplates.formatDate(msg.MinutesAgo, msg.TimestampString, locale) + "</a><div class=\"msg-menu\"><a href=\"#\" onclick=\"return msgMenu(" + msg.MID + ")\"><img src=\"http://static.juick.com/message-menu-icon.png\"></a><ul id=\"msg-menu-" + msg.MID + "\">");
                out.println("      <li><a href=\"#\" onclick=\"return false\">Under construction</a></li>");
                out.println("    </ul></div></div>");
                out.println("    <div class=\"msg-header\"><a href=\"/" + msg.User.UName + "/\">@" + msg.User.UName + "</a>:</div>");
                out.println("    <div class=\"msg-txt\">" + msg.Text + "</div>");
                if (ReplyTo == 0) {
                    int childs = msg.getChildsCount() - 1;
                    if (childs > 0) {
                        out.println("    <div class=\"msg-comments\"><a href=\"#\" onclick=\"return showMoreReplies(" + msg.RID + ")\">" + PageTemplates.formatReplies(childs, locale) + " more</a></div>");
                    }
                }
                out.println("  </li>");

                printTree(out, replies, msg.RID, margin + 20, locale);
            }
        }
    }

    public static void printList(PrintWriter out, ArrayList<com.juick.Message> replies, Locale locale) {
        for (int i = 0; i < replies.size(); i++) {
            com.juick.Message msg = replies.get(i);

            out.print("  <li id=\"" + msg.RID + "\" class=\"msg\"" + (i == 0 ? " style=\"border: 0\"" : "") + ">");
            if (msg.AttachmentType != null) {
                if (msg.AttachmentType.equals("jpg")) {
                    out.println("    <div class=\"msg-media\"><img src=\"http://i.juick.com/photos-512/" + msg.MID + "-" + msg.RID + ".jpg\" alt=\"\"/></div>");
                } else {
                    out.println("    <div class=\"msg-media\"><div id=\"video-" + msg.MID + "-" + msg.RID + "\"><b>Attachment: <a href=\"http://i.juick.com/video/" + msg.MID + "-" + msg.RID + ".mp4\">Video</a></b></div></div>");
                    out.println("    <script type=\"text/javascript\">");
                    out.println("    inlinevideo('" + msg.MID + "-" + msg.RID + "');");
                    out.println("    </script>");
                }
            }
            out.println("    <div class=\"msg-avatar\"><a href=\"/" + msg.User.UName + "/\"><img src=\"http://i.juick.com/a/" + msg.User.UID + ".png\"></a></div>");
            out.println("    <div class=\"msg-ts\"><a href=\"/" + msg.User.UName + "/" + msg.MID + "#" + msg.RID + "\">" + PageTemplates.formatDate(msg.MinutesAgo, msg.TimestampString, locale) + "</a><div class=\"msg-menu\"><a href=\"#\" onclick=\"return msgMenu(" + msg.MID + ")\"><img src=\"http://static.juick.com/message-menu-icon.png\"></a><ul id=\"msg-menu-" + msg.MID + "\">");
            out.println("      <li><a href=\"#\" onclick=\"return false\">Under construction</a></li>");
            out.println("    </ul></div></div>");
            out.println("    <div class=\"msg-header\"><a href=\"/" + msg.User.UName + "/\">@" + msg.User.UName + "</a>:</div>");
            out.println("    <div class=\"msg-txt\">" + msg.Text + "</div>");
            out.println("  </li>");
        }
    }
}