adminservlets_reports.BlockAdJson.java Source code

Java tutorial

Introduction

Here is the source code for adminservlets_reports.BlockAdJson.java

Source

/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package adminservlets_reports;

import classes.AdminClass_BlockedItems;
import classes.AdminClass_Links;
import classes.AdminClass_Message;
import classes.AdminClass_ReportedItems;
import classes.AdminClass_SendMail;
import com.google.gson.Gson;
import com.google.gson.JsonObject;
import java.io.IOException;
import java.io.PrintWriter;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

/**
 *
 * @author SithuDewmi
 */
public class BlockAdJson extends HttpServlet {

    /**
     * Processes requests for both HTTP <code>GET</code> and <code>POST</code>
     * methods.
     *
     * @param request servlet request
     * @param response servlet response
     * @throws ServletException if a servlet-specific error occurs
     * @throws IOException if an I/O error occurs
     */
    protected void processRequest(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, IOException {
        response.sendError(HttpServletResponse.SC_NOT_FOUND);
    }

    // <editor-fold defaultstate="collapsed" desc="HttpServlet methods. Click on the + sign on the left to edit the code.">
    /**
     * Handles the HTTP <code>GET</code> method.
     *
     * @param request servlet request
     * @param response servlet response
     * @throws ServletException if a servlet-specific error occurs
     * @throws IOException if an I/O error occurs
     */
    @Override
    protected void doGet(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, IOException {
        processRequest(request, response);
    }

    /**
     * Handles the HTTP <code>POST</code> method.
     *
     * @param request servlet request
     * @param response servlet response
     * @throws ServletException if a servlet-specific error occurs
     * @throws IOException if an I/O error occurs
     */
    @Override
    protected void doPost(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, IOException {
        String alert = null;

        if (request.getParameter("itemBA") != null && request.getParameter("reportBA") != null) {
            AdminClass_ReportedItems art = new AdminClass_ReportedItems();
            AdminClass_SendMail as = new AdminClass_SendMail();
            AdminClass_Message am = new AdminClass_Message();
            AdminClass_BlockedItems ab = new AdminClass_BlockedItems();
            AdminClass_Links al = new AdminClass_Links();

            String reciever = art.getUserEmail(request.getParameter("toBA"));
            String subject = request.getParameter("subjectBA");
            String edit_link = "<a href='" + al.getAdEdit()
                    + "' target='blank'><p>Click here to Edit your advertisement</p></a>";

            String content = request.getParameter("contentBA_header") + "<br/><br/>"
                    + request.getParameter("contentBA_body");

            String itemId = request.getParameter("itemBA");
            String reason = "Blocked due to- " + request.getParameter("reasonBA");

            String inbox_content = request.getParameter("contentBA_header") + request.getParameter("contentBA_body")
                    + "\n\nPlease update your ad" + "\n" + "Regards,\n" + "The support team at Superb.lk\n" + "\n";

            int result = ab.blockItem(itemId, reason); //blocking advertiesment
            int state = art.updateViewState(request.getParameter("reportBA"));//update report status
            int inbox_result = am.sendMessage(inbox_content, request.getParameter("toBA"));
            int result2 = as.mailClass(reciever, subject, content, edit_link);//sending mail to the user

            if (result == 1 && state == 1) {

                alert = "<button class=\"btn btn-green\">" //returning notification of the success 
                        + "<i  class=\"glyphicon glyphicon-ok-sign\">"
                        + "</i></button><br><strong>Blocked !</strong>  Advertiesment number " + itemId + "  ";

            } else {

                alert = "<button class=\"btn btn-red\">" //returning notification of the failure 
                        + "<i  class=\"glyphicon glyphicon-remove-circle\">"
                        + "</i></button><br><strong>Failed!</strong> Advertiesment number " + itemId
                        + " Try again.";

            }
        }
        PrintWriter out = response.getWriter();

        Gson gson = new Gson();
        JsonObject myObj = new JsonObject();

        myObj.addProperty("result", alert);

        out.write(myObj.toString());
        out.close();
    }

    /**
     * Returns a short description of the servlet.
     *
     * @return a String containing servlet description
     */
    @Override
    public String getServletInfo() {
        return "Short description";
    }// </editor-fold>

}