mirror of
https://github.com/m1k1o/neko.git
synced 2024-07-24 14:40:50 +12:00
106 lines
2.2 KiB
Go
106 lines
2.2 KiB
Go
package api
|
|
|
|
import (
|
|
"net/http"
|
|
"os"
|
|
"time"
|
|
|
|
"demodesk/neko/internal/http/auth"
|
|
"demodesk/neko/internal/types"
|
|
"demodesk/neko/internal/utils"
|
|
)
|
|
|
|
var CookieExpirationDate = time.Now().Add(365 * 24 * time.Hour)
|
|
var UnsecureCookies = os.Getenv("DISABLE_SECURE_COOKIES") == "true"
|
|
|
|
type SessionLoginPayload struct {
|
|
ID string `json:"id"`
|
|
Secret string `json:"secret"`
|
|
}
|
|
|
|
type SessionWhoamiPayload struct {
|
|
ID string `json:"id"`
|
|
Profile types.MemberProfile `json:"profile"`
|
|
State types.MemberState `json:"state"`
|
|
}
|
|
|
|
func (api *ApiManagerCtx) Login(w http.ResponseWriter, r *http.Request) {
|
|
data := &SessionLoginPayload{}
|
|
if !utils.HttpJsonRequest(w, r, data) {
|
|
return
|
|
}
|
|
|
|
// TODO: Proper login.
|
|
session, token, err := api.sessions.Create(types.MemberProfile{
|
|
Name: data.ID,
|
|
IsAdmin: true,
|
|
CanLogin: true,
|
|
CanConnect: true,
|
|
CanWatch: true,
|
|
CanHost: true,
|
|
CanAccessClipboard: true,
|
|
})
|
|
|
|
if err != nil {
|
|
utils.HttpUnauthorized(w, err)
|
|
return
|
|
}
|
|
|
|
sameSite := http.SameSiteNoneMode
|
|
if UnsecureCookies {
|
|
sameSite = http.SameSiteDefaultMode
|
|
}
|
|
|
|
http.SetCookie(w, &http.Cookie{
|
|
Name: "NEKO_SESSION",
|
|
Value: token,
|
|
Expires: CookieExpirationDate,
|
|
Secure: !UnsecureCookies,
|
|
SameSite: sameSite,
|
|
HttpOnly: true,
|
|
})
|
|
|
|
utils.HttpSuccess(w, SessionWhoamiPayload{
|
|
ID: session.ID(),
|
|
Profile: session.GetProfile(),
|
|
State: session.GetState(),
|
|
})
|
|
}
|
|
|
|
func (api *ApiManagerCtx) Logout(w http.ResponseWriter, r *http.Request) {
|
|
session := auth.GetSession(r)
|
|
|
|
// TODO: Proper logout.
|
|
err := api.sessions.Delete(session.ID())
|
|
if err != nil {
|
|
utils.HttpUnauthorized(w, err)
|
|
return
|
|
}
|
|
|
|
sameSite := http.SameSiteNoneMode
|
|
if UnsecureCookies {
|
|
sameSite = http.SameSiteDefaultMode
|
|
}
|
|
|
|
http.SetCookie(w, &http.Cookie{
|
|
Name: "NEKO_SESSION",
|
|
Value: "",
|
|
Expires: time.Unix(0, 0),
|
|
Secure: !UnsecureCookies,
|
|
SameSite: sameSite,
|
|
HttpOnly: true,
|
|
})
|
|
|
|
utils.HttpSuccess(w, true)
|
|
}
|
|
|
|
func (api *ApiManagerCtx) Whoami(w http.ResponseWriter, r *http.Request) {
|
|
session := auth.GetSession(r)
|
|
|
|
utils.HttpSuccess(w, SessionWhoamiPayload{
|
|
ID: session.ID(),
|
|
Profile: session.GetProfile(),
|
|
State: session.GetState(),
|
|
})
|
|
}
|