26
|
1 using System;
|
|
2 using System.Linq;
|
|
3 using System.Web.Mvc;
|
|
4 using Agendas.Factories;
|
|
5 using Agendas.Web.Models;
|
|
6 using AltNetHispano.Agendas.Domain.Exceptions;
|
|
7
|
|
8 namespace Agendas.Web.Controllers
|
|
9 {
|
|
10 public class PropuestaController : Controller
|
|
11 {
|
|
12 public ActionResult Index()
|
|
13 {
|
|
14 var agenda = AgendaFactory.GetAgenda();
|
|
15
|
27
|
16 var model = new PropuestaIndexModel
|
|
17 {
|
|
18 Propuestas = from e in agenda.GetEventosPropuestos()
|
|
19 select new PropuestaDto { Id = e.Id.ToString(), Titulo = e.Titulo, Ponente = e.Ponente.Nombre }
|
|
20 };
|
|
21
|
|
22 return View(model);
|
26
|
23 }
|
|
24
|
|
25 [Authorize]
|
|
26 public ActionResult New()
|
|
27 {
|
|
28 return View();
|
|
29 }
|
|
30
|
|
31 [HttpPost]
|
|
32 [Authorize]
|
|
33 public ActionResult New(PropuestaNewModel model)
|
|
34 {
|
|
35 if (ModelState.IsValid)
|
|
36 {
|
|
37 var agenda = AgendaFactory.GetAgenda();
|
|
38
|
|
39 try
|
|
40 {
|
|
41 agenda.Proponer(model.Titulo, model.Ponente);
|
|
42
|
27
|
43 return RedirectToAction("Index");
|
26
|
44 }
|
|
45 catch (ValidationException ex)
|
|
46 {
|
|
47 ModelState.AddModelError("error", ex.ToString());
|
|
48 }
|
|
49 }
|
|
50 return View(model);
|
|
51 }
|
|
52
|
|
53 [Authorize]
|
|
54 public ActionResult Edit(string id)
|
|
55 {
|
|
56 var agenda = AgendaFactory.GetAgenda();
|
|
57 var propuesta = agenda.GetEvento(new Guid(id));
|
|
58 if (propuesta != null)
|
|
59 {
|
|
60 var model = new PropuestaEditModel
|
|
61 {
|
|
62 Id = id,
|
|
63 Titulo = propuesta.Titulo,
|
|
64 Ponente = propuesta.Ponente != null ? propuesta.Ponente.Nombre : string.Empty
|
|
65 };
|
|
66 return View(model);
|
|
67 }
|
|
68 ModelState.AddModelError("error", "No se encontró el Propuesta que quiere modificar");
|
|
69 return View();
|
|
70 }
|
|
71
|
|
72 [HttpPost]
|
|
73 [Authorize]
|
|
74 public ActionResult Edit(PropuestaEditModel model)
|
|
75 {
|
|
76 if (ModelState.IsValid)
|
|
77 {
|
|
78 var agenda = AgendaFactory.GetAgenda();
|
|
79
|
|
80 try
|
|
81 {
|
|
82 agenda.ModificarPropuesta(new Guid(model.Id), model.Titulo, model.Ponente);
|
|
83
|
27
|
84 return RedirectToAction("Index");
|
26
|
85 }
|
|
86 catch (ValidationException ex)
|
|
87 {
|
|
88 ModelState.AddModelError("error", ex.ToString());
|
|
89 }
|
|
90 }
|
|
91 return View(model);
|
|
92 }
|
|
93 }
|
|
94 } |