-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbiblioteca.dart
256 lines (197 loc) · 5.84 KB
/
biblioteca.dart
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
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
import 'dart:async';
import 'package:postgres/postgres.dart';
import 'dart:io';
import 'dart:convert';
Future<void> main() async {
Biblioteca biblioteca1 = new Biblioteca();
await biblioteca1.start();
print('1. Login \n'
'0. Cadastrar \n'
'Digite:');
String? input = stdin.readLineSync();
int opcao = int.parse(input!);
if(opcao == 0){
await biblioteca1.cadastrar();
await biblioteca1.logar();
}else{
await biblioteca1.logar();
}
biblioteca1.selecionaFuncao();
}
class Biblioteca {
late final conn;
late final Usuario user;
Future<void> start() async {
final arquivo = File('conexao.json');
String json = await arquivo.readAsString();
final Map<String, dynamic> resultadoJson = jsonDecode(json);
//
final conn = await Connection.open(Endpoint(host: 'localhost', database: resultadoJson['database'],username: resultadoJson['username'], password: resultadoJson['password']),
settings: ConnectionSettings(sslMode: SslMode.disable),
);
this.conn = conn;
print("conexão efetuada");
}
void pesquisarLivro(){
print('pesquisar');
// Irei fazer uma chamada do pesquisar livro por Id depois de perguntar como ele quer pesquisar, ao buscar o livro eu retorno uma lista com todos os livros referentes a pesquisa
}
void pesquisarLivroId(){
}
void RealizarEmprestimo(){
}
Future<void> logar() async {
print('<<<< Faça login >>>>');
try {
print('Digite o seu email:');
String? email = stdin.readLineSync();
print('Digite a sua senha: ');
String? senha = stdin.readLineSync();
var resultadoQuery = await conn.execute(
"select id, nome, email, tipo_usuario from usuario where email = '$email' and senha = '$senha' ");
var usuario = resultadoQuery.first;
if (usuario[3] == false) {
this.user = Funcionario(id: usuario[0] as int,
email: usuario[2] as String,
nome: usuario[1]);
} else {
this.user = Usuario(id: usuario[0] as int,
email: usuario[2] as String,
nome: usuario[1]);
}
}catch(e) {
print('Nenhum usuário encontrado. Email ou senha incorretos \n'
'Tente novamente.');
await logar();
}
}
Future<void> cadastrar() async {
print('Cadastre o seu nome: ');
var nome = stdin.readLineSync();
print('Cadastre o seu email:');
var email = stdin.readLineSync();
print('Cadastre o seu telefone: ');
var telefoneString = stdin.readLineSync();
var telefone = int.parse(telefoneString!);
print('Cadastre o seu endereço: ');
var endereco = stdin.readLineSync();
/*
setamos o tipo_usuario como true para mudar o tipo de menu ao iniciar o aplicativo
* */
print('Você é funcionario? Digite sim ou não');
var funcionario = stdin.readLineSync();
bool tipo_usuario;
if(funcionario == 'sim'){
tipo_usuario = true;
}else{
tipo_usuario = false;
}
String? senha;
String? senhaTwo;
do{
print('Cadastre a sua senha:');
senha = stdin.readLineSync();
print('Repita a senha novamente:');
senhaTwo = stdin.readLineSync();
if(senha != senhaTwo){
print('Senhas não coincidem. Tente Novamente');
}
} while(senha != senhaTwo);
var query = "INSERT INTO usuario(nome, email, telefone, endereco, senha, tipo_usuario) VALUES ('$nome', '$email', '$telefone', '$endereco', '$senha', '$tipo_usuario')";
await conn.execute(query);
print('Cadastro efetuado com sucesso.');
}
void selecionaFuncao() async{
user.MostraFuncoes();
print('Escolha a opção:');
String? input = stdin.readLineSync();
int opcao = int.parse(input!);
switch(opcao){
case 0:
print('Obrigado por utilizar o nosso app');
exit(0);
case 1:
pesquisarLivro();
break;
case 2:
verEmprestimos();
break;
case 3:
RealizarEmprestimo();
break;
case 4:
configuracoes();
break;
default:
print('Opcão inválida');
selecionaFuncao();
}
}
Future<void> verEmprestimos() async{
print('emprestimo');
}
Future<void> configuracoes() async{
// este metodo vai ser o responsavel por atualizar o usuario e demais configurações do app
}
}
class Livro{
late final int id_Livro;
late final String titulo;
late final String autor;
late final int ano;
late final String editora;
Livro(int id_Livro, String titulo, String autor, int ano, String editora){
this.id_Livro = id_Livro;
this.titulo = titulo;
this.autor = autor;
this.ano = ano;
this.editora = editora;
}
@override
String toString() {
// TODO: implement toString
return 'IDENTIFICADOR DO LIVRO: $id_Livro \n'
'TITULO: $titulo \n'
'AUTOR: $autor \n'
'ANO: $ano \n'
'EDITORA: $editora';
}
}
class Funcionario extends Usuario{
@override
Funcionario({
required int id,
required String email,
required nome,
}) : super(id : id, email: email, nome: nome);
void MostraFuncoes() {
// TODO: implement bibliotecaFunc
super.MostraFuncoes();
print('5. Cadastrar livros \n'
'6. Analisar emprestimos \n'
'7. Registrar devolução \n'
'8. Ver ultimas devolucoes');
}
}
class Usuario{
final int id;
final String email;
final nome;
Usuario({
required this.id,
required this.email,
required this.nome,
});
factory Usuario.fromMap(Map<String, dynamic> map){
return Usuario(id: map['id'], email: map['email'], nome: map['nome']);
}
void MostraFuncoes() async{
print(
'Bem-vindo $nome \n'
'1. Pesquisar livro \n'
'2. Ver emprestimos \n'
'3. Realizar emprestimo \n'
'4. Configurações'
);
}
}