| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- package controllers;
- import play.db.jpa.Transactional;
- import play.db.jpa.JPA;
- import play.mvc.*;
- import play.libs.Json;
- import java.util.List;
- import models.Event;
- /**
- * This controller contains an action to handle HTTP requests
- * to the application's home page.
- */
- public class EventsController extends Controller {
- @Transactional
- public Result get()
- {
- List<Event> res = JPA.em().createQuery("SELECT e from Event e", Event.class).getResultList();
- if (res == null || res.isEmpty())
- {
- return notFound(Json.toJson("No Events"));
- }
- return ok(Json.toJson(res));
- }
- @Transactional
- public Result create()
- {
- Event e = Json.fromJson(request().body().asJson(), Event.class);
- e.setEventId(0);
- JPA.em().persist(e);
- return created(Json.toJson(e));
- }
- @Transactional
- public Result update(long id)
- {
- Event e = Json.fromJson(request().body().asJson(), Event.class);
- Event e0 = JPA.em().find(Event.class, id);
- if (e0 == null)
- {
- return notFound("No event with id "+id);
- }
- e.setEventId(id);
- JPA.em().merge(e);
- return ok(Json.toJson(e));
- }
- @Transactional
- public Result delete(long id)
- {
- Event e = JPA.em().find(Event.class, id);
- if (e == null)
- {
- return notFound("No event with id "+id);
- }
- JPA.em().remove(e);
- return ok(Json.toJson(e));
- }
- }
|