JobsController.java
package edu.ucsb.cs156.happiercows.controllers;
import com.fasterxml.jackson.databind.ObjectMapper;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import io.swagger.annotations.ApiParam;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Import;
import org.springframework.security.access.prepost.PreAuthorize;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.PutMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
import edu.ucsb.cs156.happiercows.entities.jobs.Job;
import edu.ucsb.cs156.happiercows.jobs.InstructorReportJob;
import edu.ucsb.cs156.happiercows.jobs.MilkTheCowsJob;
import edu.ucsb.cs156.happiercows.jobs.MilkTheCowsJobFactory;
import edu.ucsb.cs156.happiercows.jobs.SetCowHealthJobFactory;
import edu.ucsb.cs156.happiercows.jobs.TestJob;
import edu.ucsb.cs156.happiercows.jobs.UpdateCowHealthJob;
import edu.ucsb.cs156.happiercows.jobs.UpdateCowHealthJobFactory;
import edu.ucsb.cs156.happiercows.repositories.jobs.JobsRepository;
import edu.ucsb.cs156.happiercows.services.jobs.JobContextConsumer;
import edu.ucsb.cs156.happiercows.services.jobs.JobService;
@Slf4j
@Api(description = "Jobs")
@RequestMapping("/api/jobs")
@RestController
public class JobsController extends ApiController {
@Autowired
private JobsRepository jobsRepository;
@Autowired
private JobService jobService;
@Autowired
ObjectMapper mapper;
@Autowired
UpdateCowHealthJobFactory updateCowHealthJobFactory;
@Autowired
MilkTheCowsJobFactory milkTheCowsJobFactory;
@Autowired
SetCowHealthJobFactory setCowHealthJobFactory;
@ApiOperation(value = "List all jobs")
@PreAuthorize("hasRole('ROLE_ADMIN')")
@GetMapping("/all")
public Iterable<Job> allJobs() {
Iterable<Job> jobs = jobsRepository.findAll();
return jobs;
}
@ApiOperation(value = "Launch Test Job (click fail if you want to test exception handling)")
@PreAuthorize("hasRole('ROLE_ADMIN')")
@PostMapping("/launch/testjob")
public Job launchTestJob(
@ApiParam("fail") @RequestParam Boolean fail,
@ApiParam("sleepMs") @RequestParam Integer sleepMs
) {
TestJob testJob = TestJob.builder()
.fail(fail)
.sleepMs(sleepMs)
.build();
return jobService.runAsJob(testJob);
}
@ApiOperation(value = "Launch Job to Milk the Cows (click fail if you want to test exception handling)")
@PreAuthorize("hasRole('ROLE_ADMIN')")
@PostMapping("/launch/milkthecowjob")
public Job launchTestJob(
) {
JobContextConsumer milkTheCowsJob = milkTheCowsJobFactory.create();
return jobService.runAsJob(milkTheCowsJob);
}
@ApiOperation(value = "Launch Job to Update Cow Health")
@PreAuthorize("hasRole('ROLE_ADMIN')")
@PostMapping("/launch/updatecowhealth")
public Job updateCowHealth(
) {
JobContextConsumer updateCowHealthJob = updateCowHealthJobFactory.create();
return jobService.runAsJob(updateCowHealthJob);
}
@ApiOperation(value = "Launch Job to Set Cow Health")
@PreAuthorize("hasRole('ROLE_ADMIN')")
@PostMapping("/launch/setcowhealth")
public Job setCowHealth(
@ApiParam("commonsID") @RequestParam Long commonsID,
@ApiParam("health") @RequestParam double health
) {
JobContextConsumer setCowHealthJob = setCowHealthJobFactory.create(commonsID, health);
return jobService.runAsJob(setCowHealthJob);
}
@ApiOperation(value = "Launch Job to Produce Instructor Report")
@PreAuthorize("hasRole('ROLE_ADMIN')")
@PostMapping("/launch/instructorreport")
public Job instructorReport(
) {
InstructorReportJob instructorReportJob =
InstructorReportJob.builder().build();
return jobService.runAsJob(instructorReportJob);
}
}