137 lines
4.0 KiB
C#
137 lines
4.0 KiB
C#
using System;
|
||
using System.Threading.Tasks;
|
||
using Microsoft.AspNet.Mvc;
|
||
using Microsoft.AspNet.Mvc.Rendering;
|
||
using Microsoft.Data.Entity;
|
||
using Yavsc.Models;
|
||
using Yavsc.Models.Auth;
|
||
|
||
namespace Yavsc.Controllers
|
||
{
|
||
public class ClientController : Controller
|
||
{
|
||
private ApplicationDbContext _context;
|
||
|
||
public ClientController(ApplicationDbContext context)
|
||
{
|
||
_context = context;
|
||
}
|
||
|
||
// GET: Client
|
||
public async Task<IActionResult> Index()
|
||
{
|
||
return View(await _context.Applications.ToListAsync());
|
||
}
|
||
|
||
// GET: Client/Details/5
|
||
public async Task<IActionResult> Details(string id)
|
||
{
|
||
if (id == null)
|
||
{
|
||
return HttpNotFound();
|
||
}
|
||
|
||
Client client = await _context.Applications.SingleAsync(m => m.Id == id);
|
||
if (client == null)
|
||
{
|
||
return HttpNotFound();
|
||
}
|
||
return View(client);
|
||
}
|
||
|
||
// GET: Client/Create
|
||
public IActionResult Create()
|
||
{
|
||
return View();
|
||
}
|
||
|
||
// POST: Client/Create
|
||
[HttpPost]
|
||
[ValidateAntiForgeryToken]
|
||
public async Task<IActionResult> Create(Client client)
|
||
{
|
||
if (ModelState.IsValid)
|
||
{
|
||
client.Id = Guid.NewGuid().ToString();
|
||
_context.Applications.Add(client);
|
||
await _context.SaveChangesAsync();
|
||
return RedirectToAction("Index");
|
||
}
|
||
SetAppTypesInputValues();
|
||
return View(client);
|
||
}
|
||
private void SetAppTypesInputValues()
|
||
{
|
||
ViewData["Type"] =
|
||
new SelectListItem[] {
|
||
new SelectListItem {
|
||
Text = ApplicationTypes.JavaScript.ToString(),
|
||
Value = ((int) ApplicationTypes.JavaScript).ToString() },
|
||
new SelectListItem {
|
||
Text = ApplicationTypes.NativeConfidential.ToString(),
|
||
Value = ((int) ApplicationTypes.NativeConfidential).ToString()
|
||
}
|
||
};
|
||
}
|
||
// GET: Client/Edit/5
|
||
public async Task<IActionResult> Edit(string id)
|
||
{
|
||
if (id == null)
|
||
{
|
||
return HttpNotFound();
|
||
}
|
||
|
||
Client client = await _context.Applications.SingleAsync(m => m.Id == id);
|
||
if (client == null)
|
||
{
|
||
return HttpNotFound();
|
||
}
|
||
SetAppTypesInputValues();
|
||
return View(client);
|
||
}
|
||
|
||
// POST: Client/Edit/5
|
||
[HttpPost]
|
||
[ValidateAntiForgeryToken]
|
||
public async Task<IActionResult> Edit(Client client)
|
||
{
|
||
if (ModelState.IsValid)
|
||
{
|
||
_context.Update(client);
|
||
await _context.SaveChangesAsync();
|
||
return RedirectToAction("Index");
|
||
}
|
||
return View(client);
|
||
}
|
||
|
||
// GET: Client/Delete/5
|
||
[ActionName("Delete")]
|
||
public async Task<IActionResult> Delete(string id)
|
||
{
|
||
if (id == null)
|
||
{
|
||
return HttpNotFound();
|
||
}
|
||
|
||
Client client = await _context.Applications.SingleAsync(m => m.Id == id);
|
||
if (client == null)
|
||
{
|
||
return HttpNotFound();
|
||
}
|
||
|
||
return View(client);
|
||
}
|
||
|
||
// POST: Client/Delete/5
|
||
[HttpPost, ActionName("Delete")]
|
||
[ValidateAntiForgeryToken]
|
||
public async Task<IActionResult> DeleteConfirmed(string id)
|
||
{
|
||
Client client = await _context.Applications.SingleAsync(m => m.Id == id);
|
||
_context.Applications.Remove(client);
|
||
await _context.SaveChangesAsync();
|
||
return RedirectToAction("Index");
|
||
}
|
||
}
|
||
}
|