|
| 1 | +using System; |
| 2 | +using System.Collections.Generic; |
| 3 | +using System.Linq; |
| 4 | +using System.Threading.Tasks; |
| 5 | +using Microsoft.AspNetCore.Mvc; |
| 6 | +using Microsoft.Extensions.Logging; |
| 7 | +using System.Text.Json; |
| 8 | +using System.Data; |
| 9 | +using Microsoft.Data.SqlClient; |
| 10 | +using Dapper; |
| 11 | +using Microsoft.Extensions.Configuration; |
| 12 | + |
| 13 | +namespace AzureSamples.AzureSQL.Controllers |
| 14 | +{ |
| 15 | + public class ControllerQuery : ControllerBase |
| 16 | + { |
| 17 | + protected readonly ILogger<ControllerQuery> _logger; |
| 18 | + private readonly IConfiguration _config; |
| 19 | + |
| 20 | + public ControllerQuery(IConfiguration config, ILogger<ControllerQuery> logger) |
| 21 | + { |
| 22 | + _logger = logger; |
| 23 | + _config = config; |
| 24 | + } |
| 25 | + |
| 26 | + protected async Task<JsonElement> Query(string verb, Type entity, int? id = null, JsonElement payload = default(JsonElement)) |
| 27 | + { |
| 28 | + JsonDocument result = null; |
| 29 | + |
| 30 | + if (!(new string[] {"get", "put", "patch", "delete"}).Contains(verb.ToLower())) |
| 31 | + { |
| 32 | + throw new ArgumentException($"verb '{verb}' not supported", nameof(verb)); |
| 33 | + } |
| 34 | + |
| 35 | + string entityName = entity.Name.Replace("Controller", string.Empty).ToLower(); |
| 36 | + string procedure = $"web.{verb}_{entityName}"; |
| 37 | + _logger.LogDebug($"Executing {procedure}"); |
| 38 | + |
| 39 | + using(var conn = new SqlConnection(_config.GetConnectionString("DefaultConnection"))) { |
| 40 | + DynamicParameters parameters = new DynamicParameters(); |
| 41 | + |
| 42 | + if (payload.ValueKind != default(JsonValueKind)) |
| 43 | + { |
| 44 | + var json = JsonSerializer.Serialize(payload); |
| 45 | + parameters.Add("Json", json); |
| 46 | + } |
| 47 | + |
| 48 | + if (id.HasValue) |
| 49 | + parameters.Add("Id", id.Value); |
| 50 | + |
| 51 | + var qr = await conn.ExecuteScalarAsync<string>( |
| 52 | + sql: procedure, |
| 53 | + param: parameters, |
| 54 | + commandType: CommandType.StoredProcedure |
| 55 | + ); |
| 56 | + |
| 57 | + if (qr != null) |
| 58 | + result = JsonDocument.Parse(qr); |
| 59 | + }; |
| 60 | + |
| 61 | + if (result == null) |
| 62 | + result = JsonDocument.Parse("[]"); |
| 63 | + |
| 64 | + return result.RootElement; |
| 65 | + } |
| 66 | + } |
| 67 | +} |
0 commit comments