48 lines
1,020 B
Go
48 lines
1,020 B
Go
package api
|
|
|
|
import (
|
|
"encoding/json"
|
|
"io/ioutil"
|
|
"log"
|
|
"net/http"
|
|
"strings"
|
|
|
|
"github.com/gorilla/mux"
|
|
)
|
|
|
|
type AdminSetPasswordData struct {
|
|
Password string `json:"password"`
|
|
}
|
|
|
|
func (a *API) handleAdminSetPassword(w http.ResponseWriter, r *http.Request) {
|
|
vars := mux.Vars(r)
|
|
username := vars["username"]
|
|
|
|
requestBody, err := ioutil.ReadAll(r.Body)
|
|
if err != nil {
|
|
errorResponse(w, http.StatusInternalServerError, "", err)
|
|
return
|
|
}
|
|
|
|
var requestData AdminSetPasswordData
|
|
err = json.Unmarshal(requestBody, &requestData)
|
|
if err != nil {
|
|
errorResponse(w, http.StatusInternalServerError, "", err)
|
|
return
|
|
}
|
|
|
|
if !strings.Contains(requestData.Password, "") {
|
|
errorResponse(w, http.StatusBadRequest, "password is required", err)
|
|
return
|
|
}
|
|
|
|
err = a.app().UpdateUserPassword(username, requestData.Password)
|
|
if err != nil {
|
|
errorResponse(w, http.StatusInternalServerError, "", err)
|
|
return
|
|
}
|
|
|
|
log.Printf("AdminSetPassword, username: %s", username)
|
|
|
|
jsonStringResponse(w, http.StatusOK, "{}")
|
|
}
|