Пример #1
0
  @Override
  public ActionForward execute(
      ActionMapping mapping,
      ActionForm form,
      HttpServletRequest request,
      HttpServletResponse response)
      throws Exception {

    HttpSession session = request.getSession();
    EasyDelegate del = (EasyDelegate) session.getAttribute(Constantes.DELEGATE);

    Integer mapid = SigarUtils.parseInt(request.getParameter("mapid"));
    if (mapid == null) mapid = (Integer) request.getAttribute("mapid");

    Integer hsId = SigarUtils.parseInt(request.getParameter("hsId"));
    if (hsId != null) {
      request.setAttribute("hsId", hsId);
      Hotspot h = del.getHotspot(hsId);
      Layer la = del.getLayer(h.getHsLayer());
      mapid = la.getMapId();
    } else {
      NewHotspotForm.setNewHsStatus(request, 6);
    }

    Map m = del.getMap(mapid);
    Project p = del.getProject(m.getProjectId());

    request.setAttribute("mapid", mapid);
    request.setAttribute("map", m);
    request.setAttribute("project", p);

    return mapping.findForward("add_new_text");
  }
Пример #2
0
  @Override
  public ActionForward execute(
      ActionMapping mapping,
      ActionForm form,
      HttpServletRequest request,
      HttpServletResponse response)
      throws Exception {
    HttpSession session = request.getSession();
    EasyDelegate del = (EasyDelegate) session.getAttribute(Constantes.DELEGATE);

    Integer hsId = SigarUtils.parseInt(request.getParameter("hsId"));
    Hotspot hs = del.getHotspot(hsId);

    ////
    User user = (User) session.getAttribute(Constantes.USER);
    int offset = 0;
    // Checks if the user can edit the hotspot, to show the edit tab, otherwise
    // move tabs to the right in order to indent them to the right
    ReturnMessage r =
        del.hasPermission(user, "edit-media", hsId, com.bnmi.ourmap.Constantes.HOTSPOT);
    boolean canEditHs = r.isSuccess();
    boolean hasDescription =
        (hs.getHsDescription() != null && hs.getHsDescription().length() > 0) ? true : false;

    if (!canEditHs) offset += Constantes.EDIT_OFFSET;
    if (!hasDescription) offset += Constantes.DESCRIPTION_OFFSET;

    Integer baseOffset = (Integer) session.getAttribute("baseOffset");
    request.setAttribute("offset", baseOffset.intValue() + offset);

    System.out.println("Show edit tab? " + canEditHs + " Show Summary tab? " + hasDescription);
    System.out.println(
        "Offset:"
            + offset
            + " Base Offset:"
            + baseOffset
            + " Total offset:"
            + (baseOffset + offset));
    //

    request.setAttribute("hs", hs);

    return mapping.findForward("viewhsdescription");
  }