public static string add_LogUsuario(LogUsuario p) { return "{" + '"' + "Accion" + '"' + ": " + '"' + p.Accion + '"' + ',' + '"' + "Clase" + '"' + ": " + '"' + p.Clase + '"' + ',' + '"' + "Ip" + '"' + ": " + '"' + p.Ip + '"' + ',' + '"' + "Fecha" + '"' + ": " + '"' + Utils.dateToJson(p.Fecha) + '"' + "}"; }
public static LogUsuario logUsuario_parse(DataRow r) { LogUsuario l = new LogUsuario(); l.IdLogUsuario= Int32.Parse(r["idLogUsuario"].ToString()); l.Accion = r["accion"].ToString(); l.Clase = r["clase"].ToString(); l.Fecha = DateTime.ParseExact(r["fecha"].ToString(), "M/d/yyyy h:mm:ss ttt", null); l.Ip= r["ip"].ToString(); l.IdUsuario = Int32.Parse(r["idUsuario"].ToString()); return l; }
public static ResponseBD add_LogUsuario(LogUsuario u) { ResponseBD response = new ResponseBD(); string ConnString = ConfigurationManager.ConnectionStrings["barabaresConnectionString"].ConnectionString; using (SqlConnection SqlConn = new SqlConnection(ConnString)) { try { try { SqlConn.Open(); } catch (Exception ex) { Debug.WriteLine(ex.ToString()); response.Flujo = "ERROR"; response.Mensaje = "Error al abrir la conexión a BD"; return response; } SqlCommand sqlCmd = new SqlCommand("USUARIO_LOG_INSERT", SqlConn); sqlCmd.CommandType = CommandType.StoredProcedure; SqlParameter flujo = new SqlParameter("@opsFlujo", SqlDbType.VarChar) { Direction = ParameterDirection.Output, Size = 10 }; SqlParameter mensaje = new SqlParameter("@opsMsj", SqlDbType.VarChar) { Direction = ParameterDirection.Output, Size = 100 }; sqlCmd.Parameters.Add("@ipsAccion", SqlDbType.VarChar).Value = u.Accion; sqlCmd.Parameters.Add("@ipsClase", SqlDbType.VarChar).Value = u.Clase; sqlCmd.Parameters.Add("@ipdFecha", SqlDbType.DateTime).Value = u.Fecha; sqlCmd.Parameters.Add("@ipsIp", SqlDbType.VarChar).Value = u.Ip; sqlCmd.Parameters.Add("@ipnIdUsuario", SqlDbType.Int).Value = u.IdUsuario; sqlCmd.Parameters.Add(flujo); sqlCmd.Parameters.Add(mensaje); sqlCmd.ExecuteNonQuery(); response.Flujo = flujo.Value.ToString(); response.Mensaje = mensaje.Value.ToString(); SqlConn.Close(); } catch (Exception ex) { LogBarabares b = new LogBarabares() { Accion = Constantes.LOG_CREAR, Servicio = Constantes.Add_LogUsuario, Input = JsonSerializer.add_LogUsuario(u), Descripcion = ex.ToString(), Clase = u.GetType().Name, Aplicacion = "Servicios", Estado = Constantes.FALLA, Ip = "", IdUsuario = 1 //TODO: obtener usuario de la sesión }; Utils.add_LogBarabares(b); } } return response; }
public List<LogUsuario> selectAll_LogUsuario() { try { List<LogUsuario> logUsuarios = new List<LogUsuario>(); LogUsuario l = new LogUsuario(); DataTable dt = new DataTable(); SqlDataAdapter sda = new SqlDataAdapter(); string ConnString = ConfigurationManager.ConnectionStrings["barabaresConnectionString"].ConnectionString; using (SqlConnection SqlConn = new SqlConnection(ConnString)) { try { SqlConn.Open(); } catch (Exception ex) { Debug.WriteLine(ex.ToString()); return logUsuarios; } SqlCommand sqlCmd = new SqlCommand("USUARIO_LOG_SELECT_ALL", SqlConn); sqlCmd.CommandType = CommandType.StoredProcedure; sda.SelectCommand = sqlCmd; sda.Fill(dt); SqlConn.Close(); sqlCmd.Dispose(); sda.Dispose(); } DataRow[] rows = dt.Select(); for (int i = 0; i < rows.Length; i++) { l = Utils.logUsuario_parse(rows[i]); logUsuarios.Add(l); } return logUsuarios; } catch (Exception ex) { LogUsuario d = new LogUsuario(); LogBarabares b = new LogBarabares() { Accion = Constantes.LOG_LISTAR, Servicio = Constantes.SelectAll_LogUsuario, Input = "", Descripcion = ex.ToString(), Clase = d.GetType().Name, Aplicacion = Constantes.ENTORNO_SERVICIOS, Estado = Constantes.FALLA, Ip = "", IdUsuario = 1 //TODO: obtener usuario de la sesión }; Utils.add_LogBarabares(b); return new List<LogUsuario>(); } }