Package org.zaproxy.zap.extension.websocket.ui

Source Code of org.zaproxy.zap.extension.websocket.ui.PopupExcludeWebSocketFromContextMenu

/*
* Zed Attack Proxy (ZAP) and its related class files.
*
* ZAP is an HTTP/HTTPS proxy for assessing web application security.
*
* Copyright 2012 The ZAP Development Team
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*   http://www.apache.org/licenses/LICENSE-2.0
*  
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.zaproxy.zap.extension.websocket.ui;

import java.awt.Component;
import java.sql.SQLException;
import java.util.regex.Pattern;

import javax.swing.JTable;

import org.apache.log4j.Logger;
import org.parosproxy.paros.model.Model;
import org.parosproxy.paros.model.Session;
import org.parosproxy.paros.view.View;
import org.zaproxy.zap.extension.websocket.WebSocketMessageDTO;
import org.zaproxy.zap.model.Context;
import org.zaproxy.zap.view.ContextExcludePanel;
import org.zaproxy.zap.view.popup.PopupMenuItemExcludeFromContext;

public class PopupExcludeWebSocketFromContextMenu extends PopupMenuItemExcludeFromContext {

  private static final long serialVersionUID = -2345060529128495874L;

    private static final Logger logger = Logger.getLogger(PopupExcludeWebSocketFromContextMenu.class);

  private WebSocketPopupHelper wsPopupHelper;

  public PopupExcludeWebSocketFromContextMenu(Context context) {
    super(context);
   
    initialize();
  }
 
    @Override
    public String getParentMenuName() {
      return PopupExcludeWebSocketContextMenu.MENU_NAME;
    }
   
    private void initialize() {
      addActionListener(new java.awt.event.ActionListener() {
        @Override
        public void actionPerformed(java.awt.event.ActionEvent evt) {
            try {
              performAction();
        } catch (Exception e) {
          logger.error(e.getMessage(), e);
        }
        }
      });
    }
   
  protected void performAction() throws SQLException {
    WebSocketMessageDTO message = wsPopupHelper.getSelectedMessage();
    if (message != null) {
      String url = Pattern.quote(message.channel.getContextUrl());
         
          Session session = Model.getSingleton().getSession();
            context.addExcludeFromContextRegex(url);
            session.saveContext(context);

            View.getSingleton().showSessionDialog(session, ContextExcludePanel.getPanelName(context.getIndex()));
    }
  }
 
  @Override
    public boolean isEnableForComponent(Component invoker) {
    String invokerName = invoker.getName();
    if (invokerName != null && invokerName.equals(WebSocketMessagesView.PANEL_NAME)) {
      wsPopupHelper = new WebSocketPopupHelper((JTable) invoker);
      WebSocketMessageDTO message = wsPopupHelper.getSelectedMessage();
     
      if (message != null) {      
        String url = message.channel.getContextUrl();        
                setEnabled(isEnabledForUrl(url));
            } else {
                setEnabled(false);
            }
           
      return true;
      }
      return false;
  }

  private boolean isEnabledForUrl (String url) {
    if (!context.isIncluded(url) || context.isExcluded(url)) {
      // Either not included or excluded, so would have to change that regex in a non trivial way to include!
      return false;
    }
      return true;
    }
}
TOP

Related Classes of org.zaproxy.zap.extension.websocket.ui.PopupExcludeWebSocketFromContextMenu

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.