com.vilt.minium.app.controller.SelectorGadgetController Maven / Gradle / Ivy
/*
* Copyright (C) 2013 The Minium Authors
*
* 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 com.vilt.minium.app.controller;
import static com.vilt.minium.Minium.$;
import static java.lang.String.format;
import static org.springframework.web.bind.annotation.RequestMethod.GET;
import static org.springframework.web.bind.annotation.RequestMethod.POST;
import org.apache.commons.lang3.StringUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import com.vilt.minium.WebElementsDriver;
import com.vilt.minium.app.webdrivers.WebElementsDriverManager;
import com.vilt.minium.app.webelements.SelectorGadgetWebElements;
@Controller
@RequestMapping("/selectorGadget")
public class SelectorGadgetController {
private static final Logger log = LoggerFactory.getLogger(SelectorGadgetController.class);
@Autowired
private WebElementsDriverManager wdManager;
@RequestMapping(value = "/{var}/activate", method = { POST, GET })
public ResponseEntity activateSelectorGadget(@PathVariable("var") String var,
@RequestParam(value = "previousVar", required = false) String previousVar) throws Exception {
try {
if (StringUtils.isNotBlank(previousVar)) {
deactivateSelectorGadget(previousVar);
}
} catch (Exception e) {
log.warn("Could not deactivate previous var {}", previousVar);
}
SelectorGadgetWebElements elems = getSelectorGadgetWebElements(var);
if (elems == null) {
return new ResponseEntity(HttpStatus.NOT_FOUND);
}
elems.activateSelectorGadget();
return new ResponseEntity(HttpStatus.OK);
}
@RequestMapping(value = "/{var}/deactivate", method = { POST, GET })
public ResponseEntity deactivateSelectorGadget(@PathVariable("var") String var) throws Exception {
SelectorGadgetWebElements elems = getSelectorGadgetWebElements(var);
if (elems == null) {
return new ResponseEntity(HttpStatus.NOT_FOUND);
}
elems.deactivateSelectorGadget();
return new ResponseEntity(HttpStatus.OK);
}
@RequestMapping(value = "/{var}/cssSelector", method = { POST, GET })
public ResponseEntity getCssSelector(@PathVariable("var") String var) throws Exception {
SelectorGadgetWebElements elems = getSelectorGadgetWebElements(var);
SelectorGadgetResult result = new SelectorGadgetResult();
result.setWebDriverVarName(var);
String cssSelector = elems.getCssSelector();
if (cssSelector != null) {
result.setExpression(format("$(%s, \"%s\")", var, cssSelector));
}
return new ResponseEntity(result, HttpStatus.OK);
}
protected SelectorGadgetWebElements getSelectorGadgetWebElements(String var) {
WebElementsDriver> wd = wdManager.get(var);
if (wd == null) {
return null;
}
return $(wd).as(SelectorGadgetWebElements.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy