-
Notifications
You must be signed in to change notification settings - Fork 0
/
Usuario.cs
208 lines (199 loc) · 7.15 KB
/
Usuario.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Kit;
using System.Collections.ObjectModel;
using System.Data;
using System.Windows.Media;
using Kit.Security.Encryption;
using System.Text.RegularExpressions;
using Kit.Enums;
using Kit.Model;
using Kit.Sql.Helpers;
using Kit.Sql.Readers;
using Kit;
namespace Inventario
{
public class Usuario : ModelBase
{
public int Id { get; set; }
private string _NickName;
public string NickName { get => _NickName; set { _NickName = value; OnPropertyChanged(); } }
private string _Nombre;
public string Nombre
{
get => _Nombre;
set
{
_Nombre = value;
OnPropertyChanged();
Iniciales = _Nombre.ExtractInitialsFromName();
OnPropertyChanged(nameof(Iniciales));
}
}
public string Iniciales { get; set; }
public string Password { get; set; }
private bool _PEntrada;
public bool PEntrada
{
get => _PEntrada;
set
{
_PEntrada = value;
OnPropertyChanged();
if (_PEntrada && _SoloLectura)
{
SoloLectura = false;
}
}
}
private bool _PSalida;
public bool PSalida
{
get => _PSalida;
set
{
_PSalida = value;
OnPropertyChanged();
if (_PSalida && _SoloLectura)
{
SoloLectura = false;
}
}
}
public bool PReportes { get; set; }
private bool _SoloLectura;
public bool SoloLectura
{
get => _SoloLectura;
set
{
_SoloLectura = value;
OnPropertyChanged();
if (_SoloLectura)
{
PEntrada = false;
PSalida = false;
PUsuarios = false;
}
}
}
private bool _EDUSUARIO;
public bool PUsuarios
{
get => _EDUSUARIO;
set
{
_EDUSUARIO = value;
OnPropertyChanged();
}
}
private ImageSource _Imagen;
public ImageSource Imagen { get => _Imagen; set { _Imagen = value; OnPropertyChanged(); } }
public Usuario()
{
}
public Usuario(int Id, string NickName, string Nombre, string Password, bool PEntrada, bool PSalida, bool PReportes, bool SoloLectura, ImageSource Imagen, bool EDUSUARIO)
{
this.Id = Id;
this.NickName = NickName;
this.Nombre = Nombre;
this.Password = Password;
this.PEntrada = PEntrada;
this.PReportes = PReportes;
this.PSalida = PSalida;
this.SoloLectura = SoloLectura;
this.Imagen = Imagen;
this.PUsuarios = EDUSUARIO;
}
public static Usuario ObtenerPorNombreNick(string NickName)
{
Usuario usu = Obtener(NickName);
if (usu is null)
{
if (SQLHelper.IsInjection(NickName))
{
return null;
}
string nick = Conexion.Sqlite.Single<string>($"SELECT NICKNAME FROM USUARIOS WHERE NOMBRE='{NickName}'");
if (!string.IsNullOrEmpty(nick))
{
return Obtener(nick);
}
}
return usu;
}
public static Usuario Obtener(string NickName)
{
Usuario usuario = null;
if (SQLHelper.IsInjection(NickName))
{
return null;
}
Kit.Security.Encryption.Encryption Cesar = new Cesar();
//leer informacion
using (IReader leector = Conexion.Sqlite.Read($"SELECT *FROM USUARIOS WHERE NICKNAME='{NickName}' AND OCULTO=0"))
{
if (leector.Read())
{
//tomar la informacion
int Id = Convert.ToInt32(leector["ID"].ToString());
string nickname = leector["NICKNAME"].ToString();
string nombre = leector["NOMBRE"].ToString();
string Password = Cesar.ToString(Cesar.Decrypt((byte[])leector["PASSWORD"]));
ImageSource imagen = ((byte[])leector["IMAGEN"]).BytesToBitmap();
bool PEntrada = Convert.ToInt32(leector["PENTRADA"]) == 1;
bool PReportes = Convert.ToInt32(leector["PREPORTES"]) == 1;
bool PSalida = Convert.ToInt32(leector["PSALIDA"]) == 1;
bool SoloLectura = Convert.ToInt32(leector["ROLSL"]) == 1;
bool EDusuario = Convert.ToInt32(leector["EDUSUARIOS"]) == 1;
usuario = new Usuario(Id, nickname, nombre, Password, PEntrada, PSalida, PReportes, SoloLectura, imagen, EDusuario);
}
}
return usuario;
}
public bool Existe()
{
return Conexion.Sqlite.Exists("SELECT NICKNAME FROM USUARIOS WHERE NICKNAME='" + NickName + "'");
}
public static ObservableCollection<Usuario> Listar()
{
ObservableCollection<Usuario> usuarios = new ObservableCollection<Usuario>();
foreach (string usuario in Conexion.Sqlite.Lista<string>("SELECT NICKNAME FROM USUARIOS WHERE OCULTO=0"))
{
usuarios.Add(Obtener(usuario));
}
return usuarios;
}
public void Alta()
{
int entrada = PEntrada ? 1 : 0;
int salida = PSalida ? 1 : 0;
int reportes = PReportes ? 1 : 0;
int slectura = SoloLectura ? 1 : 0;
int edusuario = PUsuarios ? 1 : 0;
Kit.Security.Encryption.Encryption Cesar = new Cesar();
Conexion.Sqlite.EXEC("INSERT INTO USUARIOS (NICKNAME,NOMBRE,PASSWORD,PENTRADA,PSALIDA,PREPORTES,ROLSL,IMAGEN,EDUSUARIOS) VALUES(?,?,?,?,?,?,?,?,?);"
, NickName, Nombre, Cesar.Encrypt(Password), entrada, salida, reportes, slectura, Imagen.ImageToBytes(), edusuario);
}
public void Baja()
{
Conexion.Sqlite.EXEC("UPDATE USUARIOS SET OCULTO = 1 WHERE nickname = ?;", NickName);
}
public void Modificacion()
{
Kit.Security.Encryption.Encryption Cesar = new Cesar();
int entrada = PEntrada ? 1 : 0;
int salida = PSalida ? 1 : 0;
int reportes = PReportes ? 1 : 0;
int slectura = SoloLectura ? 1 : 0;
int edusuario = PUsuarios ? 1 : 0;
Conexion.Sqlite.EXEC(
"UPDATE USUARIOS SET NOMBRE=?,PASSWORD=?,PENTRADA=?,PREPORTES=?,PSALIDA=?,ROLSL=?,IMAGEN=?,EDUSUARIOS=? WHERE NICKNAME=?",
Nombre, Cesar.Encrypt(Password), entrada, reportes, salida, slectura, Imagen.ImageToBytes(), edusuario, NickName);
}
}
}