using Dapper; using SolarPower.Helper; using SolarPower.Models.PowerStation; using SolarPower.Models.User; using SolarPower.Repository.Interface; using System; using System.Collections.Generic; using System.Data; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Text.Json; namespace SolarPower.Repository.Implement { public class PowerStationRepository : RepositoryBase, IPowerStationRepository { public PowerStationRepository(IDatabaseHelper databaseHelper) : base(databaseHelper) { tableName = "power_station"; } /// /// 查詢縣市列表 /// /// public async Task> GetCitySelectOptionListAsync() { List result; using (IDbConnection conn = this._databaseHelper.GetConnection()) { try { var sql = $"SELECT Id AS Value, Name AS Text FROM city"; result = (await conn.QueryAsync(sql)).ToList(); } catch (Exception exception) { throw exception; } return result; } } /// /// 查詢縣市列表 /// /// /// public async Task> GetAreaSelectOptionListAsync(int cityId) { List result; using (IDbConnection conn = this._databaseHelper.GetConnection()) { try { var sql = $"SELECT Id AS Value, Name AS Text FROM Area WHERE CityId = @CityId"; result = (await conn.QueryAsync(sql, new { CityId = cityId })).ToList(); } catch (Exception exception) { throw exception; } return result; } } /// /// 透過編號取得,縣市資訊 /// /// /// public async Task GetOneCityByIdAsync(int cityId) { City result; using (IDbConnection conn = this._databaseHelper.GetConnection()) { try { var sql = @$"SELECT * FROM city WHERE Id=@Id"; result = await conn.QueryFirstOrDefaultAsync(sql, new { Id = cityId }); } catch (Exception exception) { throw exception; } return result; } } /// /// 透過編號取得,地區資訊 /// /// /// public async Task GetOneAreaByIdAsync(int areaId) { Area result; using (IDbConnection conn = this._databaseHelper.GetConnection()) { try { var sql = @$"SELECT * FROM area WHERE Id=@Id"; result = await conn.QueryFirstOrDefaultAsync(sql, new { Id = areaId }); } catch (Exception exception) { throw exception; } return result; } } /// /// 取得縣市地區代碼 /// /// /// public async Task GetCityAreaZipcodeAsync(int areaId) { Zipcode result; using (IDbConnection conn = this._databaseHelper.GetConnection()) { try { var sql = @$"SELECT a.ZipCode AS Area, c.ZipCode AS City FROM area a LEFT JOIN city c ON a.cityId = c.Id WHERE a.Id = @AreaId"; result = await conn.QueryFirstOrDefaultAsync(sql, new { AreaId = areaId }); } catch (Exception exception) { throw exception; } return result; } } /// /// 透過縣市地區編號,取得該縣市地區最後的流水號 /// /// /// /// public async Task GetLastSerialNumberByCityAreaIdAsync(int cityId, int areaId) { string result; using (IDbConnection conn = this._databaseHelper.GetConnection()) { try { var sql = @$"SELECT SerialNumber FROM {tableName} WHERE CityId = @CityId && AreaId = @AreaId ORDER BY SerialNumber DESC"; result = await conn.QueryFirstOrDefaultAsync(sql, new { CityId = cityId, AreaId = areaId }); } catch (Exception exception) { throw exception; } return result; } } /// /// 透過電站編號,取得單一電站資訊(覆寫) /// /// /// public override async Task GetOneAsync(int id) { //base.GetOneAsync(id); PowerStation result; using (IDbConnection conn = this._databaseHelper.GetConnection()) { conn.Open(); try { var sql = @$"SELECT ps.*, u.Name AS CreatorName FROM {tableName} ps LEFT JOIN user u ON ps.CreatedBy = u.Id WHERE ps.Deleted = 0 AND ps.Id = @Id"; result = await conn.QueryFirstOrDefaultAsync(sql, new { Id = id}); if(result!= null) { var sql_land_building = @$"SELECT lb.*, u.Name AS CreatorName FROM land_building lb LEFT JOIN user u ON lb.CreatedBy = u.Id WHERE lb.Deleted = 0 AND PowerStationId = @PowerStationId"; result.LandBuildings = (await conn.QueryAsync(sql_land_building, new { PowerStationId = result.Id })).ToList(); } } catch (Exception exception) { throw exception; } finally { conn.Close(); } return result; } } /// /// 修改電站基本資訊 /// /// /// public async Task UpdatePowerStationInfo(UpdatePowerStationInfo entity, List properties) { using (IDbConnection conn = this._databaseHelper.GetConnection()) { conn.Open(); using (var trans = conn.BeginTransaction()) { try { var sql = GenerateUpdateQuery(properties); await conn.ExecuteAsync(sql, entity, trans); trans.Commit(); } catch (Exception exception) { trans.Rollback(); throw exception; } finally { conn.Close(); } } } } /// /// 修改能源局與台電資訊 /// /// /// public async Task UpdateBoETPCInfo(UpdateBoETPCInfo entity, List properties) { using (IDbConnection conn = this._databaseHelper.GetConnection()) { conn.Open(); using (var trans = conn.BeginTransaction()) { try { var sql = GenerateUpdateQuery(properties); await conn.ExecuteAsync(sql, entity, trans); trans.Commit(); } catch (Exception exception) { trans.Rollback(); throw exception; } finally { conn.Close(); } } } } /// /// 新增 土地房屋資訊 /// /// /// public async Task GetOneLandBuildingInfo(int id) { LandBuilding result; using (IDbConnection conn = _databaseHelper.GetConnection()) { conn.Open(); try { var sql = @"SELECT * FROM land_building WHERE Deleted =0 AND Id = @Id"; result = await conn.QueryFirstOrDefaultAsync(sql, new { Id = id }); } catch (Exception exception) { throw exception; } finally { conn.Close(); } return result; } } /// /// 新增 土地房屋資訊 /// /// /// /// public async Task AddOneLandBuildingInfo(LandBuilding entity, List properties) { int id; using (IDbConnection conn = _databaseHelper.GetConnection()) { conn.Open(); try { string sql = GenerateInsertQueryWithCustomTable(properties, "land_building"); sql += "SELECT LAST_INSERT_ID();"; id = (await conn.QueryAsync(sql, entity)).Single(); } catch (Exception exception) { throw exception; } finally { conn.Close(); } return id; } } /// /// 更新 土地房屋資訊 /// /// /// /// public async Task UpdateLandBuildingInfo(UpdateLandBuilding entity, List properties) { using (IDbConnection conn = this._databaseHelper.GetConnection()) { conn.Open(); using (var trans = conn.BeginTransaction()) { try { var sql = GenerateUpdateQueryWithCustomTable(properties, "land_building"); await conn.ExecuteAsync(sql, entity, trans); trans.Commit(); } catch (Exception exception) { trans.Rollback(); throw exception; } finally { conn.Close(); } } } } /// /// 軟刪除土地房屋資訊 /// /// /// public async Task DeleteOneLandBuildingInfo(int id) { using (IDbConnection conn = this._databaseHelper.GetConnection()) { conn.Open(); using (var trans = conn.BeginTransaction()) { try { var sql = $"UPDATE land_building SET deleted = 1 WHERE id = @Id"; await conn.ExecuteAsync(sql, new { Id = id }, trans); trans.Commit(); } catch (Exception exception) { trans.Rollback(); throw exception; } finally { conn.Close(); } } } } /// /// 新增運維 /// /// /// /// public async Task AddOperation(OperationInfo operation, List properties) { using (IDbConnection conn = _databaseHelper.GetConnection()) { int count; conn.Open(); try { string sql = GenerateInsertQueryWithCustomTable(properties, "operation_firm"); count = await conn.ExecuteAsync(sql, operation); } catch (Exception exception) { throw exception; } finally { conn.Close(); } return count; } } /// /// 運維DataTable /// /// /// public async Task> OperationTable (int stationId) { using (IDbConnection conn = _databaseHelper.GetConnection()) { List operation = new List(); conn.Open(); try { string sql = @$"SELECT operation_firm.Name, operation_firm.PowerStationId, operation_firm.Id,operation_firm.ContactPerson,operation_firm.Phone,operation_firm.Email,user.Name AS CreatedName,operation_firm.CreatedAt,operation_firm.Type FROM operation_firm LEFT JOIN user ON operation_firm.CreatedBy = user.id WHERE operation_firm.Deleted = 0 AND operation_firm.PowerStationId = @StationId"; operation = (await conn.QueryAsync(sql, new { StationId = stationId })).ToList(); } catch (Exception exception) { throw exception; } finally { conn.Close(); } return operation; } } /// /// 選取單一運維 /// /// /// public async Task OneOperationInfo (int id) { using (IDbConnection conn = _databaseHelper.GetConnection()) { OperationInfo operation; conn.Open(); try { string sql = @$"SELECT * FROM operation_firm WHERE Id = @Id"; operation = await conn.QueryFirstOrDefaultAsync(sql, new { Id = id }); } catch (Exception exception) { throw exception; } finally { conn.Close(); } return operation; } } /// /// 更新運維 /// /// /// /// public async Task UpdateOperation(OperationInfo operation , List properties) { using IDbConnection conn = _databaseHelper.GetConnection(); conn.Open(); var trans = conn.BeginTransaction(); try { var updateQuery = new StringBuilder($"UPDATE operation_firm SET "); properties.ForEach(property => { if (!property.Equals("Id")) { updateQuery.Append($"{property}=@{property},"); } }); updateQuery.Remove(updateQuery.Length - 1, 1); //remove last comma updateQuery.Append(" WHERE id = @Id"); await conn.ExecuteAsync(updateQuery.ToString(), operation, trans); trans.Commit(); } catch (Exception exception) { trans.Rollback(); throw exception; } finally { conn.Close(); } } /// /// 裝置類型下拉選單 /// /// public async Task> DeviceType() { List result = new List(); using IDbConnection conn = _databaseHelper.GetConnection(); conn.Open(); var trans = conn.BeginTransaction(); try { string sql = @$"SELECT * FROM variable WHERE name = @name"; var json = await conn.QueryFirstOrDefaultAsync(sql, new { name = "Type" }); Root jsonfor = JsonSerializer.Deserialize(json.value); foreach(Models.PowerStation.Type a in jsonfor.Type) { UserSelectItemList KeyValue = new UserSelectItemList { Value = a.EName, Text = a.Name }; result.Add(KeyValue); } trans.Commit(); } catch (Exception exception) { trans.Rollback(); throw exception; } finally { conn.Close(); } return result; } /// /// 新增裝置資料 /// /// /// /// public async Task AddDevice(Device DeviceInfo, List properties) { using IDbConnection conn = _databaseHelper.GetConnection(); conn.Open(); try { string sql = GenerateInsertQueryWithCustomTable(properties, "device"); await conn.ExecuteAsync(sql, DeviceInfo); } catch (Exception exception) { throw exception; } finally { conn.Close(); } } /// /// 修改裝置資料 /// /// /// /// public async Task UpdateDevice(Device DeviceInfo, List properties) { using IDbConnection conn = _databaseHelper.GetConnection(); conn.Open(); var trans = conn.BeginTransaction(); try { var updateQuery = GenerateUpdateQueryWithCustomTable(properties, "device"); await conn.ExecuteAsync(updateQuery.ToString(), DeviceInfo, trans); trans.Commit(); } catch (Exception exception) { trans.Rollback(); throw exception; } finally { conn.Close(); } } /// /// 裝置dataTable /// /// /// public async Task> DeviceTable(int stationId) { using IDbConnection conn = _databaseHelper.GetConnection(); conn.Open(); List Device = new List(); try { string sql = @$"SELECT * FROM device WHERE Deleted = 0 AND PowerStationId = @StationId"; Device = (await conn.QueryAsync(sql, new { StationId = stationId })).ToList(); } catch (Exception exception) { throw exception; } finally { conn.Close(); } return Device; } /// /// 取單一筆DeviceInfo /// /// /// public async Task OneDeviceInfo(int id) { using (IDbConnection conn = _databaseHelper.GetConnection()) { DeviceInfo Device; conn.Open(); try { string sql = @$"SELECT * FROM device WHERE Id = @Id"; Device = await conn.QueryFirstOrDefaultAsync(sql, new { Id = id }); } catch (Exception exception) { throw exception; } finally { conn.Close(); } return Device; } } /// /// 新增 異常設定 /// /// /// /// public async Task AddException(ExceptionModal Exception, List properties) { using IDbConnection conn = _databaseHelper.GetConnection(); conn.Open(); try { string sql = GenerateInsertQueryWithCustomTable(properties, "power_station_exception"); await conn.ExecuteAsync(sql, Exception); } catch (Exception exception) { throw exception; } finally { conn.Close(); } } /// /// 異常dataTable /// /// /// public async Task> ExceptionTable(int stationId) { using IDbConnection conn = _databaseHelper.GetConnection(); conn.Open(); List Exception = new List(); try { string sql = @$"SELECT pe.Type,pe.UpperLimit,pe.LowerLimit,pe.Alarm,ps.Code AS PowerStationCode ,ps.Name AS PowerStationName,pe.CreatedAt,pe.Id FROM power_station_exception pe LEFT JOIN power_station ps ON pe.PowerStationId = ps.Id WHERE pe.Deleted = 0 AND pe.PowerStationId = @StationId"; Exception = (await conn.QueryAsync(sql, new { StationId = stationId })).ToList(); } catch (Exception exception) { throw exception; } finally { conn.Close(); } return Exception; } /// /// 取一筆異常設定 /// /// /// public async Task OneException(int id) { using (IDbConnection conn = _databaseHelper.GetConnection()) { ExceptionModal Exception; conn.Open(); try { string sql = @$"SELECT * FROM power_station_exception WHERE Id = @Id"; Exception = await conn.QueryFirstOrDefaultAsync(sql, new { Id = id }); } catch (Exception exception) { throw exception; } finally { conn.Close(); } return Exception; } } /// /// 更新異常設定 /// /// /// /// public async Task UpdateException(ExceptionModal Exception, List properties) { using IDbConnection conn = _databaseHelper.GetConnection(); conn.Open(); var trans = conn.BeginTransaction(); try { var updateQuery = GenerateUpdateQueryWithCustomTable(properties, "power_station_exception"); await conn.ExecuteAsync(updateQuery.ToString(), Exception, trans); trans.Commit(); } catch (Exception exception) { trans.Rollback(); throw exception; } finally { conn.Close(); } } } }