mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-04-05 17:38:01 +08:00
87 lines
2.1 KiB
C#
87 lines
2.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
using Infrastructure;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using OpenAuth.App;
|
|
using OpenAuth.App.Interface;
|
|
using OpenAuth.App.Request;
|
|
using OpenAuth.Repository.Domain;
|
|
|
|
namespace OpenAuth.Mvc.Controllers
|
|
{
|
|
public class ApplicationsController : BaseController
|
|
{
|
|
private readonly AppManager _app;
|
|
|
|
|
|
public async Task<string> GetList([FromQuery]QueryAppListReq request)
|
|
{
|
|
var resp = new Response<List<Application>>();
|
|
try
|
|
{
|
|
resp.Result = await _app.GetList(request);
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
resp.Code = 500;
|
|
resp.Message = e.Message;
|
|
}
|
|
return JsonHelper.Instance.Serialize(resp);
|
|
}
|
|
|
|
[HttpPost]
|
|
public string Delete(string[] ids)
|
|
{
|
|
Response resp = new Response();
|
|
try
|
|
{
|
|
_app.Delete(ids);
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
resp.Code = 500;
|
|
resp.Message = e.Message;
|
|
}
|
|
return JsonHelper.Instance.Serialize(resp);
|
|
}
|
|
|
|
[HttpPost]
|
|
public string Add(Application obj)
|
|
{
|
|
Response resp = new Response();
|
|
try
|
|
{
|
|
_app.Add(obj);
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
resp.Code = 500;
|
|
resp.Message = e.Message;
|
|
}
|
|
return JsonHelper.Instance.Serialize(resp);
|
|
}
|
|
|
|
[HttpPost]
|
|
public string Update(Application obj)
|
|
{
|
|
Response resp = new Response();
|
|
try
|
|
{
|
|
_app.Update(obj);
|
|
}
|
|
catch (Exception e)
|
|
{
|
|
resp.Code = 500;
|
|
resp.Message = e.Message;
|
|
}
|
|
return JsonHelper.Instance.Serialize(resp);
|
|
}
|
|
|
|
|
|
public ApplicationsController(IAuth authUtil, AppManager app) : base(authUtil)
|
|
{
|
|
_app = app;
|
|
}
|
|
}
|
|
} |