using Backend.Models; using Microsoft.AspNetCore.Mvc; using Microsoft.Extensions.Logging; using Repository.BackendRepository.Interface; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using System.Transactions; namespace Backend.Controllers { public class EmergencySettingController : MybaseController { private readonly IBackendRepository backendRepository; public EmergencySettingController(IBackendRepository backendRepository) { this.backendRepository = backendRepository; } public IActionResult Index() { return View(); } [HttpPost] public async Task>> DisasterList() { ApiResult> apiResult = new ApiResult>(); List Variable = new List(); try { var sqlString = @$"select system_value as Value, system_key as Name from variable a where a.system_type = 'disaster' and a.deleted = 0"; Variable = await backendRepository.GetAllAsync(sqlString); apiResult.Code = "0000"; apiResult.Data = Variable; } catch (Exception exception) { apiResult.Code = "9999"; apiResult.Msg = "系統內部錯誤,請聯絡管理者。"; Logger.LogError("【" + controllerName + "/" + actionName + "】" + exception.Message); } return apiResult; } /// /// 根據災害類別id列出大步驟 /// /// 災害類別id /// [HttpPost] public async Task>> GetSettingList(int system_parent_id) { ApiResult> apiResult = new ApiResult>(); List keyvalue = new List(); try { keyvalue = await backendRepository.GetAllAsync($"select id, system_key as name,system_value as value from variable where deleted = 0 and system_parent_id = {system_parent_id} and system_type = 'DisasterSetting' order by system_priority"); apiResult.Data = keyvalue; apiResult.Code = "0000"; } catch (Exception ex) { apiResult.Code = "9999"; apiResult.Msg = "系統內部錯誤,請聯絡管理者。"; Logger.LogError("【" + controllerName + "/" + actionName + "】" + system_parent_id); Logger.LogError("【" + controllerName + "/" + actionName + "】" + ex.Message); } return apiResult; } /// /// 新增/修改大步驟 /// /// 大步驟參數 /// [HttpPost] public async Task> SaveSettingModal(SaveGrouping post) { ApiResult apiResult = new ApiResult(); try { if (post.id == 0) { var value = await backendRepository.GetOneAsync("select td.system_value from variable td where td.system_type = 'DisasterSetting' order by cast(td.system_value as SIGNED) desc"); var dictionary = new Dictionary() { {"@system_type", "DisasterSetting"}, {"@system_key",post.name}, {"@system_value", value + 1}, {"@system_remark","急救大步驟設定"}, {"@system_priority",post.priority}, {"@system_parent_id", post.disaster} }; await backendRepository.AddOneByCustomTable(dictionary, "variable"); var Nid = await backendRepository.GetOneAsync($"select id from variable where system_type = 'DisasterSetting' and system_key = N'{post.name}' and system_value = '{value + 1}'"); var dictionary2 = new Dictionary() { {"@system_type", "Verify"}, {"@system_key","驗證開關"}, {"@system_remark","急救大步驟設定驗證開關"}, {"@system_priority",0}, {"@system_parent_id", Nid} }; if (post.verify == 0) { dictionary2.Add("@system_value", 0); } else { dictionary2.Add("@system_value", 1); } await backendRepository.AddOneByCustomTable(dictionary2, "variable"); apiResult.Code = "0000"; apiResult.Msg = "新增成功"; } else { var dictionary = new Dictionary() { {"@system_key",post.name}, {"@system_priority",post.priority} }; await backendRepository.UpdateOneByCustomTable(dictionary, "variable", $" id = {post.id}"); var haveVerify = await backendRepository.GetOneAsync("variable", $"system_type = 'Verify' and system_parent_id = '{post.id}'"); if (haveVerify == null) { var dictionary2 = new Dictionary() { {"@system_type", "Verify"}, {"@system_key","驗證開關"}, {"@system_remark","急救大步驟設定驗證開關"}, {"@system_priority",0}, {"@system_parent_id", post.id}, {"@system_value", post.verify} }; await backendRepository.AddOneByCustomTable(dictionary2, "variable"); } if (post.verify == 0) { var dictionary2 = new Dictionary() { {"@system_value",0} }; await backendRepository.UpdateOneByCustomTable(dictionary2, "variable", $" system_type = 'Verify' and system_parent_id = '{post.id}'"); } else { var dictionary2 = new Dictionary() { {"@system_value",1} }; await backendRepository.UpdateOneByCustomTable(dictionary2, "variable", $" system_type = 'Verify' and system_parent_id = '{post.id}'"); } apiResult.Code = "0000"; apiResult.Msg = "儲存成功"; } } catch (Exception ex) { apiResult.Code = "9999"; apiResult.Msg = "系統內部錯誤,請聯絡管理者。"; string json = System.Text.Json.JsonSerializer.Serialize(post); Logger.LogError("【" + controllerName + "/" + actionName + "】" + json); Logger.LogError("【" + controllerName + "/" + actionName + "】" + ex.Message); } return apiResult; } /// /// 新增/修改小步驟 /// /// 小步驟參數 /// [HttpPost] public async Task> SaveSubSetting(EmergencySetting post) { ApiResult apiResult = new ApiResult(); try { if (post.emergency_guid == null) { var dictionary = new Dictionary() { {"@emergency_guid", Guid.NewGuid()}, {"@priority",post.priority}, {"@big_setting", post.big_setting}, {"@full_name",post.full_name}, {"@set_doing",post.set_doing}, {"@url_text", post.url_text}, {"@url_link", post.url_link}, {"@not_answer",post.not_answer}, {"@created_by",myUserInfo.Userinfo_guid } }; await backendRepository.AddOneByCustomTable(dictionary, "emergency_setting"); apiResult.Code = "0000"; apiResult.Msg = "新增成功"; } else { var dictionary = new Dictionary() { {"@priority",post.priority}, {"@big_setting", post.big_setting}, {"@full_name",post.full_name}, {"@set_doing",post.set_doing}, {"@url_text", post.url_text}, {"@url_link", post.url_link}, {"@not_answer",post.not_answer}, {"@updated_by",myUserInfo.Userinfo_guid }, {"@updated_at",DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss") } }; await backendRepository.UpdateOneByCustomTable(dictionary, "emergency_setting", $"emergency_guid = '{post.emergency_guid}'"); apiResult.Code = "0000"; apiResult.Msg = "儲存成功"; } } catch (Exception ex) { apiResult.Code = "9999"; apiResult.Msg = "系統內部錯誤,請聯絡管理者。"; string json = System.Text.Json.JsonSerializer.Serialize(post); Logger.LogError("【" + controllerName + "/" + actionName + "】" + json); Logger.LogError("【" + controllerName + "/" + actionName + "】" + ex.Message); } return apiResult; } /// /// 根據大步驟id列出小步驟table /// /// 大步驟id /// [HttpPost] public async Task Emergency_Setting_table(int selectsetting) { List Emergency_Setting_tables = new List(); ApiResult> apiResult = new ApiResult>(); try { Emergency_Setting_tables = await backendRepository.GetAllAsync($@" select v.system_key big_setting_name,es.* from emergency_setting es left join variable v on es.big_setting = v.id where es.big_setting = {selectsetting} and es.deleted = 0 "); apiResult.Code = "0000"; apiResult.Data = Emergency_Setting_tables; } catch (Exception exception) { apiResult.Code = "9999"; apiResult.Msg = "系統內部錯誤,請聯絡管理者。"; Logger.LogError("【" + controllerName + "/" + actionName + "】" + selectsetting); Logger.LogError("【" + controllerName + "/" + actionName + "】" + exception.Message); } var result = Json(new { data = apiResult }); return result; } /// /// 讀取單一大步驟 /// /// 大步驟id /// [HttpPost] public async Task> GetOnesetting(int selectsetting) { ApiResult apiResult = new ApiResult(); try { var sql = $@"select v.system_priority as priority,v.system_key as name,s.system_value verify from variable v left join variable s on v.id = s.system_parent_id where v.id = {selectsetting} and v.deleted = 0"; var group = await backendRepository.GetOneAsync(sql); apiResult.Data = group; apiResult.Code = "0000"; } catch (Exception ex) { apiResult.Code = "9999"; apiResult.Msg = "系統內部錯誤,請聯絡管理者。"; Logger.LogError("【" + controllerName + "/" + actionName + "】" + selectsetting); Logger.LogError("【" + controllerName + "/" + actionName + "】" + ex.Message); } return apiResult; } /// /// 刪除小步驟 /// /// 小步驟guid /// [HttpPost] public async Task> DeletedOneSubSetting(string guid) { ApiResult apiResult = new ApiResult(); try { await backendRepository.DeleteOne(guid, "emergency_setting", "emergency_guid"); apiResult.Code = "0000"; apiResult.Msg = "刪除成功"; } catch (Exception ex) { apiResult.Code = "9999"; apiResult.Msg = "系統內部錯誤,請聯絡管理者。"; Logger.LogError("【" + controllerName + "/" + actionName + "】" + guid); Logger.LogError("【" + controllerName + "/" + actionName + "】" + ex.Message); } return apiResult; } /// /// 讀取單一小步驟 /// /// 小步驟guid /// [HttpPost] public async Task> GetOneSubSetting(string guid) { ApiResult apiResult = new ApiResult(); try { var SubSetting = await backendRepository.GetOneAsync("emergency_setting", $"emergency_guid = '{guid}'"); apiResult.Data = SubSetting; apiResult.Code = "0000"; } catch (Exception ex) { apiResult.Code = "9999"; apiResult.Msg = "系統內部錯誤,請聯絡管理者。"; Logger.LogError("【" + controllerName + "/" + actionName + "】" + guid); Logger.LogError("【" + controllerName + "/" + actionName + "】" + ex.Message); } return apiResult; } /// /// 模擬演練按鈕,新增一筆紀錄到emergency_event /// /// emergency_event參數 /// [HttpPost] public async Task> SaveAndOpenSimulationExercise(Eventpost eventpost) { ApiResult apiResult = new ApiResult(); try { var newguid = Guid.NewGuid(); var dictionary = new Dictionary() { {"@emergency_event_guid",newguid}, {"@disaster",eventpost.disaster}, {"@building_tag", eventpost.build}, {"@type",eventpost.type} }; await backendRepository.AddOneByCustomTable(dictionary, "emergency_event"); apiResult.Data = newguid.ToString(); apiResult.Code = "0000"; apiResult.Msg = "新增成功"; } catch(Exception ex) { apiResult.Code = "9999"; apiResult.Msg = "系統內部錯誤,請聯絡管理者。"; string json = System.Text.Json.JsonSerializer.Serialize(eventpost); Logger.LogError("【" + controllerName + "/" + actionName + "】" + json); Logger.LogError("【" + controllerName + "/" + actionName + "】" + ex.Message); } return apiResult; } /// /// 根據災害類別id拿到相關大步驟設定 /// /// 災害類別id /// [HttpPost] public async Task>> GetBigsetting(int disaster) { ApiResult> apiResult = new ApiResult>(); try { var sql = $@" select v.id id, v.system_key name, f.system_value verify from variable v join variable f on v.id = f.system_parent_id and f.system_type = 'Verify' where v.system_type = 'DisasterSetting' and v.system_parent_id = '{disaster}' and v.deleted = 0 order by v.system_priority"; var list = await backendRepository.GetAllAsync(sql); apiResult.Data = list; apiResult.Code = "0000"; apiResult.Msg = "讀取成功"; } catch (Exception ex) { apiResult.Code = "9999"; apiResult.Msg = "系統內部錯誤,請聯絡管理者。"; Logger.LogError("【" + controllerName + "/" + actionName + "】" + disaster); Logger.LogError("【" + controllerName + "/" + actionName + "】" + ex.Message); } return apiResult; } /// /// 根據大步驟id拿到相關小步驟設定 /// /// 大步驟id /// [HttpPost] public async Task>> GetEmergencySetting(int selectsetting) { List Emergency_Setting_tables = new List(); ApiResult> apiResult = new ApiResult>(); try { Emergency_Setting_tables = await backendRepository.GetAllAsync($@" select v.system_key big_setting_name,es.* from emergency_setting es left join variable v on es.big_setting = v.id where es.big_setting = {selectsetting} and es.deleted = 0 order by es.priority"); apiResult.Code = "0000"; apiResult.Data = Emergency_Setting_tables; } catch (Exception exception) { apiResult.Code = "9999"; apiResult.Msg = "系統內部錯誤,請聯絡管理者。"; Logger.LogError("【" + controllerName + "/" + actionName + "】" + selectsetting); Logger.LogError("【" + controllerName + "/" + actionName + "】" + exception.Message); } return apiResult; } /// /// 依據make_item來判斷是否新增一筆資料到emergency_item紀錄 /// /// emergency_item參數 /// [HttpPost] public async Task> GetContentAndMakeItem(Emergencyitempost post) { ApiResult apiResult = new ApiResult(); try { var Emergency_Setting_tables = await backendRepository.GetOneAsync($@" select v.system_key big_setting_name,es.* from emergency_setting es left join variable v on es.big_setting = v.id where es.emergency_guid = '{post.emergency_guid}'"); if(post.make_item == 1) { var haveguid = await backendRepository.GetOneAsync($"select emergency_item_guid from emergency_item where event_guid = '{post.event_guid}' and big_setting = '{post.big_setting}' and step_setting = '{post.step_setting}'"); if(haveguid == null) { var newguid = Guid.NewGuid(); var dictionary = new Dictionary() { {"@emergency_item_guid",newguid}, {"@event_guid",post.event_guid}, {"@big_setting", post.big_setting}, {"@step_setting",post.step_setting}, {"@created_by",myUserInfo.Userinfo_guid } }; await backendRepository.AddOneByCustomTable(dictionary, "emergency_item"); Emergency_Setting_tables.emergency_item_guid = newguid.ToString(); } else { Emergency_Setting_tables.emergency_item_guid = haveguid; } } apiResult.Code = "0000"; apiResult.Data = Emergency_Setting_tables; } catch (Exception exception) { apiResult.Code = "9999"; apiResult.Msg = "系統內部錯誤,請聯絡管理者。"; string json = System.Text.Json.JsonSerializer.Serialize(post); Logger.LogError("【" + controllerName + "/" + actionName + "】" + json); Logger.LogError("【" + controllerName + "/" + actionName + "】" + exception.Message); } return apiResult; } /// /// 根據執行與否更新emergency_item紀錄 /// /// choose => 0:執行;1:不執行 /// [HttpPost] public async Task> NextStep (Itempost item) { ApiResult apiResult = new ApiResult(); byte finish = 0; if(item.choose == 0) { finish = 1; }else { finish = 2; } try { var dictionary = new Dictionary() { {"@finished",finish}, {"@updated_by", myUserInfo.Userinfo_guid}, {"@updated_at", DateTime.Now} }; if(item.choose == 1) { dictionary.Add("@reason", item.reason ); } await backendRepository.UpdateOneByCustomTable(dictionary, "emergency_item", $"emergency_item_guid = '{item.eventguid}'"); apiResult.Code = "0000"; apiResult.Msg = "更新成功"; } catch (Exception ex) { apiResult.Code = "9999"; apiResult.Msg = "系統內部錯誤,請聯絡管理者。"; string json = System.Text.Json.JsonSerializer.Serialize(item); Logger.LogError("【" + controllerName + "/" + actionName + "】" + json); Logger.LogError("【" + controllerName + "/" + actionName + "】" + ex.Message); } return apiResult; } /// /// 列出目前執行的emergency_event相關的emergency_item紀錄 /// /// emergency_event的guid /// [HttpPost] public async Task Dohistorytotable (string eventguid) { List eventitems = new List(); ApiResult> apiResult = new ApiResult>(); try { eventitems = await backendRepository.GetAllAsync($"select * from emergency_item where event_guid = @Guid",new { Guid = $"{eventguid}" }); apiResult.Data = eventitems; apiResult.Code = "0000"; } catch (Exception ex) { apiResult.Code = "9999"; apiResult.Msg = "系統內部錯誤,請聯絡管理者。"; Logger.LogError("【" + controllerName + "/" + actionName + "】" + eventguid); Logger.LogError("【" + controllerName + "/" + actionName + "】" + ex.Message); } var result = Json(new { data = apiResult }); return result; } /// /// 指揮官身分驗證 /// /// 指揮官密碼 /// [HttpPost] public async Task> CheckVerifybool(string pass) { ApiResult apiResult = new ApiResult(); try { EDFunction edFunction = new EDFunction(); string passto = ""; if (pass != null) { passto = edFunction.GetSHA256Encryption(pass); } var Verify = await backendRepository.GetAllAsync("userinfo", $" role_guid = 'B0556AD7-C1E1-47A1-A1F1-802E22714B33' and password = '{passto}'"); if(Verify.Count == 0) { apiResult.Data = false; } else { apiResult.Data = true; } apiResult.Code = "0000"; } catch (Exception ex) { apiResult.Code = "9999"; apiResult.Msg = "系統內部錯誤,請聯絡管理者。"; Logger.LogError("【" + controllerName + "/" + actionName + "】" + pass); Logger.LogError("【" + controllerName + "/" + actionName + "】" + ex.Message); } return apiResult; } } }