/* * 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 . */ package com.juick.http.www; import com.juick.Tag; import com.juick.server.TagQueries; import java.io.IOException; import java.io.PrintWriter; import java.io.UnsupportedEncodingException; import java.net.URLEncoder; import java.sql.Connection; import java.util.ArrayList; import javax.servlet.ServletException; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; /** * * @author Ugnich Anton */ public class NewMessage { protected void doGetNewMessage(Connection sql, HttpServletRequest request, HttpServletResponse response, com.juick.User visitor) throws ServletException, IOException { response.setContentType("text/html; charset=UTF-8"); PrintWriter out = response.getWriter(); try { PageTemplates.pageHead(out, "Написать", "" + "" + "" + ""); if (!Utils.isMobileRequest(request)) { PageTemplates.pageNavigation(out, visitor, null); } out.println("
"); out.println("
"); out.println("

Место: Отменить

"); out.println("

Фото: (JPG, PNG, до 10Мб)

"); String body = request.getParameter("body"); if (body == null) { body = ""; } else { if (body.length() > 4096) { body = body.substring(0, 4096); } body = Utils.encodeHTML(body); } out.println("


"); out.println("" + "" + "

"); out.println("
"); out.println("
"); out.println("

Теги:

"); printUserTags(sql, out, visitor); out.println("
"); if (!Utils.isMobileRequest(request)) { PageTemplates.pageFooter(request, out, visitor, false); } PageTemplates.pageEnd(out); } finally { out.close(); } } void printUserTags(Connection sql, PrintWriter out, com.juick.User visitor) { ArrayList tags = TagQueries.getUserTagsAll(sql, visitor.UID); if (tags.isEmpty()) { return; } int min = tags.get(0).UsageCnt; int max = tags.get(0).UsageCnt; for (int i = 1; i < tags.size(); i++) { int usagecnt = tags.get(i).UsageCnt; if (usagecnt < min) { min = usagecnt; } if (usagecnt > max) { max = usagecnt; } } max -= min; out.print("

"); for (int i = 0; i < tags.size(); i++) { if (i > 0) { out.print(" "); } String taglink = ""; try { taglink = "" + Utils.encodeHTML(tags.get(i).Name) + ""; } catch (UnsupportedEncodingException e) { } int usagecnt = tags.get(i).UsageCnt; if (usagecnt <= max / 5 + min) { out.print("" + taglink + ""); } else if (usagecnt <= max / 5 * 2 + min) { out.print(taglink); } else if (usagecnt <= max / 5 * 3 + min) { out.print("" + taglink + ""); } else if (usagecnt <= max / 5 * 4 + min) { out.print("" + taglink + ""); } else { out.print("" + taglink + ""); } } out.println("

"); } protected void doPostNewMessage(Connection sql, HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { } }