Update request mappings to use the new builder

This commit is contained in:
Marcel Schwarz 2020-03-18 01:01:06 +01:00
parent ca1b4e3802
commit a4eab715e9
2 changed files with 44 additions and 5 deletions

View File

@ -15,6 +15,7 @@ repositories {
dependencies { dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web' implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-actuator' implementation 'org.springframework.boot:spring-boot-starter-actuator'
implementation 'com.google.code.gson:gson:2.8.6'
testImplementation('org.springframework.boot:spring-boot-starter-test') { testImplementation('org.springframework.boot:spring-boot-starter-test') {
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine' exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
} }

View File

@ -1,19 +1,57 @@
package de.icaotix.controller; package de.icaotix.controller;
import org.springframework.web.bind.annotation.RestController; import de.icaotix.generator.PasswordBuilder;
import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import java.util.HashMap;
import java.util.LinkedList;
import java.util.Map;
@RestController @RestController
public class DefaultController { public class DefaultController {
@RequestMapping("/") @RequestMapping("/")
public String index() { public Map<Object, Object> index() {
return "Greetings from Spring Boot, also from a Docker Container from Port 80!";
Map<Object, Object> map = new HashMap<>();
map.put("name", "PasswordAPI");
map.put("endpoint", "/api");
Map<Object, Object> params = new HashMap<>();
params.put("length", "int");
params.put("upper", "[on | off]");
params.put("lower", "[on | off]");
params.put("number", "[on | off]");
params.put("special", "[on | off]");
params.put("exclude", "string");
params.put("repeat", "int");
map.put("params", params);
return map;
} }
// https://passwordwolf.com/?length=8&upper=off&lower=off&special=off&exclude=012345&repeat=20
@RequestMapping("/api") @RequestMapping("/api")
public String standard() { public LinkedList<String> standard(
return "password"; @RequestParam(required = false, defaultValue = "8") int length,
@RequestParam(required = false, defaultValue = "on") String upper,
@RequestParam(required = false, defaultValue = "on") String lower,
@RequestParam(required = false, defaultValue = "on") String number,
@RequestParam(required = false, defaultValue = "off") String special,
@RequestParam(required = false, defaultValue = "") String exclude,
@RequestParam(required = false, defaultValue = "1") int repeat) {
return new PasswordBuilder()
.setLength(length)
.useUppercase(upper.equals("on"))
.useLowercase(lower.equals("on"))
.useNumbers(number.equals("on"))
.useSpecial(special.equals("on"))
.setExcludes(exclude)
.setRepeat(repeat)
.generate();
} }
} }