How to use InteractiveTutoDTO method of org.cerberus.dto.InteractiveTutoDTO class

Best Cerberus-source code snippet using org.cerberus.dto.InteractiveTutoDTO.InteractiveTutoDTO

Source:InteractiveTutoController.java Github

copy

Full Screen

...21import org.apache.commons.collections.ListUtils;22import org.cerberus.crud.entity.InteractiveTuto;23import org.cerberus.crud.entity.InteractiveTutoStep;24import org.cerberus.crud.service.impl.InteractiveTutoService;25import org.cerberus.dto.InteractiveTutoDTO;26import org.cerberus.dto.InteractiveTutoStepDTO;27import org.springframework.beans.factory.annotation.Autowired;28import org.springframework.http.HttpStatus;29import org.springframework.http.ResponseEntity;30import org.springframework.util.CollectionUtils;31import org.springframework.web.bind.annotation.RequestMapping;32import org.springframework.web.bind.annotation.RequestMethod;33import org.springframework.web.bind.annotation.ResponseBody;34import org.springframework.web.bind.annotation.RestController;35import javax.servlet.http.HttpServletRequest;36import java.util.LinkedList;37import java.util.List;38import java.util.stream.Collectors;39@RestController40@RequestMapping("/interactiveTuto")41public class InteractiveTutoController {42 @Autowired43 private InteractiveTutoService interactiveTutoService;44 @RequestMapping("/get")45 public ResponseEntity<InteractiveTutoDTO> getInteractiveTuto(final int id, HttpServletRequest request) {46 String lang = (String) request.getSession().getAttribute("MyLang");47 if(lang == null)48 lang = "fr";49 InteractiveTuto it = interactiveTutoService.getInteractiveTutorial(id, true, lang);50 if (it == null) {51 return new ResponseEntity<>(HttpStatus.NOT_FOUND);52 }53 // TODO create a converter54 InteractiveTutoDTO result = new InteractiveTutoDTO(it.getId(), it.getTitle(), it.getDescription(), it.getRole(), it.getOrder(), it.getLevel().getValue());55 if (!CollectionUtils.isEmpty(it.getSteps())) {56 result.setSteps(new LinkedList<>());57 for (InteractiveTutoStep step : it.getSteps()) {58 result.getSteps().add(new InteractiveTutoStepDTO(step.getId(), step.getSelectorJquery(), step.getText(), step.getType(), step.getAttr1()));59 }60 }61 return new ResponseEntity<>(result, HttpStatus.OK);62 }63 @RequestMapping("/list")64 public ResponseEntity<List<InteractiveTutoDTO>> getListInteractiveTuto(HttpServletRequest request) {65 String lang = (String) request.getSession().getAttribute("MyLang");66 if(lang == null)67 lang = "fr";68 List<InteractiveTuto> it = interactiveTutoService.getListInteractiveTutorial(false, lang);69 if (CollectionUtils.isEmpty(it)) {70 return new ResponseEntity<>(HttpStatus.NOT_FOUND);71 }72 return new ResponseEntity<>(listInteractiveTuto(it), HttpStatus.OK);73 }74 private InteractiveTutoDTO convertInteractiveTuto(InteractiveTuto it) {75 InteractiveTutoDTO result = new InteractiveTutoDTO(it.getId(), it.getTitle(), it.getDescription(), it.getRole(), it.getOrder(), it.getLevel().getValue());76 if (!CollectionUtils.isEmpty(it.getSteps())) {77 result.setSteps(new LinkedList<>());78 for (InteractiveTutoStep step : it.getSteps()) {79 result.getSteps().add(new InteractiveTutoStepDTO(step.getId(), step.getSelectorJquery(), step.getText(), step.getType(), step.getAttr1()));80 }81 }82 return result;83 }84 private List<InteractiveTutoDTO> listInteractiveTuto(List<InteractiveTuto> itlist) {85 return itlist.stream().map(it -> convertInteractiveTuto(it)).collect(Collectors.toList());86 }87}...

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run Cerberus-source automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful