-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheditclient.go
156 lines (145 loc) · 4.65 KB
/
editclient.go
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
package main
import (
"database/sql"
"fmt"
_ "github.com/mattn/go-sqlite3"
"net/http"
"time"
)
//Funcion para editar los datos del admin
func editar_cliente(w http.ResponseWriter, r *http.Request) {
// --- we must identify the session user 1st ------------------------
cookie, err := r.Cookie(CookieName)
if err != nil {
http.Redirect(w, r, "/"+first_page+".html", http.StatusFound)
return
}
key := cookie.Value
mu_user.RLock()
user, ok := user_[key]
mu_user.RUnlock()
if !ok {
http.Redirect(w, r, "/"+first_page+".html", http.StatusFound)
return
}
// actualizamos la cookie actual
expiration := time.Now().Add(time.Duration(session_timeout) * time.Second)
newcookie := http.Cookie{Name: CookieName, Value: key, Expires: expiration}
http.SetCookie(w, &newcookie)
mu_user.Lock()
time_[key] = expiration
mu_user.Unlock()
// ---- end of session identification -------------------------------
dbgeneral, err := sql.Open("sqlite3", DirDB+"general.db")
if err != nil {
Error.Println(err)
return
}
defer dbgeneral.Close()
r.ParseForm() // recupera campos del form tanto GET como POST
//Solo si las contraseñas son iguales modificamos
if r.FormValue("password") == r.FormValue("repeat-password") {
good := "Password correctly changed"
dbgen_mu.Lock()
_, err := dbgeneral.Exec("UPDATE users SET password = ? WHERE username = ?", r.FormValue("password"), user)
dbgen_mu.Unlock()
if err != nil {
Error.Println(err)
return
}
fmt.Fprintf(w, "<div class=\"text-success\"><strong>%s</strong></div>", good)
} else {
bad := "Passwords do not coincide"
fmt.Fprintf(w, "<div class=\"text-danger\"><strong>%s</strong></div>", bad)
}
}
//Funcion para editar los datos del admin
func editar_publish(w http.ResponseWriter, r *http.Request) {
// --- we must identify the session user 1st ------------------------
cookie, err := r.Cookie(CookieName)
if err != nil {
http.Redirect(w, r, "/"+first_page+".html", http.StatusFound)
return
}
key := cookie.Value
mu_user.RLock()
user, ok := user_[key]
mu_user.RUnlock()
if !ok {
http.Redirect(w, r, "/"+first_page+".html", http.StatusFound)
return
}
// actualizamos la cookie actual
expiration := time.Now().Add(time.Duration(session_timeout) * time.Second)
newcookie := http.Cookie{Name: CookieName, Value: key, Expires: expiration}
http.SetCookie(w, &newcookie)
mu_user.Lock()
time_[key] = expiration
mu_user.Unlock()
// ---- end of session identification -------------------------------
dbgeneral, err := sql.Open("sqlite3", DirDB+"general.db")
if err != nil {
Error.Println(err)
return
}
defer dbgeneral.Close()
r.ParseForm() // recupera campos del form tanto GET como POST
//Solo si las contraseñas son iguales modificamos
if r.FormValue("password") == r.FormValue("repeat-password") {
good := "Password correctly changed"
dbgen_mu.Lock()
_, err := dbgeneral.Exec("UPDATE users SET pubpass = ? WHERE username = ?", r.FormValue("password"), user)
dbgen_mu.Unlock()
if err != nil {
Error.Println(err)
return
}
fmt.Fprintf(w, "<div class=\"text-success\"><strong>%s</strong></div>", good)
} else {
bad := "Passwords do not coincide"
fmt.Fprintf(w, "<div class=\"text-danger\"><strong>%s</strong></div>", bad)
}
}
//Función que muestra el usuario en activo
func user_admin(w http.ResponseWriter, r *http.Request) {
// --- we must identify the session user 1st ------------------------
cookie, err := r.Cookie(CookieName)
if err != nil {
http.Redirect(w, r, "/"+first_page+".html", http.StatusFound)
return
}
key := cookie.Value
mu_user.RLock()
user, ok := user_[key]
mu_user.RUnlock()
if !ok {
http.Redirect(w, r, "/"+first_page+".html", http.StatusFound)
return
}
// actualizamos la cookie actual
expiration := time.Now().Add(time.Duration(session_timeout) * time.Second)
newcookie := http.Cookie{Name: CookieName, Value: key, Expires: expiration}
http.SetCookie(w, &newcookie)
mu_user.Lock()
time_[key] = expiration
mu_user.Unlock()
// ---- end of session identification -------------------------------
fmt.Fprintf(w, "<span class=\"input-group-addon\"><i class=\"glyphicon glyphicon-user\"></i></span><input class='form-control' placeholder='Usuario' readonly='readonly' name='username' type='username' value='%s' autofocus>", user)
}
//Funcion para editar los datos del admin
func username(w http.ResponseWriter, r *http.Request) {
// --- we must identify the session user 1st ------------------------
cookie, err := r.Cookie(CookieName)
if err != nil {
return
}
key := cookie.Value
mu_user.RLock()
user, ok := user_[key]
mu_user.RUnlock()
if !ok {
return
}
// ---- end of session identification -------------------------------
fmt.Fprintf(w, user)
}