-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadm.c
188 lines (176 loc) · 5.05 KB
/
adm.c
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
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "apagar.h"
#include "chec.h"
void adm() {
int logout=1;
while(logout) {
printf("Bem vindo administrador!\n");
printf("Escolha uma das opcoes para iniciar\n");
printf("[1] Gerenciar postagens\n");
printf("[2] Gerenciar usuarios\n");
printf("[3] Master Reset\n");
printf("[4] Logout\n");
int verif;
get_int(&verif);
char excluir_bin = ' ' ;
int excluir_numero = 0;
FILE *fp;
fp = fopen("adm", "a+");
FILE *fd;
fd = fopen("usuarios.txt", "r+");
if(fd == NULL){
printf("falha interna\n");
exit(0);
}
switch (verif) {
case 1:{
char *posts;
posts= (char*) malloc(sizeof(char)*129);
char *teste;
teste= (char*) malloc(sizeof(char)*129);
int flag=1;
int linha=0;
int num=0; //numero de posts
while(fgets(teste , 129 , fp)!=NULL) {
num++;
}
printf("Existem atualmente %d posts na timeline geral\n", num);
fseek(fp, 0, SEEK_SET);
for(int linha=1; linha<=num; linha++) {
fgets(posts, 129, fp);
printf("%d %s\n", linha, posts);
if(linha % 5 == 0){
printf("Deseja ver mais postagens? [s/n]\n");
char resposta;
get_char(&resposta);
while(resposta != 's' && resposta != 'n') {
printf("Resposta invalida\n");
get_char(&resposta);
}
if(resposta== 'n'){
break;
}
}
}
printf("\nDeseja excluir algum post? [s/n]\n");
get_char(&excluir_bin);
while(excluir_bin != 's' && excluir_bin!='n' ) {
printf("Resposta invalida\n");
get_char(&excluir_bin);
}
if(excluir_bin == 's'){
printf("\nQual post gostaria de escolher escolha um numero de 1 à %d\n",num);
get_int(&excluir_numero);
while(excluir_numero<1 || excluir_numero>num) {
printf("Resposta invalida\n");
get_int(&excluir_numero);
}
fseek(fp,0,SEEK_SET);
for(int j = 0; j < excluir_numero;j++){
fgets(posts,129,fp);
}
apagar_post(fp,posts,"adm");
fseek(fd,0,SEEK_SET);
char *aux2 = (char *)malloc(sizeof(char)*50);
int ctn = 0;
while(fgets(aux2,50,fd) != NULL){
ctn++;
}
char **users;
users = (char **)malloc(sizeof(char*)*ctn);
for(int j = 0; j < ctn;j++){
users[j] = (char *)malloc(sizeof(char)*50);
}
fseek(fd,0,SEEK_SET);
for(int j = 0; j < ctn; j++){
fgets(users[j],50,fd);
}
for(int j = 0; j < ctn;j++){
int len = 0;
len = strlen(users[j]);
users[j][len-1] = '4';
}
for(int j = 1;j < ctn;j++){
FILE *fc;
fc = fopen(users[j],"a+");
apagar_post(fc,posts,users[j]);
fclose(fc);
}
for(int j = 0;j < ctn;j++){
free(users[j]);
}
free(users);
free(aux2);
}
free(posts);
free(teste);
break;
}
case 2:{
fseek(fd,0,SEEK_SET);
char *aux;
int num=0;
aux= (char*) malloc(sizeof(char)*50);
while(fgets(aux, 50, fd)!=NULL) {
printf("%s", aux);
num++;
}
printf("Existem atualmente %d registrados na rede\n", num-1);
printf("Deseja excluir algum dos usuários? [s/n]\n");
char resp;
get_char(&resp);
while(resp != 's' && resp!='n') {
printf("Resposta invalida\n");
get_char(&resp);
}
if(resp=='s'){
printf("Qual deles?\n");
fgets(aux, 50, stdin);
// int k = strlen(aux);
// aux[k-1] = '\0';
int flag = 1;
flag = chec(aux,fd);
while(flag != 0) {
printf("Esse usuario nao existe\n");
setbuf(stdin,NULL);
fgets(aux, 50, stdin);
flag = chec(aux,fd);
}
apagar_usuario(fd, aux, "usuarios.txt");
}
break;
}
case 3:{
printf("Você realmente deseja resetar todos os dados de usuarios e postagens? [s/n]\n");
char resp2;
get_char(&resp2);
while(resp2 != 's' && resp2 != 'n'){
printf("Resposta inválida\n");
get_char(&resp2);
}
if(resp2 == 's'){
printf("Resetando sistema...\n");
fclose(fp);
fclose(fd);
fp = fopen("usuarios.txt","w");
fd = fopen("adm","w");
if(fp == NULL || fd == NULL){
printf("Falha interna, finalizando programa\n");
exit(0);
}
logout = 0;
break;
}else{
break;
}
}
case 4:
logout=0;
break;
}
fclose(fp);
fclose(fd);
}
}