-
Notifications
You must be signed in to change notification settings - Fork 0
/
GenresController.cs
141 lines (127 loc) · 4.03 KB
/
GenresController.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
using System;
using System.Collections.Generic;
using System.Data;
using System.Data.Entity;
using System.Linq;
using System.Net;
using System.Web;
using System.Web.Mvc;
using MyAnime_updatedDB.Models;
namespace MyAnime_updatedDB.Controllers
{
public class GenresController : Controller
{
private ApplicationDbContext db = new ApplicationDbContext();
// GET: Genres
public ActionResult Index()
{
return View(db.Genres.ToList());
}
[Authorize(Roles = "admin")]
public ActionResult Manage()
{
return View(db.Genres.ToList());
}
// GET: Genres/Details/5
public ActionResult Details(int? id)
{
if (id == null)
{
return new HttpStatusCodeResult(HttpStatusCode.BadRequest);
}
Genre genre = db.Genres.Find(id);
if (genre == null)
{
return HttpNotFound();
}
return View(genre);
}
// GET: Genres/Create
[Authorize(Roles = "admin")]
public ActionResult Create()
{
return View();
}
// POST: Genres/Create
// To protect from overposting attacks, please enable the specific properties you want to bind to, for
// more details see http://go.microsoft.com/fwlink/?LinkId=317598.
[HttpPost]
[ValidateAntiForgeryToken]
[Authorize(Roles = "admin")]
public ActionResult Create([Bind(Include = "Id,GenreName,GenreDescription")] Genre genre)
{
if (ModelState.IsValid)
{
db.Genres.Add(genre);
db.SaveChanges();
return RedirectToAction("Index");
}
return View(genre);
}
// GET: Genres/Edit/5
[Authorize(Roles = "admin")]
public ActionResult Edit(int? id)
{
if (id == null)
{
return new HttpStatusCodeResult(HttpStatusCode.BadRequest);
}
Genre genre = db.Genres.Find(id);
if (genre == null)
{
return HttpNotFound();
}
return View(genre);
}
// POST: Genres/Edit/5
// To protect from overposting attacks, please enable the specific properties you want to bind to, for
// more details see http://go.microsoft.com/fwlink/?LinkId=317598.
[HttpPost]
[ValidateAntiForgeryToken]
[Authorize(Roles = "admin")]
public ActionResult Edit([Bind(Include = "Id,GenreName,GenreDescription")] Genre genre)
{
if (ModelState.IsValid)
{
db.Entry(genre).State = EntityState.Modified;
db.SaveChanges();
return RedirectToAction("Index");
}
return View(genre);
}
// GET: Genres/Delete/5
[Authorize(Roles = "admin")]
public ActionResult Delete(int? id)
{
if (id == null)
{
return new HttpStatusCodeResult(HttpStatusCode.BadRequest);
}
Genre genre = db.Genres.Find(id);
if (genre == null)
{
return HttpNotFound();
}
return View(genre);
}
// POST: Genres/Delete/5
[HttpPost, ActionName("Delete")]
[ValidateAntiForgeryToken]
[Authorize(Roles = "admin")]
public ActionResult DeleteConfirmed(int id)
{
Genre genre = db.Genres.Find(id);
db.Genres.Remove(genre);
db.SaveChanges();
return RedirectToAction("Manage");
}
protected override void Dispose(bool disposing)
{
if (disposing)
{
db.Dispose();
}
base.Dispose(disposing);
}
}
}