@ -610,6 +610,49 @@ func (sh *serviceDescription) linkinfo(w http.ResponseWriter, r *http.Request) {
|
|||||||
w.Write(linkbytes)
|
w.Write(linkbytes)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// == 계정 이메일 조회
|
||||||
|
func (sh *serviceDescription) emailinfo(w http.ResponseWriter, r *http.Request) {
|
||||||
|
defer func() {
|
||||||
|
s := recover()
|
||||||
|
if s != nil {
|
||||||
|
logger.Error(s)
|
||||||
|
}
|
||||||
|
}()
|
||||||
|
|
||||||
|
if r.Method != "GET" {
|
||||||
|
w.WriteHeader(http.StatusBadRequest)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
queryvals := r.URL.Query()
|
||||||
|
sk := queryvals.Get("sk")
|
||||||
|
|
||||||
|
authInfo, err := sh.sessionProvider.Query(sk)
|
||||||
|
if err != nil {
|
||||||
|
logger.Println("sessionProvider.Query return err :", err)
|
||||||
|
w.WriteHeader(http.StatusInternalServerError)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
email := authInfo.Email
|
||||||
|
|
||||||
|
if strings.HasPrefix(email, "__dummy_") && strings.HasSuffix(email, "temp__") {
|
||||||
|
email = ""
|
||||||
|
}
|
||||||
|
|
||||||
|
if strings.HasSuffix(email, "@noauth.flag") || strings.HasSuffix(email, "@guest.flag") {
|
||||||
|
email = ""
|
||||||
|
}
|
||||||
|
|
||||||
|
// fmt.Println("=================")
|
||||||
|
// fmt.Println(email)
|
||||||
|
// fmt.Println("=================")
|
||||||
|
//logger.Println("Email :", email)
|
||||||
|
|
||||||
|
w.Write([]byte(fmt.Sprintf(`{"email":"%s"}`, email)))
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
func (sh *serviceDescription) authorize(w http.ResponseWriter, r *http.Request) {
|
func (sh *serviceDescription) authorize(w http.ResponseWriter, r *http.Request) {
|
||||||
defer func() {
|
defer func() {
|
||||||
s := recover()
|
s := recover()
|
||||||
@ -933,6 +976,8 @@ func (sh *serviceDescription) serveHTTP(w http.ResponseWriter, r *http.Request)
|
|||||||
sh.unlink(w, r)
|
sh.unlink(w, r)
|
||||||
} else if strings.HasSuffix(r.URL.Path, "/linkinfo") {
|
} else if strings.HasSuffix(r.URL.Path, "/linkinfo") {
|
||||||
sh.linkinfo(w, r)
|
sh.linkinfo(w, r)
|
||||||
|
} else if strings.HasSuffix(r.URL.Path, "/emailinfo") {
|
||||||
|
sh.emailinfo(w, r)
|
||||||
} else if strings.HasSuffix(r.URL.Path, "/delacc") {
|
} else if strings.HasSuffix(r.URL.Path, "/delacc") {
|
||||||
sh.delacc(w, r)
|
sh.delacc(w, r)
|
||||||
} else if strings.HasSuffix(r.URL.Path, "/divs") {
|
} else if strings.HasSuffix(r.URL.Path, "/divs") {
|
||||||
|
|||||||
Reference in New Issue
Block a user