Package org.zaproxy.zap.extension.reveal

Source Code of org.zaproxy.zap.extension.reveal.RevealAPI

/*
* Zed Attack Proxy (ZAP) and its related class files.
*
* ZAP is an HTTP/HTTPS proxy for assessing web application security.
*
* Copyright 2014 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.reveal;

import net.sf.json.JSONObject;

import org.zaproxy.zap.extension.api.ApiAction;
import org.zaproxy.zap.extension.api.ApiException;
import org.zaproxy.zap.extension.api.ApiImplementor;
import org.zaproxy.zap.extension.api.ApiResponse;
import org.zaproxy.zap.extension.api.ApiResponseElement;
import org.zaproxy.zap.extension.api.ApiView;

public class RevealAPI extends ApiImplementor {

    private static final String PREFIX = "reveal";

    private static final String ACTION_SET_REVEAL = "setReveal";

    private static final String VIEW_REVEAL = "reveal";

    private static final String PARAM_REVEAL = "reveal";

    private final ExtensionReveal extension;

    public RevealAPI(ExtensionReveal extension) {
        this.addApiAction(new ApiAction(ACTION_SET_REVEAL, new String[] { PARAM_REVEAL }));

        this.addApiView(new ApiView(VIEW_REVEAL));

        this.extension = extension;
    }

    @Override
    public String getPrefix() {
        return PREFIX;
    }

    @Override
    public ApiResponse handleApiAction(String name, JSONObject params) throws ApiException {

        if (ACTION_SET_REVEAL.equals(name)) {
            extension.setReveal(getParam(params, PARAM_REVEAL, false));
        } else {
            throw new ApiException(ApiException.Type.BAD_ACTION);
        }
        return ApiResponseElement.OK;
    }

    @Override
    public ApiResponse handleApiView(String name, JSONObject params) throws ApiException {
        ApiResponse result = null;

        if (VIEW_REVEAL.equals(name)) {
            result = new ApiResponseElement(name, Boolean.toString(extension.isReveal()));
        } else {
            throw new ApiException(ApiException.Type.BAD_VIEW);
        }
        return result;
    }

}
TOP

Related Classes of org.zaproxy.zap.extension.reveal.RevealAPI

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.